mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
teh big refactor
This commit is contained in:
parent
e3af85d511
commit
22b7d0fa27
36 changed files with 19658 additions and 21461 deletions
File diff suppressed because it is too large
Load diff
|
@ -1,51 +0,0 @@
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace Horse_Isle_Server
|
|
||||||
{
|
|
||||||
class Action
|
|
||||||
{
|
|
||||||
public enum ActivationMethod
|
|
||||||
{
|
|
||||||
MANUAL,
|
|
||||||
SHOVEL,
|
|
||||||
BINOCULARS,
|
|
||||||
MAGNIFYING_GLASS,
|
|
||||||
RAKE
|
|
||||||
}
|
|
||||||
public struct AltActivation
|
|
||||||
{
|
|
||||||
public ActivationMethod Method;
|
|
||||||
public int ActivationX;
|
|
||||||
public int ActivationY;
|
|
||||||
}
|
|
||||||
|
|
||||||
public struct Requirements
|
|
||||||
{
|
|
||||||
public bool Track;
|
|
||||||
public int MaxCompletions;
|
|
||||||
public int MoneyRequired;
|
|
||||||
public int[] CompletedRequired;
|
|
||||||
public int[] NotCompletedRequired;
|
|
||||||
public int RequiredAward;
|
|
||||||
|
|
||||||
}
|
|
||||||
public struct GameAction
|
|
||||||
{
|
|
||||||
public int Id;
|
|
||||||
public string Notes;
|
|
||||||
public string AdventurousTitle;
|
|
||||||
public string Difficulty;
|
|
||||||
public string Author;
|
|
||||||
public int[] ActionIdRequired;
|
|
||||||
|
|
||||||
AltActivation Activation;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,8 +1,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using HISP.Player;
|
||||||
|
using HISP.Server;
|
||||||
|
|
||||||
namespace Horse_Isle_Server
|
namespace HISP.Game
|
||||||
{
|
{
|
||||||
class Chat
|
class Chat
|
||||||
{
|
{
|
||||||
|
@ -136,12 +138,12 @@ namespace Horse_Isle_Server
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Client[] GetRecipiants(User user, ChatChannel channel, string to=null)
|
public static GameClient[] GetRecipiants(User user, ChatChannel channel, string to=null)
|
||||||
{
|
{
|
||||||
if (channel == ChatChannel.All)
|
if (channel == ChatChannel.All)
|
||||||
{
|
{
|
||||||
List<Client> recipiants = new List<Client>();
|
List<GameClient> recipiants = new List<GameClient>();
|
||||||
foreach (Client client in Server.ConnectedClients)
|
foreach (GameClient client in GameServer.ConnectedClients)
|
||||||
{
|
{
|
||||||
if (client.LoggedIn)
|
if (client.LoggedIn)
|
||||||
if (!client.LoggedinUser.MuteGlobal)
|
if (!client.LoggedinUser.MuteGlobal)
|
||||||
|
@ -153,8 +155,8 @@ namespace Horse_Isle_Server
|
||||||
|
|
||||||
if(channel == ChatChannel.Ads)
|
if(channel == ChatChannel.Ads)
|
||||||
{
|
{
|
||||||
List<Client> recipiants = new List<Client>();
|
List<GameClient> recipiants = new List<GameClient>();
|
||||||
foreach (Client client in Server.ConnectedClients)
|
foreach (GameClient client in GameServer.ConnectedClients)
|
||||||
{
|
{
|
||||||
if (client.LoggedIn)
|
if (client.LoggedIn)
|
||||||
if (!client.LoggedinUser.MuteAds)
|
if (!client.LoggedinUser.MuteAds)
|
||||||
|
@ -166,8 +168,8 @@ namespace Horse_Isle_Server
|
||||||
|
|
||||||
if(channel == ChatChannel.Buddies)
|
if(channel == ChatChannel.Buddies)
|
||||||
{
|
{
|
||||||
List<Client> recipiants = new List<Client>();
|
List<GameClient> recipiants = new List<GameClient>();
|
||||||
foreach (Client client in Server.ConnectedClients)
|
foreach (GameClient client in GameServer.ConnectedClients)
|
||||||
{
|
{
|
||||||
if (client.LoggedIn)
|
if (client.LoggedIn)
|
||||||
if (!client.LoggedinUser.MuteBuddy)
|
if (!client.LoggedinUser.MuteBuddy)
|
||||||
|
@ -180,10 +182,10 @@ namespace Horse_Isle_Server
|
||||||
|
|
||||||
if (channel == ChatChannel.Isle)
|
if (channel == ChatChannel.Isle)
|
||||||
{
|
{
|
||||||
List<Client> recipiants = new List<Client>();
|
List<GameClient> recipiants = new List<GameClient>();
|
||||||
if(World.InIsle(user.X,user.Y))
|
if(World.InIsle(user.X,user.Y))
|
||||||
{
|
{
|
||||||
User[] usersInSile = Server.GetUsersUsersInIsle(World.GetIsle(user.X, user.Y), true, false);
|
User[] usersInSile = GameServer.GetUsersUsersInIsle(World.GetIsle(user.X, user.Y), true, false);
|
||||||
foreach (User userInIsle in usersInSile)
|
foreach (User userInIsle in usersInSile)
|
||||||
{
|
{
|
||||||
if (user.Id != userInIsle.Id)
|
if (user.Id != userInIsle.Id)
|
||||||
|
@ -193,15 +195,15 @@ namespace Horse_Isle_Server
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
return new Client[0];
|
return new GameClient[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (channel == ChatChannel.Here)
|
if (channel == ChatChannel.Here)
|
||||||
{
|
{
|
||||||
List<Client> recipiants = new List<Client>();
|
List<GameClient> recipiants = new List<GameClient>();
|
||||||
User[] usersHere = Server.GetUsersAt(user.X, user.Y, true, false);
|
User[] usersHere = GameServer.GetUsersAt(user.X, user.Y, true, false);
|
||||||
foreach (User userHere in usersHere)
|
foreach (User userHere in usersHere)
|
||||||
{
|
{
|
||||||
if (user.Id != userHere.Id)
|
if (user.Id != userHere.Id)
|
||||||
|
@ -212,8 +214,8 @@ namespace Horse_Isle_Server
|
||||||
|
|
||||||
if (channel == ChatChannel.Near)
|
if (channel == ChatChannel.Near)
|
||||||
{
|
{
|
||||||
List<Client> recipiants = new List<Client>();
|
List<GameClient> recipiants = new List<GameClient>();
|
||||||
User[] nearbyUsers = Server.GetNearbyUsers(user.X, user.Y, true, false);
|
User[] nearbyUsers = GameServer.GetNearbyUsers(user.X, user.Y, true, false);
|
||||||
foreach (User nearbyUser in nearbyUsers)
|
foreach (User nearbyUser in nearbyUsers)
|
||||||
{
|
{
|
||||||
if (user.Id != nearbyUser.Id)
|
if (user.Id != nearbyUser.Id)
|
||||||
|
@ -227,11 +229,11 @@ namespace Horse_Isle_Server
|
||||||
if (!user.Moderator || !user.Administrator) // No mod chat for non-mods!
|
if (!user.Moderator || !user.Administrator) // No mod chat for non-mods!
|
||||||
{
|
{
|
||||||
Logger.WarnPrint(user.Username + " attempted to send in MOD chat, without being a MOD.");
|
Logger.WarnPrint(user.Username + " attempted to send in MOD chat, without being a MOD.");
|
||||||
return new Client[0];
|
return new GameClient[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
List<Client> recipiants = new List<Client>();
|
List<GameClient> recipiants = new List<GameClient>();
|
||||||
foreach (Client client in Server.ConnectedClients)
|
foreach (GameClient client in GameServer.ConnectedClients)
|
||||||
{
|
{
|
||||||
if (client.LoggedIn)
|
if (client.LoggedIn)
|
||||||
if (client.LoggedinUser.Moderator)
|
if (client.LoggedinUser.Moderator)
|
||||||
|
@ -246,12 +248,12 @@ namespace Horse_Isle_Server
|
||||||
if (!user.Administrator) // No admin chat for non-admins!
|
if (!user.Administrator) // No admin chat for non-admins!
|
||||||
{
|
{
|
||||||
Logger.WarnPrint(user.Username + " attempted to send in ADMIN chat, without being an ADMIN.");
|
Logger.WarnPrint(user.Username + " attempted to send in ADMIN chat, without being an ADMIN.");
|
||||||
return new Client[0];
|
return new GameClient[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
List<Client> recipiants = new List<Client>();
|
List<GameClient> recipiants = new List<GameClient>();
|
||||||
foreach (Client client in Server.ConnectedClients)
|
foreach (GameClient client in GameServer.ConnectedClients)
|
||||||
{
|
{
|
||||||
if (client.LoggedIn)
|
if (client.LoggedIn)
|
||||||
if (client.LoggedinUser.Administrator)
|
if (client.LoggedinUser.Administrator)
|
||||||
|
@ -265,8 +267,8 @@ namespace Horse_Isle_Server
|
||||||
{
|
{
|
||||||
if (to != null)
|
if (to != null)
|
||||||
{
|
{
|
||||||
List<Client> recipiants = new List<Client>();
|
List<GameClient> recipiants = new List<GameClient>();
|
||||||
foreach (Client client in Server.ConnectedClients)
|
foreach (GameClient client in GameServer.ConnectedClients)
|
||||||
{
|
{
|
||||||
if (client.LoggedIn)
|
if (client.LoggedIn)
|
||||||
if (!client.LoggedinUser.MutePrivateMessage)
|
if (!client.LoggedinUser.MutePrivateMessage)
|
||||||
|
@ -278,13 +280,13 @@ namespace Horse_Isle_Server
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Logger.ErrorPrint("Channel is " + channel + " (DM) BUT no 'to' Paramater was specfied");
|
Logger.ErrorPrint("Channel is " + channel + " (DM) BUT no 'to' Paramater was specfied");
|
||||||
return new Client[0];
|
return new GameClient[0];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Logger.ErrorPrint(user.Username + " Sent message in unknown channel: " + (byte)channel);
|
Logger.ErrorPrint(user.Username + " Sent message in unknown channel: " + (byte)channel);
|
||||||
return new Client[0]; // No recipiants
|
return new GameClient[0]; // No recipiants
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string DoCorrections(string message)
|
public static string DoCorrections(string message)
|
||||||
|
@ -364,19 +366,19 @@ namespace Horse_Isle_Server
|
||||||
case ChatChannel.Isle:
|
case ChatChannel.Isle:
|
||||||
int inIsle = 0;
|
int inIsle = 0;
|
||||||
if (World.InIsle(user.X, user.Y))
|
if (World.InIsle(user.X, user.Y))
|
||||||
inIsle = Server.GetUsersUsersInIsle(World.GetIsle(user.X, user.Y), false, false).Length -1;
|
inIsle = GameServer.GetUsersUsersInIsle(World.GetIsle(user.X, user.Y), false, false).Length -1;
|
||||||
return Messages.FormatIsleChatMessageForSender(inIsle, user.Username, message);
|
return Messages.FormatIsleChatMessageForSender(inIsle, user.Username, message);
|
||||||
case ChatChannel.Here:
|
case ChatChannel.Here:
|
||||||
int usersHere = Server.GetUsersAt(user.X, user.Y, false, false).Length -1;
|
int usersHere = GameServer.GetUsersAt(user.X, user.Y, false, false).Length -1;
|
||||||
return Messages.FormatHereChatMessageForSender(usersHere, user.Username, message);
|
return Messages.FormatHereChatMessageForSender(usersHere, user.Username, message);
|
||||||
case ChatChannel.Near:
|
case ChatChannel.Near:
|
||||||
int nearbyUsers = Server.GetNearbyUsers(user.X, user.Y, false, false).Length -1;
|
int nearbyUsers = GameServer.GetNearbyUsers(user.X, user.Y, false, false).Length -1;
|
||||||
return Messages.FormatNearChatMessageForSender(nearbyUsers, user.Username, message);
|
return Messages.FormatNearChatMessageForSender(nearbyUsers, user.Username, message);
|
||||||
case ChatChannel.Mod:
|
case ChatChannel.Mod:
|
||||||
int modsOnline = Server.GetNumberOfModsOnline() - 1;
|
int modsOnline = GameServer.GetNumberOfModsOnline() - 1;
|
||||||
return Messages.FormatModChatForSender(modsOnline, user.Username, message);
|
return Messages.FormatModChatForSender(modsOnline, user.Username, message);
|
||||||
case ChatChannel.Admin:
|
case ChatChannel.Admin:
|
||||||
int adminsOnline = Server.GetNumberOfAdminsOnline() - 1;
|
int adminsOnline = GameServer.GetNumberOfAdminsOnline() - 1;
|
||||||
return Messages.FormatAdminChatForSender(adminsOnline, user.Username, message);
|
return Messages.FormatAdminChatForSender(adminsOnline, user.Username, message);
|
||||||
case ChatChannel.Dm:
|
case ChatChannel.Dm:
|
||||||
return Messages.FormatDirectChatMessageForSender(user.Username, dmRecipiant, message);
|
return Messages.FormatDirectChatMessageForSender(user.Username, dmRecipiant, message);
|
|
@ -1,10 +1,8 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using HISP.Server;
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace Horse_Isle_Server
|
namespace HISP.Game
|
||||||
{
|
{
|
||||||
class DroppedItems
|
class DroppedItems
|
||||||
{
|
{
|
||||||
|
@ -98,7 +96,7 @@ namespace Horse_Isle_Server
|
||||||
{
|
{
|
||||||
if(new_epoch + item.DespawnTimer < old_epoch)
|
if(new_epoch + item.DespawnTimer < old_epoch)
|
||||||
{
|
{
|
||||||
if(Server.GetUsersAt(item.X, item.Y,true,true).Length == 0)
|
if(GameServer.GetUsersAt(item.X, item.Y,true,true).Length == 0)
|
||||||
{
|
{
|
||||||
RemoveDroppedItem(item);
|
RemoveDroppedItem(item);
|
||||||
removedCount++;
|
removedCount++;
|
||||||
|
@ -129,7 +127,7 @@ namespace Horse_Isle_Server
|
||||||
|
|
||||||
count++;
|
count++;
|
||||||
|
|
||||||
int despawnTimer = Server.RandomNumberGenerator.Next(900, 1500);
|
int despawnTimer = GameServer.RandomNumberGenerator.Next(900, 1500);
|
||||||
|
|
||||||
if (item.SpawnParamaters.SpawnInArea != null)
|
if (item.SpawnParamaters.SpawnInArea != null)
|
||||||
{
|
{
|
||||||
|
@ -149,12 +147,12 @@ namespace Horse_Isle_Server
|
||||||
while (true)
|
while (true)
|
||||||
{
|
{
|
||||||
// Pick a random isle:
|
// Pick a random isle:
|
||||||
int isleId = Server.RandomNumberGenerator.Next(0, World.Isles.Count);
|
int isleId = GameServer.RandomNumberGenerator.Next(0, World.Isles.Count);
|
||||||
World.Isle isle = World.Isles[isleId];
|
World.Isle isle = World.Isles[isleId];
|
||||||
|
|
||||||
// Pick a random location inside the isle
|
// Pick a random location inside the isle
|
||||||
int tryX = Server.RandomNumberGenerator.Next(isle.StartX, isle.EndX);
|
int tryX = GameServer.RandomNumberGenerator.Next(isle.StartX, isle.EndX);
|
||||||
int tryY = Server.RandomNumberGenerator.Next(isle.StartY, isle.EndY);
|
int tryY = GameServer.RandomNumberGenerator.Next(isle.StartY, isle.EndY);
|
||||||
|
|
||||||
|
|
||||||
if (World.InTown(tryX, tryY) || World.InSpecialTile(tryX, tryY))
|
if (World.InTown(tryX, tryY) || World.InSpecialTile(tryX, tryY))
|
|
@ -1,10 +1,8 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace Horse_Isle_Server
|
|
||||||
|
namespace HISP.Game
|
||||||
{
|
{
|
||||||
class InventoryItem
|
class InventoryItem
|
||||||
{
|
{
|
|
@ -4,7 +4,7 @@ using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace Horse_Isle_Server
|
namespace HISP.Game
|
||||||
{
|
{
|
||||||
class Item
|
class Item
|
||||||
{
|
{
|
|
@ -1,10 +1,5 @@
|
||||||
using System;
|
using HISP.Security;
|
||||||
using System.Collections.Generic;
|
namespace HISP.Game
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace Horse_Isle_Server
|
|
||||||
{
|
{
|
||||||
class ItemInstance
|
class ItemInstance
|
||||||
{
|
{
|
|
@ -1,114 +1,110 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.IO;
|
||||||
using System.Drawing;
|
using HISP.Server;
|
||||||
using System.IO;
|
|
||||||
using System.Linq;
|
namespace HISP.Game
|
||||||
using System.Text;
|
{
|
||||||
using System.Threading.Tasks;
|
class Map
|
||||||
|
{
|
||||||
namespace Horse_Isle_Server
|
public struct TerrainTile
|
||||||
{
|
{
|
||||||
class Map
|
public bool Passable;
|
||||||
{
|
public string Type;
|
||||||
public struct TerrainTile
|
}
|
||||||
{
|
|
||||||
public bool Passable;
|
public static int[] OverlayTileDepth;
|
||||||
public string Type;
|
|
||||||
}
|
public static int Width;
|
||||||
|
public static int Height;
|
||||||
public static int[] OverlayTileDepth;
|
|
||||||
|
public static byte[] MapData;
|
||||||
public static int Width;
|
public static byte[] oMapData;
|
||||||
public static int Height;
|
|
||||||
|
public static TerrainTile[] TerrainTiles;
|
||||||
public static byte[] MapData;
|
|
||||||
public static byte[] oMapData;
|
|
||||||
|
public static int NewUserStartX;
|
||||||
public static TerrainTile[] TerrainTiles;
|
public static int NewUserStartY;
|
||||||
|
public static int GetTileId(int x, int y, bool overlay)
|
||||||
|
{
|
||||||
public static int NewUserStartX;
|
if ((x > Width || x < 0) || (y > Height || y < 0)) // Outside map?
|
||||||
public static int NewUserStartY;
|
return 0x1;
|
||||||
public static int GetTileId(int x, int y, bool overlay)
|
|
||||||
{
|
int pos = ((x * Height) + y);
|
||||||
if ((x > Width || x < 0) || (y > Height || y < 0)) // Outside map?
|
|
||||||
return 0x1;
|
if (overlay)
|
||||||
|
return oMapData[pos];
|
||||||
int pos = ((x * Height) + y);
|
else
|
||||||
|
return MapData[pos];
|
||||||
if (overlay)
|
}
|
||||||
return oMapData[pos];
|
public static bool CheckPassable(int x, int y)
|
||||||
else
|
{
|
||||||
return MapData[pos];
|
int tileId = GetTileId(x, y, false) - 1;
|
||||||
}
|
int otileId = GetTileId(x, y, true) - 1;
|
||||||
public static bool CheckPassable(int x, int y)
|
|
||||||
{
|
bool terrainPassable = TerrainTiles[tileId].Passable;
|
||||||
int tileId = GetTileId(x, y, false) - 1;
|
int tileset = 0;
|
||||||
int otileId = GetTileId(x, y, true) - 1;
|
|
||||||
|
|
||||||
bool terrainPassable = TerrainTiles[tileId].Passable;
|
if (otileId > 192)
|
||||||
int tileset = 0;
|
{
|
||||||
|
if (World.InIsle(x, y))
|
||||||
|
tileset = World.GetIsle(x, y).Tileset;
|
||||||
if (otileId > 192)
|
otileId = otileId + 64 * tileset;
|
||||||
{
|
}
|
||||||
if (World.InIsle(x, y))
|
|
||||||
tileset = World.GetIsle(x, y).Tileset;
|
|
||||||
otileId = otileId + 64 * tileset;
|
int tileDepth = OverlayTileDepth[otileId];
|
||||||
}
|
bool overlayPassable = false;
|
||||||
|
if (tileDepth == 0)
|
||||||
|
overlayPassable = false;
|
||||||
int tileDepth = OverlayTileDepth[otileId];
|
if (tileDepth == 1)
|
||||||
bool overlayPassable = false;
|
overlayPassable = false;
|
||||||
if (tileDepth == 0)
|
if (tileDepth == 2)
|
||||||
overlayPassable = false;
|
overlayPassable = true;
|
||||||
if (tileDepth == 1)
|
if (tileDepth == 3)
|
||||||
overlayPassable = false;
|
overlayPassable = true;
|
||||||
if (tileDepth == 2)
|
|
||||||
overlayPassable = true;
|
bool tilePassable = false;
|
||||||
if (tileDepth == 3)
|
if (terrainPassable || overlayPassable)
|
||||||
overlayPassable = true;
|
tilePassable = true;
|
||||||
|
if (!overlayPassable && (tileId != 0 && otileId != 0))
|
||||||
bool tilePassable = false;
|
tilePassable = false;
|
||||||
if (terrainPassable || overlayPassable)
|
|
||||||
tilePassable = true;
|
|
||||||
if (!overlayPassable && (tileId != 0 && otileId != 0))
|
|
||||||
tilePassable = false;
|
return tilePassable;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void OpenMap()
|
||||||
return tilePassable;
|
{
|
||||||
}
|
if(!File.Exists(ConfigReader.MapFile))
|
||||||
|
{
|
||||||
public static void OpenMap()
|
Logger.ErrorPrint("Map file not found.");
|
||||||
{
|
return;
|
||||||
if(!File.Exists(ConfigReader.MapFile))
|
}
|
||||||
{
|
|
||||||
Logger.ErrorPrint("Map file not found.");
|
|
||||||
return;
|
byte[] worldMap = File.ReadAllBytes(ConfigReader.MapFile);
|
||||||
}
|
|
||||||
|
Width = BitConverter.ToInt32(worldMap, 0);
|
||||||
|
Height = BitConverter.ToInt32(worldMap, 4);
|
||||||
byte[] worldMap = File.ReadAllBytes(ConfigReader.MapFile);
|
|
||||||
|
MapData = new byte[Width * Height];
|
||||||
Width = BitConverter.ToInt32(worldMap, 0);
|
oMapData = new byte[Width * Height];
|
||||||
Height = BitConverter.ToInt32(worldMap, 4);
|
int ii = 8;
|
||||||
|
|
||||||
MapData = new byte[Width * Height];
|
for (int i = 0; i < MapData.Length; i++)
|
||||||
oMapData = new byte[Width * Height];
|
{
|
||||||
int ii = 8;
|
|
||||||
|
oMapData[i] = worldMap[ii];
|
||||||
for (int i = 0; i < MapData.Length; i++)
|
MapData[i] = worldMap[ii+ 1];
|
||||||
{
|
ii += 2;
|
||||||
|
}
|
||||||
oMapData[i] = worldMap[ii];
|
|
||||||
MapData[i] = worldMap[ii+ 1];
|
worldMap = null;
|
||||||
ii += 2;
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
worldMap = null;
|
}
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,317 +1,331 @@
|
||||||
using System;
|
using HISP.Server;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
namespace HISP.Game
|
||||||
using System.Text;
|
{
|
||||||
using System.Threading.Tasks;
|
class Messages
|
||||||
|
{
|
||||||
namespace Horse_Isle_Server
|
public static int RequiredChatViolations;
|
||||||
{
|
public static int DefaultInventoryMax;
|
||||||
class Messages
|
|
||||||
{
|
// Tools
|
||||||
public static int RequiredChatViolations;
|
public static string BinocularsNothing;
|
||||||
public static int DefaultInventoryMax;
|
public static string MagnifyNothing;
|
||||||
|
public static string RakeNothing;
|
||||||
// Announcements
|
public static string ShovelNothing;
|
||||||
public static string NewUserMessage;
|
|
||||||
public static string WelcomeFormat;
|
// Announcements
|
||||||
public static string MotdFormat;
|
public static string NewUserMessage;
|
||||||
public static string IdleWarningFormat;
|
public static string WelcomeFormat;
|
||||||
public static string LoginMessageForamt;
|
public static string MotdFormat;
|
||||||
public static string LogoutMessageFormat;
|
public static string IdleWarningFormat;
|
||||||
|
public static string LoginMessageForamt;
|
||||||
// Records
|
public static string LogoutMessageFormat;
|
||||||
public static string ProfileSavedMessage;
|
|
||||||
|
// Records
|
||||||
// Chat
|
public static string ProfileSavedMessage;
|
||||||
public static string GlobalChatFormat;
|
|
||||||
public static string AdsChatFormat;
|
// Chat
|
||||||
public static string BuddyChatFormat;
|
public static string GlobalChatFormat;
|
||||||
public static string NearChatFormat;
|
public static string AdsChatFormat;
|
||||||
public static string IsleChatFormat;
|
public static string BuddyChatFormat;
|
||||||
public static string HereChatFormat;
|
public static string NearChatFormat;
|
||||||
public static string DirectChatFormat;
|
public static string IsleChatFormat;
|
||||||
public static string ModChatFormat;
|
public static string HereChatFormat;
|
||||||
public static string AdminChatFormat;
|
public static string DirectChatFormat;
|
||||||
|
public static string ModChatFormat;
|
||||||
public static string GlobalChatFormatForModerators;
|
public static string AdminChatFormat;
|
||||||
public static string DirectChatFormatForModerators;
|
|
||||||
|
public static string GlobalChatFormatForModerators;
|
||||||
public static string IsleChatFormatForSender;
|
public static string DirectChatFormatForModerators;
|
||||||
public static string NearChatFormatForSender;
|
|
||||||
public static string HereChatFormatForSender;
|
public static string IsleChatFormatForSender;
|
||||||
public static string BuddyChatFormatForSender;
|
public static string NearChatFormatForSender;
|
||||||
public static string DirectChatFormatForSender;
|
public static string HereChatFormatForSender;
|
||||||
public static string AdminChatFormatForSender;
|
public static string BuddyChatFormatForSender;
|
||||||
public static string ModChatFormatForSender;
|
public static string DirectChatFormatForSender;
|
||||||
|
public static string AdminChatFormatForSender;
|
||||||
public static string ChatViolationMessageFormat;
|
public static string ModChatFormatForSender;
|
||||||
public static string PasswordNotice;
|
|
||||||
public static string CapsNotice;
|
public static string ChatViolationMessageFormat;
|
||||||
|
public static string PasswordNotice;
|
||||||
// Transport
|
public static string CapsNotice;
|
||||||
|
|
||||||
public static string CantAffordTransport;
|
// Transport
|
||||||
public static string WelcomeToAreaFormat;
|
|
||||||
|
public static string CantAffordTransport;
|
||||||
//Dropped Items
|
public static string WelcomeToAreaFormat;
|
||||||
|
|
||||||
public static string NothingMessage;
|
//Dropped Items
|
||||||
public static string ItemsOnGroundMessage;
|
|
||||||
public static string GrabItemFormat;
|
public static string NothingMessage;
|
||||||
public static string GrabAllItemsButton;
|
public static string ItemsOnGroundMessage;
|
||||||
public static string GrabAllItemsMessage;
|
public static string GrabItemFormat;
|
||||||
public static string GrabbedItemMessage;
|
public static string GrabAllItemsButton;
|
||||||
public static string GrabbedAllObjectsMessage;
|
public static string GrabAllItemsMessage;
|
||||||
public static string DroppedAnItemMessage;
|
public static string GrabbedItemMessage;
|
||||||
|
public static string GrabbedAllObjectsMessage;
|
||||||
// Inventory
|
public static string DroppedAnItemMessage;
|
||||||
public static string InventoryItemFormat;
|
|
||||||
public static string InventoryHeaderFormat;
|
// Inventory
|
||||||
|
public static string InventoryItemFormat;
|
||||||
public static string ItemDropButton;
|
public static string InventoryHeaderFormat;
|
||||||
public static string ItemInformationButton;
|
|
||||||
public static string ItemConsumeButton;
|
public static string ItemDropButton;
|
||||||
public static string ItemThrowButton;
|
public static string ItemInformationButton;
|
||||||
public static string ItemUseButton;
|
public static string ItemConsumeButton;
|
||||||
public static string ItemReadButton;
|
public static string ItemThrowButton;
|
||||||
|
public static string ItemUseButton;
|
||||||
// Npc
|
public static string ItemReadButton;
|
||||||
public static string NpcStartChatFormat;
|
|
||||||
public static string NpcChatpointFormat;
|
// Npc
|
||||||
public static string NpcReplyFormat;
|
public static string NpcStartChatFormat;
|
||||||
|
public static string NpcChatpointFormat;
|
||||||
// Meta
|
public static string NpcReplyFormat;
|
||||||
public static string IsleFormat;
|
public static string NpcInformationButton;
|
||||||
public static string TownFormat;
|
public static string NpcTalkButton;
|
||||||
public static string AreaFormat;
|
|
||||||
public static string LocationFormat;
|
// Meta
|
||||||
public static string TransportFormat;
|
public static string IsleFormat;
|
||||||
|
public static string TownFormat;
|
||||||
|
public static string AreaFormat;
|
||||||
|
public static string LocationFormat;
|
||||||
public static string NearbyPlayers;
|
public static string TransportFormat;
|
||||||
public static string North;
|
|
||||||
public static string East;
|
|
||||||
public static string South;
|
|
||||||
public static string West;
|
public static string NearbyPlayers;
|
||||||
|
public static string North;
|
||||||
public static string TileFormat;
|
public static string East;
|
||||||
public static string Seperator;
|
public static string South;
|
||||||
|
public static string West;
|
||||||
public static string ExitThisPlace;
|
|
||||||
public static string BackToMap;
|
public static string TileFormat;
|
||||||
public static string LongFullLine;
|
public static string Seperator;
|
||||||
public static string MetaTerminator;
|
|
||||||
|
public static string ExitThisPlace;
|
||||||
// Disconnect Messages
|
public static string BackToMap;
|
||||||
public static string BanMessage;
|
public static string LongFullLine;
|
||||||
public static string IdleKickMessageFormat;
|
public static string MetaTerminator;
|
||||||
|
|
||||||
// Swf
|
// Disconnect Messages
|
||||||
public static string BoatCutscene;
|
public static string BanMessage;
|
||||||
public static string WagonCutscene;
|
public static string IdleKickMessageFormat;
|
||||||
public static string BallonCutscene;
|
|
||||||
public static string FormatNpcChatpoint(string name, string shortDescription, string chatText)
|
// Swf
|
||||||
{
|
public static string BoatCutscene;
|
||||||
return NpcChatpointFormat.Replace("%NAME%", name).Replace("%DESCRIPTION%", shortDescription).Replace("%TEXT%", chatText);
|
public static string WagonCutscene;
|
||||||
}
|
public static string BallonCutscene;
|
||||||
|
public static string FormatNpcChatpoint(string name, string shortDescription, string chatText)
|
||||||
public static string FormatNpcReply(string replyText, int replyId)
|
{
|
||||||
{
|
return NpcChatpointFormat.Replace("%NAME%", name).Replace("%DESCRIPTION%", shortDescription).Replace("%TEXT%", chatText);
|
||||||
return NpcReplyFormat.Replace("%TEXT%", replyText).Replace("%ID%", replyId.ToString());
|
}
|
||||||
}
|
|
||||||
|
public static string FormatNpcTalkButton(int npcId)
|
||||||
public static string FormatNpcStartChatMessage(int iconId, string name, string shortDescription, int npcId)
|
{
|
||||||
{
|
return NpcTalkButton.Replace("%ID%", npcId.ToString());
|
||||||
return NpcStartChatFormat.Replace("%ICONID%", iconId.ToString()).Replace("%NAME%", name).Replace("%DESCRIPTION%", shortDescription).Replace("%ID%", npcId.ToString());
|
}
|
||||||
}
|
public static string FormatNpcInformationButton(int npcId)
|
||||||
|
{
|
||||||
public static string FormatGlobalChatViolationMessage(Chat.Reason violationReason)
|
return NpcInformationButton.Replace("%ID%", npcId.ToString());
|
||||||
{
|
}
|
||||||
return ChatViolationMessageFormat.Replace("%AMOUNT%", RequiredChatViolations.ToString()).Replace("%REASON%", violationReason.Message);
|
|
||||||
}
|
|
||||||
|
public static string FormatNpcReply(string replyText, int replyId)
|
||||||
public static string FormatPlayerInventoryHeaderMeta(int itemCount, int maxItems)
|
{
|
||||||
{
|
return NpcReplyFormat.Replace("%TEXT%", replyText).Replace("%ID%", replyId.ToString());
|
||||||
return InventoryHeaderFormat.Replace("%ITEMCOUNT%", itemCount.ToString()).Replace("%MAXITEMS%", maxItems.ToString());
|
}
|
||||||
}
|
|
||||||
|
public static string FormatNpcStartChatMessage(int iconId, string name, string shortDescription, int npcId)
|
||||||
public static string FormatPlayerInventoryItemMeta(int iconid, int count, string name)
|
{
|
||||||
{
|
return NpcStartChatFormat.Replace("%ICONID%", iconId.ToString()).Replace("%NAME%", name).Replace("%DESCRIPTION%", shortDescription).Replace("%ID%", npcId.ToString());
|
||||||
return InventoryItemFormat.Replace("%ICONID%", iconid.ToString()).Replace("%COUNT%", count.ToString()).Replace("%TITLE%", name);
|
}
|
||||||
}
|
|
||||||
|
public static string FormatGlobalChatViolationMessage(Chat.Reason violationReason)
|
||||||
public static string FormatItemThrowButton(int randomid)
|
{
|
||||||
{
|
return ChatViolationMessageFormat.Replace("%AMOUNT%", RequiredChatViolations.ToString()).Replace("%REASON%", violationReason.Message);
|
||||||
return ItemThrowButton.Replace("%RANDOMID%", randomid.ToString());
|
}
|
||||||
}
|
|
||||||
public static string FormatItemConsumeButton(int randomid)
|
public static string FormatPlayerInventoryHeaderMeta(int itemCount, int maxItems)
|
||||||
{
|
{
|
||||||
return ItemConsumeButton.Replace("%RANDOMID%", randomid.ToString());
|
return InventoryHeaderFormat.Replace("%ITEMCOUNT%", itemCount.ToString()).Replace("%MAXITEMS%", maxItems.ToString());
|
||||||
}
|
}
|
||||||
public static string FormatItemInformationButton(int randomid)
|
|
||||||
{
|
public static string FormatPlayerInventoryItemMeta(int iconid, int count, string name)
|
||||||
return ItemInformationButton.Replace("%RANDOMID%", randomid.ToString());
|
{
|
||||||
}
|
return InventoryItemFormat.Replace("%ICONID%", iconid.ToString()).Replace("%COUNT%", count.ToString()).Replace("%TITLE%", name);
|
||||||
|
}
|
||||||
public static string FormatItemDropButton(int randomid)
|
|
||||||
{
|
public static string FormatItemThrowButton(int randomid)
|
||||||
return ItemDropButton.Replace("%RANDOMID%", randomid.ToString());
|
{
|
||||||
}
|
return ItemThrowButton.Replace("%RANDOMID%", randomid.ToString());
|
||||||
public static string FormatItemUseButton(int randomid)
|
}
|
||||||
{
|
public static string FormatItemConsumeButton(int randomid)
|
||||||
return ItemUseButton.Replace("%RANDOMID%", randomid.ToString());
|
{
|
||||||
}
|
return ItemConsumeButton.Replace("%RANDOMID%", randomid.ToString());
|
||||||
public static string FormatItemReadButton(int randomid)
|
}
|
||||||
{
|
public static string FormatItemInformationButton(int randomid)
|
||||||
return ItemReadButton.Replace("%RANDOMID%", randomid.ToString());
|
{
|
||||||
}
|
return ItemInformationButton.Replace("%RANDOMID%", randomid.ToString());
|
||||||
|
}
|
||||||
// Meta
|
|
||||||
public static string FormatTileName(string name)
|
public static string FormatItemDropButton(int randomid)
|
||||||
{
|
{
|
||||||
return Messages.TileFormat.Replace("%TILENAME%", name);
|
return ItemDropButton.Replace("%RANDOMID%", randomid.ToString());
|
||||||
}
|
}
|
||||||
public static string FormatGrabItemMessage(string name, int randomid, int iconid)
|
public static string FormatItemUseButton(int randomid)
|
||||||
{
|
{
|
||||||
return GrabItemFormat.Replace("%ICONID%",iconid.ToString()).Replace("%ITEMNAME%", name).Replace("%RANDOMID%", randomid.ToString());
|
return ItemUseButton.Replace("%RANDOMID%", randomid.ToString());
|
||||||
}
|
}
|
||||||
public static string FormatTransportMessage(string method, string place, int cost, int id, int x, int y)
|
public static string FormatItemReadButton(int randomid)
|
||||||
{
|
{
|
||||||
string xy = "";
|
return ItemReadButton.Replace("%RANDOMID%", randomid.ToString());
|
||||||
xy += (char)(((x - 4) / 64) + 20);
|
}
|
||||||
xy += (char)(((x - 4) % 64) + 20);
|
|
||||||
|
// Meta
|
||||||
xy += (char)(((y - 1) / 64) + 20);
|
public static string FormatTileName(string name)
|
||||||
xy += (char)(((y - 1) % 64) + 20);
|
{
|
||||||
|
return Messages.TileFormat.Replace("%TILENAME%", name);
|
||||||
int iconId = 253;
|
}
|
||||||
if(method == "WAGON")
|
public static string FormatGrabItemMessage(string name, int randomid, int iconid)
|
||||||
iconId = 254;
|
{
|
||||||
return TransportFormat.Replace("%METHOD%", method).Replace("%PLACE%", place).Replace("%COST%", cost.ToString()).Replace("%ID%", id.ToString()).Replace("%ICON%",iconId.ToString()).Replace("%XY%", xy);
|
return GrabItemFormat.Replace("%ICONID%",iconid.ToString()).Replace("%ITEMNAME%", name).Replace("%RANDOMID%", randomid.ToString());
|
||||||
}
|
}
|
||||||
// For all
|
public static string FormatTransportMessage(string method, string place, int cost, int id, int x, int y)
|
||||||
public static string FormatGlobalChatMessage(string username, string message)
|
{
|
||||||
{
|
string xy = "";
|
||||||
return GlobalChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
xy += (char)(((x - 4) / 64) + 20);
|
||||||
}
|
xy += (char)(((x - 4) % 64) + 20);
|
||||||
|
|
||||||
public static string FormatBuddyChatMessage(string username, string message)
|
xy += (char)(((y - 1) / 64) + 20);
|
||||||
{
|
xy += (char)(((y - 1) % 64) + 20);
|
||||||
return BuddyChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
|
||||||
}
|
int iconId = 253;
|
||||||
|
if(method == "WAGON")
|
||||||
public static string FormatIsleChatMessage(string username, string message)
|
iconId = 254;
|
||||||
{
|
return TransportFormat.Replace("%METHOD%", method).Replace("%PLACE%", place).Replace("%COST%", cost.ToString()).Replace("%ID%", id.ToString()).Replace("%ICON%",iconId.ToString()).Replace("%XY%", xy);
|
||||||
return IsleChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
}
|
||||||
}
|
// For all
|
||||||
|
public static string FormatGlobalChatMessage(string username, string message)
|
||||||
public static string FormatNearbyChatMessage(string username, string message)
|
{
|
||||||
{
|
return GlobalChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||||
return NearChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
}
|
||||||
}
|
|
||||||
|
public static string FormatBuddyChatMessage(string username, string message)
|
||||||
public static string FormatHereChatMessage(string username, string message)
|
{
|
||||||
{
|
return BuddyChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||||
return HereChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
}
|
||||||
}
|
|
||||||
|
public static string FormatIsleChatMessage(string username, string message)
|
||||||
public static string FormatDirectMessage(string username, string message)
|
{
|
||||||
{
|
return IsleChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||||
return DirectChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
}
|
||||||
}
|
|
||||||
public static string FormatDirectMessageForMod(string username, string message)
|
public static string FormatNearbyChatMessage(string username, string message)
|
||||||
{
|
{
|
||||||
return DirectChatFormatForModerators.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
return NearChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string FormatGlobalChatMessageForMod(string username, string message)
|
public static string FormatHereChatMessage(string username, string message)
|
||||||
{
|
{
|
||||||
return GlobalChatFormatForModerators.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
return HereChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string FormatAdsChatMessage(string username, string message)
|
public static string FormatDirectMessage(string username, string message)
|
||||||
{
|
{
|
||||||
return AdsChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
return DirectChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||||
}
|
}
|
||||||
|
public static string FormatDirectMessageForMod(string username, string message)
|
||||||
public static string FormatModChatMessage(string username, string message)
|
{
|
||||||
{
|
return DirectChatFormatForModerators.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||||
return ModChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
}
|
||||||
}
|
|
||||||
|
public static string FormatGlobalChatMessageForMod(string username, string message)
|
||||||
public static string FormatAdminChatMessage(string username, string message)
|
{
|
||||||
{
|
return GlobalChatFormatForModerators.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||||
return AdminChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
}
|
||||||
}
|
|
||||||
|
public static string FormatAdsChatMessage(string username, string message)
|
||||||
|
{
|
||||||
// For Sender
|
return AdsChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||||
public static string FormatBuddyChatMessageForSender(int numbBuddies, string username, string message)
|
}
|
||||||
{
|
|
||||||
return BuddyChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbBuddies.ToString());
|
public static string FormatModChatMessage(string username, string message)
|
||||||
}
|
{
|
||||||
public static string FormatHereChatMessageForSender(int numbHere, string username, string message)
|
return ModChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||||
{
|
}
|
||||||
return HereChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbHere.ToString());
|
|
||||||
}
|
public static string FormatAdminChatMessage(string username, string message)
|
||||||
public static string FormatNearChatMessageForSender(int numbNear, string username, string message)
|
{
|
||||||
{
|
return AdminChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||||
return NearChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbNear.ToString());
|
}
|
||||||
}
|
|
||||||
public static string FormatIsleChatMessageForSender(int numbIsle, string username, string message)
|
|
||||||
{
|
// For Sender
|
||||||
return IsleChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbIsle.ToString());
|
public static string FormatBuddyChatMessageForSender(int numbBuddies, string username, string message)
|
||||||
}
|
{
|
||||||
|
return BuddyChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbBuddies.ToString());
|
||||||
public static string FormatAdminChatForSender(int numbAdmins, string username, string message)
|
}
|
||||||
{
|
public static string FormatHereChatMessageForSender(int numbHere, string username, string message)
|
||||||
return AdminChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbAdmins.ToString());
|
{
|
||||||
}
|
return HereChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbHere.ToString());
|
||||||
|
}
|
||||||
public static string FormatModChatForSender(int numbMods, string username, string message)
|
public static string FormatNearChatMessageForSender(int numbNear, string username, string message)
|
||||||
{
|
{
|
||||||
return ModChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbMods.ToString());
|
return NearChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbNear.ToString());
|
||||||
}
|
}
|
||||||
public static string FormatDirectChatMessageForSender(string username,string toUsername, string message)
|
public static string FormatIsleChatMessageForSender(int numbIsle, string username, string message)
|
||||||
{
|
{
|
||||||
return DirectChatFormatForSender.Replace("%FROMUSER%", username).Replace("%TOUSER%", toUsername).Replace(" %MESSAGE%", message);
|
return IsleChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbIsle.ToString());
|
||||||
}
|
}
|
||||||
public static string FormatIdleWarningMessage()
|
|
||||||
{
|
public static string FormatAdminChatForSender(int numbAdmins, string username, string message)
|
||||||
return IdleWarningFormat.Replace("%WARN%", Server.IdleWarning.ToString()).Replace("%KICK%", Server.IdleTimeout.ToString());
|
{
|
||||||
}
|
return AdminChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbAdmins.ToString());
|
||||||
|
}
|
||||||
public static string FormatLoginMessage(string username)
|
|
||||||
{
|
public static string FormatModChatForSender(int numbMods, string username, string message)
|
||||||
return LoginMessageForamt.Replace("%USERNAME%", username);
|
{
|
||||||
}
|
return ModChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbMods.ToString());
|
||||||
|
}
|
||||||
public static string FormatLogoutMessage(string username)
|
public static string FormatDirectChatMessageForSender(string username,string toUsername, string message)
|
||||||
{
|
{
|
||||||
return LogoutMessageFormat.Replace("%USERNAME%", username);
|
return DirectChatFormatForSender.Replace("%FROMUSER%", username).Replace("%TOUSER%", toUsername).Replace(" %MESSAGE%", message);
|
||||||
}
|
}
|
||||||
|
public static string FormatIdleWarningMessage()
|
||||||
public static string FormatMOTD()
|
{
|
||||||
{
|
return IdleWarningFormat.Replace("%WARN%", GameServer.IdleWarning.ToString()).Replace("%KICK%", GameServer.IdleTimeout.ToString());
|
||||||
return MotdFormat.Replace("%MOTD%", ConfigReader.Motd);
|
}
|
||||||
}
|
|
||||||
public static string FormatWelcomeMessage(string username)
|
public static string FormatLoginMessage(string username)
|
||||||
{
|
{
|
||||||
return WelcomeFormat.Replace("%USERNAME%", username);
|
return LoginMessageForamt.Replace("%USERNAME%", username);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Transport
|
public static string FormatLogoutMessage(string username)
|
||||||
public static string FormatWelcomeToAreaMessage(string placeName)
|
{
|
||||||
{
|
return LogoutMessageFormat.Replace("%USERNAME%", username);
|
||||||
return WelcomeToAreaFormat.Replace("%PLACE%", placeName);
|
}
|
||||||
}
|
|
||||||
|
public static string FormatMOTD()
|
||||||
// Disconnect
|
{
|
||||||
public static string FormatIdleKickMessage()
|
return MotdFormat.Replace("%MOTD%", ConfigReader.Motd);
|
||||||
{
|
}
|
||||||
return IdleKickMessageFormat.Replace("%KICK%", Server.IdleTimeout.ToString());
|
public static string FormatWelcomeMessage(string username)
|
||||||
}
|
{
|
||||||
|
return WelcomeFormat.Replace("%USERNAME%", username);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
// Transport
|
||||||
|
public static string FormatWelcomeToAreaMessage(string placeName)
|
||||||
|
{
|
||||||
|
return WelcomeToAreaFormat.Replace("%PLACE%", placeName);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Disconnect
|
||||||
|
public static string FormatIdleKickMessage()
|
||||||
|
{
|
||||||
|
return IdleKickMessageFormat.Replace("%KICK%", GameServer.IdleTimeout.ToString());
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,10 +1,7 @@
|
||||||
using System;
|
using HISP.Player;
|
||||||
using System.Collections.Generic;
|
using HISP.Server;
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace Horse_Isle_Server
|
namespace HISP.Game
|
||||||
{
|
{
|
||||||
class Meta
|
class Meta
|
||||||
{
|
{
|
||||||
|
@ -30,7 +27,7 @@ namespace Horse_Isle_Server
|
||||||
{
|
{
|
||||||
string playersNearby = "";
|
string playersNearby = "";
|
||||||
|
|
||||||
User[] nearbyUsers = Server.GetNearbyUsers(x, y, true, true);
|
User[] nearbyUsers = GameServer.GetNearbyUsers(x, y, true, true);
|
||||||
if (nearbyUsers.Length > 1)
|
if (nearbyUsers.Length > 1)
|
||||||
{
|
{
|
||||||
playersNearby += Messages.NearbyPlayers;
|
playersNearby += Messages.NearbyPlayers;
|
||||||
|
@ -99,18 +96,49 @@ namespace Horse_Isle_Server
|
||||||
}
|
}
|
||||||
return message;
|
return message;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static string buildNpc(User user, int x, int y)
|
||||||
|
{
|
||||||
|
string message = "";
|
||||||
|
Npc.NpcEntry[] entries = Npc.GetNpcByXAndY(x, y);
|
||||||
|
if (entries.Length > 0)
|
||||||
|
message += Messages.Seperator;
|
||||||
|
foreach (Npc.NpcEntry ent in entries)
|
||||||
|
{
|
||||||
|
if (ent.AdminOnly && !user.Administrator)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if (ent.RequiresQuestIdCompleted != 0)
|
||||||
|
if (user.Quests.GetTrackedQuestAmount(ent.RequiresQuestIdNotCompleted) <= 0)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if (ent.RequiresQuestIdNotCompleted != 0)
|
||||||
|
if (user.Quests.GetTrackedQuestAmount(ent.RequiresQuestIdCompleted) >= 1)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
message += Messages.FormatNpcStartChatMessage(ent.IconId, ent.Name, ent.ShortDescription, ent.Id);
|
||||||
|
if (ent.LongDescription != "")
|
||||||
|
message += Messages.FormatNpcInformationButton(ent.Id);
|
||||||
|
message += Messages.FormatNpcTalkButton(ent.Id);
|
||||||
|
message += "^R1";
|
||||||
|
}
|
||||||
|
return message;
|
||||||
|
}
|
||||||
public static string BuildTransportInfo(Transport.TransportPoint transportPoint)
|
public static string BuildTransportInfo(Transport.TransportPoint transportPoint)
|
||||||
{
|
{
|
||||||
string message = "";
|
string message = "";
|
||||||
// Build list of locations
|
// Build list of locations
|
||||||
foreach(int transportLocationId in transportPoint.Locations)
|
for (int i = 0; i < transportPoint.Locations.Length; i++)
|
||||||
{
|
{
|
||||||
|
int transportLocationId = transportPoint.Locations[i];
|
||||||
Transport.TransportLocation transportLocation = Transport.GetTransportLocation(transportLocationId);
|
Transport.TransportLocation transportLocation = Transport.GetTransportLocation(transportLocationId);
|
||||||
message += Messages.FormatTransportMessage(transportLocation.Type, transportLocation.LocationTitle, transportLocation.Cost, transportLocation.Id, transportLocation.GotoX, transportLocation.GotoY);
|
message += Messages.FormatTransportMessage(transportLocation.Type, transportLocation.LocationTitle, transportLocation.Cost, transportLocation.Id, transportLocation.GotoX, transportLocation.GotoY);
|
||||||
|
if(i + 1 != transportPoint.Locations.Length)
|
||||||
|
message += "^R1";
|
||||||
}
|
}
|
||||||
return message;
|
return message;
|
||||||
}
|
}
|
||||||
public static string BuildSpecialTileInfo(World.SpecialTile specialTile)
|
public static string BuildSpecialTileInfo(User user, World.SpecialTile specialTile)
|
||||||
{
|
{
|
||||||
string message = "";
|
string message = "";
|
||||||
|
|
||||||
|
@ -124,11 +152,7 @@ namespace Horse_Isle_Server
|
||||||
if (specialTile.Description != null && specialTile.Description != "")
|
if (specialTile.Description != null && specialTile.Description != "")
|
||||||
message += specialTile.Description;
|
message += specialTile.Description;
|
||||||
|
|
||||||
Npc.NpcEntry[] entries = Npc.GetNpcByXAndY(specialTile.X, specialTile.Y);
|
message += buildNpc(user, specialTile.X, specialTile.Y);
|
||||||
if(entries.Length > 0)
|
|
||||||
message += Messages.Seperator;
|
|
||||||
foreach(Npc.NpcEntry ent in entries)
|
|
||||||
message += Messages.FormatNpcStartChatMessage(ent.IconId, ent.Name, ent.ShortDescription, ent.Id);
|
|
||||||
|
|
||||||
if (specialTile.Code == null)
|
if (specialTile.Code == null)
|
||||||
message += buildCommonInfo(specialTile.X, specialTile.Y);
|
message += buildCommonInfo(specialTile.X, specialTile.Y);
|
||||||
|
@ -184,29 +208,56 @@ namespace Horse_Isle_Server
|
||||||
message += Messages.MetaTerminator;
|
message += Messages.MetaTerminator;
|
||||||
return message;
|
return message;
|
||||||
}
|
}
|
||||||
public static string BuildChatpoint(Npc.NpcEntry npc, Npc.NpcChat chatpoint)
|
public static string BuildChatpoint(User user, Npc.NpcEntry npc, Npc.NpcChat chatpoint)
|
||||||
{
|
{
|
||||||
|
bool hideReplys = false;
|
||||||
|
if (chatpoint.ActivateQuestId != 0)
|
||||||
|
{
|
||||||
|
Quest.QuestEntry quest = Quest.GetQuestById(chatpoint.ActivateQuestId);
|
||||||
|
if (Quest.ActivateQuest(user, quest, true))
|
||||||
|
{
|
||||||
|
if(quest.GotoNpcChatpoint != -1)
|
||||||
|
chatpoint = Npc.GetNpcChatpoint(npc,quest.GotoNpcChatpoint);
|
||||||
|
if (quest.SuccessNpcChat != null)
|
||||||
|
chatpoint.ChatText = quest.SuccessNpcChat;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (quest.GotoNpcChatpoint != -1)
|
||||||
|
chatpoint = Npc.GetNpcChatpoint(npc, quest.GotoNpcChatpoint);
|
||||||
|
if (quest.FailNpcChat != null)
|
||||||
|
chatpoint.ChatText = quest.FailNpcChat;
|
||||||
|
|
||||||
|
if (quest.HideReplyOnFail)
|
||||||
|
hideReplys = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
string message = "";
|
string message = "";
|
||||||
message += Messages.FormatNpcChatpoint(npc.Name, npc.ShortDescription, chatpoint.ChatText);
|
message += Messages.FormatNpcChatpoint(npc.Name, npc.ShortDescription, chatpoint.ChatText);
|
||||||
foreach(Npc.NpcReply reply in chatpoint.Replies)
|
foreach(Npc.NpcReply reply in chatpoint.Replies)
|
||||||
{
|
{
|
||||||
|
if(reply.RequiresQuestIdCompleted != 0)
|
||||||
|
if (user.Quests.GetTrackedQuestAmount(reply.RequiresQuestIdCompleted) <= 0)
|
||||||
|
continue;
|
||||||
|
if (reply.RequiresQuestIdNotCompleted != 0)
|
||||||
|
if (user.Quests.GetTrackedQuestAmount(reply.RequiresQuestIdCompleted) >= 1)
|
||||||
|
continue;
|
||||||
|
if (hideReplys)
|
||||||
|
continue;
|
||||||
message += Messages.FormatNpcReply(reply.ReplyText, reply.Id);
|
message += Messages.FormatNpcReply(reply.ReplyText, reply.Id);
|
||||||
}
|
}
|
||||||
message += Messages.BackToMap + Messages.MetaTerminator;
|
message += Messages.BackToMap + Messages.MetaTerminator;
|
||||||
return message;
|
return message;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string BuildMetaInfo(int x, int y)
|
public static string BuildMetaInfo(User user, int x, int y)
|
||||||
{
|
{
|
||||||
string message = "";
|
string message = "";
|
||||||
message += buildLocationString(x, y);
|
message += buildLocationString(x, y);
|
||||||
|
|
||||||
Npc.NpcEntry[] entries = Npc.GetNpcByXAndY(x, y);
|
message += buildNpc(user, x, y);
|
||||||
if (entries.Length > 0)
|
|
||||||
message += Messages.Seperator;
|
|
||||||
foreach (Npc.NpcEntry ent in entries)
|
|
||||||
message += Messages.FormatNpcStartChatMessage(ent.IconId, ent.Name, ent.ShortDescription, ent.Id);
|
|
||||||
|
|
||||||
|
|
||||||
message += buildCommonInfo(x, y);
|
message += buildCommonInfo(x, y);
|
||||||
return message;
|
return message;
|
|
@ -4,7 +4,7 @@ using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace Horse_Isle_Server
|
namespace HISP.Game
|
||||||
{
|
{
|
||||||
class Npc
|
class Npc
|
||||||
{
|
{
|
194
Horse Isle Server/Horse Isle Server/Game/Quest.cs
Normal file
194
Horse Isle Server/Horse Isle Server/Game/Quest.cs
Normal file
|
@ -0,0 +1,194 @@
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.IO;
|
||||||
|
using HISP.Player;
|
||||||
|
using HISP.Server;
|
||||||
|
|
||||||
|
namespace HISP.Game
|
||||||
|
{
|
||||||
|
class Quest
|
||||||
|
{
|
||||||
|
public const string Shovel = "SHOVEL";
|
||||||
|
public const string Binoculars = "BINOCS";
|
||||||
|
public const string Rake = "RAKE";
|
||||||
|
public const string MagnifyingGlass = "MAGNIFY";
|
||||||
|
|
||||||
|
public struct QuestItemInfo
|
||||||
|
{
|
||||||
|
public int ItemId;
|
||||||
|
public int Quantity;
|
||||||
|
}
|
||||||
|
public struct QuestAltActivation
|
||||||
|
{
|
||||||
|
public string Type;
|
||||||
|
public int ActivateX;
|
||||||
|
public int ActivateY;
|
||||||
|
}
|
||||||
|
public struct QuestEntry
|
||||||
|
{
|
||||||
|
public int Id;
|
||||||
|
public string Notes;
|
||||||
|
public string Title;
|
||||||
|
|
||||||
|
public int[] RequiresQuestIdComplete; // Not sure what this is for.
|
||||||
|
public QuestAltActivation AltActivation;
|
||||||
|
public bool Tracked; // Should we track how many times the player has completed this quest.
|
||||||
|
// Fail Settings
|
||||||
|
public int MaxRepeats;
|
||||||
|
public int MoneyCost;
|
||||||
|
public QuestItemInfo[] ItemsRequired;
|
||||||
|
public string FailNpcChat;
|
||||||
|
public int AwardRequired;
|
||||||
|
public int[] RequiresQuestIdCompleted;
|
||||||
|
public int[] RequiresQuestIdNotCompleted;
|
||||||
|
|
||||||
|
// Success Settings
|
||||||
|
public int MoneyEarned;
|
||||||
|
public QuestItemInfo[] ItemsEarned;
|
||||||
|
public int QuestPointsEarned;
|
||||||
|
public int GotoNpcChatpoint;
|
||||||
|
public int WarpX;
|
||||||
|
public int WarpY;
|
||||||
|
public string SuccessMessage;
|
||||||
|
public string SuccessNpcChat;
|
||||||
|
|
||||||
|
public bool HideReplyOnFail;
|
||||||
|
public string Difficulty;
|
||||||
|
public string Author;
|
||||||
|
public int ChainedQuestId;
|
||||||
|
public bool Minigame;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static List<QuestEntry> QuestList = new List<QuestEntry>();
|
||||||
|
|
||||||
|
|
||||||
|
public static bool ActivateQuest(User user, QuestEntry quest, bool npcActivation = false)
|
||||||
|
{
|
||||||
|
|
||||||
|
if (quest.Tracked)
|
||||||
|
{
|
||||||
|
// Has completed other required quests?
|
||||||
|
foreach (int questId in quest.RequiresQuestIdCompleted)
|
||||||
|
if (user.Quests.GetTrackedQuestAmount(quest.Id) < 1)
|
||||||
|
goto Fail;
|
||||||
|
|
||||||
|
// Has NOT competed other MUST NOT BE required quests
|
||||||
|
foreach (int questId in quest.RequiresQuestIdNotCompleted)
|
||||||
|
if (user.Quests.GetTrackedQuestAmount(quest.Id) > 1)
|
||||||
|
goto Fail;
|
||||||
|
// Has allready tracked this quest?
|
||||||
|
if (user.Quests.GetTrackedQuestAmount(quest.Id) >= quest.MaxRepeats)
|
||||||
|
goto Fail;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check if i have required items
|
||||||
|
foreach (QuestItemInfo itemInfo in quest.ItemsRequired)
|
||||||
|
{
|
||||||
|
bool hasThisItem = false;
|
||||||
|
InventoryItem[] items = user.Inventory.GetItemList();
|
||||||
|
foreach (InventoryItem item in items)
|
||||||
|
{
|
||||||
|
if (item.ItemId == itemInfo.ItemId && item.ItemInstances.Count >= itemInfo.Quantity)
|
||||||
|
{
|
||||||
|
hasThisItem = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!hasThisItem)
|
||||||
|
goto Fail;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Have enough money?
|
||||||
|
if (user.Money < quest.MoneyCost)
|
||||||
|
goto Fail;
|
||||||
|
|
||||||
|
// Have required award (unimplemented)
|
||||||
|
|
||||||
|
goto Success;
|
||||||
|
|
||||||
|
Fail: {
|
||||||
|
if(quest.FailNpcChat != null)
|
||||||
|
{
|
||||||
|
if(!npcActivation)
|
||||||
|
{
|
||||||
|
byte[] ChatPacket = PacketBuilder.CreateChat(quest.FailNpcChat, PacketBuilder.CHAT_BOTTOM_RIGHT);
|
||||||
|
user.LoggedinClient.SendPacket(ChatPacket);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
};
|
||||||
|
Success: {
|
||||||
|
// Take Items
|
||||||
|
foreach(QuestItemInfo itemInfo in quest.ItemsRequired)
|
||||||
|
{
|
||||||
|
InventoryItem itm = user.Inventory.GetItemByItemId(itemInfo.ItemId);
|
||||||
|
for(int i = 0; i < itemInfo.Quantity; i++)
|
||||||
|
user.Inventory.Remove(itm.ItemInstances[0]);
|
||||||
|
|
||||||
|
}
|
||||||
|
user.Money -= quest.MoneyCost;
|
||||||
|
// Give money
|
||||||
|
user.Money += quest.MoneyEarned;
|
||||||
|
// Give items
|
||||||
|
foreach (QuestItemInfo itemInfo in quest.ItemsEarned)
|
||||||
|
{
|
||||||
|
for (int i = 0; i < itemInfo.Quantity; i++)
|
||||||
|
{
|
||||||
|
ItemInstance itm = new ItemInstance(itemInfo.ItemId);
|
||||||
|
user.Inventory.Add(itm);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (quest.WarpX != 0 && quest.WarpY != 0)
|
||||||
|
GameServer.Teleport(user.LoggedinClient, quest.WarpX, quest.WarpY);
|
||||||
|
|
||||||
|
// Give quest points
|
||||||
|
user.QuestPoints += quest.QuestPointsEarned;
|
||||||
|
|
||||||
|
if (quest.ChainedQuestId != 0)
|
||||||
|
ActivateQuest(user, GetQuestById(quest.ChainedQuestId));
|
||||||
|
|
||||||
|
if(quest.Tracked)
|
||||||
|
user.Quests.TrackQuest(quest.Id);
|
||||||
|
|
||||||
|
if(quest.SuccessNpcChat != null)
|
||||||
|
{
|
||||||
|
if (!npcActivation)
|
||||||
|
{
|
||||||
|
byte[] ChatPacket = PacketBuilder.CreateChat(quest.SuccessNpcChat, PacketBuilder.CHAT_BOTTOM_RIGHT);
|
||||||
|
user.LoggedinClient.SendPacket(ChatPacket);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if(quest.SuccessMessage != null)
|
||||||
|
{
|
||||||
|
byte[] ChatPacket = PacketBuilder.CreateChat(quest.SuccessMessage, PacketBuilder.CHAT_BOTTOM_RIGHT);
|
||||||
|
user.LoggedinClient.SendPacket(ChatPacket);
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
public static QuestEntry GetQuestById(int id)
|
||||||
|
{
|
||||||
|
foreach(QuestEntry quest in QuestList)
|
||||||
|
{
|
||||||
|
if(quest.Id == id)
|
||||||
|
{
|
||||||
|
return quest;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
throw new KeyNotFoundException("QuestId: " + id + " Dont exist.");
|
||||||
|
}
|
||||||
|
public static bool UseTool(User user, string tool, int x, int y)
|
||||||
|
{
|
||||||
|
foreach(QuestEntry quest in QuestList)
|
||||||
|
{
|
||||||
|
if (quest.AltActivation.Type == tool && quest.AltActivation.ActivateX == x && quest.AltActivation.ActivateY == y)
|
||||||
|
{
|
||||||
|
ActivateQuest(user, quest);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -4,7 +4,7 @@ using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace Horse_Isle_Server
|
namespace HISP.Game
|
||||||
{
|
{
|
||||||
class Transport
|
class Transport
|
||||||
{
|
{
|
|
@ -1,216 +1,213 @@
|
||||||
using System;
|
using System.Collections.Generic;
|
||||||
using System.Collections.Generic;
|
using HISP.Server;
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
namespace HISP.Game
|
||||||
using System.Threading.Tasks;
|
{
|
||||||
|
|
||||||
namespace Horse_Isle_Server
|
class World
|
||||||
{
|
{
|
||||||
|
public struct Isle
|
||||||
class World
|
{
|
||||||
{
|
public int StartX;
|
||||||
public struct Isle
|
public int EndX;
|
||||||
{
|
public int StartY;
|
||||||
public int StartX;
|
public int EndY;
|
||||||
public int EndX;
|
public int Tileset;
|
||||||
public int StartY;
|
public string Name;
|
||||||
public int EndY;
|
}
|
||||||
public int Tileset;
|
public struct Town
|
||||||
public string Name;
|
{
|
||||||
}
|
public int StartX;
|
||||||
public struct Town
|
public int EndX;
|
||||||
{
|
public int StartY;
|
||||||
public int StartX;
|
public int EndY;
|
||||||
public int EndX;
|
public string Name;
|
||||||
public int StartY;
|
}
|
||||||
public int EndY;
|
public struct Area
|
||||||
public string Name;
|
{
|
||||||
}
|
public int StartX;
|
||||||
public struct Area
|
public int EndX;
|
||||||
{
|
public int StartY;
|
||||||
public int StartX;
|
public int EndY;
|
||||||
public int EndX;
|
public string Name;
|
||||||
public int StartY;
|
}
|
||||||
public int EndY;
|
|
||||||
public string Name;
|
|
||||||
}
|
public struct Time
|
||||||
|
{
|
||||||
|
public int Minutes;
|
||||||
public struct Time
|
public int Days;
|
||||||
{
|
public int Years;
|
||||||
public int Minutes;
|
}
|
||||||
public int Days;
|
|
||||||
public int Years;
|
public struct SpecialTile
|
||||||
}
|
{
|
||||||
|
public int X;
|
||||||
public struct SpecialTile
|
public int Y;
|
||||||
{
|
|
||||||
public int X;
|
public string Title;
|
||||||
public int Y;
|
public string Description;
|
||||||
|
|
||||||
public string Title;
|
public string Code;
|
||||||
public string Description;
|
public int ExitX;
|
||||||
|
public int ExitY;
|
||||||
public string Code;
|
|
||||||
public int ExitX;
|
public string AutoplaySwf;
|
||||||
public int ExitY;
|
public string TypeFlag;
|
||||||
|
}
|
||||||
public string AutoplaySwf;
|
public static Time ServerTime = new Time();
|
||||||
public string TypeFlag;
|
|
||||||
}
|
public static List<Isle> Isles = new List<Isle>();
|
||||||
public static Time ServerTime = new Time();
|
public static List<Town> Towns = new List<Town>();
|
||||||
|
public static List<Area> Areas = new List<Area>();
|
||||||
public static List<Isle> Isles = new List<Isle>();
|
public static List<SpecialTile> SpecialTiles = new List<SpecialTile>();
|
||||||
public static List<Town> Towns = new List<Town>();
|
public static void TickWorldClock()
|
||||||
public static List<Area> Areas = new List<Area>();
|
{
|
||||||
public static List<SpecialTile> SpecialTiles = new List<SpecialTile>();
|
ServerTime.Minutes += 1;
|
||||||
public static void TickWorldClock()
|
|
||||||
{
|
int hours = ServerTime.Minutes / 60;
|
||||||
ServerTime.Minutes += 1;
|
|
||||||
|
// Periodically write time to database:
|
||||||
int hours = ServerTime.Minutes / 60;
|
if (ServerTime.Minutes % 10 == 0) // every 10-in-game minutes)
|
||||||
|
Database.SetServerTime(ServerTime.Minutes, ServerTime.Days, ServerTime.Years);
|
||||||
// Periodically write time to database:
|
|
||||||
if (ServerTime.Minutes % 10 == 0) // every 10-in-game minutes)
|
if (hours == 24) // 1 day
|
||||||
Database.SetServerTime(ServerTime.Minutes, ServerTime.Days, ServerTime.Years);
|
{
|
||||||
|
ServerTime.Days += 1;
|
||||||
if (hours == 24) // 1 day
|
ServerTime.Minutes = 0;
|
||||||
{
|
}
|
||||||
ServerTime.Days += 1;
|
|
||||||
ServerTime.Minutes = 0;
|
if (ServerTime.Days == 366) // 1 year!
|
||||||
}
|
{
|
||||||
|
ServerTime.Days = 0;
|
||||||
if (ServerTime.Days == 366) // 1 year!
|
ServerTime.Years += 1;
|
||||||
{
|
}
|
||||||
ServerTime.Days = 0;
|
}
|
||||||
ServerTime.Years += 1;
|
|
||||||
}
|
public static void ReadWorldData()
|
||||||
}
|
{
|
||||||
|
Logger.DebugPrint("Reading time from database...");
|
||||||
public static void ReadWorldData()
|
ServerTime.Minutes = Database.GetServerTime();
|
||||||
{
|
ServerTime.Days = Database.GetServerDay();
|
||||||
Logger.DebugPrint("Reading time from database...");
|
ServerTime.Years = Database.GetServerYear();
|
||||||
ServerTime.Minutes = Database.GetServerTime();
|
Logger.InfoPrint("It is " + ServerTime.Minutes / 60 + ":" + ServerTime.Minutes % 60 + " on Day " + ServerTime.Days + " in Year " + ServerTime.Years + "!!!");
|
||||||
ServerTime.Days = Database.GetServerDay();
|
}
|
||||||
ServerTime.Years = Database.GetServerYear();
|
|
||||||
Logger.InfoPrint("It is " + ServerTime.Minutes / 60 + ":" + ServerTime.Minutes % 60 + " on Day " + ServerTime.Days + " in Year " + ServerTime.Years + "!!!");
|
public static bool InArea(int x, int y)
|
||||||
}
|
{
|
||||||
|
try
|
||||||
public static bool InArea(int x, int y)
|
{
|
||||||
{
|
GetArea(x, y);
|
||||||
try
|
return true;
|
||||||
{
|
}
|
||||||
GetArea(x, y);
|
catch (KeyNotFoundException)
|
||||||
return true;
|
{
|
||||||
}
|
return false;
|
||||||
catch (KeyNotFoundException)
|
}
|
||||||
{
|
}
|
||||||
return false;
|
|
||||||
}
|
public static bool InTown(int x, int y)
|
||||||
}
|
{
|
||||||
|
try
|
||||||
public static bool InTown(int x, int y)
|
{
|
||||||
{
|
GetTown(x, y);
|
||||||
try
|
return true;
|
||||||
{
|
}
|
||||||
GetTown(x, y);
|
catch (KeyNotFoundException)
|
||||||
return true;
|
{
|
||||||
}
|
return false;
|
||||||
catch (KeyNotFoundException)
|
}
|
||||||
{
|
}
|
||||||
return false;
|
|
||||||
}
|
public static bool InSpecialTile(int x, int y)
|
||||||
}
|
{
|
||||||
|
try
|
||||||
public static bool InSpecialTile(int x, int y)
|
{
|
||||||
{
|
GetSpecialTile(x, y);
|
||||||
try
|
return true;
|
||||||
{
|
}
|
||||||
GetSpecialTile(x, y);
|
catch (KeyNotFoundException)
|
||||||
return true;
|
{
|
||||||
}
|
return false;
|
||||||
catch (KeyNotFoundException)
|
}
|
||||||
{
|
}
|
||||||
return false;
|
|
||||||
}
|
public static bool InIsle(int x, int y)
|
||||||
}
|
{
|
||||||
|
try
|
||||||
public static bool InIsle(int x, int y)
|
{
|
||||||
{
|
GetIsle(x, y);
|
||||||
try
|
return true;
|
||||||
{
|
}
|
||||||
GetIsle(x, y);
|
catch(KeyNotFoundException)
|
||||||
return true;
|
{
|
||||||
}
|
return false;
|
||||||
catch(KeyNotFoundException)
|
}
|
||||||
{
|
}
|
||||||
return false;
|
public static SpecialTile GetSpecialTile(int x, int y)
|
||||||
}
|
{
|
||||||
}
|
foreach(SpecialTile specialTile in SpecialTiles)
|
||||||
public static SpecialTile GetSpecialTile(int x, int y)
|
{
|
||||||
{
|
if(specialTile.X == x && specialTile.Y == y)
|
||||||
foreach(SpecialTile specialTile in SpecialTiles)
|
{
|
||||||
{
|
return specialTile;
|
||||||
if(specialTile.X == x && specialTile.Y == y)
|
}
|
||||||
{
|
}
|
||||||
return specialTile;
|
throw new KeyNotFoundException("x,y not in a special tile!");
|
||||||
}
|
}
|
||||||
}
|
public static Isle GetIsle(int x, int y)
|
||||||
throw new KeyNotFoundException("x,y not in a special tile!");
|
{
|
||||||
}
|
foreach(Isle isle in Isles)
|
||||||
public static Isle GetIsle(int x, int y)
|
{
|
||||||
{
|
|
||||||
foreach(Isle isle in Isles)
|
if (isle.StartX <= x && isle.EndX >= x && isle.StartY <= y && isle.EndY >= y)
|
||||||
{
|
{
|
||||||
|
return isle;
|
||||||
if (isle.StartX <= x && isle.EndX >= x && isle.StartY <= y && isle.EndY >= y)
|
}
|
||||||
{
|
}
|
||||||
return isle;
|
throw new KeyNotFoundException("x,y not in an isle!");
|
||||||
}
|
}
|
||||||
}
|
|
||||||
throw new KeyNotFoundException("x,y not in an isle!");
|
public static Area GetArea(int x, int y)
|
||||||
}
|
{
|
||||||
|
foreach (Area area in Areas)
|
||||||
public static Area GetArea(int x, int y)
|
{
|
||||||
{
|
|
||||||
foreach (Area area in Areas)
|
if (area.StartX <= x && area.EndX >= x && area.StartY <= y && area.EndY >= y)
|
||||||
{
|
{
|
||||||
|
return area;
|
||||||
if (area.StartX <= x && area.EndX >= x && area.StartY <= y && area.EndY >= y)
|
}
|
||||||
{
|
}
|
||||||
return area;
|
throw new KeyNotFoundException("x,y not in an area!");
|
||||||
}
|
}
|
||||||
}
|
|
||||||
throw new KeyNotFoundException("x,y not in an area!");
|
public static Town GetTown(int x, int y)
|
||||||
}
|
{
|
||||||
|
foreach (Town town in Towns)
|
||||||
public static Town GetTown(int x, int y)
|
{
|
||||||
{
|
|
||||||
foreach (Town town in Towns)
|
if (town.StartX <= x && town.EndX >= x && town.StartY <= y && town.EndY >= y)
|
||||||
{
|
{
|
||||||
|
return town;
|
||||||
if (town.StartX <= x && town.EndX >= x && town.StartY <= y && town.EndY >= y)
|
}
|
||||||
{
|
}
|
||||||
return town;
|
throw new KeyNotFoundException("x,y not in a town!");
|
||||||
}
|
}
|
||||||
}
|
|
||||||
throw new KeyNotFoundException("x,y not in a town!");
|
public static bool CanDropItems(int x, int y)
|
||||||
}
|
{
|
||||||
|
if (World.InSpecialTile(x, y))
|
||||||
public static bool CanDropItems(int x, int y)
|
{
|
||||||
{
|
World.SpecialTile tile = World.GetSpecialTile(x, y);
|
||||||
if (World.InSpecialTile(x, y))
|
if (tile.Code != null)
|
||||||
{
|
return false;
|
||||||
World.SpecialTile tile = World.GetSpecialTile(x, y);
|
}
|
||||||
if (tile.Code != null)
|
return true;
|
||||||
return false;
|
}
|
||||||
}
|
|
||||||
return true;
|
public static string GetWeather()
|
||||||
}
|
{
|
||||||
|
return Database.GetWorldWeather();
|
||||||
public static string GetWeather()
|
}
|
||||||
{
|
}
|
||||||
return Database.GetWorldWeather();
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -6,7 +6,7 @@
|
||||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
<ProjectGuid>{C48CBD82-AB30-494A-8FFA-4DE7069B5827}</ProjectGuid>
|
<ProjectGuid>{C48CBD82-AB30-494A-8FFA-4DE7069B5827}</ProjectGuid>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<RootNamespace>Horse_Isle_Server</RootNamespace>
|
<RootNamespace>HISP</RootNamespace>
|
||||||
<AssemblyName>Horse Isle Server</AssemblyName>
|
<AssemblyName>Horse Isle Server</AssemblyName>
|
||||||
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
|
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
|
||||||
<LangVersion>8.0</LangVersion>
|
<LangVersion>8.0</LangVersion>
|
||||||
|
@ -72,40 +72,42 @@
|
||||||
<Reference Include="System.Xml" />
|
<Reference Include="System.Xml" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="Action.cs" />
|
<Compile Include="Game\Quest.cs" />
|
||||||
<Compile Include="Authentication.cs" />
|
|
||||||
<Compile Include="Chat.cs" />
|
|
||||||
<Compile Include="Client.cs" />
|
|
||||||
<Compile Include="Converters.cs" />
|
|
||||||
<Compile Include="Database.cs" />
|
|
||||||
<Compile Include="Friends.cs" />
|
|
||||||
<Compile Include="Gamedata.cs" />
|
|
||||||
<Compile Include="IInventory.cs" />
|
|
||||||
<Compile Include="DroppedItems.cs" />
|
|
||||||
<Compile Include="ItemInstance.cs" />
|
|
||||||
<Compile Include="Logger.cs" />
|
|
||||||
<Compile Include="ConfigReader.cs" />
|
|
||||||
<Compile Include="CrossDomainPolicy.cs" />
|
|
||||||
<Compile Include="Mailbox.cs" />
|
|
||||||
<Compile Include="Map.cs" />
|
|
||||||
<Compile Include="Messages.cs" />
|
|
||||||
<Compile Include="Item.cs" />
|
|
||||||
<Compile Include="Meta.cs" />
|
|
||||||
<Compile Include="Npc.cs" />
|
|
||||||
<Compile Include="PacketBuilder.cs" />
|
|
||||||
<Compile Include="PlayerInventory.cs" />
|
|
||||||
<Compile Include="Program.cs" />
|
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
||||||
<Compile Include="Properties\Resources.Designer.cs">
|
<Compile Include="Properties\Resources.Designer.cs">
|
||||||
<AutoGen>True</AutoGen>
|
<AutoGen>True</AutoGen>
|
||||||
<DesignTime>True</DesignTime>
|
<DesignTime>True</DesignTime>
|
||||||
<DependentUpon>Resources.resx</DependentUpon>
|
<DependentUpon>Resources.resx</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="RandomID.cs" />
|
<Compile Include="Security\Authentication.cs" />
|
||||||
<Compile Include="Server.cs" />
|
<Compile Include="Game\Chat.cs" />
|
||||||
<Compile Include="Transport.cs" />
|
<Compile Include="Server\GameClient.cs" />
|
||||||
<Compile Include="User.cs" />
|
<Compile Include="Server\Converters.cs" />
|
||||||
<Compile Include="World.cs" />
|
<Compile Include="Server\Database.cs" />
|
||||||
|
<Compile Include="Player\Friends.cs" />
|
||||||
|
<Compile Include="Server\Gamedata.cs" />
|
||||||
|
<Compile Include="Game\IInventory.cs" />
|
||||||
|
<Compile Include="Game\DroppedItems.cs" />
|
||||||
|
<Compile Include="Game\ItemInstance.cs" />
|
||||||
|
<Compile Include="Server\Logger.cs" />
|
||||||
|
<Compile Include="Server\ConfigReader.cs" />
|
||||||
|
<Compile Include="Security\CrossDomainPolicy.cs" />
|
||||||
|
<Compile Include="Player\Mailbox.cs" />
|
||||||
|
<Compile Include="Game\Map.cs" />
|
||||||
|
<Compile Include="Game\Messages.cs" />
|
||||||
|
<Compile Include="Game\Item.cs" />
|
||||||
|
<Compile Include="Game\Meta.cs" />
|
||||||
|
<Compile Include="Game\Npc.cs" />
|
||||||
|
<Compile Include="Server\PacketBuilder.cs" />
|
||||||
|
<Compile Include="Player\PlayerInventory.cs" />
|
||||||
|
<Compile Include="Player\PlayerQuests.cs" />
|
||||||
|
<Compile Include="Program.cs" />
|
||||||
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
|
<Compile Include="Security\RandomID.cs" />
|
||||||
|
<Compile Include="Server\GameServer.cs" />
|
||||||
|
<Compile Include="Player\TrackedQuest.cs" />
|
||||||
|
<Compile Include="Game\Transport.cs" />
|
||||||
|
<Compile Include="Player\User.cs" />
|
||||||
|
<Compile Include="Game\World.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="packages.config" />
|
<None Include="packages.config" />
|
||||||
|
@ -114,6 +116,7 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<EmbeddedResource Include="Properties\Resources.resx">
|
<EmbeddedResource Include="Properties\Resources.resx">
|
||||||
<Generator>ResXFileCodeGenerator</Generator>
|
<Generator>ResXFileCodeGenerator</Generator>
|
||||||
|
<SubType>Designer</SubType>
|
||||||
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
|
@ -1,10 +1,7 @@
|
||||||
using System;
|
using System.Collections.Generic;
|
||||||
using System.Collections.Generic;
|
using HISP.Server;
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace Horse_Isle_Server
|
namespace HISP.Player
|
||||||
{
|
{
|
||||||
class Friends
|
class Friends
|
||||||
{
|
{
|
|
@ -1,20 +1,16 @@
|
||||||
using System;
|
using HISP.Server;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
namespace HISP.Player
|
||||||
using System.Text;
|
{
|
||||||
using System.Threading.Tasks;
|
class Mailbox
|
||||||
|
{
|
||||||
namespace Horse_Isle_Server
|
private User baseUser;
|
||||||
{
|
public int MailCount;
|
||||||
class Mailbox
|
|
||||||
{
|
public Mailbox(User user)
|
||||||
private User baseUser;
|
{
|
||||||
public int MailCount;
|
MailCount = Database.CheckMailcount(user.Id);
|
||||||
|
baseUser = user;
|
||||||
public Mailbox(User user)
|
}
|
||||||
{
|
}
|
||||||
MailCount = Database.CheckMailcount(user.Id);
|
}
|
||||||
baseUser = user;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,10 +1,9 @@
|
||||||
using System;
|
using System.Collections.Generic;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using HISP.Game;
|
||||||
using System.Threading.Tasks;
|
using HISP.Server;
|
||||||
|
|
||||||
namespace Horse_Isle_Server
|
namespace HISP.Player
|
||||||
{
|
{
|
||||||
class PlayerInventory : IInventory
|
class PlayerInventory : IInventory
|
||||||
{
|
{
|
53
Horse Isle Server/Horse Isle Server/Player/PlayerQuests.cs
Normal file
53
Horse Isle Server/Horse Isle Server/Player/PlayerQuests.cs
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using HISP.Server;
|
||||||
|
|
||||||
|
namespace HISP.Player
|
||||||
|
{
|
||||||
|
class PlayerQuests
|
||||||
|
{
|
||||||
|
private List<TrackedQuest> trackedQuests = new List<TrackedQuest>();
|
||||||
|
public User BaseUser;
|
||||||
|
public TrackedQuest[] QuestList
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return trackedQuests.ToArray();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public void Add(int questId, int timesCompleted)
|
||||||
|
{
|
||||||
|
TrackedQuest quest = new TrackedQuest(BaseUser.Id, questId, 0);
|
||||||
|
quest.TimesCompleted = timesCompleted;
|
||||||
|
trackedQuests.Add(quest);
|
||||||
|
}
|
||||||
|
public int GetTrackedQuestAmount(int questId)
|
||||||
|
{
|
||||||
|
foreach(TrackedQuest quest in QuestList)
|
||||||
|
{
|
||||||
|
if (quest.QuestId == questId)
|
||||||
|
return quest.TimesCompleted;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void TrackQuest(int questId)
|
||||||
|
{
|
||||||
|
foreach (TrackedQuest quest in QuestList)
|
||||||
|
{
|
||||||
|
if (quest.QuestId == questId)
|
||||||
|
{
|
||||||
|
quest.TimesCompleted++;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Add(questId, 1);
|
||||||
|
}
|
||||||
|
public PlayerQuests(User user)
|
||||||
|
{
|
||||||
|
BaseUser = user;
|
||||||
|
TrackedQuest[] quests = Database.GetTrackedQuests(user.Id);
|
||||||
|
foreach (TrackedQuest quest in quests)
|
||||||
|
trackedQuests.Add(quest);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
30
Horse Isle Server/Horse Isle Server/Player/TrackedQuest.cs
Normal file
30
Horse Isle Server/Horse Isle Server/Player/TrackedQuest.cs
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
using System;
|
||||||
|
using HISP.Server;
|
||||||
|
namespace HISP
|
||||||
|
{
|
||||||
|
class TrackedQuest
|
||||||
|
{
|
||||||
|
public TrackedQuest(int playerID, int questID, int timesComplete)
|
||||||
|
{
|
||||||
|
playerId = playerID;
|
||||||
|
QuestId = questID;
|
||||||
|
timesCompleted = timesComplete;
|
||||||
|
}
|
||||||
|
public int QuestId;
|
||||||
|
private int playerId;
|
||||||
|
public int TimesCompleted
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return timesCompleted;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
Database.SetTrackedQuestCompletedCount(playerId, QuestId, value);
|
||||||
|
timesCompleted = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private int timesCompleted;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,203 +1,222 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using HISP.Game;
|
||||||
namespace Horse_Isle_Server
|
using HISP.Server;
|
||||||
{
|
namespace HISP.Player
|
||||||
class User
|
{
|
||||||
{
|
class User
|
||||||
public int Id;
|
{
|
||||||
public string Username;
|
public int Id;
|
||||||
public bool Administrator;
|
public string Username;
|
||||||
public bool Moderator;
|
public bool Administrator;
|
||||||
public bool NewPlayer = false;
|
public bool Moderator;
|
||||||
public Client LoggedinClient;
|
public bool NewPlayer = false;
|
||||||
|
public GameClient LoggedinClient;
|
||||||
public bool MuteAds = false;
|
|
||||||
public bool MuteGlobal = false;
|
public bool MuteAds = false;
|
||||||
public bool MuteIsland = false;
|
public bool MuteGlobal = false;
|
||||||
public bool MuteNear = false;
|
public bool MuteIsland = false;
|
||||||
public bool MuteHere = false;
|
public bool MuteNear = false;
|
||||||
public bool MuteBuddy = false;
|
public bool MuteHere = false;
|
||||||
public bool MutePrivateMessage = false;
|
public bool MuteBuddy = false;
|
||||||
public bool MuteBuddyRequests = false;
|
public bool MutePrivateMessage = false;
|
||||||
public bool MuteSocials = false;
|
public bool MuteBuddyRequests = false;
|
||||||
public bool MuteLogins = false;
|
public bool MuteSocials = false;
|
||||||
|
public bool MuteLogins = false;
|
||||||
public bool Stealth = false;
|
|
||||||
|
public bool Stealth = false;
|
||||||
public int Facing;
|
|
||||||
public Mailbox MailBox;
|
public int Facing;
|
||||||
public Friends Friends;
|
public Mailbox MailBox;
|
||||||
public string Password; // For chat filter.
|
public Friends Friends;
|
||||||
public PlayerInventory Inventory;
|
public string Password; // For chat filter.
|
||||||
public Npc.NpcEntry LastTalkedToNpc;
|
public PlayerInventory Inventory;
|
||||||
public int ChatViolations
|
public Npc.NpcEntry LastTalkedToNpc;
|
||||||
{
|
public PlayerQuests Quests;
|
||||||
get
|
public int ChatViolations
|
||||||
{
|
{
|
||||||
return chatViolations;
|
get
|
||||||
}
|
{
|
||||||
set
|
return chatViolations;
|
||||||
{
|
}
|
||||||
Database.SetChatViolations(value,Id);
|
set
|
||||||
chatViolations = value;
|
{
|
||||||
}
|
Database.SetChatViolations(value,Id);
|
||||||
}
|
chatViolations = value;
|
||||||
public string ProfilePage {
|
}
|
||||||
get
|
}
|
||||||
{
|
public string ProfilePage {
|
||||||
return profilePage;
|
get
|
||||||
}
|
{
|
||||||
set
|
return profilePage;
|
||||||
{
|
}
|
||||||
Database.SetPlayerProfile(value, Id);
|
set
|
||||||
profilePage = value;
|
{
|
||||||
}
|
Database.SetPlayerProfile(value, Id);
|
||||||
}
|
profilePage = value;
|
||||||
|
}
|
||||||
public int Money
|
}
|
||||||
{
|
|
||||||
get
|
public int Money
|
||||||
{
|
{
|
||||||
return money;
|
get
|
||||||
}
|
{
|
||||||
set
|
return money;
|
||||||
{
|
}
|
||||||
Database.SetPlayerMoney(value, Id);
|
set
|
||||||
Server.UpdatePlayer(LoggedinClient);
|
{
|
||||||
money = value;
|
Database.SetPlayerMoney(value, Id);
|
||||||
}
|
money = value;
|
||||||
}
|
GameServer.UpdatePlayer(LoggedinClient);
|
||||||
|
}
|
||||||
public int BankMoney
|
}
|
||||||
{
|
|
||||||
get
|
public int QuestPoints
|
||||||
{
|
{
|
||||||
return bankMoney;
|
get
|
||||||
}
|
{
|
||||||
set
|
return questPoints;
|
||||||
{
|
}
|
||||||
Database.SetPlayerBankMoney(value, Id);
|
set
|
||||||
bankMoney = value;
|
{
|
||||||
}
|
Database.SetPlayerQuestPoints(value, Id);
|
||||||
}
|
questPoints = value;
|
||||||
|
}
|
||||||
public int X
|
}
|
||||||
{
|
|
||||||
get
|
public int BankMoney
|
||||||
{
|
{
|
||||||
return x;
|
get
|
||||||
}
|
{
|
||||||
set
|
return bankMoney;
|
||||||
{
|
}
|
||||||
Database.SetPlayerX(value, Id);
|
set
|
||||||
x = value;
|
{
|
||||||
}
|
Database.SetPlayerBankMoney(value, Id);
|
||||||
}
|
bankMoney = value;
|
||||||
|
}
|
||||||
public int Y
|
}
|
||||||
{
|
|
||||||
get
|
public int X
|
||||||
{
|
{
|
||||||
return y;
|
get
|
||||||
}
|
{
|
||||||
set
|
return x;
|
||||||
{
|
}
|
||||||
Database.SetPlayerY(value, Id);
|
set
|
||||||
y = value;
|
{
|
||||||
}
|
Database.SetPlayerX(value, Id);
|
||||||
}
|
x = value;
|
||||||
|
}
|
||||||
public int CharacterId
|
}
|
||||||
{
|
|
||||||
get
|
public int Y
|
||||||
{
|
{
|
||||||
return charId;
|
get
|
||||||
}
|
{
|
||||||
set
|
return y;
|
||||||
{
|
}
|
||||||
Database.SetPlayerCharId(value, Id);
|
set
|
||||||
charId = value;
|
{
|
||||||
}
|
Database.SetPlayerY(value, Id);
|
||||||
}
|
y = value;
|
||||||
|
}
|
||||||
private int chatViolations;
|
}
|
||||||
private int charId;
|
|
||||||
private string profilePage;
|
public int CharacterId
|
||||||
private int x;
|
{
|
||||||
private int y;
|
get
|
||||||
private int money;
|
{
|
||||||
private int bankMoney;
|
return charId;
|
||||||
|
}
|
||||||
public byte[] SecCodeSeeds = new byte[3];
|
set
|
||||||
public int SecCodeInc = 0;
|
{
|
||||||
public int SecCodeCount = 0;
|
Database.SetPlayerCharId(value, Id);
|
||||||
|
charId = value;
|
||||||
|
}
|
||||||
public byte[] GenerateSecCode()
|
}
|
||||||
{
|
|
||||||
var i = 0;
|
private int chatViolations;
|
||||||
SecCodeCount++;
|
private int charId;
|
||||||
SecCodeSeeds[SecCodeCount % 3] = (byte)(SecCodeSeeds[SecCodeCount % 3] + SecCodeInc);
|
private string profilePage;
|
||||||
SecCodeSeeds[SecCodeCount % 3] = (byte)(SecCodeSeeds[SecCodeCount % 3] % 92);
|
private int x;
|
||||||
i = SecCodeSeeds[0] + SecCodeSeeds[1] * SecCodeSeeds[2] - SecCodeSeeds[1];
|
private int y;
|
||||||
i = Math.Abs(i);
|
private int money;
|
||||||
i = i % 92;
|
private int questPoints;
|
||||||
|
private int bankMoney;
|
||||||
byte[] SecCode = new byte[4];
|
|
||||||
SecCode[0] = (byte)(SecCodeSeeds[0] + 33);
|
public byte[] SecCodeSeeds = new byte[3];
|
||||||
SecCode[1] = (byte)(SecCodeSeeds[1] + 33);
|
public int SecCodeInc = 0;
|
||||||
SecCode[2] = (byte)(SecCodeSeeds[2] + 33);
|
public int SecCodeCount = 0;
|
||||||
SecCode[3] = (byte)(i + 33);
|
|
||||||
return SecCode;
|
|
||||||
}
|
public byte[] GenerateSecCode()
|
||||||
|
{
|
||||||
public User(Client baseClient, int UserId)
|
var i = 0;
|
||||||
{
|
SecCodeCount++;
|
||||||
if (!Database.CheckUserExist(UserId))
|
SecCodeSeeds[SecCodeCount % 3] = (byte)(SecCodeSeeds[SecCodeCount % 3] + SecCodeInc);
|
||||||
throw new KeyNotFoundException("User " + UserId + " not found in database!");
|
SecCodeSeeds[SecCodeCount % 3] = (byte)(SecCodeSeeds[SecCodeCount % 3] % 92);
|
||||||
|
i = SecCodeSeeds[0] + SecCodeSeeds[1] * SecCodeSeeds[2] - SecCodeSeeds[1];
|
||||||
if (!Database.CheckUserExtExists(UserId))
|
i = Math.Abs(i);
|
||||||
{
|
i = i % 92;
|
||||||
Database.CreateUserExt(UserId);
|
|
||||||
NewPlayer = true;
|
byte[] SecCode = new byte[4];
|
||||||
}
|
SecCode[0] = (byte)(SecCodeSeeds[0] + 33);
|
||||||
|
SecCode[1] = (byte)(SecCodeSeeds[1] + 33);
|
||||||
Id = UserId;
|
SecCode[2] = (byte)(SecCodeSeeds[2] + 33);
|
||||||
Username = Database.GetUsername(UserId);
|
SecCode[3] = (byte)(i + 33);
|
||||||
|
return SecCode;
|
||||||
Administrator = Database.CheckUserIsAdmin(Username);
|
}
|
||||||
Moderator = Database.CheckUserIsModerator(Username);
|
|
||||||
|
public User(GameClient baseClient, int UserId)
|
||||||
chatViolations = Database.GetChatViolations(UserId);
|
{
|
||||||
x = Database.GetPlayerX(UserId);
|
if (!Database.CheckUserExist(UserId))
|
||||||
y = Database.GetPlayerY(UserId);
|
throw new KeyNotFoundException("User " + UserId + " not found in database!");
|
||||||
charId = Database.GetPlayerCharId(UserId);
|
|
||||||
|
if (!Database.CheckUserExtExists(UserId))
|
||||||
Facing = PacketBuilder.DIRECTION_DOWN;
|
{
|
||||||
|
Database.CreateUserExt(UserId);
|
||||||
money = Database.GetPlayerMoney(UserId);
|
NewPlayer = true;
|
||||||
bankMoney = Database.GetPlayerBankMoney(UserId);
|
}
|
||||||
|
|
||||||
profilePage = Database.GetPlayerProfile(UserId);
|
Id = UserId;
|
||||||
|
Username = Database.GetUsername(UserId);
|
||||||
MailBox = new Mailbox(this);
|
|
||||||
|
Administrator = Database.CheckUserIsAdmin(Username);
|
||||||
// Generate SecCodes
|
Moderator = Database.CheckUserIsModerator(Username);
|
||||||
|
|
||||||
Random rng = new Random();
|
chatViolations = Database.GetChatViolations(UserId);
|
||||||
SecCodeSeeds[0] = (byte)rng.Next(40, 140);
|
x = Database.GetPlayerX(UserId);
|
||||||
SecCodeSeeds[1] = (byte)rng.Next(40, 140);
|
y = Database.GetPlayerY(UserId);
|
||||||
SecCodeSeeds[2] = (byte)rng.Next(40, 140);
|
charId = Database.GetPlayerCharId(UserId);
|
||||||
SecCodeInc = (byte)rng.Next(0, 99);
|
|
||||||
|
Facing = PacketBuilder.DIRECTION_DOWN;
|
||||||
// Make some friends! (Get a life!)
|
|
||||||
|
money = Database.GetPlayerMoney(UserId);
|
||||||
Friends = new Friends(this);
|
bankMoney = Database.GetPlayerBankMoney(UserId);
|
||||||
|
questPoints = Database.GetPlayerQuestPoints(UserId);
|
||||||
LoggedinClient = baseClient;
|
|
||||||
|
profilePage = Database.GetPlayerProfile(UserId);
|
||||||
Inventory = new PlayerInventory(this);
|
|
||||||
}
|
MailBox = new Mailbox(this);
|
||||||
}
|
|
||||||
}
|
// Generate SecCodes
|
||||||
|
|
||||||
|
Random rng = new Random();
|
||||||
|
SecCodeSeeds[0] = (byte)rng.Next(40, 140);
|
||||||
|
SecCodeSeeds[1] = (byte)rng.Next(40, 140);
|
||||||
|
SecCodeSeeds[2] = (byte)rng.Next(40, 140);
|
||||||
|
SecCodeInc = (byte)rng.Next(0, 99);
|
||||||
|
|
||||||
|
// Make some friends! (Get a life!)
|
||||||
|
|
||||||
|
Friends = new Friends(this);
|
||||||
|
|
||||||
|
LoggedinClient = baseClient;
|
||||||
|
|
||||||
|
Inventory = new PlayerInventory(this);
|
||||||
|
|
||||||
|
Quests = new PlayerQuests(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -3,8 +3,10 @@ using System.Drawing;
|
||||||
using System.Drawing.Imaging;
|
using System.Drawing.Imaging;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
|
using HISP.Game;
|
||||||
namespace Horse_Isle_Server
|
using HISP.Security;
|
||||||
|
using HISP.Server;
|
||||||
|
namespace HISP
|
||||||
{
|
{
|
||||||
class Program
|
class Program
|
||||||
{
|
{
|
||||||
|
@ -19,7 +21,7 @@ namespace Horse_Isle_Server
|
||||||
Gamedata.ReadGamedata();
|
Gamedata.ReadGamedata();
|
||||||
World.ReadWorldData();
|
World.ReadWorldData();
|
||||||
DroppedItems.Init();
|
DroppedItems.Init();
|
||||||
Server.StartServer();
|
GameServer.StartServer();
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
// </auto-generated>
|
// </auto-generated>
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
namespace Horse_Isle_Server.Properties {
|
namespace HISP.Properties {
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
|
|
||||||
|
@ -39,7 +39,7 @@ namespace Horse_Isle_Server.Properties {
|
||||||
internal static global::System.Resources.ResourceManager ResourceManager {
|
internal static global::System.Resources.ResourceManager ResourceManager {
|
||||||
get {
|
get {
|
||||||
if (object.ReferenceEquals(resourceMan, null)) {
|
if (object.ReferenceEquals(resourceMan, null)) {
|
||||||
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Horse_Isle_Server.Properties.Resources", typeof(Resources).Assembly);
|
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("HISP.Properties.Resources", typeof(Resources).Assembly);
|
||||||
resourceMan = temp;
|
resourceMan = temp;
|
||||||
}
|
}
|
||||||
return resourceMan;
|
return resourceMan;
|
||||||
|
@ -62,7 +62,7 @@ namespace Horse_Isle_Server.Properties {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to <cross-domain-policy>
|
/// Looks up a localized string similar to <cross-domain-policy>
|
||||||
/// <allow-access-from domain="*" to-ports="1080" secure="false"/>
|
/// <allow-access-from domain="*" to-ports="12321" secure="false"/>
|
||||||
///</cross-domain-policy>.
|
///</cross-domain-policy>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static string DefaultCrossDomain {
|
internal static string DefaultCrossDomain {
|
||||||
|
@ -76,24 +76,28 @@ namespace Horse_Isle_Server.Properties {
|
||||||
///
|
///
|
||||||
///# Ip address the server will bind to (default: 0.0.0.0 ALL INTERFACES)
|
///# Ip address the server will bind to (default: 0.0.0.0 ALL INTERFACES)
|
||||||
///ip=0.0.0.0
|
///ip=0.0.0.0
|
||||||
///# Port the server will bind to (default: 1080)
|
///# Port the server will bind to (default: 12321)
|
||||||
///port=1080
|
///port=12321
|
||||||
///
|
///
|
||||||
///# MariaDB Database
|
///# MariaDB Database
|
||||||
///db_ip=127.0.0.1
|
///db_ip=127.0.0.1
|
||||||
|
///db_name=beta
|
||||||
///db_username=root
|
///db_username=root
|
||||||
///db_password=test123
|
///db_password=test123
|
||||||
///db_port=3306
|
///db_port=3306
|
||||||
///
|
///
|
||||||
///# Map Data
|
///# Map Data
|
||||||
///map=MapData.bmp
|
///map=HI1.MAP
|
||||||
///overlaymap=oMapData.bmp
|
///
|
||||||
|
///# JSON Format Data
|
||||||
|
///
|
||||||
|
///gamedata=gamedata.json
|
||||||
///
|
///
|
||||||
///# Cross-Domain Policy File
|
///# Cross-Domain Policy File
|
||||||
///crossdomain="CrossDomainPolicy.xml
|
///crossdomain=CrossDomainPolicy.xml
|
||||||
///
|
///
|
||||||
///# Should print debug logs
|
///# Red Text Stating "Todays Note:"
|
||||||
///debug=false.
|
///motd=April 11, 2020. New breed, C [rest of string was truncated]";.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static string DefaultServerProperties {
|
internal static string DefaultServerProperties {
|
||||||
get {
|
get {
|
||||||
|
|
|
@ -122,6 +122,6 @@
|
||||||
<value>..\Resources\default_cross_domain.xml;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
|
<value>..\Resources\default_cross_domain.xml;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DefaultServerProperties" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="DefaultServerProperties" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\server.properties;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
|
<value>..\Resources\Server.properties;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
|
@ -18,8 +18,6 @@ map=HI1.MAP
|
||||||
# JSON Format Data
|
# JSON Format Data
|
||||||
|
|
||||||
gamedata=gamedata.json
|
gamedata=gamedata.json
|
||||||
npc=npc.json
|
|
||||||
quest=action.json
|
|
||||||
|
|
||||||
# Cross-Domain Policy File
|
# Cross-Domain Policy File
|
||||||
crossdomain=CrossDomainPolicy.xml
|
crossdomain=CrossDomainPolicy.xml
|
||||||
|
|
|
@ -1,89 +1,87 @@
|
||||||
using System;
|
using System.Linq;
|
||||||
using System.Collections.Generic;
|
using System.Security.Cryptography;
|
||||||
using System.Linq;
|
using System.Text;
|
||||||
using System.Security.Cryptography;
|
using HISP.Server;
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
namespace HISP.Security
|
||||||
|
{
|
||||||
namespace Horse_Isle_Server
|
class Authentication
|
||||||
{
|
{
|
||||||
class Authentication
|
public static string DecryptLogin(string encpass)
|
||||||
{
|
{
|
||||||
public static string DecryptLogin(string encpass)
|
string decrypt = "";
|
||||||
{
|
string ROTPOOL = "bl7Jgk61IZdnY mfDN5zjM2XLqTCty4WSEoKR3BFVQsaUhHOAx0rPwp9uc8iGve";
|
||||||
string decrypt = "";
|
string POSPOOL = "DQc3uxiGsKZatMmOS5qYveN71zoPTk8yU0H2w9VjprBXWn l4FJd6IRbhgACfEL";
|
||||||
string ROTPOOL = "bl7Jgk61IZdnY mfDN5zjM2XLqTCty4WSEoKR3BFVQsaUhHOAx0rPwp9uc8iGve";
|
string ROTPOOL2 = "evGi8cu9pwPr0xAOHhUasQVFB3RKoESW4ytCTqLX2Mjz5NDfm YndZI16kgJ7lb";
|
||||||
string POSPOOL = "DQc3uxiGsKZatMmOS5qYveN71zoPTk8yU0H2w9VjprBXWn l4FJd6IRbhgACfEL";
|
|
||||||
string ROTPOOL2 = "evGi8cu9pwPr0xAOHhUasQVFB3RKoESW4ytCTqLX2Mjz5NDfm YndZI16kgJ7lb";
|
|
||||||
|
int i = 0;
|
||||||
|
int ii = 0;
|
||||||
int i = 0;
|
while (i < encpass.Length)
|
||||||
int ii = 0;
|
{
|
||||||
while (i < encpass.Length)
|
int ROT = ROTPOOL.IndexOf(encpass[i].ToString());
|
||||||
{
|
int POS = POSPOOL.IndexOf(encpass[i + 1].ToString());
|
||||||
int ROT = ROTPOOL.IndexOf(encpass[i].ToString());
|
POS -= (ROT + ii);
|
||||||
int POS = POSPOOL.IndexOf(encpass[i + 1].ToString());
|
if (POS < 0)
|
||||||
POS -= (ROT + ii);
|
{
|
||||||
if (POS < 0)
|
POS = (POS / -1) - 1;
|
||||||
{
|
|
||||||
POS = (POS / -1) - 1;
|
while (POS >= ROTPOOL.Length)
|
||||||
|
{
|
||||||
while (POS >= ROTPOOL.Length)
|
POS -= ROTPOOL.Length;
|
||||||
{
|
}
|
||||||
POS -= ROTPOOL.Length;
|
|
||||||
}
|
decrypt += ROTPOOL2[POS];
|
||||||
|
}
|
||||||
decrypt += ROTPOOL2[POS];
|
else
|
||||||
}
|
{
|
||||||
else
|
while (POS >= ROTPOOL.Length)
|
||||||
{
|
{
|
||||||
while (POS >= ROTPOOL.Length)
|
POS -= ROTPOOL.Length;
|
||||||
{
|
}
|
||||||
POS -= ROTPOOL.Length;
|
|
||||||
}
|
decrypt += ROTPOOL[POS];
|
||||||
|
}
|
||||||
decrypt += ROTPOOL[POS];
|
|
||||||
}
|
i += 2;
|
||||||
|
ii += 1;
|
||||||
i += 2;
|
}
|
||||||
ii += 1;
|
return decrypt.Replace(" ", "");
|
||||||
}
|
}
|
||||||
return decrypt.Replace(" ", "");
|
|
||||||
}
|
|
||||||
|
|
||||||
|
public static byte[] HashAndSalt(string plaintext, byte[] salt)
|
||||||
|
{
|
||||||
public static byte[] HashAndSalt(string plaintext, byte[] salt)
|
byte[] plaintextBytes = Encoding.UTF8.GetBytes(plaintext);
|
||||||
{
|
|
||||||
byte[] plaintextBytes = Encoding.UTF8.GetBytes(plaintext);
|
SHA512 sha512 = new SHA512Managed();
|
||||||
|
byte[] hash = sha512.ComputeHash(plaintextBytes);
|
||||||
SHA512 sha512 = new SHA512Managed();
|
|
||||||
byte[] hash = sha512.ComputeHash(plaintextBytes);
|
for (int i = 0; i < hash.Length; i++)
|
||||||
|
{
|
||||||
for (int i = 0; i < hash.Length; i++)
|
hash[i] ^= salt[i];
|
||||||
{
|
}
|
||||||
hash[i] ^= salt[i];
|
|
||||||
}
|
|
||||||
|
byte[] finalHash = sha512.ComputeHash(hash);
|
||||||
|
|
||||||
byte[] finalHash = sha512.ComputeHash(hash);
|
return finalHash;
|
||||||
|
}
|
||||||
return finalHash;
|
|
||||||
}
|
public static bool CheckPassword(string username, string password)
|
||||||
|
{
|
||||||
public static bool CheckPassword(string username, string password)
|
if(Database.CheckUserExist(username))
|
||||||
{
|
{
|
||||||
if(Database.CheckUserExist(username))
|
byte[] expectedPassword = Database.GetPasswordHash(username);
|
||||||
{
|
byte[] salt = Database.GetPasswordSalt(username);
|
||||||
byte[] expectedPassword = Database.GetPasswordHash(username);
|
byte[] hashedPassword = HashAndSalt(password, salt);
|
||||||
byte[] salt = Database.GetPasswordSalt(username);
|
|
||||||
byte[] hashedPassword = HashAndSalt(password, salt);
|
if (Enumerable.SequenceEqual(expectedPassword, hashedPassword))
|
||||||
|
return true;
|
||||||
if (Enumerable.SequenceEqual(expectedPassword, hashedPassword))
|
}
|
||||||
return true;
|
return false;
|
||||||
}
|
}
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,34 +1,30 @@
|
||||||
using Horse_Isle_Server.Properties;
|
using HISP.Properties;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.IO;
|
||||||
using System.IO;
|
using HISP.Server;
|
||||||
using System.Linq;
|
namespace HISP.Security
|
||||||
using System.Text;
|
{
|
||||||
using System.Threading.Tasks;
|
class CrossDomainPolicy
|
||||||
|
{
|
||||||
namespace Horse_Isle_Server
|
public static byte[] GetPolicy()
|
||||||
{
|
{
|
||||||
class CrossDomainPolicy
|
if (!File.Exists(ConfigReader.CrossDomainPolicyFile)) {
|
||||||
{
|
if (ConfigReader.Debug)
|
||||||
public static byte[] GetPolicy()
|
Console.WriteLine("[DEBUG] Cross-Domain-Policy file not found, using default");
|
||||||
{
|
File.WriteAllText(ConfigReader.CrossDomainPolicyFile, Resources.DefaultCrossDomain);
|
||||||
if (!File.Exists(ConfigReader.CrossDomainPolicyFile)) {
|
}
|
||||||
if (ConfigReader.Debug)
|
|
||||||
Console.WriteLine("[DEBUG] Cross-Domain-Policy file not found, using default");
|
|
||||||
File.WriteAllText(ConfigReader.CrossDomainPolicyFile, Resources.DefaultCrossDomain);
|
MemoryStream ms = new MemoryStream();
|
||||||
}
|
byte[] policyFileBytes = File.ReadAllBytes(ConfigReader.CrossDomainPolicyFile);
|
||||||
|
ms.Write(policyFileBytes, 0x00, policyFileBytes.Length);
|
||||||
|
ms.WriteByte(0x00);
|
||||||
MemoryStream ms = new MemoryStream();
|
|
||||||
byte[] policyFileBytes = File.ReadAllBytes(ConfigReader.CrossDomainPolicyFile);
|
ms.Seek(0x00, SeekOrigin.Begin);
|
||||||
ms.Write(policyFileBytes, 0x00, policyFileBytes.Length);
|
byte[] policyFileData = ms.ToArray();
|
||||||
ms.WriteByte(0x00);
|
ms.Close();
|
||||||
|
|
||||||
ms.Seek(0x00, SeekOrigin.Begin);
|
return policyFileData;
|
||||||
byte[] policyFileData = ms.ToArray();
|
}
|
||||||
ms.Close();
|
}
|
||||||
|
}
|
||||||
return policyFileData;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,10 +1,5 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
namespace HISP.Security
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace Horse_Isle_Server
|
|
||||||
{
|
{
|
||||||
class RandomID
|
class RandomID
|
||||||
{
|
{
|
|
@ -1,120 +1,111 @@
|
||||||
using Horse_Isle_Server.Properties;
|
using HISP.Properties;
|
||||||
using System;
|
using System.IO;
|
||||||
using System.IO;
|
|
||||||
|
namespace HISP.Server
|
||||||
namespace Horse_Isle_Server
|
{
|
||||||
{
|
|
||||||
|
class ConfigReader
|
||||||
class ConfigReader
|
{
|
||||||
{
|
public static int Port;
|
||||||
public static int Port;
|
public static string BindIP;
|
||||||
public static string BindIP;
|
|
||||||
|
public static string DatabaseIP;
|
||||||
public static string DatabaseIP;
|
public static string DatabaseUsername;
|
||||||
public static string DatabaseUsername;
|
public static string DatabaseName;
|
||||||
public static string DatabaseName;
|
public static string DatabasePassword;
|
||||||
public static string DatabasePassword;
|
public static int DatabasePort;
|
||||||
public static int DatabasePort;
|
|
||||||
|
public static string Motd;
|
||||||
public static string Motd;
|
public static string MapFile;
|
||||||
public static string MapFile;
|
public static string GameDataFile;
|
||||||
public static string GameDataFile;
|
public static string CrossDomainPolicyFile;
|
||||||
public static string NpcDataFile;
|
public static bool Debug;
|
||||||
public static string QuestDataFile;
|
|
||||||
public static string CrossDomainPolicyFile;
|
public static bool BadWords;
|
||||||
public static bool Debug;
|
public static bool DoCorrections;
|
||||||
|
|
||||||
public static bool BadWords;
|
private static string ConfigurationFileName = "server.properties";
|
||||||
public static bool DoCorrections;
|
public static void OpenConfig()
|
||||||
|
{
|
||||||
private static string ConfigurationFileName = "server.properties";
|
if (!File.Exists(ConfigurationFileName))
|
||||||
public static void OpenConfig()
|
{
|
||||||
{
|
Logger.ErrorPrint(ConfigurationFileName+" not found! writing default.");
|
||||||
if (!File.Exists(ConfigurationFileName))
|
File.WriteAllText(ConfigurationFileName,Resources.DefaultServerProperties);
|
||||||
{
|
}
|
||||||
Logger.ErrorPrint(ConfigurationFileName+" not found! writing default.");
|
|
||||||
File.WriteAllText(ConfigurationFileName,Resources.DefaultServerProperties);
|
string[] configFile = File.ReadAllLines(ConfigurationFileName);
|
||||||
}
|
foreach (string setting in configFile)
|
||||||
|
{
|
||||||
string[] configFile = File.ReadAllLines(ConfigurationFileName);
|
/*
|
||||||
foreach (string setting in configFile)
|
* Avoid crashing.
|
||||||
{
|
*/
|
||||||
/*
|
if (setting.Length < 1)
|
||||||
* Avoid crashing.
|
continue;
|
||||||
*/
|
if (setting[0] == '#')
|
||||||
if (setting.Length < 1)
|
continue;
|
||||||
continue;
|
if (!setting.Contains("="))
|
||||||
if (setting[0] == '#')
|
continue;
|
||||||
continue;
|
|
||||||
if (!setting.Contains("="))
|
string[] dataPair = setting.Split('=');
|
||||||
continue;
|
|
||||||
|
string key = dataPair[0];
|
||||||
string[] dataPair = setting.Split('=');
|
string data = dataPair[1];
|
||||||
|
/*
|
||||||
string key = dataPair[0];
|
* Parse configuration file
|
||||||
string data = dataPair[1];
|
*/
|
||||||
/*
|
|
||||||
* Parse configuration file
|
switch (key)
|
||||||
*/
|
{
|
||||||
|
case "port":
|
||||||
switch (key)
|
Port = int.Parse(data);
|
||||||
{
|
break;
|
||||||
case "port":
|
case "ip":
|
||||||
Port = int.Parse(data);
|
BindIP = data;
|
||||||
break;
|
break;
|
||||||
case "ip":
|
case "db_ip":
|
||||||
BindIP = data;
|
DatabaseIP = data;
|
||||||
break;
|
break;
|
||||||
case "db_ip":
|
case "db_username":
|
||||||
DatabaseIP = data;
|
DatabaseUsername = data;
|
||||||
break;
|
break;
|
||||||
case "db_username":
|
case "db_password":
|
||||||
DatabaseUsername = data;
|
DatabasePassword = data;
|
||||||
break;
|
break;
|
||||||
case "db_password":
|
case "db_name":
|
||||||
DatabasePassword = data;
|
DatabaseName = data;
|
||||||
break;
|
break;
|
||||||
case "db_name":
|
case "db_port":
|
||||||
DatabaseName = data;
|
DatabasePort = int.Parse(data);
|
||||||
break;
|
break;
|
||||||
case "db_port":
|
case "map":
|
||||||
DatabasePort = int.Parse(data);
|
MapFile = data;
|
||||||
break;
|
break;
|
||||||
case "map":
|
case "motd":
|
||||||
MapFile = data;
|
Motd = data;
|
||||||
break;
|
break;
|
||||||
case "motd":
|
case "gamedata":
|
||||||
Motd = data;
|
GameDataFile = data;
|
||||||
break;
|
break;
|
||||||
case "gamedata":
|
case "crossdomain":
|
||||||
GameDataFile = data;
|
CrossDomainPolicyFile = data;
|
||||||
break;
|
break;
|
||||||
case "npc":
|
case "enable_corrections":
|
||||||
NpcDataFile = data;
|
BadWords = data == "true";
|
||||||
break;
|
break;
|
||||||
case "quest":
|
case "enable_word_filter":
|
||||||
QuestDataFile = data;
|
DoCorrections = data == "true";
|
||||||
break;
|
break;
|
||||||
case "crossdomain":
|
case "debug":
|
||||||
CrossDomainPolicyFile = data;
|
Debug = data == "true";
|
||||||
break;
|
break;
|
||||||
case "enable_corrections":
|
}
|
||||||
BadWords = data == "true";
|
|
||||||
break;
|
|
||||||
case "enable_word_filter":
|
|
||||||
DoCorrections = data == "true";
|
}
|
||||||
break;
|
|
||||||
case "debug":
|
|
||||||
Debug = data == "true";
|
}
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,38 +1,38 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace Horse_Isle_Server
|
namespace HISP.Server
|
||||||
{
|
{
|
||||||
class Converters
|
class Converters
|
||||||
{
|
{
|
||||||
// Thanks Stackoverflow (https://stackoverflow.com/questions/321370/how-can-i-convert-a-hex-string-to-a-byte-array)
|
// Thanks Stackoverflow (https://stackoverflow.com/questions/321370/how-can-i-convert-a-hex-string-to-a-byte-array)
|
||||||
private static int getHexVal(char hex)
|
private static int getHexVal(char hex)
|
||||||
{
|
{
|
||||||
int val = (int)hex;
|
int val = (int)hex;
|
||||||
//For uppercase A-F letters:
|
//For uppercase A-F letters:
|
||||||
//return val - (val < 58 ? 48 : 55);
|
//return val - (val < 58 ? 48 : 55);
|
||||||
//For lowercase a-f letters:
|
//For lowercase a-f letters:
|
||||||
//return val - (val < 58 ? 48 : 87);
|
//return val - (val < 58 ? 48 : 87);
|
||||||
//Or the two combined, but a bit slower:
|
//Or the two combined, but a bit slower:
|
||||||
return val - (val < 58 ? 48 : (val < 97 ? 55 : 87));
|
return val - (val < 58 ? 48 : (val < 97 ? 55 : 87));
|
||||||
}
|
}
|
||||||
public static byte[] StringToByteArray(string hex)
|
public static byte[] StringToByteArray(string hex)
|
||||||
{
|
{
|
||||||
if (hex.Length % 2 == 1)
|
if (hex.Length % 2 == 1)
|
||||||
throw new ArgumentException("The binary key cannot have an odd number of digits");
|
throw new ArgumentException("The binary key cannot have an odd number of digits");
|
||||||
|
|
||||||
byte[] arr = new byte[hex.Length >> 1];
|
byte[] arr = new byte[hex.Length >> 1];
|
||||||
|
|
||||||
for (int i = 0; i < hex.Length >> 1; ++i)
|
for (int i = 0; i < hex.Length >> 1; ++i)
|
||||||
{
|
{
|
||||||
arr[i] = (byte)((getHexVal(hex[i << 1]) << 4) + (getHexVal(hex[(i << 1) + 1])));
|
arr[i] = (byte)((getHexVal(hex[i << 1]) << 4) + (getHexVal(hex[(i << 1) + 1])));
|
||||||
}
|
}
|
||||||
|
|
||||||
return arr;
|
return arr;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
File diff suppressed because it is too large
Load diff
|
@ -1,235 +1,238 @@
|
||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Net.Sockets;
|
using System.Net.Sockets;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
namespace Horse_Isle_Server
|
using HISP.Player;
|
||||||
{
|
using HISP.Game;
|
||||||
class Client
|
|
||||||
{
|
namespace HISP.Server
|
||||||
public Socket ClientSocket;
|
{
|
||||||
public string RemoteIp;
|
class GameClient
|
||||||
|
{
|
||||||
public bool LoggedIn = false;
|
public Socket ClientSocket;
|
||||||
public User LoggedinUser;
|
public string RemoteIp;
|
||||||
|
|
||||||
private Thread recvPackets;
|
public bool LoggedIn = false;
|
||||||
|
public User LoggedinUser;
|
||||||
private Timer updateTimer;
|
|
||||||
private Timer inactivityTimer;
|
private Thread recvPackets;
|
||||||
|
|
||||||
private Timer warnTimer;
|
private Timer updateTimer;
|
||||||
private Timer kickTimer;
|
private Timer inactivityTimer;
|
||||||
|
|
||||||
|
private Timer warnTimer;
|
||||||
private int keepAliveInterval = 60 * 1000;
|
private Timer kickTimer;
|
||||||
private int updateInterval = 60 * 1000;
|
|
||||||
|
|
||||||
private int warnInterval = Server.IdleWarning * 60 * 1000;
|
private int keepAliveInterval = 60 * 1000;
|
||||||
private int kickInterval = Server.IdleTimeout * 60 * 1000;
|
private int updateInterval = 60 * 1000;
|
||||||
|
|
||||||
|
private int warnInterval = GameServer.IdleWarning * 60 * 1000;
|
||||||
private void keepAliveTimerTick(object state)
|
private int kickInterval = GameServer.IdleTimeout * 60 * 1000;
|
||||||
{
|
|
||||||
Logger.DebugPrint("Sending keep-alive packet to "+ LoggedinUser.Username);
|
|
||||||
byte[] updatePacket = PacketBuilder.CreateKeepAlive();
|
private void keepAliveTimerTick(object state)
|
||||||
SendPacket(updatePacket);
|
{
|
||||||
}
|
Logger.DebugPrint("Sending keep-alive packet to "+ LoggedinUser.Username);
|
||||||
|
byte[] updatePacket = PacketBuilder.CreateKeepAlive();
|
||||||
private void warnTimerTick(object state)
|
SendPacket(updatePacket);
|
||||||
{
|
}
|
||||||
Logger.DebugPrint("Sending inactivity warning to: " + RemoteIp);
|
|
||||||
byte[] chatPacket = PacketBuilder.CreateChat(Messages.FormatIdleWarningMessage(), PacketBuilder.CHAT_BOTTOM_RIGHT);
|
private void warnTimerTick(object state)
|
||||||
SendPacket(chatPacket);
|
{
|
||||||
}
|
Logger.DebugPrint("Sending inactivity warning to: " + RemoteIp);
|
||||||
|
byte[] chatPacket = PacketBuilder.CreateChat(Messages.FormatIdleWarningMessage(), PacketBuilder.CHAT_BOTTOM_RIGHT);
|
||||||
private void kickTimerTick(object state)
|
SendPacket(chatPacket);
|
||||||
{
|
}
|
||||||
Kick(Messages.FormatIdleKickMessage());
|
|
||||||
}
|
private void kickTimerTick(object state)
|
||||||
private void updateTimerTick(object state)
|
{
|
||||||
{
|
Kick(Messages.FormatIdleKickMessage());
|
||||||
Server.UpdateWorld(this);
|
}
|
||||||
Server.UpdatePlayer(this);
|
private void updateTimerTick(object state)
|
||||||
}
|
{
|
||||||
public void Login(int id)
|
GameServer.UpdateWorld(this);
|
||||||
{
|
GameServer.UpdatePlayer(this);
|
||||||
LoggedinUser = new User(this,id);
|
}
|
||||||
LoggedIn = true;
|
public void Login(int id)
|
||||||
|
{
|
||||||
updateTimer = new Timer(new TimerCallback(updateTimerTick), null, updateInterval, updateInterval);
|
LoggedinUser = new User(this,id);
|
||||||
inactivityTimer = new Timer(new TimerCallback(keepAliveTimerTick), null, keepAliveInterval, keepAliveInterval);
|
LoggedIn = true;
|
||||||
}
|
|
||||||
private void receivePackets()
|
updateTimer = new Timer(new TimerCallback(updateTimerTick), null, updateInterval, updateInterval);
|
||||||
{
|
inactivityTimer = new Timer(new TimerCallback(keepAliveTimerTick), null, keepAliveInterval, keepAliveInterval);
|
||||||
// HI1 Packets are terminates by 0x00 so we have to read until we receive that terminator
|
}
|
||||||
MemoryStream ms = new MemoryStream();
|
private void receivePackets()
|
||||||
|
{
|
||||||
while(ClientSocket.Connected)
|
// HI1 Packets are terminates by 0x00 so we have to read until we receive that terminator
|
||||||
{
|
MemoryStream ms = new MemoryStream();
|
||||||
try
|
|
||||||
{
|
while(ClientSocket.Connected)
|
||||||
if (ClientSocket.Available >= 1)
|
{
|
||||||
{
|
try
|
||||||
byte[] buffer = new byte[ClientSocket.Available];
|
{
|
||||||
ClientSocket.Receive(buffer);
|
if (ClientSocket.Available >= 1)
|
||||||
|
{
|
||||||
|
byte[] buffer = new byte[ClientSocket.Available];
|
||||||
foreach (Byte b in buffer)
|
ClientSocket.Receive(buffer);
|
||||||
{
|
|
||||||
ms.WriteByte(b);
|
|
||||||
if (b == 0x00)
|
foreach (Byte b in buffer)
|
||||||
{
|
{
|
||||||
ms.Seek(0x00, SeekOrigin.Begin);
|
ms.WriteByte(b);
|
||||||
byte[] fullPacket = ms.ToArray();
|
if (b == 0x00)
|
||||||
parsePackets(fullPacket);
|
{
|
||||||
|
ms.Seek(0x00, SeekOrigin.Begin);
|
||||||
ms.Close();
|
byte[] fullPacket = ms.ToArray();
|
||||||
ms = new MemoryStream();
|
parsePackets(fullPacket);
|
||||||
}
|
|
||||||
}
|
ms.Close();
|
||||||
|
ms = new MemoryStream();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(SocketException e)
|
|
||||||
{
|
}
|
||||||
Logger.ErrorPrint("Socket exception occured: " + e.Message);
|
}
|
||||||
Disconnect();
|
catch(SocketException e)
|
||||||
break;
|
{
|
||||||
}
|
Logger.ErrorPrint("Socket exception occured: " + e.Message);
|
||||||
|
Disconnect();
|
||||||
}
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void parsePackets(byte[] Packet)
|
|
||||||
{
|
}
|
||||||
if (Packet.Length < 1)
|
|
||||||
{
|
private void parsePackets(byte[] Packet)
|
||||||
Logger.ErrorPrint("Received an invalid packet (size: "+Packet.Length+")");
|
{
|
||||||
}
|
if (Packet.Length < 1)
|
||||||
byte identifier = Packet[0];
|
{
|
||||||
|
Logger.ErrorPrint("Received an invalid packet (size: "+Packet.Length+")");
|
||||||
// Reset timers
|
}
|
||||||
if (inactivityTimer != null && identifier != PacketBuilder.PACKET_KEEP_ALIVE)
|
byte identifier = Packet[0];
|
||||||
inactivityTimer.Change(keepAliveInterval, keepAliveInterval);
|
|
||||||
|
// Reset timers
|
||||||
|
if (inactivityTimer != null && identifier != PacketBuilder.PACKET_KEEP_ALIVE)
|
||||||
if (kickTimer != null && identifier != PacketBuilder.PACKET_KEEP_ALIVE)
|
inactivityTimer.Change(keepAliveInterval, keepAliveInterval);
|
||||||
kickTimer.Change(kickInterval, kickInterval);
|
|
||||||
|
|
||||||
if (warnTimer != null && identifier != PacketBuilder.PACKET_KEEP_ALIVE)
|
if (kickTimer != null && identifier != PacketBuilder.PACKET_KEEP_ALIVE)
|
||||||
warnTimer.Change(warnInterval, warnInterval);
|
kickTimer.Change(kickInterval, kickInterval);
|
||||||
|
|
||||||
if (!LoggedIn) // Must be either login or policy-file-request
|
if (warnTimer != null && identifier != PacketBuilder.PACKET_KEEP_ALIVE)
|
||||||
{
|
warnTimer.Change(warnInterval, warnInterval);
|
||||||
if (Encoding.UTF8.GetString(Packet).StartsWith("<policy-file-request/>")) // Policy File Request
|
|
||||||
{
|
if (!LoggedIn) // Must be either login or policy-file-request
|
||||||
Server.OnCrossdomainPolicyRequest(this);
|
{
|
||||||
}
|
if (Encoding.UTF8.GetString(Packet).StartsWith("<policy-file-request/>")) // Policy File Request
|
||||||
switch (identifier)
|
{
|
||||||
{
|
GameServer.OnCrossdomainPolicyRequest(this);
|
||||||
case PacketBuilder.PACKET_LOGIN:
|
}
|
||||||
Server.OnLoginRequest(this, Packet);
|
switch (identifier)
|
||||||
break;
|
{
|
||||||
}
|
case PacketBuilder.PACKET_LOGIN:
|
||||||
}
|
GameServer.OnLoginRequest(this, Packet);
|
||||||
else
|
break;
|
||||||
{
|
}
|
||||||
switch (identifier)
|
}
|
||||||
{
|
else
|
||||||
case PacketBuilder.PACKET_LOGIN:
|
{
|
||||||
Server.OnUserInfoRequest(this, Packet);
|
switch (identifier)
|
||||||
break;
|
{
|
||||||
case PacketBuilder.PACKET_MOVE:
|
case PacketBuilder.PACKET_LOGIN:
|
||||||
Server.OnMovementPacket(this, Packet);
|
GameServer.OnUserInfoRequest(this, Packet);
|
||||||
break;
|
break;
|
||||||
case PacketBuilder.PACKET_PROFILE:
|
case PacketBuilder.PACKET_MOVE:
|
||||||
Server.OnProfilePacket(this, Packet);
|
GameServer.OnMovementPacket(this, Packet);
|
||||||
break;
|
break;
|
||||||
case PacketBuilder.PACKET_CHAT:
|
case PacketBuilder.PACKET_PROFILE:
|
||||||
Server.OnChatPacket(this, Packet);
|
GameServer.OnProfilePacket(this, Packet);
|
||||||
break;
|
break;
|
||||||
case PacketBuilder.PACKET_KEEP_ALIVE:
|
case PacketBuilder.PACKET_CHAT:
|
||||||
Server.OnKeepAlive(this, Packet);
|
GameServer.OnChatPacket(this, Packet);
|
||||||
break;
|
break;
|
||||||
case PacketBuilder.PACKET_TRANSPORT:
|
case PacketBuilder.PACKET_KEEP_ALIVE:
|
||||||
Server.OnTransportUsed(this, Packet);
|
GameServer.OnKeepAlive(this, Packet);
|
||||||
break;
|
break;
|
||||||
case PacketBuilder.PACKET_INVENTORY:
|
case PacketBuilder.PACKET_TRANSPORT:
|
||||||
Server.OnInventoryRequested(this, Packet);
|
GameServer.OnTransportUsed(this, Packet);
|
||||||
break;
|
break;
|
||||||
case PacketBuilder.PACKET_ITEM_INTERACTION:
|
case PacketBuilder.PACKET_INVENTORY:
|
||||||
Server.OnItemInteraction(this,Packet);
|
GameServer.OnInventoryRequested(this, Packet);
|
||||||
break;
|
break;
|
||||||
case PacketBuilder.PACKET_NPC:
|
case PacketBuilder.PACKET_ITEM_INTERACTION:
|
||||||
Server.OnNpcInteraction(this, Packet);
|
GameServer.OnItemInteraction(this,Packet);
|
||||||
break;
|
break;
|
||||||
default:
|
case PacketBuilder.PACKET_NPC:
|
||||||
Logger.ErrorPrint("Unimplemented Packet: " + BitConverter.ToString(Packet).Replace('-', ' '));
|
GameServer.OnNpcInteraction(this, Packet);
|
||||||
break;
|
break;
|
||||||
}
|
default:
|
||||||
}
|
Logger.ErrorPrint("Unimplemented Packet: " + BitConverter.ToString(Packet).Replace('-', ' '));
|
||||||
}
|
break;
|
||||||
|
}
|
||||||
public void Disconnect()
|
}
|
||||||
{
|
}
|
||||||
Logger.DebugPrint(ClientSocket.RemoteEndPoint + " has Disconnected.");
|
|
||||||
recvPackets.Abort();
|
public void Disconnect()
|
||||||
if(updateTimer != null)
|
{
|
||||||
updateTimer.Dispose();
|
Logger.DebugPrint(ClientSocket.RemoteEndPoint + " has Disconnected.");
|
||||||
if(inactivityTimer != null)
|
recvPackets.Abort();
|
||||||
inactivityTimer.Dispose();
|
if(updateTimer != null)
|
||||||
if(warnTimer != null)
|
updateTimer.Dispose();
|
||||||
warnTimer.Dispose();
|
if(inactivityTimer != null)
|
||||||
if(kickTimer != null)
|
inactivityTimer.Dispose();
|
||||||
kickTimer.Dispose();
|
if(warnTimer != null)
|
||||||
|
warnTimer.Dispose();
|
||||||
Server.OnDisconnect(this);
|
if(kickTimer != null)
|
||||||
LoggedIn = false;
|
kickTimer.Dispose();
|
||||||
LoggedinUser = null;
|
|
||||||
ClientSocket.Close();
|
GameServer.OnDisconnect(this);
|
||||||
ClientSocket.Dispose();
|
LoggedIn = false;
|
||||||
}
|
LoggedinUser = null;
|
||||||
|
ClientSocket.Close();
|
||||||
public void Kick(string Reason)
|
ClientSocket.Dispose();
|
||||||
{
|
}
|
||||||
byte[] kickPacket = PacketBuilder.CreateKickMessage(Reason);
|
|
||||||
SendPacket(kickPacket);
|
public void Kick(string Reason)
|
||||||
Disconnect();
|
{
|
||||||
|
byte[] kickPacket = PacketBuilder.CreateKickMessage(Reason);
|
||||||
Logger.InfoPrint("CLIENT: "+RemoteIp+" KICKED for: "+Reason);
|
SendPacket(kickPacket);
|
||||||
}
|
Disconnect();
|
||||||
|
|
||||||
public void SendPacket(byte[] PacketData)
|
Logger.InfoPrint("CLIENT: "+RemoteIp+" KICKED for: "+Reason);
|
||||||
{
|
}
|
||||||
try
|
|
||||||
{
|
public void SendPacket(byte[] PacketData)
|
||||||
ClientSocket.Send(PacketData);
|
{
|
||||||
}
|
try
|
||||||
catch (Exception e)
|
{
|
||||||
{
|
ClientSocket.Send(PacketData);
|
||||||
Logger.ErrorPrint("Exception occured: " + e.Message);
|
}
|
||||||
Disconnect();
|
catch (Exception e)
|
||||||
}
|
{
|
||||||
}
|
Logger.ErrorPrint("Exception occured: " + e.Message);
|
||||||
|
Disconnect();
|
||||||
public Client(Socket clientSocket)
|
}
|
||||||
{
|
}
|
||||||
ClientSocket = clientSocket;
|
|
||||||
RemoteIp = clientSocket.RemoteEndPoint.ToString();
|
public GameClient(Socket clientSocket)
|
||||||
|
{
|
||||||
Logger.DebugPrint("Client connected @ " + RemoteIp);
|
ClientSocket = clientSocket;
|
||||||
|
RemoteIp = clientSocket.RemoteEndPoint.ToString();
|
||||||
kickTimer = new Timer(new TimerCallback(kickTimerTick), null, kickInterval, kickInterval);
|
|
||||||
warnTimer = new Timer(new TimerCallback(warnTimerTick), null, warnInterval, warnInterval);
|
Logger.DebugPrint("Client connected @ " + RemoteIp);
|
||||||
|
|
||||||
recvPackets = new Thread(() =>
|
kickTimer = new Timer(new TimerCallback(kickTimerTick), null, kickInterval, kickInterval);
|
||||||
{
|
warnTimer = new Timer(new TimerCallback(warnTimerTick), null, warnInterval, warnInterval);
|
||||||
receivePackets();
|
|
||||||
});
|
recvPackets = new Thread(() =>
|
||||||
recvPackets.Start();
|
{
|
||||||
}
|
receivePackets();
|
||||||
}
|
});
|
||||||
}
|
recvPackets.Start();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
File diff suppressed because it is too large
Load diff
|
@ -1,416 +1,499 @@
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
using HISP.Game;
|
||||||
namespace Horse_Isle_Server
|
|
||||||
{
|
namespace HISP.Server
|
||||||
class Gamedata
|
{
|
||||||
{
|
class Gamedata
|
||||||
|
{
|
||||||
public static void ReadGamedata()
|
|
||||||
{
|
public static void ReadGamedata()
|
||||||
if(!File.Exists(ConfigReader.GameDataFile))
|
{
|
||||||
{
|
if(!File.Exists(ConfigReader.GameDataFile))
|
||||||
Logger.ErrorPrint("Game Data JSON File: " + ConfigReader.GameDataFile + " Does not exist!");
|
{
|
||||||
return;
|
Logger.ErrorPrint("Game Data JSON File: " + ConfigReader.GameDataFile + " Does not exist!");
|
||||||
}
|
return;
|
||||||
string jsonData = File.ReadAllText(ConfigReader.GameDataFile);
|
}
|
||||||
dynamic gameData = JsonConvert.DeserializeObject(jsonData);
|
string jsonData = File.ReadAllText(ConfigReader.GameDataFile);
|
||||||
|
dynamic gameData = JsonConvert.DeserializeObject(jsonData);
|
||||||
// Register Towns
|
|
||||||
int totalTowns = gameData.places.towns.Count;
|
// Register Towns
|
||||||
for (int i = 0; i < totalTowns; i++)
|
int totalTowns = gameData.places.towns.Count;
|
||||||
{
|
for (int i = 0; i < totalTowns; i++)
|
||||||
|
{
|
||||||
World.Town town = new World.Town();
|
|
||||||
town.StartX = gameData.places.towns[i].start_x;
|
World.Town town = new World.Town();
|
||||||
town.StartY = gameData.places.towns[i].start_y;
|
town.StartX = gameData.places.towns[i].start_x;
|
||||||
town.EndX = gameData.places.towns[i].end_x;
|
town.StartY = gameData.places.towns[i].start_y;
|
||||||
town.EndY = gameData.places.towns[i].end_y;
|
town.EndX = gameData.places.towns[i].end_x;
|
||||||
town.Name = gameData.places.towns[i].name;
|
town.EndY = gameData.places.towns[i].end_y;
|
||||||
|
town.Name = gameData.places.towns[i].name;
|
||||||
Logger.DebugPrint("Registered Town: " + town.Name + " X " + town.StartX + "-" + town.EndX + " Y " + town.StartY + "-" + town.EndY);
|
|
||||||
World.Towns.Add(town);
|
Logger.DebugPrint("Registered Town: " + town.Name + " X " + town.StartX + "-" + town.EndX + " Y " + town.StartY + "-" + town.EndY);
|
||||||
}
|
World.Towns.Add(town);
|
||||||
|
}
|
||||||
// Register Areas
|
|
||||||
int totalAreas = gameData.places.towns.Count;
|
// Register Areas
|
||||||
for (int i = 0; i < totalAreas; i++)
|
int totalAreas = gameData.places.towns.Count;
|
||||||
{
|
for (int i = 0; i < totalAreas; i++)
|
||||||
|
{
|
||||||
World.Area area = new World.Area();
|
|
||||||
area.StartX = gameData.places.areas[i].start_x;
|
World.Area area = new World.Area();
|
||||||
area.StartY = gameData.places.areas[i].start_y;
|
area.StartX = gameData.places.areas[i].start_x;
|
||||||
area.EndX = gameData.places.areas[i].end_x;
|
area.StartY = gameData.places.areas[i].start_y;
|
||||||
area.EndY = gameData.places.areas[i].end_y;
|
area.EndX = gameData.places.areas[i].end_x;
|
||||||
area.Name = gameData.places.areas[i].name;
|
area.EndY = gameData.places.areas[i].end_y;
|
||||||
|
area.Name = gameData.places.areas[i].name;
|
||||||
Logger.DebugPrint("Registered Area: " + area.Name + " X " + area.StartX + "-" + area.EndX + " Y " + area.StartY + "-" + area.EndY);
|
|
||||||
World.Areas.Add(area);
|
Logger.DebugPrint("Registered Area: " + area.Name + " X " + area.StartX + "-" + area.EndX + " Y " + area.StartY + "-" + area.EndY);
|
||||||
}
|
World.Areas.Add(area);
|
||||||
|
}
|
||||||
// Register Isles
|
|
||||||
int totalIsles = gameData.places.isles.Count;
|
// Register Isles
|
||||||
for(int i = 0; i < totalIsles; i++)
|
int totalIsles = gameData.places.isles.Count;
|
||||||
{
|
for(int i = 0; i < totalIsles; i++)
|
||||||
|
{
|
||||||
World.Isle isle = new World.Isle();
|
|
||||||
isle.StartX = gameData.places.isles[i].start_x;
|
World.Isle isle = new World.Isle();
|
||||||
isle.StartY = gameData.places.isles[i].start_y;
|
isle.StartX = gameData.places.isles[i].start_x;
|
||||||
isle.EndX = gameData.places.isles[i].end_x;
|
isle.StartY = gameData.places.isles[i].start_y;
|
||||||
isle.EndY = gameData.places.isles[i].end_y;
|
isle.EndX = gameData.places.isles[i].end_x;
|
||||||
isle.Tileset = gameData.places.isles[i].tileset;
|
isle.EndY = gameData.places.isles[i].end_y;
|
||||||
isle.Name = gameData.places.isles[i].name;
|
isle.Tileset = gameData.places.isles[i].tileset;
|
||||||
|
isle.Name = gameData.places.isles[i].name;
|
||||||
Logger.DebugPrint("Registered Isle: " + isle.Name + " X " + isle.StartX + "-" + isle.EndX + " Y " + isle.StartY + "-" + isle.EndY + " tileset: " + isle.Tileset);
|
|
||||||
World.Isles.Add(isle);
|
Logger.DebugPrint("Registered Isle: " + isle.Name + " X " + isle.StartX + "-" + isle.EndX + " Y " + isle.StartY + "-" + isle.EndY + " tileset: " + isle.Tileset);
|
||||||
}
|
World.Isles.Add(isle);
|
||||||
|
}
|
||||||
// Register Special Tiles
|
|
||||||
int totalSpecialTiles = gameData.places.special_tiles.Count;
|
// Register Special Tiles
|
||||||
for (int i = 0; i < totalSpecialTiles; i++)
|
int totalSpecialTiles = gameData.places.special_tiles.Count;
|
||||||
{
|
for (int i = 0; i < totalSpecialTiles; i++)
|
||||||
|
{
|
||||||
World.SpecialTile specialTile = new World.SpecialTile();
|
|
||||||
specialTile.X = gameData.places.special_tiles[i].x;
|
World.SpecialTile specialTile = new World.SpecialTile();
|
||||||
specialTile.Y = gameData.places.special_tiles[i].y;
|
specialTile.X = gameData.places.special_tiles[i].x;
|
||||||
specialTile.Title = gameData.places.special_tiles[i].title;
|
specialTile.Y = gameData.places.special_tiles[i].y;
|
||||||
specialTile.Description = gameData.places.special_tiles[i].description;
|
specialTile.Title = gameData.places.special_tiles[i].title;
|
||||||
specialTile.Code = gameData.places.special_tiles[i].code;
|
specialTile.Description = gameData.places.special_tiles[i].description;
|
||||||
if(gameData.places.special_tiles[i].exit_x != null)
|
specialTile.Code = gameData.places.special_tiles[i].code;
|
||||||
specialTile.ExitX = gameData.places.special_tiles[i].exit_x;
|
if(gameData.places.special_tiles[i].exit_x != null)
|
||||||
if(gameData.places.special_tiles[i].exit_x != null)
|
specialTile.ExitX = gameData.places.special_tiles[i].exit_x;
|
||||||
specialTile.ExitY = gameData.places.special_tiles[i].exit_y;
|
if(gameData.places.special_tiles[i].exit_x != null)
|
||||||
specialTile.AutoplaySwf = gameData.places.special_tiles[i].autoplay_swf;
|
specialTile.ExitY = gameData.places.special_tiles[i].exit_y;
|
||||||
specialTile.TypeFlag = gameData.places.special_tiles[i].type_flag;
|
specialTile.AutoplaySwf = gameData.places.special_tiles[i].autoplay_swf;
|
||||||
|
specialTile.TypeFlag = gameData.places.special_tiles[i].type_flag;
|
||||||
Logger.DebugPrint("Registered Special Tile: " + specialTile.Title + " X " + specialTile.X + " Y: " + specialTile.Y);
|
|
||||||
World.SpecialTiles.Add(specialTile);
|
Logger.DebugPrint("Registered Special Tile: " + specialTile.Title + " X " + specialTile.X + " Y: " + specialTile.Y);
|
||||||
}
|
World.SpecialTiles.Add(specialTile);
|
||||||
|
}
|
||||||
// Register Filter Reasons
|
|
||||||
int totalReasons = gameData.messages.chat.reason_messages.Count;
|
// Register Filter Reasons
|
||||||
for(int i = 0; i < totalReasons; i++)
|
int totalReasons = gameData.messages.chat.reason_messages.Count;
|
||||||
{
|
for(int i = 0; i < totalReasons; i++)
|
||||||
Chat.Reason reason = new Chat.Reason();
|
{
|
||||||
reason.Name = gameData.messages.chat.reason_messages[i].name;
|
Chat.Reason reason = new Chat.Reason();
|
||||||
reason.Message = gameData.messages.chat.reason_messages[i].message;
|
reason.Name = gameData.messages.chat.reason_messages[i].name;
|
||||||
Chat.Reasons.Add(reason);
|
reason.Message = gameData.messages.chat.reason_messages[i].message;
|
||||||
|
Chat.Reasons.Add(reason);
|
||||||
Logger.DebugPrint("Registered Chat Warning Reason: " + reason.Name + " (Message: " + reason.Message + ")");
|
|
||||||
}
|
Logger.DebugPrint("Registered Chat Warning Reason: " + reason.Name + " (Message: " + reason.Message + ")");
|
||||||
// Register Filters
|
}
|
||||||
|
// Register Filters
|
||||||
int totalFilters = gameData.messages.chat.filter.Count;
|
|
||||||
for(int i = 0; i < totalFilters; i++)
|
int totalFilters = gameData.messages.chat.filter.Count;
|
||||||
{
|
for(int i = 0; i < totalFilters; i++)
|
||||||
Chat.Filter filter = new Chat.Filter();
|
{
|
||||||
filter.FilteredWord = gameData.messages.chat.filter[i].word;
|
Chat.Filter filter = new Chat.Filter();
|
||||||
filter.MatchAll = gameData.messages.chat.filter[i].match_all;
|
filter.FilteredWord = gameData.messages.chat.filter[i].word;
|
||||||
filter.Reason = Chat.GetReason((string)gameData.messages.chat.filter[i].reason_type);
|
filter.MatchAll = gameData.messages.chat.filter[i].match_all;
|
||||||
Chat.FilteredWords.Add(filter);
|
filter.Reason = Chat.GetReason((string)gameData.messages.chat.filter[i].reason_type);
|
||||||
|
Chat.FilteredWords.Add(filter);
|
||||||
Logger.DebugPrint("Registered Filtered Word: " + filter.FilteredWord + " With reason: "+filter.Reason.Name+" (Matching all: " + filter.MatchAll + ")");
|
|
||||||
}
|
Logger.DebugPrint("Registered Filtered Word: " + filter.FilteredWord + " With reason: "+filter.Reason.Name+" (Matching all: " + filter.MatchAll + ")");
|
||||||
|
}
|
||||||
// Register Corrections
|
|
||||||
int totalCorrections = gameData.messages.chat.correct.Count;
|
// Register Corrections
|
||||||
for (int i = 0; i < totalCorrections; i++)
|
int totalCorrections = gameData.messages.chat.correct.Count;
|
||||||
{
|
for (int i = 0; i < totalCorrections; i++)
|
||||||
Chat.Correction correction = new Chat.Correction();
|
{
|
||||||
correction.FilteredWord = gameData.messages.chat.correct[i].word;
|
Chat.Correction correction = new Chat.Correction();
|
||||||
correction.ReplacedWord = gameData.messages.chat.correct[i].new_word;
|
correction.FilteredWord = gameData.messages.chat.correct[i].word;
|
||||||
Chat.CorrectedWords.Add(correction);
|
correction.ReplacedWord = gameData.messages.chat.correct[i].new_word;
|
||||||
|
Chat.CorrectedWords.Add(correction);
|
||||||
Logger.DebugPrint("Registered Word Correction: " + correction.FilteredWord + " to "+correction.ReplacedWord);
|
|
||||||
}
|
Logger.DebugPrint("Registered Word Correction: " + correction.FilteredWord + " to "+correction.ReplacedWord);
|
||||||
|
}
|
||||||
// Register Transports
|
|
||||||
|
// Register Transports
|
||||||
int totalTransportPoints = gameData.transport.transport_points.Count;
|
|
||||||
for (int i = 0; i < totalTransportPoints; i++)
|
int totalTransportPoints = gameData.transport.transport_points.Count;
|
||||||
{
|
for (int i = 0; i < totalTransportPoints; i++)
|
||||||
Transport.TransportPoint transportPoint = new Transport.TransportPoint();
|
{
|
||||||
transportPoint.X = gameData.transport.transport_points[i].x;
|
Transport.TransportPoint transportPoint = new Transport.TransportPoint();
|
||||||
transportPoint.Y = gameData.transport.transport_points[i].y;
|
transportPoint.X = gameData.transport.transport_points[i].x;
|
||||||
transportPoint.Locations = gameData.transport.transport_points[i].places.ToObject<int[]>();
|
transportPoint.Y = gameData.transport.transport_points[i].y;
|
||||||
Transport.TransportPoints.Add(transportPoint);
|
transportPoint.Locations = gameData.transport.transport_points[i].places.ToObject<int[]>();
|
||||||
|
Transport.TransportPoints.Add(transportPoint);
|
||||||
Logger.DebugPrint("Registered Transport Point: At X: " + transportPoint.X + " Y: " + transportPoint.Y);
|
|
||||||
}
|
Logger.DebugPrint("Registered Transport Point: At X: " + transportPoint.X + " Y: " + transportPoint.Y);
|
||||||
|
}
|
||||||
int totalTransportPlaces = gameData.transport.transport_places.Count;
|
|
||||||
for (int i = 0; i < totalTransportPlaces; i++)
|
int totalTransportPlaces = gameData.transport.transport_places.Count;
|
||||||
{
|
for (int i = 0; i < totalTransportPlaces; i++)
|
||||||
Transport.TransportLocation transportPlace = new Transport.TransportLocation();
|
{
|
||||||
transportPlace.Id = gameData.transport.transport_places[i].id;
|
Transport.TransportLocation transportPlace = new Transport.TransportLocation();
|
||||||
transportPlace.Cost = gameData.transport.transport_places[i].cost;
|
transportPlace.Id = gameData.transport.transport_places[i].id;
|
||||||
transportPlace.GotoX = gameData.transport.transport_places[i].goto_x;
|
transportPlace.Cost = gameData.transport.transport_places[i].cost;
|
||||||
transportPlace.GotoY = gameData.transport.transport_places[i].goto_y;
|
transportPlace.GotoX = gameData.transport.transport_places[i].goto_x;
|
||||||
transportPlace.Type = gameData.transport.transport_places[i].type;
|
transportPlace.GotoY = gameData.transport.transport_places[i].goto_y;
|
||||||
transportPlace.LocationTitle = gameData.transport.transport_places[i].place_title;
|
transportPlace.Type = gameData.transport.transport_places[i].type;
|
||||||
Transport.TransportLocations.Add(transportPlace);
|
transportPlace.LocationTitle = gameData.transport.transport_places[i].place_title;
|
||||||
|
Transport.TransportLocations.Add(transportPlace);
|
||||||
Logger.DebugPrint("Registered Transport Location: "+ transportPlace.LocationTitle+" To Goto X: " + transportPlace.GotoX + " Y: " + transportPlace.GotoY);
|
|
||||||
}
|
Logger.DebugPrint("Registered Transport Location: "+ transportPlace.LocationTitle+" To Goto X: " + transportPlace.GotoX + " Y: " + transportPlace.GotoY);
|
||||||
|
}
|
||||||
// Register Items
|
|
||||||
int totalItems = gameData.item.item_list.Count;
|
// Register Items
|
||||||
for (int i = 0; i < totalItems; i++)
|
int totalItems = gameData.item.item_list.Count;
|
||||||
{
|
for (int i = 0; i < totalItems; i++)
|
||||||
Item.ItemInformation item = new Item.ItemInformation();
|
{
|
||||||
item.Id = gameData.item.item_list[i].id;
|
Item.ItemInformation item = new Item.ItemInformation();
|
||||||
item.Name = gameData.item.item_list[i].name;
|
item.Id = gameData.item.item_list[i].id;
|
||||||
item.PluralName = gameData.item.item_list[i].plural_name;
|
item.Name = gameData.item.item_list[i].name;
|
||||||
item.Description = gameData.item.item_list[i].description;
|
item.PluralName = gameData.item.item_list[i].plural_name;
|
||||||
item.IconId = gameData.item.item_list[i].icon_id;
|
item.Description = gameData.item.item_list[i].description;
|
||||||
item.SortBy = gameData.item.item_list[i].sort_by;
|
item.IconId = gameData.item.item_list[i].icon_id;
|
||||||
item.SellPrice = gameData.item.item_list[i].sell_price;
|
item.SortBy = gameData.item.item_list[i].sort_by;
|
||||||
item.EmbedSwf = gameData.item.item_list[i].embed_swf;
|
item.SellPrice = gameData.item.item_list[i].sell_price;
|
||||||
item.WishingWell = gameData.item.item_list[i].wishing_well;
|
item.EmbedSwf = gameData.item.item_list[i].embed_swf;
|
||||||
item.Type = gameData.item.item_list[i].type;
|
item.WishingWell = gameData.item.item_list[i].wishing_well;
|
||||||
item.MiscFlags = gameData.item.item_list[i].misc_flags.ToObject<int[]>();
|
item.Type = gameData.item.item_list[i].type;
|
||||||
int effectsCount = gameData.item.item_list[i].effects.Count;
|
item.MiscFlags = gameData.item.item_list[i].misc_flags.ToObject<int[]>();
|
||||||
|
int effectsCount = gameData.item.item_list[i].effects.Count;
|
||||||
Item.Effects[] effectsList = new Item.Effects[effectsCount];
|
|
||||||
for(int ii = 0; ii < effectsCount; ii++)
|
Item.Effects[] effectsList = new Item.Effects[effectsCount];
|
||||||
{
|
for(int ii = 0; ii < effectsCount; ii++)
|
||||||
effectsList[ii] = new Item.Effects();
|
{
|
||||||
effectsList[ii].EffectsWhat = gameData.item.item_list[i].effects[ii].effect_what;
|
effectsList[ii] = new Item.Effects();
|
||||||
effectsList[ii].EffectsWhat = gameData.item.item_list[i].effects[ii].effect_amount;
|
effectsList[ii].EffectsWhat = gameData.item.item_list[i].effects[ii].effect_what;
|
||||||
}
|
effectsList[ii].EffectAmount = gameData.item.item_list[i].effects[ii].effect_amount;
|
||||||
|
}
|
||||||
item.Effects = effectsList;
|
|
||||||
item.SpawnParamaters = new Item.SpawnRules();
|
item.Effects = effectsList;
|
||||||
item.SpawnParamaters.SpawnCap = gameData.item.item_list[i].spawn_parameters.spawn_cap;
|
item.SpawnParamaters = new Item.SpawnRules();
|
||||||
item.SpawnParamaters.SpawnInArea = gameData.item.item_list[i].spawn_parameters.spawn_in_area;
|
item.SpawnParamaters.SpawnCap = gameData.item.item_list[i].spawn_parameters.spawn_cap;
|
||||||
item.SpawnParamaters.SpawnOnTileType = gameData.item.item_list[i].spawn_parameters.spawn_on_tile_type;
|
item.SpawnParamaters.SpawnInArea = gameData.item.item_list[i].spawn_parameters.spawn_in_area;
|
||||||
item.SpawnParamaters.SpawnOnSpecialTile = gameData.item.item_list[i].spawn_parameters.spawn_on_special_tile;
|
item.SpawnParamaters.SpawnOnTileType = gameData.item.item_list[i].spawn_parameters.spawn_on_tile_type;
|
||||||
item.SpawnParamaters.SpawnNearSpecialTile = gameData.item.item_list[i].spawn_parameters.spawn_near_special_tile;
|
item.SpawnParamaters.SpawnOnSpecialTile = gameData.item.item_list[i].spawn_parameters.spawn_on_special_tile;
|
||||||
|
item.SpawnParamaters.SpawnNearSpecialTile = gameData.item.item_list[i].spawn_parameters.spawn_near_special_tile;
|
||||||
Logger.DebugPrint("Registered Item ID: " + item.Id + " Name: " + item.Name + " spawns on: "+item.SpawnParamaters.SpawnOnTileType);
|
|
||||||
Item.Items.Add(item);
|
Logger.DebugPrint("Registered Item ID: " + item.Id + " Name: " + item.Name + " spawns on: "+item.SpawnParamaters.SpawnOnTileType);
|
||||||
}
|
Item.Items.Add(item);
|
||||||
|
}
|
||||||
int totalThrowable = gameData.item.throwable.Count;
|
|
||||||
for(int i = 0; i < totalThrowable; i++)
|
int totalThrowable = gameData.item.throwable.Count;
|
||||||
{
|
for(int i = 0; i < totalThrowable; i++)
|
||||||
Item.ThrowableItem throwableItem = new Item.ThrowableItem();
|
{
|
||||||
throwableItem.Id = gameData.item.throwable[i].id;
|
Item.ThrowableItem throwableItem = new Item.ThrowableItem();
|
||||||
throwableItem.Message = gameData.item.throwable[i].message;
|
throwableItem.Id = gameData.item.throwable[i].id;
|
||||||
Item.ThrowableItems.Add(throwableItem);
|
throwableItem.Message = gameData.item.throwable[i].message;
|
||||||
}
|
Item.ThrowableItems.Add(throwableItem);
|
||||||
|
}
|
||||||
// Register NPCs
|
|
||||||
Logger.DebugPrint("Registering NPCS: ");
|
// Register NPCs
|
||||||
int totalNpcs = gameData.npc_list.Count;
|
Logger.DebugPrint("Registering NPCS: ");
|
||||||
for(int i = 0; i < totalNpcs; i++)
|
int totalNpcs = gameData.npc_list.Count;
|
||||||
{
|
for(int i = 0; i < totalNpcs; i++)
|
||||||
Npc.NpcEntry npcEntry = new Npc.NpcEntry();
|
{
|
||||||
npcEntry.Id = gameData.npc_list[i].id;
|
Npc.NpcEntry npcEntry = new Npc.NpcEntry();
|
||||||
npcEntry.Name = gameData.npc_list[i].name;
|
npcEntry.Id = gameData.npc_list[i].id;
|
||||||
npcEntry.AdminDescription = gameData.npc_list[i].admin_description;
|
npcEntry.Name = gameData.npc_list[i].name;
|
||||||
npcEntry.ShortDescription = gameData.npc_list[i].short_description;
|
npcEntry.AdminDescription = gameData.npc_list[i].admin_description;
|
||||||
npcEntry.LongDescription = gameData.npc_list[i].long_description;
|
npcEntry.ShortDescription = gameData.npc_list[i].short_description;
|
||||||
npcEntry.Moves = gameData.npc_list[i].moves;
|
npcEntry.LongDescription = gameData.npc_list[i].long_description;
|
||||||
npcEntry.X = gameData.npc_list[i].x;
|
npcEntry.Moves = gameData.npc_list[i].moves;
|
||||||
npcEntry.Y = gameData.npc_list[i].y;
|
npcEntry.X = gameData.npc_list[i].x;
|
||||||
if (gameData.npc_list[i].stay_on != null)
|
npcEntry.Y = gameData.npc_list[i].y;
|
||||||
npcEntry.StayOn = gameData.npc_list[i].stay_on;
|
if (gameData.npc_list[i].stay_on != null)
|
||||||
if (gameData.npc_list[i].requires_questid_completed != null)
|
npcEntry.StayOn = gameData.npc_list[i].stay_on;
|
||||||
npcEntry.RequiresQuestIdCompleted = gameData.npc_list[i].requires_questid_completed;
|
if (gameData.npc_list[i].requires_questid_completed != null)
|
||||||
if (gameData.npc_list[i].requires_questid_not_completed != null)
|
npcEntry.RequiresQuestIdCompleted = gameData.npc_list[i].requires_questid_completed;
|
||||||
npcEntry.RequiresQuestIdNotCompleted = gameData.npc_list[i].requires_questid_not_completed;
|
if (gameData.npc_list[i].requires_questid_not_completed != null)
|
||||||
if (gameData.npc_list[i].udlr_script != null)
|
npcEntry.RequiresQuestIdNotCompleted = gameData.npc_list[i].requires_questid_not_completed;
|
||||||
npcEntry.UDLRScript = gameData.npc_list[i].udlr_script;
|
if (gameData.npc_list[i].udlr_script != null)
|
||||||
if (gameData.npc_list[i].udlr_start_x != null)
|
npcEntry.UDLRScript = gameData.npc_list[i].udlr_script;
|
||||||
npcEntry.UDLRStartX = gameData.npc_list[i].udlr_start_x;
|
if (gameData.npc_list[i].udlr_start_x != null)
|
||||||
if (gameData.npc_list[i].udlr_start_y != null)
|
npcEntry.UDLRStartX = gameData.npc_list[i].udlr_start_x;
|
||||||
npcEntry.UDLRStartY = gameData.npc_list[i].udlr_start_y;
|
if (gameData.npc_list[i].udlr_start_y != null)
|
||||||
npcEntry.AdminOnly = gameData.npc_list[i].admin_only;
|
npcEntry.UDLRStartY = gameData.npc_list[i].udlr_start_y;
|
||||||
npcEntry.LibarySearchable = gameData.npc_list[i].libary_searchable;
|
npcEntry.AdminOnly = gameData.npc_list[i].admin_only;
|
||||||
npcEntry.IconId = gameData.npc_list[i].icon_id;
|
npcEntry.LibarySearchable = gameData.npc_list[i].libary_searchable;
|
||||||
|
npcEntry.IconId = gameData.npc_list[i].icon_id;
|
||||||
Logger.DebugPrint("\tNPC ID:" + npcEntry.Id.ToString() + " NAME: " + npcEntry.Name);
|
|
||||||
List<Npc.NpcChat> chats = new List<Npc.NpcChat>();
|
Logger.DebugPrint("\tNPC ID:" + npcEntry.Id.ToString() + " NAME: " + npcEntry.Name);
|
||||||
int totalNpcChat = gameData.npc_list[i].chatpoints.Count;
|
List<Npc.NpcChat> chats = new List<Npc.NpcChat>();
|
||||||
for (int ii = 0; ii < totalNpcChat; ii++)
|
int totalNpcChat = gameData.npc_list[i].chatpoints.Count;
|
||||||
{
|
for (int ii = 0; ii < totalNpcChat; ii++)
|
||||||
Npc.NpcChat npcChat = new Npc.NpcChat();
|
{
|
||||||
npcChat.Id = gameData.npc_list[i].chatpoints[ii].chatpoint_id;
|
Npc.NpcChat npcChat = new Npc.NpcChat();
|
||||||
npcChat.ChatText = gameData.npc_list[i].chatpoints[ii].chat_text;
|
npcChat.Id = gameData.npc_list[i].chatpoints[ii].chatpoint_id;
|
||||||
npcChat.ActivateQuestId = gameData.npc_list[i].chatpoints[ii].activate_questid;
|
npcChat.ChatText = gameData.npc_list[i].chatpoints[ii].chat_text;
|
||||||
|
npcChat.ActivateQuestId = gameData.npc_list[i].chatpoints[ii].activate_questid;
|
||||||
Logger.DebugPrint("\t\tCHATPOINT ID: " + npcChat.Id.ToString() + " TEXT: " + npcChat.ChatText);
|
|
||||||
int totalNpcReply = gameData.npc_list[i].chatpoints[ii].replies.Count;
|
Logger.DebugPrint("\t\tCHATPOINT ID: " + npcChat.Id.ToString() + " TEXT: " + npcChat.ChatText);
|
||||||
List<Npc.NpcReply> replys = new List<Npc.NpcReply>();
|
int totalNpcReply = gameData.npc_list[i].chatpoints[ii].replies.Count;
|
||||||
for (int iii = 0; iii < totalNpcReply; iii++)
|
List<Npc.NpcReply> replys = new List<Npc.NpcReply>();
|
||||||
{
|
for (int iii = 0; iii < totalNpcReply; iii++)
|
||||||
Npc.NpcReply npcReply = new Npc.NpcReply();
|
{
|
||||||
npcReply.Id = gameData.npc_list[i].chatpoints[ii].replies[iii].reply_id;
|
Npc.NpcReply npcReply = new Npc.NpcReply();
|
||||||
npcReply.ReplyText = gameData.npc_list[i].chatpoints[ii].replies[iii].reply_text;
|
npcReply.Id = gameData.npc_list[i].chatpoints[ii].replies[iii].reply_id;
|
||||||
npcReply.GotoChatpoint = gameData.npc_list[i].chatpoints[ii].replies[iii].goto_chatpoint;
|
npcReply.ReplyText = gameData.npc_list[i].chatpoints[ii].replies[iii].reply_text;
|
||||||
|
npcReply.GotoChatpoint = gameData.npc_list[i].chatpoints[ii].replies[iii].goto_chatpoint;
|
||||||
if (gameData.npc_list[i].chatpoints[ii].replies[iii].requires_questid_completed != null)
|
|
||||||
npcReply.RequiresQuestIdCompleted = gameData.npc_list[i].chatpoints[ii].replies[iii].requires_questid_completed;
|
if (gameData.npc_list[i].chatpoints[ii].replies[iii].requires_questid_completed != null)
|
||||||
|
npcReply.RequiresQuestIdCompleted = gameData.npc_list[i].chatpoints[ii].replies[iii].requires_questid_completed;
|
||||||
if (gameData.npc_list[i].chatpoints[ii].replies[iii].requires_questid_not_completed != null)
|
|
||||||
npcReply.RequiresQuestIdNotCompleted = gameData.npc_list[i].chatpoints[ii].replies[iii].requires_questid_not_completed;
|
if (gameData.npc_list[i].chatpoints[ii].replies[iii].requires_questid_not_completed != null)
|
||||||
|
npcReply.RequiresQuestIdNotCompleted = gameData.npc_list[i].chatpoints[ii].replies[iii].requires_questid_not_completed;
|
||||||
Logger.DebugPrint("\t\t\tREPLY ID: " + npcReply.Id.ToString() + " TEXT: " + npcReply.ReplyText);
|
|
||||||
replys.Add(npcReply);
|
Logger.DebugPrint("\t\t\tREPLY ID: " + npcReply.Id.ToString() + " TEXT: " + npcReply.ReplyText);
|
||||||
|
replys.Add(npcReply);
|
||||||
}
|
|
||||||
npcChat.Replies = replys.ToArray();
|
}
|
||||||
chats.Add(npcChat);
|
npcChat.Replies = replys.ToArray();
|
||||||
}
|
chats.Add(npcChat);
|
||||||
npcEntry.Chatpoints = chats.ToArray();
|
}
|
||||||
Npc.NpcList.Add(npcEntry);
|
npcEntry.Chatpoints = chats.ToArray();
|
||||||
}
|
Npc.NpcList.Add(npcEntry);
|
||||||
|
}
|
||||||
Item.Present = gameData.item.special.present;
|
|
||||||
Item.MailMessage = gameData.item.special.mail_message;
|
// Register Quests
|
||||||
Item.DorothyShoes = gameData.item.special.dorothy_shoes;
|
|
||||||
Item.PawneerOrder = gameData.item.special.pawneer_order;
|
Logger.DebugPrint("Registering Quests: ");
|
||||||
Item.Telescope = gameData.item.special.telescope;
|
int totalQuests = gameData.quest_list.Count;
|
||||||
Item.Pitchfork = gameData.item.special.pitchfork;
|
for(int i = 0; i < totalQuests; i++)
|
||||||
|
{
|
||||||
// New Users
|
Quest.QuestEntry quest = new Quest.QuestEntry();
|
||||||
Messages.NewUserMessage = gameData.new_user.starting_message;
|
quest.Id = gameData.quest_list[i].id;
|
||||||
Map.NewUserStartX = gameData.new_user.starting_x;
|
quest.Notes = gameData.quest_list[i].notes;
|
||||||
Map.NewUserStartY = gameData.new_user.starting_y;
|
if(gameData.quest_list[i].title != null)
|
||||||
|
quest.Title = gameData.quest_list[i].title;
|
||||||
// Announcements
|
quest.RequiresQuestIdComplete = gameData.quest_list[i].requires_questid_npc.ToObject<int[]>();
|
||||||
|
if (gameData.quest_list[i].alt_activation != null)
|
||||||
Messages.WelcomeFormat = gameData.messages.welcome_format;
|
{
|
||||||
Messages.MotdFormat = gameData.messages.motd_format;
|
quest.AltActivation = new Quest.QuestAltActivation();
|
||||||
Messages.ProfileSavedMessage = gameData.messages.profile_save;
|
quest.AltActivation.Type = gameData.quest_list[i].alt_activation.type;
|
||||||
Messages.LoginMessageForamt = gameData.messages.login_format;
|
quest.AltActivation.ActivateX = gameData.quest_list[i].alt_activation.x;
|
||||||
Messages.LogoutMessageFormat = gameData.messages.logout_format;
|
quest.AltActivation.ActivateY = gameData.quest_list[i].alt_activation.y;
|
||||||
|
}
|
||||||
// Transport
|
quest.Tracked = gameData.quest_list[i].tracked;
|
||||||
|
quest.MaxRepeats = gameData.quest_list[i].max_repeats;
|
||||||
Messages.CantAffordTransport = gameData.messages.transport.not_enough_money;
|
quest.MoneyCost = gameData.quest_list[i].money_cost;
|
||||||
Messages.WelcomeToAreaFormat = gameData.messages.transport.welcome_to_format;
|
int itemsRequiredCount = gameData.quest_list[i].items_required.Count;
|
||||||
|
|
||||||
// Chat
|
List<Quest.QuestItemInfo> itmInfo = new List<Quest.QuestItemInfo>();
|
||||||
|
for(int ii = 0; ii < itemsRequiredCount; ii++)
|
||||||
Messages.ChatViolationMessageFormat = gameData.messages.chat.violation_format;
|
{
|
||||||
Messages.RequiredChatViolations = gameData.messages.chat.violation_points_required;
|
Quest.QuestItemInfo itemInfo = new Quest.QuestItemInfo();
|
||||||
|
itemInfo.ItemId = gameData.quest_list[i].items_required[ii].item_id;
|
||||||
Messages.GlobalChatFormatForModerators = gameData.messages.chat.for_others.global_format_moderator;
|
itemInfo.Quantity = gameData.quest_list[i].items_required[ii].quantity;
|
||||||
Messages.DirectChatFormatForModerators = gameData.messages.chat.for_others.dm_format_moderator;
|
itmInfo.Add(itemInfo);
|
||||||
|
}
|
||||||
|
quest.ItemsRequired = itmInfo.ToArray();
|
||||||
Messages.HereChatFormat = gameData.messages.chat.for_others.here_format;
|
if(gameData.quest_list[i].fail_npc_chat != null)
|
||||||
Messages.IsleChatFormat = gameData.messages.chat.for_others.isle_format;
|
quest.FailNpcChat = gameData.quest_list[i].fail_npc_chat;
|
||||||
Messages.NearChatFormat = gameData.messages.chat.for_others.near_format;
|
quest.MoneyEarned = gameData.quest_list[i].money_gained;
|
||||||
Messages.GlobalChatFormat = gameData.messages.chat.for_others.global_format;
|
|
||||||
Messages.AdsChatFormat = gameData.messages.chat.for_others.ads_format;
|
int itemsGainedCount = gameData.quest_list[i].items_gained.Count;
|
||||||
Messages.DirectChatFormat = gameData.messages.chat.for_others.dm_format;
|
itmInfo = new List<Quest.QuestItemInfo>();
|
||||||
Messages.BuddyChatFormat = gameData.messages.chat.for_others.friend_format;
|
for (int ii = 0; ii < itemsGainedCount; ii++)
|
||||||
Messages.ModChatFormat = gameData.messages.chat.for_others.mod_format;
|
{
|
||||||
Messages.AdminChatFormat = gameData.messages.chat.for_others.admin_format;
|
Quest.QuestItemInfo itemInfo = new Quest.QuestItemInfo();
|
||||||
|
itemInfo.ItemId = gameData.quest_list[i].items_gained[ii].item_id;
|
||||||
Messages.HereChatFormatForSender = gameData.messages.chat.for_sender.here_format;
|
itemInfo.Quantity = gameData.quest_list[i].items_gained[ii].quantity;
|
||||||
Messages.IsleChatFormatForSender = gameData.messages.chat.for_sender.isle_format;
|
itmInfo.Add(itemInfo);
|
||||||
Messages.NearChatFormatForSender = gameData.messages.chat.for_sender.near_format;
|
}
|
||||||
Messages.BuddyChatFormatForSender = gameData.messages.chat.for_sender.friend_format;
|
quest.ItemsEarned = itmInfo.ToArray();
|
||||||
Messages.DirectChatFormatForSender = gameData.messages.chat.for_sender.dm_format;
|
|
||||||
Messages.ModChatFormatForSender = gameData.messages.chat.for_sender.mod_format;
|
quest.QuestPointsEarned = gameData.quest_list[i].quest_points;
|
||||||
Messages.AdminChatFormatForSender = gameData.messages.chat.for_sender.admin_format;
|
quest.GotoNpcChatpoint = gameData.quest_list[i].goto_npc_chatpoint;
|
||||||
|
if(gameData.quest_list[i].warp_x != null)
|
||||||
|
quest.WarpX = gameData.quest_list[i].warp_x;
|
||||||
Messages.PasswordNotice = gameData.messages.chat.password_included;
|
if(gameData.quest_list[i].warp_y != null)
|
||||||
Messages.CapsNotice = gameData.messages.chat.caps_notice;
|
quest.WarpY = gameData.quest_list[i].warp_y;
|
||||||
|
if(gameData.quest_list[i].success_message != null)
|
||||||
// Hardcoded messages
|
quest.SuccessMessage = gameData.quest_list[i].success_message;
|
||||||
|
if(gameData.quest_list[i].success_npc_chat != null)
|
||||||
Messages.NothingMessage = gameData.messages.meta.dropped_items.nothing_message;
|
quest.SuccessNpcChat = gameData.quest_list[i].success_npc_chat;
|
||||||
Messages.ItemsOnGroundMessage = gameData.messages.meta.dropped_items.items_message;
|
if (gameData.quest_list[i].requires_awardid != null)
|
||||||
Messages.GrabItemFormat = gameData.messages.meta.dropped_items.item_format;
|
quest.AwardRequired = gameData.quest_list[i].requires_awardid;
|
||||||
Messages.GrabAllItemsButton = gameData.messages.meta.dropped_items.grab_all;
|
quest.RequiresQuestIdCompleted = gameData.quest_list[i].requires_questid_completed.ToObject<int[]>();
|
||||||
Messages.DroppedAnItemMessage = gameData.messages.dropped_item_message;
|
quest.RequiresQuestIdNotCompleted = gameData.quest_list[i].requires_questid_not_completed.ToObject<int[]>();
|
||||||
|
quest.HideReplyOnFail = gameData.quest_list[i].hide_reply_on_fail;
|
||||||
// Meta Format
|
if (gameData.quest_list[i].difficulty != null)
|
||||||
|
quest.Difficulty = gameData.quest_list[i].difficulty;
|
||||||
Messages.LocationFormat = gameData.messages.meta.location_format;
|
if (gameData.quest_list[i].author != null)
|
||||||
Messages.IsleFormat = gameData.messages.meta.isle_format;
|
quest.Author = gameData.quest_list[i].author;
|
||||||
Messages.TownFormat = gameData.messages.meta.town_format;
|
if (gameData.quest_list[i].chained_questid != null)
|
||||||
Messages.AreaFormat = gameData.messages.meta.area_format;
|
quest.ChainedQuestId = gameData.quest_list[i].chained_questid;
|
||||||
Messages.Seperator = gameData.messages.meta.seperator;
|
quest.Minigame = gameData.quest_list[i].minigame;
|
||||||
Messages.TileFormat = gameData.messages.meta.tile_format;
|
Logger.DebugPrint("Registered Quest: " + quest.Id);
|
||||||
Messages.TransportFormat = gameData.messages.meta.transport_format;
|
Quest.QuestList.Add(quest);
|
||||||
Messages.ExitThisPlace = gameData.messages.meta.exit_this_place;
|
}
|
||||||
Messages.BackToMap = gameData.messages.meta.back_to_map;
|
Item.Present = gameData.item.special.present;
|
||||||
Messages.LongFullLine = gameData.messages.meta.long_full_line;
|
Item.MailMessage = gameData.item.special.mail_message;
|
||||||
Messages.MetaTerminator = gameData.messages.meta.end_of_meta;
|
Item.DorothyShoes = gameData.item.special.dorothy_shoes;
|
||||||
|
Item.PawneerOrder = gameData.item.special.pawneer_order;
|
||||||
Messages.GrabbedItemMessage = gameData.messages.grab_message;
|
Item.Telescope = gameData.item.special.telescope;
|
||||||
Messages.GrabAllItemsMessage = gameData.messages.grab_all_message;
|
Item.Pitchfork = gameData.item.special.pitchfork;
|
||||||
|
|
||||||
Messages.NearbyPlayers = gameData.messages.meta.nearby.players_nearby;
|
// New Users
|
||||||
Messages.North = gameData.messages.meta.nearby.north;
|
Messages.NewUserMessage = gameData.new_user.starting_message;
|
||||||
Messages.East = gameData.messages.meta.nearby.east;
|
Map.NewUserStartX = gameData.new_user.starting_x;
|
||||||
Messages.South = gameData.messages.meta.nearby.south;
|
Map.NewUserStartY = gameData.new_user.starting_y;
|
||||||
Messages.West = gameData.messages.meta.nearby.west;
|
|
||||||
|
// Announcements
|
||||||
// Inventory
|
|
||||||
|
Messages.WelcomeFormat = gameData.messages.welcome_format;
|
||||||
Messages.InventoryHeaderFormat = gameData.messages.meta.inventory.header_format;
|
Messages.MotdFormat = gameData.messages.motd_format;
|
||||||
Messages.InventoryItemFormat = gameData.messages.meta.inventory.item_entry;
|
Messages.ProfileSavedMessage = gameData.messages.profile_save;
|
||||||
|
Messages.LoginMessageForamt = gameData.messages.login_format;
|
||||||
Messages.ItemInformationButton = gameData.messages.meta.inventory.item_info_button;
|
Messages.LogoutMessageFormat = gameData.messages.logout_format;
|
||||||
Messages.ItemDropButton = gameData.messages.meta.inventory.item_drop_button;
|
|
||||||
Messages.ItemThrowButton = gameData.messages.meta.inventory.item_throw_button;
|
// Transport
|
||||||
Messages.ItemConsumeButton = gameData.messages.meta.inventory.item_consume_button;
|
|
||||||
Messages.ItemUseButton = gameData.messages.meta.inventory.item_use_button;
|
Messages.CantAffordTransport = gameData.messages.transport.not_enough_money;
|
||||||
Messages.ItemReadButton = gameData.messages.meta.inventory.item_read_button;
|
Messages.WelcomeToAreaFormat = gameData.messages.transport.welcome_to_format;
|
||||||
|
|
||||||
// Npc
|
// Chat
|
||||||
|
|
||||||
Messages.NpcStartChatFormat = gameData.messages.npc.start_chat_format;
|
Messages.ChatViolationMessageFormat = gameData.messages.chat.violation_format;
|
||||||
Messages.NpcChatpointFormat = gameData.messages.npc.chatpoint_format;
|
Messages.RequiredChatViolations = gameData.messages.chat.violation_points_required;
|
||||||
Messages.NpcReplyFormat = gameData.messages.npc.reply_format;
|
|
||||||
|
Messages.GlobalChatFormatForModerators = gameData.messages.chat.for_others.global_format_moderator;
|
||||||
// Map Data
|
Messages.DirectChatFormatForModerators = gameData.messages.chat.for_others.dm_format_moderator;
|
||||||
|
|
||||||
Map.OverlayTileDepth = gameData.tile_paramaters.overlay_tiles.tile_depth.ToObject<int[]>();
|
|
||||||
|
Messages.HereChatFormat = gameData.messages.chat.for_others.here_format;
|
||||||
List<Map.TerrainTile> terrainTiles = new List<Map.TerrainTile>();
|
Messages.IsleChatFormat = gameData.messages.chat.for_others.isle_format;
|
||||||
int totalTerrainTiles = gameData.tile_paramaters.terrain_tiles.Count;
|
Messages.NearChatFormat = gameData.messages.chat.for_others.near_format;
|
||||||
for(int i = 0; i < totalTerrainTiles; i++)
|
Messages.GlobalChatFormat = gameData.messages.chat.for_others.global_format;
|
||||||
{
|
Messages.AdsChatFormat = gameData.messages.chat.for_others.ads_format;
|
||||||
Map.TerrainTile tile = new Map.TerrainTile();
|
Messages.DirectChatFormat = gameData.messages.chat.for_others.dm_format;
|
||||||
tile.Passable = gameData.tile_paramaters.terrain_tiles[i].passable;
|
Messages.BuddyChatFormat = gameData.messages.chat.for_others.friend_format;
|
||||||
tile.Type = gameData.tile_paramaters.terrain_tiles[i].tile_type;
|
Messages.ModChatFormat = gameData.messages.chat.for_others.mod_format;
|
||||||
Logger.DebugPrint("Registered Tile: " + i + " Passable: " + tile.Passable + " Type: " + tile.Type);
|
Messages.AdminChatFormat = gameData.messages.chat.for_others.admin_format;
|
||||||
terrainTiles.Add(tile);
|
|
||||||
}
|
Messages.HereChatFormatForSender = gameData.messages.chat.for_sender.here_format;
|
||||||
Map.TerrainTiles = terrainTiles.ToArray();
|
Messages.IsleChatFormatForSender = gameData.messages.chat.for_sender.isle_format;
|
||||||
|
Messages.NearChatFormatForSender = gameData.messages.chat.for_sender.near_format;
|
||||||
// Disconnect Reasons
|
Messages.BuddyChatFormatForSender = gameData.messages.chat.for_sender.friend_format;
|
||||||
|
Messages.DirectChatFormatForSender = gameData.messages.chat.for_sender.dm_format;
|
||||||
Messages.BanMessage = gameData.messages.disconnect.banned;
|
Messages.ModChatFormatForSender = gameData.messages.chat.for_sender.mod_format;
|
||||||
Messages.IdleKickMessageFormat = gameData.messages.disconnect.client_timeout.kick_message;
|
Messages.AdminChatFormatForSender = gameData.messages.chat.for_sender.admin_format;
|
||||||
Messages.IdleWarningFormat = gameData.messages.disconnect.client_timeout.warn_message;
|
|
||||||
|
|
||||||
Chat.PrivateMessageSound = gameData.messages.chat.pm_sound;
|
Messages.PasswordNotice = gameData.messages.chat.password_included;
|
||||||
|
Messages.CapsNotice = gameData.messages.chat.caps_notice;
|
||||||
Server.IdleWarning = gameData.messages.disconnect.client_timeout.warn_after;
|
|
||||||
Server.IdleTimeout = gameData.messages.disconnect.client_timeout.kick_after;
|
// Hardcoded messages
|
||||||
|
|
||||||
// Inventory
|
Messages.NothingMessage = gameData.messages.meta.dropped_items.nothing_message;
|
||||||
|
Messages.ItemsOnGroundMessage = gameData.messages.meta.dropped_items.items_message;
|
||||||
Messages.DefaultInventoryMax = gameData.item.max_carryable;
|
Messages.GrabItemFormat = gameData.messages.meta.dropped_items.item_format;
|
||||||
|
Messages.GrabAllItemsButton = gameData.messages.meta.dropped_items.grab_all;
|
||||||
|
Messages.DroppedAnItemMessage = gameData.messages.dropped_item_message;
|
||||||
// Swf
|
Messages.GrabbedAllObjectsMessage = gameData.messages.grab_all_message;
|
||||||
Messages.WagonCutscene = gameData.transport.wagon_cutscene;
|
|
||||||
Messages.BoatCutscene = gameData.transport.boat_cutscene;
|
// Tools
|
||||||
Messages.BallonCutscene = gameData.transport.ballon_cutscene;
|
Messages.BinocularsNothing = gameData.messages.tools.binoculars;
|
||||||
|
Messages.MagnifyNothing = gameData.messages.tools.magnify;
|
||||||
}
|
Messages.RakeNothing = gameData.messages.tools.rake;
|
||||||
|
Messages.ShovelNothing = gameData.messages.tools.shovel;
|
||||||
}
|
|
||||||
}
|
// Meta Format
|
||||||
|
|
||||||
|
Messages.LocationFormat = gameData.messages.meta.location_format;
|
||||||
|
Messages.IsleFormat = gameData.messages.meta.isle_format;
|
||||||
|
Messages.TownFormat = gameData.messages.meta.town_format;
|
||||||
|
Messages.AreaFormat = gameData.messages.meta.area_format;
|
||||||
|
Messages.Seperator = gameData.messages.meta.seperator;
|
||||||
|
Messages.TileFormat = gameData.messages.meta.tile_format;
|
||||||
|
Messages.TransportFormat = gameData.messages.meta.transport_format;
|
||||||
|
Messages.ExitThisPlace = gameData.messages.meta.exit_this_place;
|
||||||
|
Messages.BackToMap = gameData.messages.meta.back_to_map;
|
||||||
|
Messages.LongFullLine = gameData.messages.meta.long_full_line;
|
||||||
|
Messages.MetaTerminator = gameData.messages.meta.end_of_meta;
|
||||||
|
|
||||||
|
Messages.GrabbedItemMessage = gameData.messages.grab_message;
|
||||||
|
Messages.GrabAllItemsMessage = gameData.messages.grab_all_message;
|
||||||
|
|
||||||
|
Messages.NearbyPlayers = gameData.messages.meta.nearby.players_nearby;
|
||||||
|
Messages.North = gameData.messages.meta.nearby.north;
|
||||||
|
Messages.East = gameData.messages.meta.nearby.east;
|
||||||
|
Messages.South = gameData.messages.meta.nearby.south;
|
||||||
|
Messages.West = gameData.messages.meta.nearby.west;
|
||||||
|
|
||||||
|
// Inventory
|
||||||
|
|
||||||
|
Messages.InventoryHeaderFormat = gameData.messages.meta.inventory.header_format;
|
||||||
|
Messages.InventoryItemFormat = gameData.messages.meta.inventory.item_entry;
|
||||||
|
|
||||||
|
Messages.ItemInformationButton = gameData.messages.meta.inventory.item_info_button;
|
||||||
|
Messages.ItemDropButton = gameData.messages.meta.inventory.item_drop_button;
|
||||||
|
Messages.ItemThrowButton = gameData.messages.meta.inventory.item_throw_button;
|
||||||
|
Messages.ItemConsumeButton = gameData.messages.meta.inventory.item_consume_button;
|
||||||
|
Messages.ItemUseButton = gameData.messages.meta.inventory.item_use_button;
|
||||||
|
Messages.ItemReadButton = gameData.messages.meta.inventory.item_read_button;
|
||||||
|
|
||||||
|
// Npc
|
||||||
|
|
||||||
|
Messages.NpcStartChatFormat = gameData.messages.npc.start_chat_format;
|
||||||
|
Messages.NpcChatpointFormat = gameData.messages.npc.chatpoint_format;
|
||||||
|
Messages.NpcReplyFormat = gameData.messages.npc.reply_format;
|
||||||
|
Messages.NpcTalkButton = gameData.messages.npc.npc_talk_button;
|
||||||
|
Messages.NpcInformationButton = gameData.messages.npc.npc_information_button;
|
||||||
|
|
||||||
|
// Map Data
|
||||||
|
|
||||||
|
Map.OverlayTileDepth = gameData.tile_paramaters.overlay_tiles.tile_depth.ToObject<int[]>();
|
||||||
|
|
||||||
|
List<Map.TerrainTile> terrainTiles = new List<Map.TerrainTile>();
|
||||||
|
int totalTerrainTiles = gameData.tile_paramaters.terrain_tiles.Count;
|
||||||
|
for(int i = 0; i < totalTerrainTiles; i++)
|
||||||
|
{
|
||||||
|
Map.TerrainTile tile = new Map.TerrainTile();
|
||||||
|
tile.Passable = gameData.tile_paramaters.terrain_tiles[i].passable;
|
||||||
|
tile.Type = gameData.tile_paramaters.terrain_tiles[i].tile_type;
|
||||||
|
Logger.DebugPrint("Registered Tile: " + i + " Passable: " + tile.Passable + " Type: " + tile.Type);
|
||||||
|
terrainTiles.Add(tile);
|
||||||
|
}
|
||||||
|
Map.TerrainTiles = terrainTiles.ToArray();
|
||||||
|
|
||||||
|
// Disconnect Reasons
|
||||||
|
|
||||||
|
Messages.BanMessage = gameData.messages.disconnect.banned;
|
||||||
|
Messages.IdleKickMessageFormat = gameData.messages.disconnect.client_timeout.kick_message;
|
||||||
|
Messages.IdleWarningFormat = gameData.messages.disconnect.client_timeout.warn_message;
|
||||||
|
|
||||||
|
Chat.PrivateMessageSound = gameData.messages.chat.pm_sound;
|
||||||
|
|
||||||
|
GameServer.IdleWarning = gameData.messages.disconnect.client_timeout.warn_after;
|
||||||
|
GameServer.IdleTimeout = gameData.messages.disconnect.client_timeout.kick_after;
|
||||||
|
|
||||||
|
// Inventory
|
||||||
|
|
||||||
|
Messages.DefaultInventoryMax = gameData.item.max_carryable;
|
||||||
|
|
||||||
|
|
||||||
|
// Swf
|
||||||
|
Messages.WagonCutscene = gameData.transport.wagon_cutscene;
|
||||||
|
Messages.BoatCutscene = gameData.transport.boat_cutscene;
|
||||||
|
Messages.BallonCutscene = gameData.transport.ballon_cutscene;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,33 +1,29 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
namespace HISP.Server
|
||||||
using System.Text;
|
{
|
||||||
using System.Threading.Tasks;
|
class Logger
|
||||||
|
{
|
||||||
namespace Horse_Isle_Server
|
public static void HackerPrint(string text) // When someone is obviously cheating.
|
||||||
{
|
{
|
||||||
class Logger
|
Console.WriteLine("[HACK] " + text);
|
||||||
{
|
}
|
||||||
public static void HackerPrint(string text) // When someone is obviously cheating.
|
public static void DebugPrint(string text)
|
||||||
{
|
{
|
||||||
Console.WriteLine("[HACK] " + text);
|
if (ConfigReader.Debug)
|
||||||
}
|
Console.WriteLine("[DEBUG] " + text);
|
||||||
public static void DebugPrint(string text)
|
}
|
||||||
{
|
public static void WarnPrint(string text)
|
||||||
if (ConfigReader.Debug)
|
{
|
||||||
Console.WriteLine("[DEBUG] " + text);
|
Console.WriteLine("[WARN] " + text);
|
||||||
}
|
}
|
||||||
public static void WarnPrint(string text)
|
public static void ErrorPrint(string text)
|
||||||
{
|
{
|
||||||
Console.WriteLine("[WARN] " + text);
|
Console.WriteLine("[ERROR] " + text);
|
||||||
}
|
}
|
||||||
public static void ErrorPrint(string text)
|
public static void InfoPrint(string text)
|
||||||
{
|
{
|
||||||
Console.WriteLine("[ERROR] " + text);
|
Console.WriteLine("[INFO] " + text);
|
||||||
}
|
}
|
||||||
public static void InfoPrint(string text)
|
}
|
||||||
{
|
}
|
||||||
Console.WriteLine("[INFO] " + text);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue