mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
add minigames
This commit is contained in:
parent
34460e6967
commit
73b4e073ff
9 changed files with 10044 additions and 9485 deletions
File diff suppressed because it is too large
Load diff
|
@ -65,14 +65,20 @@ namespace HISP.Game
|
||||||
if (tileDepth == 3)
|
if (tileDepth == 3)
|
||||||
overlayPassable = true;
|
overlayPassable = true;
|
||||||
|
|
||||||
bool tilePassable = false;
|
if ((!terrainPassable && overlayPassable) && otileId == 0)
|
||||||
if (terrainPassable || overlayPassable && otileId != 0)
|
return false;
|
||||||
tilePassable = true;
|
|
||||||
|
if (!overlayPassable)
|
||||||
|
return false;
|
||||||
|
if (!terrainPassable)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Logger.DebugPrint("Overlay: " + otileId + " Terrain: " + tileId);
|
Logger.DebugPrint("Overlay: " + otileId + " Terrain: " + tileId);
|
||||||
|
|
||||||
|
return true;
|
||||||
return tilePassable;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void OpenMap()
|
public static void OpenMap()
|
||||||
|
|
|
@ -141,7 +141,6 @@ namespace HISP.Game
|
||||||
return NpcInformationButton.Replace("%ID%", npcId.ToString());
|
return NpcInformationButton.Replace("%ID%", npcId.ToString());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public static string FormatNpcReply(string replyText, int replyId)
|
public static string FormatNpcReply(string replyText, int replyId)
|
||||||
{
|
{
|
||||||
return NpcReplyFormat.Replace("%TEXT%", replyText).Replace("%ID%", replyId.ToString());
|
return NpcReplyFormat.Replace("%TEXT%", replyText).Replace("%ID%", replyId.ToString());
|
||||||
|
@ -202,6 +201,8 @@ namespace HISP.Game
|
||||||
{
|
{
|
||||||
return GrabItemFormat.Replace("%ICONID%",iconid.ToString()).Replace("%ITEMNAME%", name).Replace("%RANDOMID%", randomid.ToString());
|
return GrabItemFormat.Replace("%ICONID%",iconid.ToString()).Replace("%ITEMNAME%", name).Replace("%RANDOMID%", randomid.ToString());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public static string FormatTransportMessage(string method, string place, int cost, int id, int x, int y)
|
public static string FormatTransportMessage(string method, string place, int cost, int id, int x, int y)
|
||||||
{
|
{
|
||||||
string xy = "";
|
string xy = "";
|
||||||
|
|
|
@ -167,6 +167,18 @@ namespace HISP.Game
|
||||||
return true;
|
return true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
public static bool DoesQuestExist(int id)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
GetQuestById(id);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
catch(KeyNotFoundException)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
public static QuestEntry GetQuestById(int id)
|
public static QuestEntry GetQuestById(int id)
|
||||||
{
|
{
|
||||||
foreach(QuestEntry quest in QuestList)
|
foreach(QuestEntry quest in QuestList)
|
||||||
|
|
|
@ -151,7 +151,6 @@ namespace HISP.Player
|
||||||
public int SecCodeInc = 0;
|
public int SecCodeInc = 0;
|
||||||
public int SecCodeCount = 0;
|
public int SecCodeCount = 0;
|
||||||
|
|
||||||
|
|
||||||
public byte[] GenerateSecCode()
|
public byte[] GenerateSecCode()
|
||||||
{
|
{
|
||||||
var i = 0;
|
var i = 0;
|
||||||
|
|
|
@ -34,5 +34,6 @@ namespace HISP.Server
|
||||||
return arr;
|
return arr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -163,6 +163,51 @@ namespace HISP.Server
|
||||||
UpdateArea(sender);
|
UpdateArea(sender);
|
||||||
UpdateUserInfo(sender.LoggedinUser);
|
UpdateUserInfo(sender.LoggedinUser);
|
||||||
}
|
}
|
||||||
|
else if(method == PacketBuilder.SECCODE_QUEST)
|
||||||
|
{
|
||||||
|
byte[] SecCode = sender.LoggedinUser.GenerateSecCode();
|
||||||
|
bool correctSecCode = true;
|
||||||
|
for(int i = 0; i < SecCode.Length; i++)
|
||||||
|
{
|
||||||
|
if (packet[i + 2] != SecCode[i])
|
||||||
|
correctSecCode = false;
|
||||||
|
}
|
||||||
|
if(correctSecCode)
|
||||||
|
{
|
||||||
|
string packetStr = Encoding.UTF8.GetString(packet);
|
||||||
|
string intStr = packetStr.Substring(8, packetStr.Length - 2);
|
||||||
|
int value = -1;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
value = int.Parse(intStr);
|
||||||
|
}
|
||||||
|
catch (InvalidOperationException)
|
||||||
|
{
|
||||||
|
Logger.HackerPrint(sender.LoggedinUser.Username + " Sent correct sec code, but invalid value");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (packet[3] == PacketBuilder.SECCODE_QUEST)
|
||||||
|
{
|
||||||
|
if (Quest.DoesQuestExist(value))
|
||||||
|
{
|
||||||
|
Quest.QuestEntry questEntry = Quest.GetQuestById(value);
|
||||||
|
Quest.ActivateQuest(sender.LoggedinUser, questEntry);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Logger.HackerPrint(sender.LoggedinUser.Username + " Sent correct sec code, but tried to activate a non existant quest");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Logger.HackerPrint(sender.LoggedinUser.Username + " Sent invalid sec code");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -227,7 +272,7 @@ namespace HISP.Server
|
||||||
sender.SendPacket(moveResponse);
|
sender.SendPacket(moveResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (movementDirection == PacketBuilder.MOVE_UP)
|
if (movementDirection == PacketBuilder.MOVE_UP)
|
||||||
{
|
{
|
||||||
loggedInUser.Facing = PacketBuilder.DIRECTION_UP;
|
loggedInUser.Facing = PacketBuilder.DIRECTION_UP;
|
||||||
if (Map.CheckPassable(loggedInUser.X, loggedInUser.Y - 1))
|
if (Map.CheckPassable(loggedInUser.X, loggedInUser.Y - 1))
|
||||||
|
@ -435,7 +480,7 @@ namespace HISP.Server
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
byte[] cantAfford = PacketBuilder.CreateChat(Messages.FormatWelcomeToAreaMessage(transportLocation.LocationTitle), PacketBuilder.CHAT_BOTTOM_RIGHT);
|
byte[] cantAfford = PacketBuilder.CreateChat(Messages.CantAffordTransport, PacketBuilder.CHAT_BOTTOM_RIGHT);
|
||||||
sender.SendPacket(cantAfford);
|
sender.SendPacket(cantAfford);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,6 +34,8 @@ namespace HISP.Server
|
||||||
public const byte PACKET_NPC = 0x28;
|
public const byte PACKET_NPC = 0x28;
|
||||||
public const byte PACKET_PLAYERINFO = 0x16;
|
public const byte PACKET_PLAYERINFO = 0x16;
|
||||||
|
|
||||||
|
public const byte SECCODE_QUEST = 0x32;
|
||||||
|
|
||||||
public const byte NPC_START_CHAT = 0x14;
|
public const byte NPC_START_CHAT = 0x14;
|
||||||
public const byte NPC_CONTINUE_CHAT = 0x15;
|
public const byte NPC_CONTINUE_CHAT = 0x15;
|
||||||
|
|
||||||
|
|
|
@ -167,22 +167,24 @@ function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
|
||||||
-->
|
-->
|
||||||
<script language="JavaScript" type="text/javascript">
|
<script language="JavaScript" type="text/javascript">
|
||||||
<!--
|
<!--
|
||||||
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
|
<?php
|
||||||
|
echo("var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
|
||||||
if(hasRightVersion) { // if we've detected an acceptable version
|
if(hasRightVersion) { // if we've detected an acceptable version
|
||||||
var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
|
var oeTags = '<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"'
|
||||||
+ 'width="790" height="500" id="horseisle" name="horseisle"'
|
+ 'width=\"790\" height=\"500\" id=\"horseisle\" name=\"horseisle\"'
|
||||||
+ 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
|
+ 'codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab\">'
|
||||||
+ '<param name="movie" value="horseisle_patched.swf?SERVER=127.0.0.1&PORT=12321&USER=&2158322" /><param name="loop" value="false" /><param name="menu" value="false" /><param name="quality" value="high" /><param name="scale" value="noscale" /><param name="salign" value="t" /><param name="bgcolor" value="#ffffff" />'
|
+ '<param name=\"movie\" value=\"horseisle_patched.swf?SERVER=".$server_ip."&PORT=".$server_port."&USER=&2158322\" /><param name=\"loop\" value=\"false\" /><param name=\"menu\" value=\"false\" /><param name=\"quality\" value=\"high\" /><param name=\"scale\" value=\"noscale\" /><param name=\"salign\" value=\"t\" /><param name=\"bgcolor\" value=\"#ffffff\" />'
|
||||||
+ '<embed src="horseisle_patched.swf?SERVER=127.0.0.1&PORT=12321&USER=&2158322" loop="false" menu="false" quality="high" scale="noscale" salign="t" bgcolor="#ffffff" '
|
+ '<embed src=\"horseisle_patched.swf?SERVER=".$server_ip."&PORT=".$server_port."&USER=&2158322\" loop=\"false\" menu=\"false\" quality=\"high\" scale=\"noscale\" salign=\"t\" bgcolor=\"#ffffff\" '
|
||||||
+ 'width="790" height="500" name="horseisle" align="top"'
|
+ 'width=\"790\" height=\"500\" name=\"horseisle\" align=\"top\"'
|
||||||
+ 'play="true"'
|
+ 'play=\"true\"'
|
||||||
+ 'loop="false"'
|
+ 'loop=\"false\"'
|
||||||
+ 'quality="high"'
|
+ 'quality=\"high\"'
|
||||||
+ 'allowScriptAccess="sameDomain"'
|
+ 'allowScriptAccess=\"sameDomain\"'
|
||||||
+ 'type="application/x-shockwave-flash"'
|
+ 'type=\"application/x-shockwave-flash\"'
|
||||||
+ 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
|
+ 'pluginspage=\"http://www.macromedia.com/go/getflashplayer\">'
|
||||||
+ '<\/embed>'
|
+ '<\/embed>'
|
||||||
+ '<\/object>';
|
+ '<\/object>';");
|
||||||
|
?>
|
||||||
document.write(oeTags); // embed the flash movie
|
document.write(oeTags); // embed the flash movie
|
||||||
} else { // flash is too old or we can't detect the plugin
|
} else { // flash is too old or we can't detect the plugin
|
||||||
var alternateContent = 'Alternate HTML content should be placed here.'
|
var alternateContent = 'Alternate HTML content should be placed here.'
|
||||||
|
|
Loading…
Add table
Reference in a new issue