mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 05:05:40 +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.Collections.Generic;
|
||||
using System.Linq;
|
||||
using HISP.Player;
|
||||
using HISP.Server;
|
||||
|
||||
namespace Horse_Isle_Server
|
||||
namespace HISP.Game
|
||||
{
|
||||
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)
|
||||
{
|
||||
List<Client> recipiants = new List<Client>();
|
||||
foreach (Client client in Server.ConnectedClients)
|
||||
List<GameClient> recipiants = new List<GameClient>();
|
||||
foreach (GameClient client in GameServer.ConnectedClients)
|
||||
{
|
||||
if (client.LoggedIn)
|
||||
if (!client.LoggedinUser.MuteGlobal)
|
||||
|
@ -153,8 +155,8 @@ namespace Horse_Isle_Server
|
|||
|
||||
if(channel == ChatChannel.Ads)
|
||||
{
|
||||
List<Client> recipiants = new List<Client>();
|
||||
foreach (Client client in Server.ConnectedClients)
|
||||
List<GameClient> recipiants = new List<GameClient>();
|
||||
foreach (GameClient client in GameServer.ConnectedClients)
|
||||
{
|
||||
if (client.LoggedIn)
|
||||
if (!client.LoggedinUser.MuteAds)
|
||||
|
@ -166,8 +168,8 @@ namespace Horse_Isle_Server
|
|||
|
||||
if(channel == ChatChannel.Buddies)
|
||||
{
|
||||
List<Client> recipiants = new List<Client>();
|
||||
foreach (Client client in Server.ConnectedClients)
|
||||
List<GameClient> recipiants = new List<GameClient>();
|
||||
foreach (GameClient client in GameServer.ConnectedClients)
|
||||
{
|
||||
if (client.LoggedIn)
|
||||
if (!client.LoggedinUser.MuteBuddy)
|
||||
|
@ -180,10 +182,10 @@ namespace Horse_Isle_Server
|
|||
|
||||
if (channel == ChatChannel.Isle)
|
||||
{
|
||||
List<Client> recipiants = new List<Client>();
|
||||
List<GameClient> recipiants = new List<GameClient>();
|
||||
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)
|
||||
{
|
||||
if (user.Id != userInIsle.Id)
|
||||
|
@ -193,15 +195,15 @@ namespace Horse_Isle_Server
|
|||
}
|
||||
else
|
||||
{
|
||||
return new Client[0];
|
||||
return new GameClient[0];
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
if (channel == ChatChannel.Here)
|
||||
{
|
||||
List<Client> recipiants = new List<Client>();
|
||||
User[] usersHere = Server.GetUsersAt(user.X, user.Y, true, false);
|
||||
List<GameClient> recipiants = new List<GameClient>();
|
||||
User[] usersHere = GameServer.GetUsersAt(user.X, user.Y, true, false);
|
||||
foreach (User userHere in usersHere)
|
||||
{
|
||||
if (user.Id != userHere.Id)
|
||||
|
@ -212,8 +214,8 @@ namespace Horse_Isle_Server
|
|||
|
||||
if (channel == ChatChannel.Near)
|
||||
{
|
||||
List<Client> recipiants = new List<Client>();
|
||||
User[] nearbyUsers = Server.GetNearbyUsers(user.X, user.Y, true, false);
|
||||
List<GameClient> recipiants = new List<GameClient>();
|
||||
User[] nearbyUsers = GameServer.GetNearbyUsers(user.X, user.Y, true, false);
|
||||
foreach (User nearbyUser in nearbyUsers)
|
||||
{
|
||||
if (user.Id != nearbyUser.Id)
|
||||
|
@ -227,11 +229,11 @@ namespace Horse_Isle_Server
|
|||
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.");
|
||||
return new Client[0];
|
||||
return new GameClient[0];
|
||||
}
|
||||
|
||||
List<Client> recipiants = new List<Client>();
|
||||
foreach (Client client in Server.ConnectedClients)
|
||||
List<GameClient> recipiants = new List<GameClient>();
|
||||
foreach (GameClient client in GameServer.ConnectedClients)
|
||||
{
|
||||
if (client.LoggedIn)
|
||||
if (client.LoggedinUser.Moderator)
|
||||
|
@ -246,12 +248,12 @@ namespace Horse_Isle_Server
|
|||
if (!user.Administrator) // No admin chat for non-admins!
|
||||
{
|
||||
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>();
|
||||
foreach (Client client in Server.ConnectedClients)
|
||||
List<GameClient> recipiants = new List<GameClient>();
|
||||
foreach (GameClient client in GameServer.ConnectedClients)
|
||||
{
|
||||
if (client.LoggedIn)
|
||||
if (client.LoggedinUser.Administrator)
|
||||
|
@ -265,8 +267,8 @@ namespace Horse_Isle_Server
|
|||
{
|
||||
if (to != null)
|
||||
{
|
||||
List<Client> recipiants = new List<Client>();
|
||||
foreach (Client client in Server.ConnectedClients)
|
||||
List<GameClient> recipiants = new List<GameClient>();
|
||||
foreach (GameClient client in GameServer.ConnectedClients)
|
||||
{
|
||||
if (client.LoggedIn)
|
||||
if (!client.LoggedinUser.MutePrivateMessage)
|
||||
|
@ -278,13 +280,13 @@ namespace Horse_Isle_Server
|
|||
else
|
||||
{
|
||||
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);
|
||||
return new Client[0]; // No recipiants
|
||||
return new GameClient[0]; // No recipiants
|
||||
}
|
||||
|
||||
public static string DoCorrections(string message)
|
||||
|
@ -364,19 +366,19 @@ namespace Horse_Isle_Server
|
|||
case ChatChannel.Isle:
|
||||
int inIsle = 0;
|
||||
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);
|
||||
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);
|
||||
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);
|
||||
case ChatChannel.Mod:
|
||||
int modsOnline = Server.GetNumberOfModsOnline() - 1;
|
||||
int modsOnline = GameServer.GetNumberOfModsOnline() - 1;
|
||||
return Messages.FormatModChatForSender(modsOnline, user.Username, message);
|
||||
case ChatChannel.Admin:
|
||||
int adminsOnline = Server.GetNumberOfAdminsOnline() - 1;
|
||||
int adminsOnline = GameServer.GetNumberOfAdminsOnline() - 1;
|
||||
return Messages.FormatAdminChatForSender(adminsOnline, user.Username, message);
|
||||
case ChatChannel.Dm:
|
||||
return Messages.FormatDirectChatMessageForSender(user.Username, dmRecipiant, message);
|
|
@ -1,10 +1,8 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using HISP.Server;
|
||||
|
||||
namespace Horse_Isle_Server
|
||||
namespace HISP.Game
|
||||
{
|
||||
class DroppedItems
|
||||
{
|
||||
|
@ -98,7 +96,7 @@ namespace Horse_Isle_Server
|
|||
{
|
||||
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);
|
||||
removedCount++;
|
||||
|
@ -129,7 +127,7 @@ namespace Horse_Isle_Server
|
|||
|
||||
count++;
|
||||
|
||||
int despawnTimer = Server.RandomNumberGenerator.Next(900, 1500);
|
||||
int despawnTimer = GameServer.RandomNumberGenerator.Next(900, 1500);
|
||||
|
||||
if (item.SpawnParamaters.SpawnInArea != null)
|
||||
{
|
||||
|
@ -149,12 +147,12 @@ namespace Horse_Isle_Server
|
|||
while (true)
|
||||
{
|
||||
// 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];
|
||||
|
||||
// Pick a random location inside the isle
|
||||
int tryX = Server.RandomNumberGenerator.Next(isle.StartX, isle.EndX);
|
||||
int tryY = Server.RandomNumberGenerator.Next(isle.StartY, isle.EndY);
|
||||
int tryX = GameServer.RandomNumberGenerator.Next(isle.StartX, isle.EndX);
|
||||
int tryY = GameServer.RandomNumberGenerator.Next(isle.StartY, isle.EndY);
|
||||
|
||||
|
||||
if (World.InTown(tryX, tryY) || World.InSpecialTile(tryX, tryY))
|
|
@ -1,10 +1,8 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Horse_Isle_Server
|
||||
|
||||
namespace HISP.Game
|
||||
{
|
||||
class InventoryItem
|
||||
{
|
|
@ -4,7 +4,7 @@ using System.Linq;
|
|||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Horse_Isle_Server
|
||||
namespace HISP.Game
|
||||
{
|
||||
class Item
|
||||
{
|
|
@ -1,10 +1,5 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Horse_Isle_Server
|
||||
using HISP.Security;
|
||||
namespace HISP.Game
|
||||
{
|
||||
class ItemInstance
|
||||
{
|
|
@ -1,114 +1,110 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Drawing;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Horse_Isle_Server
|
||||
{
|
||||
class Map
|
||||
{
|
||||
public struct TerrainTile
|
||||
{
|
||||
public bool Passable;
|
||||
public string Type;
|
||||
}
|
||||
|
||||
public static int[] OverlayTileDepth;
|
||||
|
||||
public static int Width;
|
||||
public static int Height;
|
||||
|
||||
public static byte[] MapData;
|
||||
public static byte[] oMapData;
|
||||
|
||||
public static TerrainTile[] TerrainTiles;
|
||||
|
||||
|
||||
public static int NewUserStartX;
|
||||
public static int NewUserStartY;
|
||||
public static int GetTileId(int x, int y, bool overlay)
|
||||
{
|
||||
if ((x > Width || x < 0) || (y > Height || y < 0)) // Outside map?
|
||||
return 0x1;
|
||||
|
||||
int pos = ((x * Height) + y);
|
||||
|
||||
if (overlay)
|
||||
return oMapData[pos];
|
||||
else
|
||||
return MapData[pos];
|
||||
}
|
||||
public static bool CheckPassable(int x, int y)
|
||||
{
|
||||
int tileId = GetTileId(x, y, false) - 1;
|
||||
int otileId = GetTileId(x, y, true) - 1;
|
||||
|
||||
bool terrainPassable = TerrainTiles[tileId].Passable;
|
||||
int tileset = 0;
|
||||
|
||||
|
||||
if (otileId > 192)
|
||||
{
|
||||
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;
|
||||
if (tileDepth == 1)
|
||||
overlayPassable = false;
|
||||
if (tileDepth == 2)
|
||||
overlayPassable = true;
|
||||
if (tileDepth == 3)
|
||||
overlayPassable = true;
|
||||
|
||||
bool tilePassable = false;
|
||||
if (terrainPassable || overlayPassable)
|
||||
tilePassable = true;
|
||||
if (!overlayPassable && (tileId != 0 && otileId != 0))
|
||||
tilePassable = false;
|
||||
|
||||
|
||||
|
||||
return tilePassable;
|
||||
}
|
||||
|
||||
public static void OpenMap()
|
||||
{
|
||||
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);
|
||||
|
||||
MapData = new byte[Width * Height];
|
||||
oMapData = new byte[Width * Height];
|
||||
int ii = 8;
|
||||
|
||||
for (int i = 0; i < MapData.Length; i++)
|
||||
{
|
||||
|
||||
oMapData[i] = worldMap[ii];
|
||||
MapData[i] = worldMap[ii+ 1];
|
||||
ii += 2;
|
||||
}
|
||||
|
||||
worldMap = null;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
using System;
|
||||
using System.IO;
|
||||
using HISP.Server;
|
||||
|
||||
namespace HISP.Game
|
||||
{
|
||||
class Map
|
||||
{
|
||||
public struct TerrainTile
|
||||
{
|
||||
public bool Passable;
|
||||
public string Type;
|
||||
}
|
||||
|
||||
public static int[] OverlayTileDepth;
|
||||
|
||||
public static int Width;
|
||||
public static int Height;
|
||||
|
||||
public static byte[] MapData;
|
||||
public static byte[] oMapData;
|
||||
|
||||
public static TerrainTile[] TerrainTiles;
|
||||
|
||||
|
||||
public static int NewUserStartX;
|
||||
public static int NewUserStartY;
|
||||
public static int GetTileId(int x, int y, bool overlay)
|
||||
{
|
||||
if ((x > Width || x < 0) || (y > Height || y < 0)) // Outside map?
|
||||
return 0x1;
|
||||
|
||||
int pos = ((x * Height) + y);
|
||||
|
||||
if (overlay)
|
||||
return oMapData[pos];
|
||||
else
|
||||
return MapData[pos];
|
||||
}
|
||||
public static bool CheckPassable(int x, int y)
|
||||
{
|
||||
int tileId = GetTileId(x, y, false) - 1;
|
||||
int otileId = GetTileId(x, y, true) - 1;
|
||||
|
||||
bool terrainPassable = TerrainTiles[tileId].Passable;
|
||||
int tileset = 0;
|
||||
|
||||
|
||||
if (otileId > 192)
|
||||
{
|
||||
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;
|
||||
if (tileDepth == 1)
|
||||
overlayPassable = false;
|
||||
if (tileDepth == 2)
|
||||
overlayPassable = true;
|
||||
if (tileDepth == 3)
|
||||
overlayPassable = true;
|
||||
|
||||
bool tilePassable = false;
|
||||
if (terrainPassable || overlayPassable)
|
||||
tilePassable = true;
|
||||
if (!overlayPassable && (tileId != 0 && otileId != 0))
|
||||
tilePassable = false;
|
||||
|
||||
|
||||
|
||||
return tilePassable;
|
||||
}
|
||||
|
||||
public static void OpenMap()
|
||||
{
|
||||
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);
|
||||
|
||||
MapData = new byte[Width * Height];
|
||||
oMapData = new byte[Width * Height];
|
||||
int ii = 8;
|
||||
|
||||
for (int i = 0; i < MapData.Length; i++)
|
||||
{
|
||||
|
||||
oMapData[i] = worldMap[ii];
|
||||
MapData[i] = worldMap[ii+ 1];
|
||||
ii += 2;
|
||||
}
|
||||
|
||||
worldMap = null;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,317 +1,331 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Horse_Isle_Server
|
||||
{
|
||||
class Messages
|
||||
{
|
||||
public static int RequiredChatViolations;
|
||||
public static int DefaultInventoryMax;
|
||||
|
||||
// Announcements
|
||||
public static string NewUserMessage;
|
||||
public static string WelcomeFormat;
|
||||
public static string MotdFormat;
|
||||
public static string IdleWarningFormat;
|
||||
public static string LoginMessageForamt;
|
||||
public static string LogoutMessageFormat;
|
||||
|
||||
// Records
|
||||
public static string ProfileSavedMessage;
|
||||
|
||||
// Chat
|
||||
public static string GlobalChatFormat;
|
||||
public static string AdsChatFormat;
|
||||
public static string BuddyChatFormat;
|
||||
public static string NearChatFormat;
|
||||
public static string IsleChatFormat;
|
||||
public static string HereChatFormat;
|
||||
public static string DirectChatFormat;
|
||||
public static string ModChatFormat;
|
||||
public static string AdminChatFormat;
|
||||
|
||||
public static string GlobalChatFormatForModerators;
|
||||
public static string DirectChatFormatForModerators;
|
||||
|
||||
public static string IsleChatFormatForSender;
|
||||
public static string NearChatFormatForSender;
|
||||
public static string HereChatFormatForSender;
|
||||
public static string BuddyChatFormatForSender;
|
||||
public static string DirectChatFormatForSender;
|
||||
public static string AdminChatFormatForSender;
|
||||
public static string ModChatFormatForSender;
|
||||
|
||||
public static string ChatViolationMessageFormat;
|
||||
public static string PasswordNotice;
|
||||
public static string CapsNotice;
|
||||
|
||||
// Transport
|
||||
|
||||
public static string CantAffordTransport;
|
||||
public static string WelcomeToAreaFormat;
|
||||
|
||||
//Dropped Items
|
||||
|
||||
public static string NothingMessage;
|
||||
public static string ItemsOnGroundMessage;
|
||||
public static string GrabItemFormat;
|
||||
public static string GrabAllItemsButton;
|
||||
public static string GrabAllItemsMessage;
|
||||
public static string GrabbedItemMessage;
|
||||
public static string GrabbedAllObjectsMessage;
|
||||
public static string DroppedAnItemMessage;
|
||||
|
||||
// Inventory
|
||||
public static string InventoryItemFormat;
|
||||
public static string InventoryHeaderFormat;
|
||||
|
||||
public static string ItemDropButton;
|
||||
public static string ItemInformationButton;
|
||||
public static string ItemConsumeButton;
|
||||
public static string ItemThrowButton;
|
||||
public static string ItemUseButton;
|
||||
public static string ItemReadButton;
|
||||
|
||||
// Npc
|
||||
public static string NpcStartChatFormat;
|
||||
public static string NpcChatpointFormat;
|
||||
public static string NpcReplyFormat;
|
||||
|
||||
// Meta
|
||||
public static string IsleFormat;
|
||||
public static string TownFormat;
|
||||
public static string AreaFormat;
|
||||
public static string LocationFormat;
|
||||
public static string TransportFormat;
|
||||
|
||||
|
||||
|
||||
public static string NearbyPlayers;
|
||||
public static string North;
|
||||
public static string East;
|
||||
public static string South;
|
||||
public static string West;
|
||||
|
||||
public static string TileFormat;
|
||||
public static string Seperator;
|
||||
|
||||
public static string ExitThisPlace;
|
||||
public static string BackToMap;
|
||||
public static string LongFullLine;
|
||||
public static string MetaTerminator;
|
||||
|
||||
// Disconnect Messages
|
||||
public static string BanMessage;
|
||||
public static string IdleKickMessageFormat;
|
||||
|
||||
// Swf
|
||||
public static string BoatCutscene;
|
||||
public static string WagonCutscene;
|
||||
public static string BallonCutscene;
|
||||
public static string FormatNpcChatpoint(string name, string shortDescription, string chatText)
|
||||
{
|
||||
return NpcChatpointFormat.Replace("%NAME%", name).Replace("%DESCRIPTION%", shortDescription).Replace("%TEXT%", chatText);
|
||||
}
|
||||
|
||||
public static string FormatNpcReply(string replyText, int replyId)
|
||||
{
|
||||
return NpcReplyFormat.Replace("%TEXT%", replyText).Replace("%ID%", replyId.ToString());
|
||||
}
|
||||
|
||||
public static string FormatNpcStartChatMessage(int iconId, string name, string shortDescription, int npcId)
|
||||
{
|
||||
return NpcStartChatFormat.Replace("%ICONID%", iconId.ToString()).Replace("%NAME%", name).Replace("%DESCRIPTION%", shortDescription).Replace("%ID%", npcId.ToString());
|
||||
}
|
||||
|
||||
public static string FormatGlobalChatViolationMessage(Chat.Reason violationReason)
|
||||
{
|
||||
return ChatViolationMessageFormat.Replace("%AMOUNT%", RequiredChatViolations.ToString()).Replace("%REASON%", violationReason.Message);
|
||||
}
|
||||
|
||||
public static string FormatPlayerInventoryHeaderMeta(int itemCount, int maxItems)
|
||||
{
|
||||
return InventoryHeaderFormat.Replace("%ITEMCOUNT%", itemCount.ToString()).Replace("%MAXITEMS%", maxItems.ToString());
|
||||
}
|
||||
|
||||
public static string FormatPlayerInventoryItemMeta(int iconid, int count, string name)
|
||||
{
|
||||
return InventoryItemFormat.Replace("%ICONID%", iconid.ToString()).Replace("%COUNT%", count.ToString()).Replace("%TITLE%", name);
|
||||
}
|
||||
|
||||
public static string FormatItemThrowButton(int randomid)
|
||||
{
|
||||
return ItemThrowButton.Replace("%RANDOMID%", randomid.ToString());
|
||||
}
|
||||
public static string FormatItemConsumeButton(int randomid)
|
||||
{
|
||||
return ItemConsumeButton.Replace("%RANDOMID%", randomid.ToString());
|
||||
}
|
||||
public static string FormatItemInformationButton(int randomid)
|
||||
{
|
||||
return ItemInformationButton.Replace("%RANDOMID%", randomid.ToString());
|
||||
}
|
||||
|
||||
public static string FormatItemDropButton(int randomid)
|
||||
{
|
||||
return ItemDropButton.Replace("%RANDOMID%", randomid.ToString());
|
||||
}
|
||||
public static string FormatItemUseButton(int randomid)
|
||||
{
|
||||
return ItemUseButton.Replace("%RANDOMID%", randomid.ToString());
|
||||
}
|
||||
public static string FormatItemReadButton(int randomid)
|
||||
{
|
||||
return ItemReadButton.Replace("%RANDOMID%", randomid.ToString());
|
||||
}
|
||||
|
||||
// Meta
|
||||
public static string FormatTileName(string name)
|
||||
{
|
||||
return Messages.TileFormat.Replace("%TILENAME%", name);
|
||||
}
|
||||
public static string FormatGrabItemMessage(string name, int randomid, int iconid)
|
||||
{
|
||||
return GrabItemFormat.Replace("%ICONID%",iconid.ToString()).Replace("%ITEMNAME%", name).Replace("%RANDOMID%", randomid.ToString());
|
||||
}
|
||||
public static string FormatTransportMessage(string method, string place, int cost, int id, int x, int y)
|
||||
{
|
||||
string xy = "";
|
||||
xy += (char)(((x - 4) / 64) + 20);
|
||||
xy += (char)(((x - 4) % 64) + 20);
|
||||
|
||||
xy += (char)(((y - 1) / 64) + 20);
|
||||
xy += (char)(((y - 1) % 64) + 20);
|
||||
|
||||
int iconId = 253;
|
||||
if(method == "WAGON")
|
||||
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);
|
||||
}
|
||||
// For all
|
||||
public static string FormatGlobalChatMessage(string username, string message)
|
||||
{
|
||||
return GlobalChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||
}
|
||||
|
||||
public static string FormatBuddyChatMessage(string username, string message)
|
||||
{
|
||||
return BuddyChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||
}
|
||||
|
||||
public static string FormatIsleChatMessage(string username, string message)
|
||||
{
|
||||
return IsleChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||
}
|
||||
|
||||
public static string FormatNearbyChatMessage(string username, string message)
|
||||
{
|
||||
return NearChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||
}
|
||||
|
||||
public static string FormatHereChatMessage(string username, string message)
|
||||
{
|
||||
return HereChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||
}
|
||||
|
||||
public static string FormatDirectMessage(string username, string message)
|
||||
{
|
||||
return DirectChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||
}
|
||||
public static string FormatDirectMessageForMod(string username, string message)
|
||||
{
|
||||
return DirectChatFormatForModerators.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||
}
|
||||
|
||||
public static string FormatGlobalChatMessageForMod(string username, string message)
|
||||
{
|
||||
return GlobalChatFormatForModerators.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||
}
|
||||
|
||||
public static string FormatAdsChatMessage(string username, string message)
|
||||
{
|
||||
return AdsChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||
}
|
||||
|
||||
public static string FormatModChatMessage(string username, string message)
|
||||
{
|
||||
return ModChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||
}
|
||||
|
||||
public static string FormatAdminChatMessage(string username, string message)
|
||||
{
|
||||
return AdminChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||
}
|
||||
|
||||
|
||||
// For Sender
|
||||
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 FormatHereChatMessageForSender(int numbHere, string username, string message)
|
||||
{
|
||||
return HereChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbHere.ToString());
|
||||
}
|
||||
public static string FormatNearChatMessageForSender(int numbNear, string username, string message)
|
||||
{
|
||||
return NearChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbNear.ToString());
|
||||
}
|
||||
public static string FormatIsleChatMessageForSender(int numbIsle, string username, string message)
|
||||
{
|
||||
return IsleChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbIsle.ToString());
|
||||
}
|
||||
|
||||
public static string FormatAdminChatForSender(int numbAdmins, string username, string message)
|
||||
{
|
||||
return AdminChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbAdmins.ToString());
|
||||
}
|
||||
|
||||
public static string FormatModChatForSender(int numbMods, string username, string message)
|
||||
{
|
||||
return ModChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbMods.ToString());
|
||||
}
|
||||
public static string FormatDirectChatMessageForSender(string username,string toUsername, string message)
|
||||
{
|
||||
return DirectChatFormatForSender.Replace("%FROMUSER%", username).Replace("%TOUSER%", toUsername).Replace(" %MESSAGE%", message);
|
||||
}
|
||||
public static string FormatIdleWarningMessage()
|
||||
{
|
||||
return IdleWarningFormat.Replace("%WARN%", Server.IdleWarning.ToString()).Replace("%KICK%", Server.IdleTimeout.ToString());
|
||||
}
|
||||
|
||||
public static string FormatLoginMessage(string username)
|
||||
{
|
||||
return LoginMessageForamt.Replace("%USERNAME%", username);
|
||||
}
|
||||
|
||||
public static string FormatLogoutMessage(string username)
|
||||
{
|
||||
return LogoutMessageFormat.Replace("%USERNAME%", username);
|
||||
}
|
||||
|
||||
public static string FormatMOTD()
|
||||
{
|
||||
return MotdFormat.Replace("%MOTD%", ConfigReader.Motd);
|
||||
}
|
||||
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%", Server.IdleTimeout.ToString());
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
using HISP.Server;
|
||||
|
||||
namespace HISP.Game
|
||||
{
|
||||
class Messages
|
||||
{
|
||||
public static int RequiredChatViolations;
|
||||
public static int DefaultInventoryMax;
|
||||
|
||||
// Tools
|
||||
public static string BinocularsNothing;
|
||||
public static string MagnifyNothing;
|
||||
public static string RakeNothing;
|
||||
public static string ShovelNothing;
|
||||
|
||||
// Announcements
|
||||
public static string NewUserMessage;
|
||||
public static string WelcomeFormat;
|
||||
public static string MotdFormat;
|
||||
public static string IdleWarningFormat;
|
||||
public static string LoginMessageForamt;
|
||||
public static string LogoutMessageFormat;
|
||||
|
||||
// Records
|
||||
public static string ProfileSavedMessage;
|
||||
|
||||
// Chat
|
||||
public static string GlobalChatFormat;
|
||||
public static string AdsChatFormat;
|
||||
public static string BuddyChatFormat;
|
||||
public static string NearChatFormat;
|
||||
public static string IsleChatFormat;
|
||||
public static string HereChatFormat;
|
||||
public static string DirectChatFormat;
|
||||
public static string ModChatFormat;
|
||||
public static string AdminChatFormat;
|
||||
|
||||
public static string GlobalChatFormatForModerators;
|
||||
public static string DirectChatFormatForModerators;
|
||||
|
||||
public static string IsleChatFormatForSender;
|
||||
public static string NearChatFormatForSender;
|
||||
public static string HereChatFormatForSender;
|
||||
public static string BuddyChatFormatForSender;
|
||||
public static string DirectChatFormatForSender;
|
||||
public static string AdminChatFormatForSender;
|
||||
public static string ModChatFormatForSender;
|
||||
|
||||
public static string ChatViolationMessageFormat;
|
||||
public static string PasswordNotice;
|
||||
public static string CapsNotice;
|
||||
|
||||
// Transport
|
||||
|
||||
public static string CantAffordTransport;
|
||||
public static string WelcomeToAreaFormat;
|
||||
|
||||
//Dropped Items
|
||||
|
||||
public static string NothingMessage;
|
||||
public static string ItemsOnGroundMessage;
|
||||
public static string GrabItemFormat;
|
||||
public static string GrabAllItemsButton;
|
||||
public static string GrabAllItemsMessage;
|
||||
public static string GrabbedItemMessage;
|
||||
public static string GrabbedAllObjectsMessage;
|
||||
public static string DroppedAnItemMessage;
|
||||
|
||||
// Inventory
|
||||
public static string InventoryItemFormat;
|
||||
public static string InventoryHeaderFormat;
|
||||
|
||||
public static string ItemDropButton;
|
||||
public static string ItemInformationButton;
|
||||
public static string ItemConsumeButton;
|
||||
public static string ItemThrowButton;
|
||||
public static string ItemUseButton;
|
||||
public static string ItemReadButton;
|
||||
|
||||
// Npc
|
||||
public static string NpcStartChatFormat;
|
||||
public static string NpcChatpointFormat;
|
||||
public static string NpcReplyFormat;
|
||||
public static string NpcInformationButton;
|
||||
public static string NpcTalkButton;
|
||||
|
||||
// Meta
|
||||
public static string IsleFormat;
|
||||
public static string TownFormat;
|
||||
public static string AreaFormat;
|
||||
public static string LocationFormat;
|
||||
public static string TransportFormat;
|
||||
|
||||
|
||||
|
||||
public static string NearbyPlayers;
|
||||
public static string North;
|
||||
public static string East;
|
||||
public static string South;
|
||||
public static string West;
|
||||
|
||||
public static string TileFormat;
|
||||
public static string Seperator;
|
||||
|
||||
public static string ExitThisPlace;
|
||||
public static string BackToMap;
|
||||
public static string LongFullLine;
|
||||
public static string MetaTerminator;
|
||||
|
||||
// Disconnect Messages
|
||||
public static string BanMessage;
|
||||
public static string IdleKickMessageFormat;
|
||||
|
||||
// Swf
|
||||
public static string BoatCutscene;
|
||||
public static string WagonCutscene;
|
||||
public static string BallonCutscene;
|
||||
public static string FormatNpcChatpoint(string name, string shortDescription, string chatText)
|
||||
{
|
||||
return NpcChatpointFormat.Replace("%NAME%", name).Replace("%DESCRIPTION%", shortDescription).Replace("%TEXT%", chatText);
|
||||
}
|
||||
|
||||
public static string FormatNpcTalkButton(int npcId)
|
||||
{
|
||||
return NpcTalkButton.Replace("%ID%", npcId.ToString());
|
||||
}
|
||||
public static string FormatNpcInformationButton(int npcId)
|
||||
{
|
||||
return NpcInformationButton.Replace("%ID%", npcId.ToString());
|
||||
}
|
||||
|
||||
|
||||
public static string FormatNpcReply(string replyText, int replyId)
|
||||
{
|
||||
return NpcReplyFormat.Replace("%TEXT%", replyText).Replace("%ID%", replyId.ToString());
|
||||
}
|
||||
|
||||
public static string FormatNpcStartChatMessage(int iconId, string name, string shortDescription, int npcId)
|
||||
{
|
||||
return NpcStartChatFormat.Replace("%ICONID%", iconId.ToString()).Replace("%NAME%", name).Replace("%DESCRIPTION%", shortDescription).Replace("%ID%", npcId.ToString());
|
||||
}
|
||||
|
||||
public static string FormatGlobalChatViolationMessage(Chat.Reason violationReason)
|
||||
{
|
||||
return ChatViolationMessageFormat.Replace("%AMOUNT%", RequiredChatViolations.ToString()).Replace("%REASON%", violationReason.Message);
|
||||
}
|
||||
|
||||
public static string FormatPlayerInventoryHeaderMeta(int itemCount, int maxItems)
|
||||
{
|
||||
return InventoryHeaderFormat.Replace("%ITEMCOUNT%", itemCount.ToString()).Replace("%MAXITEMS%", maxItems.ToString());
|
||||
}
|
||||
|
||||
public static string FormatPlayerInventoryItemMeta(int iconid, int count, string name)
|
||||
{
|
||||
return InventoryItemFormat.Replace("%ICONID%", iconid.ToString()).Replace("%COUNT%", count.ToString()).Replace("%TITLE%", name);
|
||||
}
|
||||
|
||||
public static string FormatItemThrowButton(int randomid)
|
||||
{
|
||||
return ItemThrowButton.Replace("%RANDOMID%", randomid.ToString());
|
||||
}
|
||||
public static string FormatItemConsumeButton(int randomid)
|
||||
{
|
||||
return ItemConsumeButton.Replace("%RANDOMID%", randomid.ToString());
|
||||
}
|
||||
public static string FormatItemInformationButton(int randomid)
|
||||
{
|
||||
return ItemInformationButton.Replace("%RANDOMID%", randomid.ToString());
|
||||
}
|
||||
|
||||
public static string FormatItemDropButton(int randomid)
|
||||
{
|
||||
return ItemDropButton.Replace("%RANDOMID%", randomid.ToString());
|
||||
}
|
||||
public static string FormatItemUseButton(int randomid)
|
||||
{
|
||||
return ItemUseButton.Replace("%RANDOMID%", randomid.ToString());
|
||||
}
|
||||
public static string FormatItemReadButton(int randomid)
|
||||
{
|
||||
return ItemReadButton.Replace("%RANDOMID%", randomid.ToString());
|
||||
}
|
||||
|
||||
// Meta
|
||||
public static string FormatTileName(string name)
|
||||
{
|
||||
return Messages.TileFormat.Replace("%TILENAME%", name);
|
||||
}
|
||||
public static string FormatGrabItemMessage(string name, int randomid, int iconid)
|
||||
{
|
||||
return GrabItemFormat.Replace("%ICONID%",iconid.ToString()).Replace("%ITEMNAME%", name).Replace("%RANDOMID%", randomid.ToString());
|
||||
}
|
||||
public static string FormatTransportMessage(string method, string place, int cost, int id, int x, int y)
|
||||
{
|
||||
string xy = "";
|
||||
xy += (char)(((x - 4) / 64) + 20);
|
||||
xy += (char)(((x - 4) % 64) + 20);
|
||||
|
||||
xy += (char)(((y - 1) / 64) + 20);
|
||||
xy += (char)(((y - 1) % 64) + 20);
|
||||
|
||||
int iconId = 253;
|
||||
if(method == "WAGON")
|
||||
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);
|
||||
}
|
||||
// For all
|
||||
public static string FormatGlobalChatMessage(string username, string message)
|
||||
{
|
||||
return GlobalChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||
}
|
||||
|
||||
public static string FormatBuddyChatMessage(string username, string message)
|
||||
{
|
||||
return BuddyChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||
}
|
||||
|
||||
public static string FormatIsleChatMessage(string username, string message)
|
||||
{
|
||||
return IsleChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||
}
|
||||
|
||||
public static string FormatNearbyChatMessage(string username, string message)
|
||||
{
|
||||
return NearChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||
}
|
||||
|
||||
public static string FormatHereChatMessage(string username, string message)
|
||||
{
|
||||
return HereChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||
}
|
||||
|
||||
public static string FormatDirectMessage(string username, string message)
|
||||
{
|
||||
return DirectChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||
}
|
||||
public static string FormatDirectMessageForMod(string username, string message)
|
||||
{
|
||||
return DirectChatFormatForModerators.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||
}
|
||||
|
||||
public static string FormatGlobalChatMessageForMod(string username, string message)
|
||||
{
|
||||
return GlobalChatFormatForModerators.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||
}
|
||||
|
||||
public static string FormatAdsChatMessage(string username, string message)
|
||||
{
|
||||
return AdsChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||
}
|
||||
|
||||
public static string FormatModChatMessage(string username, string message)
|
||||
{
|
||||
return ModChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||
}
|
||||
|
||||
public static string FormatAdminChatMessage(string username, string message)
|
||||
{
|
||||
return AdminChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message);
|
||||
}
|
||||
|
||||
|
||||
// For Sender
|
||||
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 FormatHereChatMessageForSender(int numbHere, string username, string message)
|
||||
{
|
||||
return HereChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbHere.ToString());
|
||||
}
|
||||
public static string FormatNearChatMessageForSender(int numbNear, string username, string message)
|
||||
{
|
||||
return NearChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbNear.ToString());
|
||||
}
|
||||
public static string FormatIsleChatMessageForSender(int numbIsle, string username, string message)
|
||||
{
|
||||
return IsleChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbIsle.ToString());
|
||||
}
|
||||
|
||||
public static string FormatAdminChatForSender(int numbAdmins, string username, string message)
|
||||
{
|
||||
return AdminChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbAdmins.ToString());
|
||||
}
|
||||
|
||||
public static string FormatModChatForSender(int numbMods, string username, string message)
|
||||
{
|
||||
return ModChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbMods.ToString());
|
||||
}
|
||||
public static string FormatDirectChatMessageForSender(string username,string toUsername, string message)
|
||||
{
|
||||
return DirectChatFormatForSender.Replace("%FROMUSER%", username).Replace("%TOUSER%", toUsername).Replace(" %MESSAGE%", message);
|
||||
}
|
||||
public static string FormatIdleWarningMessage()
|
||||
{
|
||||
return IdleWarningFormat.Replace("%WARN%", GameServer.IdleWarning.ToString()).Replace("%KICK%", GameServer.IdleTimeout.ToString());
|
||||
}
|
||||
|
||||
public static string FormatLoginMessage(string username)
|
||||
{
|
||||
return LoginMessageForamt.Replace("%USERNAME%", username);
|
||||
}
|
||||
|
||||
public static string FormatLogoutMessage(string username)
|
||||
{
|
||||
return LogoutMessageFormat.Replace("%USERNAME%", username);
|
||||
}
|
||||
|
||||
public static string FormatMOTD()
|
||||
{
|
||||
return MotdFormat.Replace("%MOTD%", ConfigReader.Motd);
|
||||
}
|
||||
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 System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using HISP.Player;
|
||||
using HISP.Server;
|
||||
|
||||
namespace Horse_Isle_Server
|
||||
namespace HISP.Game
|
||||
{
|
||||
class Meta
|
||||
{
|
||||
|
@ -30,7 +27,7 @@ namespace Horse_Isle_Server
|
|||
{
|
||||
string playersNearby = "";
|
||||
|
||||
User[] nearbyUsers = Server.GetNearbyUsers(x, y, true, true);
|
||||
User[] nearbyUsers = GameServer.GetNearbyUsers(x, y, true, true);
|
||||
if (nearbyUsers.Length > 1)
|
||||
{
|
||||
playersNearby += Messages.NearbyPlayers;
|
||||
|
@ -99,18 +96,49 @@ namespace Horse_Isle_Server
|
|||
}
|
||||
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)
|
||||
{
|
||||
string message = "";
|
||||
// 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);
|
||||
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;
|
||||
}
|
||||
public static string BuildSpecialTileInfo(World.SpecialTile specialTile)
|
||||
public static string BuildSpecialTileInfo(User user, World.SpecialTile specialTile)
|
||||
{
|
||||
string message = "";
|
||||
|
||||
|
@ -124,11 +152,7 @@ namespace Horse_Isle_Server
|
|||
if (specialTile.Description != null && specialTile.Description != "")
|
||||
message += specialTile.Description;
|
||||
|
||||
Npc.NpcEntry[] entries = Npc.GetNpcByXAndY(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);
|
||||
message += buildNpc(user, specialTile.X, specialTile.Y);
|
||||
|
||||
if (specialTile.Code == null)
|
||||
message += buildCommonInfo(specialTile.X, specialTile.Y);
|
||||
|
@ -184,29 +208,56 @@ namespace Horse_Isle_Server
|
|||
message += Messages.MetaTerminator;
|
||||
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 = "";
|
||||
message += Messages.FormatNpcChatpoint(npc.Name, npc.ShortDescription, chatpoint.ChatText);
|
||||
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.BackToMap + Messages.MetaTerminator;
|
||||
return message;
|
||||
}
|
||||
|
||||
public static string BuildMetaInfo(int x, int y)
|
||||
public static string BuildMetaInfo(User user, int x, int y)
|
||||
{
|
||||
string message = "";
|
||||
message += buildLocationString(x, y);
|
||||
|
||||
Npc.NpcEntry[] entries = Npc.GetNpcByXAndY(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 += buildNpc(user, x, y);
|
||||
|
||||
message += buildCommonInfo(x, y);
|
||||
return message;
|
|
@ -4,7 +4,7 @@ using System.Linq;
|
|||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Horse_Isle_Server
|
||||
namespace HISP.Game
|
||||
{
|
||||
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.Threading.Tasks;
|
||||
|
||||
namespace Horse_Isle_Server
|
||||
namespace HISP.Game
|
||||
{
|
||||
class Transport
|
||||
{
|
|
@ -1,216 +1,213 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Horse_Isle_Server
|
||||
{
|
||||
|
||||
class World
|
||||
{
|
||||
public struct Isle
|
||||
{
|
||||
public int StartX;
|
||||
public int EndX;
|
||||
public int StartY;
|
||||
public int EndY;
|
||||
public int Tileset;
|
||||
public string Name;
|
||||
}
|
||||
public struct Town
|
||||
{
|
||||
public int StartX;
|
||||
public int EndX;
|
||||
public int StartY;
|
||||
public int EndY;
|
||||
public string Name;
|
||||
}
|
||||
public struct Area
|
||||
{
|
||||
public int StartX;
|
||||
public int EndX;
|
||||
public int StartY;
|
||||
public int EndY;
|
||||
public string Name;
|
||||
}
|
||||
|
||||
|
||||
public struct Time
|
||||
{
|
||||
public int Minutes;
|
||||
public int Days;
|
||||
public int Years;
|
||||
}
|
||||
|
||||
public struct SpecialTile
|
||||
{
|
||||
public int X;
|
||||
public int Y;
|
||||
|
||||
public string Title;
|
||||
public string Description;
|
||||
|
||||
public string Code;
|
||||
public int ExitX;
|
||||
public int ExitY;
|
||||
|
||||
public string AutoplaySwf;
|
||||
public string TypeFlag;
|
||||
}
|
||||
public static Time ServerTime = new Time();
|
||||
|
||||
public static List<Isle> Isles = new List<Isle>();
|
||||
public static List<Town> Towns = new List<Town>();
|
||||
public static List<Area> Areas = new List<Area>();
|
||||
public static List<SpecialTile> SpecialTiles = new List<SpecialTile>();
|
||||
public static void TickWorldClock()
|
||||
{
|
||||
ServerTime.Minutes += 1;
|
||||
|
||||
int hours = ServerTime.Minutes / 60;
|
||||
|
||||
// Periodically write time to database:
|
||||
if (ServerTime.Minutes % 10 == 0) // every 10-in-game minutes)
|
||||
Database.SetServerTime(ServerTime.Minutes, ServerTime.Days, ServerTime.Years);
|
||||
|
||||
if (hours == 24) // 1 day
|
||||
{
|
||||
ServerTime.Days += 1;
|
||||
ServerTime.Minutes = 0;
|
||||
}
|
||||
|
||||
if (ServerTime.Days == 366) // 1 year!
|
||||
{
|
||||
ServerTime.Days = 0;
|
||||
ServerTime.Years += 1;
|
||||
}
|
||||
}
|
||||
|
||||
public static void ReadWorldData()
|
||||
{
|
||||
Logger.DebugPrint("Reading time from database...");
|
||||
ServerTime.Minutes = Database.GetServerTime();
|
||||
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
|
||||
{
|
||||
GetArea(x, y);
|
||||
return true;
|
||||
}
|
||||
catch (KeyNotFoundException)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public static bool InTown(int x, int y)
|
||||
{
|
||||
try
|
||||
{
|
||||
GetTown(x, y);
|
||||
return true;
|
||||
}
|
||||
catch (KeyNotFoundException)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public static bool InSpecialTile(int x, int y)
|
||||
{
|
||||
try
|
||||
{
|
||||
GetSpecialTile(x, y);
|
||||
return true;
|
||||
}
|
||||
catch (KeyNotFoundException)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public static bool InIsle(int x, int y)
|
||||
{
|
||||
try
|
||||
{
|
||||
GetIsle(x, y);
|
||||
return true;
|
||||
}
|
||||
catch(KeyNotFoundException)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
public static SpecialTile GetSpecialTile(int x, int y)
|
||||
{
|
||||
foreach(SpecialTile specialTile in SpecialTiles)
|
||||
{
|
||||
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)
|
||||
{
|
||||
foreach(Isle isle in Isles)
|
||||
{
|
||||
|
||||
if (isle.StartX <= x && isle.EndX >= x && isle.StartY <= y && isle.EndY >= y)
|
||||
{
|
||||
return isle;
|
||||
}
|
||||
}
|
||||
throw new KeyNotFoundException("x,y not in an isle!");
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
throw new KeyNotFoundException("x,y not in an area!");
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
throw new KeyNotFoundException("x,y not in a town!");
|
||||
}
|
||||
|
||||
public static bool CanDropItems(int x, int y)
|
||||
{
|
||||
if (World.InSpecialTile(x, y))
|
||||
{
|
||||
World.SpecialTile tile = World.GetSpecialTile(x, y);
|
||||
if (tile.Code != null)
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
public static string GetWeather()
|
||||
{
|
||||
return Database.GetWorldWeather();
|
||||
}
|
||||
}
|
||||
}
|
||||
using System.Collections.Generic;
|
||||
using HISP.Server;
|
||||
|
||||
namespace HISP.Game
|
||||
{
|
||||
|
||||
class World
|
||||
{
|
||||
public struct Isle
|
||||
{
|
||||
public int StartX;
|
||||
public int EndX;
|
||||
public int StartY;
|
||||
public int EndY;
|
||||
public int Tileset;
|
||||
public string Name;
|
||||
}
|
||||
public struct Town
|
||||
{
|
||||
public int StartX;
|
||||
public int EndX;
|
||||
public int StartY;
|
||||
public int EndY;
|
||||
public string Name;
|
||||
}
|
||||
public struct Area
|
||||
{
|
||||
public int StartX;
|
||||
public int EndX;
|
||||
public int StartY;
|
||||
public int EndY;
|
||||
public string Name;
|
||||
}
|
||||
|
||||
|
||||
public struct Time
|
||||
{
|
||||
public int Minutes;
|
||||
public int Days;
|
||||
public int Years;
|
||||
}
|
||||
|
||||
public struct SpecialTile
|
||||
{
|
||||
public int X;
|
||||
public int Y;
|
||||
|
||||
public string Title;
|
||||
public string Description;
|
||||
|
||||
public string Code;
|
||||
public int ExitX;
|
||||
public int ExitY;
|
||||
|
||||
public string AutoplaySwf;
|
||||
public string TypeFlag;
|
||||
}
|
||||
public static Time ServerTime = new Time();
|
||||
|
||||
public static List<Isle> Isles = new List<Isle>();
|
||||
public static List<Town> Towns = new List<Town>();
|
||||
public static List<Area> Areas = new List<Area>();
|
||||
public static List<SpecialTile> SpecialTiles = new List<SpecialTile>();
|
||||
public static void TickWorldClock()
|
||||
{
|
||||
ServerTime.Minutes += 1;
|
||||
|
||||
int hours = ServerTime.Minutes / 60;
|
||||
|
||||
// Periodically write time to database:
|
||||
if (ServerTime.Minutes % 10 == 0) // every 10-in-game minutes)
|
||||
Database.SetServerTime(ServerTime.Minutes, ServerTime.Days, ServerTime.Years);
|
||||
|
||||
if (hours == 24) // 1 day
|
||||
{
|
||||
ServerTime.Days += 1;
|
||||
ServerTime.Minutes = 0;
|
||||
}
|
||||
|
||||
if (ServerTime.Days == 366) // 1 year!
|
||||
{
|
||||
ServerTime.Days = 0;
|
||||
ServerTime.Years += 1;
|
||||
}
|
||||
}
|
||||
|
||||
public static void ReadWorldData()
|
||||
{
|
||||
Logger.DebugPrint("Reading time from database...");
|
||||
ServerTime.Minutes = Database.GetServerTime();
|
||||
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
|
||||
{
|
||||
GetArea(x, y);
|
||||
return true;
|
||||
}
|
||||
catch (KeyNotFoundException)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public static bool InTown(int x, int y)
|
||||
{
|
||||
try
|
||||
{
|
||||
GetTown(x, y);
|
||||
return true;
|
||||
}
|
||||
catch (KeyNotFoundException)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public static bool InSpecialTile(int x, int y)
|
||||
{
|
||||
try
|
||||
{
|
||||
GetSpecialTile(x, y);
|
||||
return true;
|
||||
}
|
||||
catch (KeyNotFoundException)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public static bool InIsle(int x, int y)
|
||||
{
|
||||
try
|
||||
{
|
||||
GetIsle(x, y);
|
||||
return true;
|
||||
}
|
||||
catch(KeyNotFoundException)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
public static SpecialTile GetSpecialTile(int x, int y)
|
||||
{
|
||||
foreach(SpecialTile specialTile in SpecialTiles)
|
||||
{
|
||||
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)
|
||||
{
|
||||
foreach(Isle isle in Isles)
|
||||
{
|
||||
|
||||
if (isle.StartX <= x && isle.EndX >= x && isle.StartY <= y && isle.EndY >= y)
|
||||
{
|
||||
return isle;
|
||||
}
|
||||
}
|
||||
throw new KeyNotFoundException("x,y not in an isle!");
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
throw new KeyNotFoundException("x,y not in an area!");
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
throw new KeyNotFoundException("x,y not in a town!");
|
||||
}
|
||||
|
||||
public static bool CanDropItems(int x, int y)
|
||||
{
|
||||
if (World.InSpecialTile(x, y))
|
||||
{
|
||||
World.SpecialTile tile = World.GetSpecialTile(x, y);
|
||||
if (tile.Code != null)
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
public static string GetWeather()
|
||||
{
|
||||
return Database.GetWorldWeather();
|
||||
}
|
||||
}
|
||||
}
|
|
@ -6,7 +6,7 @@
|
|||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{C48CBD82-AB30-494A-8FFA-4DE7069B5827}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>Horse_Isle_Server</RootNamespace>
|
||||
<RootNamespace>HISP</RootNamespace>
|
||||
<AssemblyName>Horse Isle Server</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
|
||||
<LangVersion>8.0</LangVersion>
|
||||
|
@ -72,40 +72,42 @@
|
|||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Action.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="Game\Quest.cs" />
|
||||
<Compile Include="Properties\Resources.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="RandomID.cs" />
|
||||
<Compile Include="Server.cs" />
|
||||
<Compile Include="Transport.cs" />
|
||||
<Compile Include="User.cs" />
|
||||
<Compile Include="World.cs" />
|
||||
<Compile Include="Security\Authentication.cs" />
|
||||
<Compile Include="Game\Chat.cs" />
|
||||
<Compile Include="Server\GameClient.cs" />
|
||||
<Compile Include="Server\Converters.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>
|
||||
<None Include="packages.config" />
|
||||
|
@ -114,6 +116,7 @@
|
|||
<ItemGroup>
|
||||
<EmbeddedResource Include="Properties\Resources.resx">
|
||||
<Generator>ResXFileCodeGenerator</Generator>
|
||||
<SubType>Designer</SubType>
|
||||
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
|
|
|
@ -1,10 +1,7 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Collections.Generic;
|
||||
using HISP.Server;
|
||||
|
||||
namespace Horse_Isle_Server
|
||||
namespace HISP.Player
|
||||
{
|
||||
class Friends
|
||||
{
|
|
@ -1,20 +1,16 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Horse_Isle_Server
|
||||
{
|
||||
class Mailbox
|
||||
{
|
||||
private User baseUser;
|
||||
public int MailCount;
|
||||
|
||||
public Mailbox(User user)
|
||||
{
|
||||
MailCount = Database.CheckMailcount(user.Id);
|
||||
baseUser = user;
|
||||
}
|
||||
}
|
||||
}
|
||||
using HISP.Server;
|
||||
|
||||
namespace HISP.Player
|
||||
{
|
||||
class Mailbox
|
||||
{
|
||||
private User baseUser;
|
||||
public int MailCount;
|
||||
|
||||
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.Text;
|
||||
using System.Threading.Tasks;
|
||||
using HISP.Game;
|
||||
using HISP.Server;
|
||||
|
||||
namespace Horse_Isle_Server
|
||||
namespace HISP.Player
|
||||
{
|
||||
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.Collections.Generic;
|
||||
|
||||
namespace Horse_Isle_Server
|
||||
{
|
||||
class User
|
||||
{
|
||||
public int Id;
|
||||
public string Username;
|
||||
public bool Administrator;
|
||||
public bool Moderator;
|
||||
public bool NewPlayer = false;
|
||||
public Client LoggedinClient;
|
||||
|
||||
public bool MuteAds = false;
|
||||
public bool MuteGlobal = false;
|
||||
public bool MuteIsland = false;
|
||||
public bool MuteNear = false;
|
||||
public bool MuteHere = false;
|
||||
public bool MuteBuddy = false;
|
||||
public bool MutePrivateMessage = false;
|
||||
public bool MuteBuddyRequests = false;
|
||||
public bool MuteSocials = false;
|
||||
public bool MuteLogins = false;
|
||||
|
||||
public bool Stealth = false;
|
||||
|
||||
public int Facing;
|
||||
public Mailbox MailBox;
|
||||
public Friends Friends;
|
||||
public string Password; // For chat filter.
|
||||
public PlayerInventory Inventory;
|
||||
public Npc.NpcEntry LastTalkedToNpc;
|
||||
public int ChatViolations
|
||||
{
|
||||
get
|
||||
{
|
||||
return chatViolations;
|
||||
}
|
||||
set
|
||||
{
|
||||
Database.SetChatViolations(value,Id);
|
||||
chatViolations = value;
|
||||
}
|
||||
}
|
||||
public string ProfilePage {
|
||||
get
|
||||
{
|
||||
return profilePage;
|
||||
}
|
||||
set
|
||||
{
|
||||
Database.SetPlayerProfile(value, Id);
|
||||
profilePage = value;
|
||||
}
|
||||
}
|
||||
|
||||
public int Money
|
||||
{
|
||||
get
|
||||
{
|
||||
return money;
|
||||
}
|
||||
set
|
||||
{
|
||||
Database.SetPlayerMoney(value, Id);
|
||||
Server.UpdatePlayer(LoggedinClient);
|
||||
money = value;
|
||||
}
|
||||
}
|
||||
|
||||
public int BankMoney
|
||||
{
|
||||
get
|
||||
{
|
||||
return bankMoney;
|
||||
}
|
||||
set
|
||||
{
|
||||
Database.SetPlayerBankMoney(value, Id);
|
||||
bankMoney = value;
|
||||
}
|
||||
}
|
||||
|
||||
public int X
|
||||
{
|
||||
get
|
||||
{
|
||||
return x;
|
||||
}
|
||||
set
|
||||
{
|
||||
Database.SetPlayerX(value, Id);
|
||||
x = value;
|
||||
}
|
||||
}
|
||||
|
||||
public int Y
|
||||
{
|
||||
get
|
||||
{
|
||||
return y;
|
||||
}
|
||||
set
|
||||
{
|
||||
Database.SetPlayerY(value, Id);
|
||||
y = value;
|
||||
}
|
||||
}
|
||||
|
||||
public int CharacterId
|
||||
{
|
||||
get
|
||||
{
|
||||
return charId;
|
||||
}
|
||||
set
|
||||
{
|
||||
Database.SetPlayerCharId(value, Id);
|
||||
charId = value;
|
||||
}
|
||||
}
|
||||
|
||||
private int chatViolations;
|
||||
private int charId;
|
||||
private string profilePage;
|
||||
private int x;
|
||||
private int y;
|
||||
private int money;
|
||||
private int bankMoney;
|
||||
|
||||
public byte[] SecCodeSeeds = new byte[3];
|
||||
public int SecCodeInc = 0;
|
||||
public int SecCodeCount = 0;
|
||||
|
||||
|
||||
public byte[] GenerateSecCode()
|
||||
{
|
||||
var i = 0;
|
||||
SecCodeCount++;
|
||||
SecCodeSeeds[SecCodeCount % 3] = (byte)(SecCodeSeeds[SecCodeCount % 3] + SecCodeInc);
|
||||
SecCodeSeeds[SecCodeCount % 3] = (byte)(SecCodeSeeds[SecCodeCount % 3] % 92);
|
||||
i = SecCodeSeeds[0] + SecCodeSeeds[1] * SecCodeSeeds[2] - SecCodeSeeds[1];
|
||||
i = Math.Abs(i);
|
||||
i = i % 92;
|
||||
|
||||
byte[] SecCode = new byte[4];
|
||||
SecCode[0] = (byte)(SecCodeSeeds[0] + 33);
|
||||
SecCode[1] = (byte)(SecCodeSeeds[1] + 33);
|
||||
SecCode[2] = (byte)(SecCodeSeeds[2] + 33);
|
||||
SecCode[3] = (byte)(i + 33);
|
||||
return SecCode;
|
||||
}
|
||||
|
||||
public User(Client baseClient, int UserId)
|
||||
{
|
||||
if (!Database.CheckUserExist(UserId))
|
||||
throw new KeyNotFoundException("User " + UserId + " not found in database!");
|
||||
|
||||
if (!Database.CheckUserExtExists(UserId))
|
||||
{
|
||||
Database.CreateUserExt(UserId);
|
||||
NewPlayer = true;
|
||||
}
|
||||
|
||||
Id = UserId;
|
||||
Username = Database.GetUsername(UserId);
|
||||
|
||||
Administrator = Database.CheckUserIsAdmin(Username);
|
||||
Moderator = Database.CheckUserIsModerator(Username);
|
||||
|
||||
chatViolations = Database.GetChatViolations(UserId);
|
||||
x = Database.GetPlayerX(UserId);
|
||||
y = Database.GetPlayerY(UserId);
|
||||
charId = Database.GetPlayerCharId(UserId);
|
||||
|
||||
Facing = PacketBuilder.DIRECTION_DOWN;
|
||||
|
||||
money = Database.GetPlayerMoney(UserId);
|
||||
bankMoney = Database.GetPlayerBankMoney(UserId);
|
||||
|
||||
profilePage = Database.GetPlayerProfile(UserId);
|
||||
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using HISP.Game;
|
||||
using HISP.Server;
|
||||
namespace HISP.Player
|
||||
{
|
||||
class User
|
||||
{
|
||||
public int Id;
|
||||
public string Username;
|
||||
public bool Administrator;
|
||||
public bool Moderator;
|
||||
public bool NewPlayer = false;
|
||||
public GameClient LoggedinClient;
|
||||
|
||||
public bool MuteAds = false;
|
||||
public bool MuteGlobal = false;
|
||||
public bool MuteIsland = false;
|
||||
public bool MuteNear = false;
|
||||
public bool MuteHere = false;
|
||||
public bool MuteBuddy = false;
|
||||
public bool MutePrivateMessage = false;
|
||||
public bool MuteBuddyRequests = false;
|
||||
public bool MuteSocials = false;
|
||||
public bool MuteLogins = false;
|
||||
|
||||
public bool Stealth = false;
|
||||
|
||||
public int Facing;
|
||||
public Mailbox MailBox;
|
||||
public Friends Friends;
|
||||
public string Password; // For chat filter.
|
||||
public PlayerInventory Inventory;
|
||||
public Npc.NpcEntry LastTalkedToNpc;
|
||||
public PlayerQuests Quests;
|
||||
public int ChatViolations
|
||||
{
|
||||
get
|
||||
{
|
||||
return chatViolations;
|
||||
}
|
||||
set
|
||||
{
|
||||
Database.SetChatViolations(value,Id);
|
||||
chatViolations = value;
|
||||
}
|
||||
}
|
||||
public string ProfilePage {
|
||||
get
|
||||
{
|
||||
return profilePage;
|
||||
}
|
||||
set
|
||||
{
|
||||
Database.SetPlayerProfile(value, Id);
|
||||
profilePage = value;
|
||||
}
|
||||
}
|
||||
|
||||
public int Money
|
||||
{
|
||||
get
|
||||
{
|
||||
return money;
|
||||
}
|
||||
set
|
||||
{
|
||||
Database.SetPlayerMoney(value, Id);
|
||||
money = value;
|
||||
GameServer.UpdatePlayer(LoggedinClient);
|
||||
}
|
||||
}
|
||||
|
||||
public int QuestPoints
|
||||
{
|
||||
get
|
||||
{
|
||||
return questPoints;
|
||||
}
|
||||
set
|
||||
{
|
||||
Database.SetPlayerQuestPoints(value, Id);
|
||||
questPoints = value;
|
||||
}
|
||||
}
|
||||
|
||||
public int BankMoney
|
||||
{
|
||||
get
|
||||
{
|
||||
return bankMoney;
|
||||
}
|
||||
set
|
||||
{
|
||||
Database.SetPlayerBankMoney(value, Id);
|
||||
bankMoney = value;
|
||||
}
|
||||
}
|
||||
|
||||
public int X
|
||||
{
|
||||
get
|
||||
{
|
||||
return x;
|
||||
}
|
||||
set
|
||||
{
|
||||
Database.SetPlayerX(value, Id);
|
||||
x = value;
|
||||
}
|
||||
}
|
||||
|
||||
public int Y
|
||||
{
|
||||
get
|
||||
{
|
||||
return y;
|
||||
}
|
||||
set
|
||||
{
|
||||
Database.SetPlayerY(value, Id);
|
||||
y = value;
|
||||
}
|
||||
}
|
||||
|
||||
public int CharacterId
|
||||
{
|
||||
get
|
||||
{
|
||||
return charId;
|
||||
}
|
||||
set
|
||||
{
|
||||
Database.SetPlayerCharId(value, Id);
|
||||
charId = value;
|
||||
}
|
||||
}
|
||||
|
||||
private int chatViolations;
|
||||
private int charId;
|
||||
private string profilePage;
|
||||
private int x;
|
||||
private int y;
|
||||
private int money;
|
||||
private int questPoints;
|
||||
private int bankMoney;
|
||||
|
||||
public byte[] SecCodeSeeds = new byte[3];
|
||||
public int SecCodeInc = 0;
|
||||
public int SecCodeCount = 0;
|
||||
|
||||
|
||||
public byte[] GenerateSecCode()
|
||||
{
|
||||
var i = 0;
|
||||
SecCodeCount++;
|
||||
SecCodeSeeds[SecCodeCount % 3] = (byte)(SecCodeSeeds[SecCodeCount % 3] + SecCodeInc);
|
||||
SecCodeSeeds[SecCodeCount % 3] = (byte)(SecCodeSeeds[SecCodeCount % 3] % 92);
|
||||
i = SecCodeSeeds[0] + SecCodeSeeds[1] * SecCodeSeeds[2] - SecCodeSeeds[1];
|
||||
i = Math.Abs(i);
|
||||
i = i % 92;
|
||||
|
||||
byte[] SecCode = new byte[4];
|
||||
SecCode[0] = (byte)(SecCodeSeeds[0] + 33);
|
||||
SecCode[1] = (byte)(SecCodeSeeds[1] + 33);
|
||||
SecCode[2] = (byte)(SecCodeSeeds[2] + 33);
|
||||
SecCode[3] = (byte)(i + 33);
|
||||
return SecCode;
|
||||
}
|
||||
|
||||
public User(GameClient baseClient, int UserId)
|
||||
{
|
||||
if (!Database.CheckUserExist(UserId))
|
||||
throw new KeyNotFoundException("User " + UserId + " not found in database!");
|
||||
|
||||
if (!Database.CheckUserExtExists(UserId))
|
||||
{
|
||||
Database.CreateUserExt(UserId);
|
||||
NewPlayer = true;
|
||||
}
|
||||
|
||||
Id = UserId;
|
||||
Username = Database.GetUsername(UserId);
|
||||
|
||||
Administrator = Database.CheckUserIsAdmin(Username);
|
||||
Moderator = Database.CheckUserIsModerator(Username);
|
||||
|
||||
chatViolations = Database.GetChatViolations(UserId);
|
||||
x = Database.GetPlayerX(UserId);
|
||||
y = Database.GetPlayerY(UserId);
|
||||
charId = Database.GetPlayerCharId(UserId);
|
||||
|
||||
Facing = PacketBuilder.DIRECTION_DOWN;
|
||||
|
||||
money = Database.GetPlayerMoney(UserId);
|
||||
bankMoney = Database.GetPlayerBankMoney(UserId);
|
||||
questPoints = Database.GetPlayerQuestPoints(UserId);
|
||||
|
||||
profilePage = Database.GetPlayerProfile(UserId);
|
||||
|
||||
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.IO;
|
||||
using System.Reflection;
|
||||
|
||||
namespace Horse_Isle_Server
|
||||
using HISP.Game;
|
||||
using HISP.Security;
|
||||
using HISP.Server;
|
||||
namespace HISP
|
||||
{
|
||||
class Program
|
||||
{
|
||||
|
@ -19,7 +21,7 @@ namespace Horse_Isle_Server
|
|||
Gamedata.ReadGamedata();
|
||||
World.ReadWorldData();
|
||||
DroppedItems.Init();
|
||||
Server.StartServer();
|
||||
GameServer.StartServer();
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace Horse_Isle_Server.Properties {
|
||||
namespace HISP.Properties {
|
||||
using System;
|
||||
|
||||
|
||||
|
@ -39,7 +39,7 @@ namespace Horse_Isle_Server.Properties {
|
|||
internal static global::System.Resources.ResourceManager ResourceManager {
|
||||
get {
|
||||
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;
|
||||
}
|
||||
return resourceMan;
|
||||
|
@ -62,7 +62,7 @@ namespace Horse_Isle_Server.Properties {
|
|||
|
||||
/// <summary>
|
||||
/// 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>.
|
||||
/// </summary>
|
||||
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=0.0.0.0
|
||||
///# Port the server will bind to (default: 1080)
|
||||
///port=1080
|
||||
///# Port the server will bind to (default: 12321)
|
||||
///port=12321
|
||||
///
|
||||
///# MariaDB Database
|
||||
///db_ip=127.0.0.1
|
||||
///db_name=beta
|
||||
///db_username=root
|
||||
///db_password=test123
|
||||
///db_port=3306
|
||||
///
|
||||
///# Map Data
|
||||
///map=MapData.bmp
|
||||
///overlaymap=oMapData.bmp
|
||||
///map=HI1.MAP
|
||||
///
|
||||
///# JSON Format Data
|
||||
///
|
||||
///gamedata=gamedata.json
|
||||
///
|
||||
///# Cross-Domain Policy File
|
||||
///crossdomain="CrossDomainPolicy.xml
|
||||
///crossdomain=CrossDomainPolicy.xml
|
||||
///
|
||||
///# Should print debug logs
|
||||
///debug=false.
|
||||
///# Red Text Stating "Todays Note:"
|
||||
///motd=April 11, 2020. New breed, C [rest of string was truncated]";.
|
||||
/// </summary>
|
||||
internal static string DefaultServerProperties {
|
||||
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>
|
||||
</data>
|
||||
<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>
|
||||
</root>
|
|
@ -18,8 +18,6 @@ map=HI1.MAP
|
|||
# JSON Format Data
|
||||
|
||||
gamedata=gamedata.json
|
||||
npc=npc.json
|
||||
quest=action.json
|
||||
|
||||
# Cross-Domain Policy File
|
||||
crossdomain=CrossDomainPolicy.xml
|
||||
|
|
|
@ -1,89 +1,87 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Security.Cryptography;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Horse_Isle_Server
|
||||
{
|
||||
class Authentication
|
||||
{
|
||||
public static string DecryptLogin(string encpass)
|
||||
{
|
||||
string decrypt = "";
|
||||
string ROTPOOL = "bl7Jgk61IZdnY mfDN5zjM2XLqTCty4WSEoKR3BFVQsaUhHOAx0rPwp9uc8iGve";
|
||||
string POSPOOL = "DQc3uxiGsKZatMmOS5qYveN71zoPTk8yU0H2w9VjprBXWn l4FJd6IRbhgACfEL";
|
||||
string ROTPOOL2 = "evGi8cu9pwPr0xAOHhUasQVFB3RKoESW4ytCTqLX2Mjz5NDfm YndZI16kgJ7lb";
|
||||
|
||||
|
||||
int i = 0;
|
||||
int ii = 0;
|
||||
while (i < encpass.Length)
|
||||
{
|
||||
int ROT = ROTPOOL.IndexOf(encpass[i].ToString());
|
||||
int POS = POSPOOL.IndexOf(encpass[i + 1].ToString());
|
||||
POS -= (ROT + ii);
|
||||
if (POS < 0)
|
||||
{
|
||||
POS = (POS / -1) - 1;
|
||||
|
||||
while (POS >= ROTPOOL.Length)
|
||||
{
|
||||
POS -= ROTPOOL.Length;
|
||||
}
|
||||
|
||||
decrypt += ROTPOOL2[POS];
|
||||
}
|
||||
else
|
||||
{
|
||||
while (POS >= ROTPOOL.Length)
|
||||
{
|
||||
POS -= ROTPOOL.Length;
|
||||
}
|
||||
|
||||
decrypt += ROTPOOL[POS];
|
||||
}
|
||||
|
||||
i += 2;
|
||||
ii += 1;
|
||||
}
|
||||
return decrypt.Replace(" ", "");
|
||||
}
|
||||
|
||||
|
||||
|
||||
public static byte[] HashAndSalt(string plaintext, byte[] salt)
|
||||
{
|
||||
byte[] plaintextBytes = Encoding.UTF8.GetBytes(plaintext);
|
||||
|
||||
SHA512 sha512 = new SHA512Managed();
|
||||
byte[] hash = sha512.ComputeHash(plaintextBytes);
|
||||
|
||||
for (int i = 0; i < hash.Length; i++)
|
||||
{
|
||||
hash[i] ^= salt[i];
|
||||
}
|
||||
|
||||
|
||||
byte[] finalHash = sha512.ComputeHash(hash);
|
||||
|
||||
return finalHash;
|
||||
}
|
||||
|
||||
public static bool CheckPassword(string username, string password)
|
||||
{
|
||||
if(Database.CheckUserExist(username))
|
||||
{
|
||||
byte[] expectedPassword = Database.GetPasswordHash(username);
|
||||
byte[] salt = Database.GetPasswordSalt(username);
|
||||
byte[] hashedPassword = HashAndSalt(password, salt);
|
||||
|
||||
if (Enumerable.SequenceEqual(expectedPassword, hashedPassword))
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
using System.Linq;
|
||||
using System.Security.Cryptography;
|
||||
using System.Text;
|
||||
using HISP.Server;
|
||||
|
||||
namespace HISP.Security
|
||||
{
|
||||
class Authentication
|
||||
{
|
||||
public static string DecryptLogin(string encpass)
|
||||
{
|
||||
string decrypt = "";
|
||||
string ROTPOOL = "bl7Jgk61IZdnY mfDN5zjM2XLqTCty4WSEoKR3BFVQsaUhHOAx0rPwp9uc8iGve";
|
||||
string POSPOOL = "DQc3uxiGsKZatMmOS5qYveN71zoPTk8yU0H2w9VjprBXWn l4FJd6IRbhgACfEL";
|
||||
string ROTPOOL2 = "evGi8cu9pwPr0xAOHhUasQVFB3RKoESW4ytCTqLX2Mjz5NDfm YndZI16kgJ7lb";
|
||||
|
||||
|
||||
int i = 0;
|
||||
int ii = 0;
|
||||
while (i < encpass.Length)
|
||||
{
|
||||
int ROT = ROTPOOL.IndexOf(encpass[i].ToString());
|
||||
int POS = POSPOOL.IndexOf(encpass[i + 1].ToString());
|
||||
POS -= (ROT + ii);
|
||||
if (POS < 0)
|
||||
{
|
||||
POS = (POS / -1) - 1;
|
||||
|
||||
while (POS >= ROTPOOL.Length)
|
||||
{
|
||||
POS -= ROTPOOL.Length;
|
||||
}
|
||||
|
||||
decrypt += ROTPOOL2[POS];
|
||||
}
|
||||
else
|
||||
{
|
||||
while (POS >= ROTPOOL.Length)
|
||||
{
|
||||
POS -= ROTPOOL.Length;
|
||||
}
|
||||
|
||||
decrypt += ROTPOOL[POS];
|
||||
}
|
||||
|
||||
i += 2;
|
||||
ii += 1;
|
||||
}
|
||||
return decrypt.Replace(" ", "");
|
||||
}
|
||||
|
||||
|
||||
|
||||
public static byte[] HashAndSalt(string plaintext, byte[] salt)
|
||||
{
|
||||
byte[] plaintextBytes = Encoding.UTF8.GetBytes(plaintext);
|
||||
|
||||
SHA512 sha512 = new SHA512Managed();
|
||||
byte[] hash = sha512.ComputeHash(plaintextBytes);
|
||||
|
||||
for (int i = 0; i < hash.Length; i++)
|
||||
{
|
||||
hash[i] ^= salt[i];
|
||||
}
|
||||
|
||||
|
||||
byte[] finalHash = sha512.ComputeHash(hash);
|
||||
|
||||
return finalHash;
|
||||
}
|
||||
|
||||
public static bool CheckPassword(string username, string password)
|
||||
{
|
||||
if(Database.CheckUserExist(username))
|
||||
{
|
||||
byte[] expectedPassword = Database.GetPasswordHash(username);
|
||||
byte[] salt = Database.GetPasswordSalt(username);
|
||||
byte[] hashedPassword = HashAndSalt(password, salt);
|
||||
|
||||
if (Enumerable.SequenceEqual(expectedPassword, hashedPassword))
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
|
@ -1,34 +1,30 @@
|
|||
using Horse_Isle_Server.Properties;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Horse_Isle_Server
|
||||
{
|
||||
class CrossDomainPolicy
|
||||
{
|
||||
public static byte[] GetPolicy()
|
||||
{
|
||||
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);
|
||||
|
||||
ms.Seek(0x00, SeekOrigin.Begin);
|
||||
byte[] policyFileData = ms.ToArray();
|
||||
ms.Close();
|
||||
|
||||
return policyFileData;
|
||||
}
|
||||
}
|
||||
}
|
||||
using HISP.Properties;
|
||||
using System;
|
||||
using System.IO;
|
||||
using HISP.Server;
|
||||
namespace HISP.Security
|
||||
{
|
||||
class CrossDomainPolicy
|
||||
{
|
||||
public static byte[] GetPolicy()
|
||||
{
|
||||
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);
|
||||
|
||||
ms.Seek(0x00, SeekOrigin.Begin);
|
||||
byte[] policyFileData = ms.ToArray();
|
||||
ms.Close();
|
||||
|
||||
return policyFileData;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,10 +1,5 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Horse_Isle_Server
|
||||
namespace HISP.Security
|
||||
{
|
||||
class RandomID
|
||||
{
|
|
@ -1,120 +1,111 @@
|
|||
using Horse_Isle_Server.Properties;
|
||||
using System;
|
||||
using System.IO;
|
||||
|
||||
namespace Horse_Isle_Server
|
||||
{
|
||||
|
||||
class ConfigReader
|
||||
{
|
||||
public static int Port;
|
||||
public static string BindIP;
|
||||
|
||||
public static string DatabaseIP;
|
||||
public static string DatabaseUsername;
|
||||
public static string DatabaseName;
|
||||
public static string DatabasePassword;
|
||||
public static int DatabasePort;
|
||||
|
||||
public static string Motd;
|
||||
public static string MapFile;
|
||||
public static string GameDataFile;
|
||||
public static string NpcDataFile;
|
||||
public static string QuestDataFile;
|
||||
public static string CrossDomainPolicyFile;
|
||||
public static bool Debug;
|
||||
|
||||
public static bool BadWords;
|
||||
public static bool DoCorrections;
|
||||
|
||||
private static string ConfigurationFileName = "server.properties";
|
||||
public static void OpenConfig()
|
||||
{
|
||||
if (!File.Exists(ConfigurationFileName))
|
||||
{
|
||||
Logger.ErrorPrint(ConfigurationFileName+" not found! writing default.");
|
||||
File.WriteAllText(ConfigurationFileName,Resources.DefaultServerProperties);
|
||||
}
|
||||
|
||||
string[] configFile = File.ReadAllLines(ConfigurationFileName);
|
||||
foreach (string setting in configFile)
|
||||
{
|
||||
/*
|
||||
* Avoid crashing.
|
||||
*/
|
||||
if (setting.Length < 1)
|
||||
continue;
|
||||
if (setting[0] == '#')
|
||||
continue;
|
||||
if (!setting.Contains("="))
|
||||
continue;
|
||||
|
||||
string[] dataPair = setting.Split('=');
|
||||
|
||||
string key = dataPair[0];
|
||||
string data = dataPair[1];
|
||||
/*
|
||||
* Parse configuration file
|
||||
*/
|
||||
|
||||
switch (key)
|
||||
{
|
||||
case "port":
|
||||
Port = int.Parse(data);
|
||||
break;
|
||||
case "ip":
|
||||
BindIP = data;
|
||||
break;
|
||||
case "db_ip":
|
||||
DatabaseIP = data;
|
||||
break;
|
||||
case "db_username":
|
||||
DatabaseUsername = data;
|
||||
break;
|
||||
case "db_password":
|
||||
DatabasePassword = data;
|
||||
break;
|
||||
case "db_name":
|
||||
DatabaseName = data;
|
||||
break;
|
||||
case "db_port":
|
||||
DatabasePort = int.Parse(data);
|
||||
break;
|
||||
case "map":
|
||||
MapFile = data;
|
||||
break;
|
||||
case "motd":
|
||||
Motd = data;
|
||||
break;
|
||||
case "gamedata":
|
||||
GameDataFile = data;
|
||||
break;
|
||||
case "npc":
|
||||
NpcDataFile = data;
|
||||
break;
|
||||
case "quest":
|
||||
QuestDataFile = data;
|
||||
break;
|
||||
case "crossdomain":
|
||||
CrossDomainPolicyFile = data;
|
||||
break;
|
||||
case "enable_corrections":
|
||||
BadWords = data == "true";
|
||||
break;
|
||||
case "enable_word_filter":
|
||||
DoCorrections = data == "true";
|
||||
break;
|
||||
case "debug":
|
||||
Debug = data == "true";
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
using HISP.Properties;
|
||||
using System.IO;
|
||||
|
||||
namespace HISP.Server
|
||||
{
|
||||
|
||||
class ConfigReader
|
||||
{
|
||||
public static int Port;
|
||||
public static string BindIP;
|
||||
|
||||
public static string DatabaseIP;
|
||||
public static string DatabaseUsername;
|
||||
public static string DatabaseName;
|
||||
public static string DatabasePassword;
|
||||
public static int DatabasePort;
|
||||
|
||||
public static string Motd;
|
||||
public static string MapFile;
|
||||
public static string GameDataFile;
|
||||
public static string CrossDomainPolicyFile;
|
||||
public static bool Debug;
|
||||
|
||||
public static bool BadWords;
|
||||
public static bool DoCorrections;
|
||||
|
||||
private static string ConfigurationFileName = "server.properties";
|
||||
public static void OpenConfig()
|
||||
{
|
||||
if (!File.Exists(ConfigurationFileName))
|
||||
{
|
||||
Logger.ErrorPrint(ConfigurationFileName+" not found! writing default.");
|
||||
File.WriteAllText(ConfigurationFileName,Resources.DefaultServerProperties);
|
||||
}
|
||||
|
||||
string[] configFile = File.ReadAllLines(ConfigurationFileName);
|
||||
foreach (string setting in configFile)
|
||||
{
|
||||
/*
|
||||
* Avoid crashing.
|
||||
*/
|
||||
if (setting.Length < 1)
|
||||
continue;
|
||||
if (setting[0] == '#')
|
||||
continue;
|
||||
if (!setting.Contains("="))
|
||||
continue;
|
||||
|
||||
string[] dataPair = setting.Split('=');
|
||||
|
||||
string key = dataPair[0];
|
||||
string data = dataPair[1];
|
||||
/*
|
||||
* Parse configuration file
|
||||
*/
|
||||
|
||||
switch (key)
|
||||
{
|
||||
case "port":
|
||||
Port = int.Parse(data);
|
||||
break;
|
||||
case "ip":
|
||||
BindIP = data;
|
||||
break;
|
||||
case "db_ip":
|
||||
DatabaseIP = data;
|
||||
break;
|
||||
case "db_username":
|
||||
DatabaseUsername = data;
|
||||
break;
|
||||
case "db_password":
|
||||
DatabasePassword = data;
|
||||
break;
|
||||
case "db_name":
|
||||
DatabaseName = data;
|
||||
break;
|
||||
case "db_port":
|
||||
DatabasePort = int.Parse(data);
|
||||
break;
|
||||
case "map":
|
||||
MapFile = data;
|
||||
break;
|
||||
case "motd":
|
||||
Motd = data;
|
||||
break;
|
||||
case "gamedata":
|
||||
GameDataFile = data;
|
||||
break;
|
||||
case "crossdomain":
|
||||
CrossDomainPolicyFile = data;
|
||||
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.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Horse_Isle_Server
|
||||
{
|
||||
class Converters
|
||||
{
|
||||
// Thanks Stackoverflow (https://stackoverflow.com/questions/321370/how-can-i-convert-a-hex-string-to-a-byte-array)
|
||||
private static int getHexVal(char hex)
|
||||
{
|
||||
int val = (int)hex;
|
||||
//For uppercase A-F letters:
|
||||
//return val - (val < 58 ? 48 : 55);
|
||||
//For lowercase a-f letters:
|
||||
//return val - (val < 58 ? 48 : 87);
|
||||
//Or the two combined, but a bit slower:
|
||||
return val - (val < 58 ? 48 : (val < 97 ? 55 : 87));
|
||||
}
|
||||
public static byte[] StringToByteArray(string hex)
|
||||
{
|
||||
if (hex.Length % 2 == 1)
|
||||
throw new ArgumentException("The binary key cannot have an odd number of digits");
|
||||
|
||||
byte[] arr = new byte[hex.Length >> 1];
|
||||
|
||||
for (int i = 0; i < hex.Length >> 1; ++i)
|
||||
{
|
||||
arr[i] = (byte)((getHexVal(hex[i << 1]) << 4) + (getHexVal(hex[(i << 1) + 1])));
|
||||
}
|
||||
|
||||
return arr;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace HISP.Server
|
||||
{
|
||||
class Converters
|
||||
{
|
||||
// Thanks Stackoverflow (https://stackoverflow.com/questions/321370/how-can-i-convert-a-hex-string-to-a-byte-array)
|
||||
private static int getHexVal(char hex)
|
||||
{
|
||||
int val = (int)hex;
|
||||
//For uppercase A-F letters:
|
||||
//return val - (val < 58 ? 48 : 55);
|
||||
//For lowercase a-f letters:
|
||||
//return val - (val < 58 ? 48 : 87);
|
||||
//Or the two combined, but a bit slower:
|
||||
return val - (val < 58 ? 48 : (val < 97 ? 55 : 87));
|
||||
}
|
||||
public static byte[] StringToByteArray(string hex)
|
||||
{
|
||||
if (hex.Length % 2 == 1)
|
||||
throw new ArgumentException("The binary key cannot have an odd number of digits");
|
||||
|
||||
byte[] arr = new byte[hex.Length >> 1];
|
||||
|
||||
for (int i = 0; i < hex.Length >> 1; ++i)
|
||||
{
|
||||
arr[i] = (byte)((getHexVal(hex[i << 1]) << 4) + (getHexVal(hex[(i << 1) + 1])));
|
||||
}
|
||||
|
||||
return arr;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load diff
|
@ -1,235 +1,238 @@
|
|||
using System;
|
||||
using System.IO;
|
||||
using System.Net.Sockets;
|
||||
using System.Text;
|
||||
using System.Threading;
|
||||
namespace Horse_Isle_Server
|
||||
{
|
||||
class Client
|
||||
{
|
||||
public Socket ClientSocket;
|
||||
public string RemoteIp;
|
||||
|
||||
public bool LoggedIn = false;
|
||||
public User LoggedinUser;
|
||||
|
||||
private Thread recvPackets;
|
||||
|
||||
private Timer updateTimer;
|
||||
private Timer inactivityTimer;
|
||||
|
||||
private Timer warnTimer;
|
||||
private Timer kickTimer;
|
||||
|
||||
|
||||
private int keepAliveInterval = 60 * 1000;
|
||||
private int updateInterval = 60 * 1000;
|
||||
|
||||
private int warnInterval = Server.IdleWarning * 60 * 1000;
|
||||
private int kickInterval = Server.IdleTimeout * 60 * 1000;
|
||||
|
||||
|
||||
private void keepAliveTimerTick(object state)
|
||||
{
|
||||
Logger.DebugPrint("Sending keep-alive packet to "+ LoggedinUser.Username);
|
||||
byte[] updatePacket = PacketBuilder.CreateKeepAlive();
|
||||
SendPacket(updatePacket);
|
||||
}
|
||||
|
||||
private void warnTimerTick(object state)
|
||||
{
|
||||
Logger.DebugPrint("Sending inactivity warning to: " + RemoteIp);
|
||||
byte[] chatPacket = PacketBuilder.CreateChat(Messages.FormatIdleWarningMessage(), PacketBuilder.CHAT_BOTTOM_RIGHT);
|
||||
SendPacket(chatPacket);
|
||||
}
|
||||
|
||||
private void kickTimerTick(object state)
|
||||
{
|
||||
Kick(Messages.FormatIdleKickMessage());
|
||||
}
|
||||
private void updateTimerTick(object state)
|
||||
{
|
||||
Server.UpdateWorld(this);
|
||||
Server.UpdatePlayer(this);
|
||||
}
|
||||
public void Login(int id)
|
||||
{
|
||||
LoggedinUser = new User(this,id);
|
||||
LoggedIn = true;
|
||||
|
||||
updateTimer = new Timer(new TimerCallback(updateTimerTick), null, updateInterval, updateInterval);
|
||||
inactivityTimer = new Timer(new TimerCallback(keepAliveTimerTick), null, keepAliveInterval, keepAliveInterval);
|
||||
}
|
||||
private void receivePackets()
|
||||
{
|
||||
// HI1 Packets are terminates by 0x00 so we have to read until we receive that terminator
|
||||
MemoryStream ms = new MemoryStream();
|
||||
|
||||
while(ClientSocket.Connected)
|
||||
{
|
||||
try
|
||||
{
|
||||
if (ClientSocket.Available >= 1)
|
||||
{
|
||||
byte[] buffer = new byte[ClientSocket.Available];
|
||||
ClientSocket.Receive(buffer);
|
||||
|
||||
|
||||
foreach (Byte b in buffer)
|
||||
{
|
||||
ms.WriteByte(b);
|
||||
if (b == 0x00)
|
||||
{
|
||||
ms.Seek(0x00, SeekOrigin.Begin);
|
||||
byte[] fullPacket = ms.ToArray();
|
||||
parsePackets(fullPacket);
|
||||
|
||||
ms.Close();
|
||||
ms = new MemoryStream();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
catch(SocketException e)
|
||||
{
|
||||
Logger.ErrorPrint("Socket exception occured: " + e.Message);
|
||||
Disconnect();
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
private void parsePackets(byte[] Packet)
|
||||
{
|
||||
if (Packet.Length < 1)
|
||||
{
|
||||
Logger.ErrorPrint("Received an invalid packet (size: "+Packet.Length+")");
|
||||
}
|
||||
byte identifier = Packet[0];
|
||||
|
||||
// Reset timers
|
||||
if (inactivityTimer != null && identifier != PacketBuilder.PACKET_KEEP_ALIVE)
|
||||
inactivityTimer.Change(keepAliveInterval, keepAliveInterval);
|
||||
|
||||
|
||||
if (kickTimer != null && identifier != PacketBuilder.PACKET_KEEP_ALIVE)
|
||||
kickTimer.Change(kickInterval, kickInterval);
|
||||
|
||||
if (warnTimer != null && identifier != PacketBuilder.PACKET_KEEP_ALIVE)
|
||||
warnTimer.Change(warnInterval, warnInterval);
|
||||
|
||||
if (!LoggedIn) // Must be either login or policy-file-request
|
||||
{
|
||||
if (Encoding.UTF8.GetString(Packet).StartsWith("<policy-file-request/>")) // Policy File Request
|
||||
{
|
||||
Server.OnCrossdomainPolicyRequest(this);
|
||||
}
|
||||
switch (identifier)
|
||||
{
|
||||
case PacketBuilder.PACKET_LOGIN:
|
||||
Server.OnLoginRequest(this, Packet);
|
||||
break;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
switch (identifier)
|
||||
{
|
||||
case PacketBuilder.PACKET_LOGIN:
|
||||
Server.OnUserInfoRequest(this, Packet);
|
||||
break;
|
||||
case PacketBuilder.PACKET_MOVE:
|
||||
Server.OnMovementPacket(this, Packet);
|
||||
break;
|
||||
case PacketBuilder.PACKET_PROFILE:
|
||||
Server.OnProfilePacket(this, Packet);
|
||||
break;
|
||||
case PacketBuilder.PACKET_CHAT:
|
||||
Server.OnChatPacket(this, Packet);
|
||||
break;
|
||||
case PacketBuilder.PACKET_KEEP_ALIVE:
|
||||
Server.OnKeepAlive(this, Packet);
|
||||
break;
|
||||
case PacketBuilder.PACKET_TRANSPORT:
|
||||
Server.OnTransportUsed(this, Packet);
|
||||
break;
|
||||
case PacketBuilder.PACKET_INVENTORY:
|
||||
Server.OnInventoryRequested(this, Packet);
|
||||
break;
|
||||
case PacketBuilder.PACKET_ITEM_INTERACTION:
|
||||
Server.OnItemInteraction(this,Packet);
|
||||
break;
|
||||
case PacketBuilder.PACKET_NPC:
|
||||
Server.OnNpcInteraction(this, Packet);
|
||||
break;
|
||||
default:
|
||||
Logger.ErrorPrint("Unimplemented Packet: " + BitConverter.ToString(Packet).Replace('-', ' '));
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void Disconnect()
|
||||
{
|
||||
Logger.DebugPrint(ClientSocket.RemoteEndPoint + " has Disconnected.");
|
||||
recvPackets.Abort();
|
||||
if(updateTimer != null)
|
||||
updateTimer.Dispose();
|
||||
if(inactivityTimer != null)
|
||||
inactivityTimer.Dispose();
|
||||
if(warnTimer != null)
|
||||
warnTimer.Dispose();
|
||||
if(kickTimer != null)
|
||||
kickTimer.Dispose();
|
||||
|
||||
Server.OnDisconnect(this);
|
||||
LoggedIn = false;
|
||||
LoggedinUser = null;
|
||||
ClientSocket.Close();
|
||||
ClientSocket.Dispose();
|
||||
}
|
||||
|
||||
public void Kick(string Reason)
|
||||
{
|
||||
byte[] kickPacket = PacketBuilder.CreateKickMessage(Reason);
|
||||
SendPacket(kickPacket);
|
||||
Disconnect();
|
||||
|
||||
Logger.InfoPrint("CLIENT: "+RemoteIp+" KICKED for: "+Reason);
|
||||
}
|
||||
|
||||
public void SendPacket(byte[] PacketData)
|
||||
{
|
||||
try
|
||||
{
|
||||
ClientSocket.Send(PacketData);
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Logger.ErrorPrint("Exception occured: " + e.Message);
|
||||
Disconnect();
|
||||
}
|
||||
}
|
||||
|
||||
public Client(Socket clientSocket)
|
||||
{
|
||||
ClientSocket = clientSocket;
|
||||
RemoteIp = clientSocket.RemoteEndPoint.ToString();
|
||||
|
||||
Logger.DebugPrint("Client connected @ " + RemoteIp);
|
||||
|
||||
kickTimer = new Timer(new TimerCallback(kickTimerTick), null, kickInterval, kickInterval);
|
||||
warnTimer = new Timer(new TimerCallback(warnTimerTick), null, warnInterval, warnInterval);
|
||||
|
||||
recvPackets = new Thread(() =>
|
||||
{
|
||||
receivePackets();
|
||||
});
|
||||
recvPackets.Start();
|
||||
}
|
||||
}
|
||||
}
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Net.Sockets;
|
||||
using System.Text;
|
||||
using System.Threading;
|
||||
using HISP.Player;
|
||||
using HISP.Game;
|
||||
|
||||
namespace HISP.Server
|
||||
{
|
||||
class GameClient
|
||||
{
|
||||
public Socket ClientSocket;
|
||||
public string RemoteIp;
|
||||
|
||||
public bool LoggedIn = false;
|
||||
public User LoggedinUser;
|
||||
|
||||
private Thread recvPackets;
|
||||
|
||||
private Timer updateTimer;
|
||||
private Timer inactivityTimer;
|
||||
|
||||
private Timer warnTimer;
|
||||
private Timer kickTimer;
|
||||
|
||||
|
||||
private int keepAliveInterval = 60 * 1000;
|
||||
private int updateInterval = 60 * 1000;
|
||||
|
||||
private int warnInterval = GameServer.IdleWarning * 60 * 1000;
|
||||
private int kickInterval = GameServer.IdleTimeout * 60 * 1000;
|
||||
|
||||
|
||||
private void keepAliveTimerTick(object state)
|
||||
{
|
||||
Logger.DebugPrint("Sending keep-alive packet to "+ LoggedinUser.Username);
|
||||
byte[] updatePacket = PacketBuilder.CreateKeepAlive();
|
||||
SendPacket(updatePacket);
|
||||
}
|
||||
|
||||
private void warnTimerTick(object state)
|
||||
{
|
||||
Logger.DebugPrint("Sending inactivity warning to: " + RemoteIp);
|
||||
byte[] chatPacket = PacketBuilder.CreateChat(Messages.FormatIdleWarningMessage(), PacketBuilder.CHAT_BOTTOM_RIGHT);
|
||||
SendPacket(chatPacket);
|
||||
}
|
||||
|
||||
private void kickTimerTick(object state)
|
||||
{
|
||||
Kick(Messages.FormatIdleKickMessage());
|
||||
}
|
||||
private void updateTimerTick(object state)
|
||||
{
|
||||
GameServer.UpdateWorld(this);
|
||||
GameServer.UpdatePlayer(this);
|
||||
}
|
||||
public void Login(int id)
|
||||
{
|
||||
LoggedinUser = new User(this,id);
|
||||
LoggedIn = true;
|
||||
|
||||
updateTimer = new Timer(new TimerCallback(updateTimerTick), null, updateInterval, updateInterval);
|
||||
inactivityTimer = new Timer(new TimerCallback(keepAliveTimerTick), null, keepAliveInterval, keepAliveInterval);
|
||||
}
|
||||
private void receivePackets()
|
||||
{
|
||||
// HI1 Packets are terminates by 0x00 so we have to read until we receive that terminator
|
||||
MemoryStream ms = new MemoryStream();
|
||||
|
||||
while(ClientSocket.Connected)
|
||||
{
|
||||
try
|
||||
{
|
||||
if (ClientSocket.Available >= 1)
|
||||
{
|
||||
byte[] buffer = new byte[ClientSocket.Available];
|
||||
ClientSocket.Receive(buffer);
|
||||
|
||||
|
||||
foreach (Byte b in buffer)
|
||||
{
|
||||
ms.WriteByte(b);
|
||||
if (b == 0x00)
|
||||
{
|
||||
ms.Seek(0x00, SeekOrigin.Begin);
|
||||
byte[] fullPacket = ms.ToArray();
|
||||
parsePackets(fullPacket);
|
||||
|
||||
ms.Close();
|
||||
ms = new MemoryStream();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
catch(SocketException e)
|
||||
{
|
||||
Logger.ErrorPrint("Socket exception occured: " + e.Message);
|
||||
Disconnect();
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
private void parsePackets(byte[] Packet)
|
||||
{
|
||||
if (Packet.Length < 1)
|
||||
{
|
||||
Logger.ErrorPrint("Received an invalid packet (size: "+Packet.Length+")");
|
||||
}
|
||||
byte identifier = Packet[0];
|
||||
|
||||
// Reset timers
|
||||
if (inactivityTimer != null && identifier != PacketBuilder.PACKET_KEEP_ALIVE)
|
||||
inactivityTimer.Change(keepAliveInterval, keepAliveInterval);
|
||||
|
||||
|
||||
if (kickTimer != null && identifier != PacketBuilder.PACKET_KEEP_ALIVE)
|
||||
kickTimer.Change(kickInterval, kickInterval);
|
||||
|
||||
if (warnTimer != null && identifier != PacketBuilder.PACKET_KEEP_ALIVE)
|
||||
warnTimer.Change(warnInterval, warnInterval);
|
||||
|
||||
if (!LoggedIn) // Must be either login or policy-file-request
|
||||
{
|
||||
if (Encoding.UTF8.GetString(Packet).StartsWith("<policy-file-request/>")) // Policy File Request
|
||||
{
|
||||
GameServer.OnCrossdomainPolicyRequest(this);
|
||||
}
|
||||
switch (identifier)
|
||||
{
|
||||
case PacketBuilder.PACKET_LOGIN:
|
||||
GameServer.OnLoginRequest(this, Packet);
|
||||
break;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
switch (identifier)
|
||||
{
|
||||
case PacketBuilder.PACKET_LOGIN:
|
||||
GameServer.OnUserInfoRequest(this, Packet);
|
||||
break;
|
||||
case PacketBuilder.PACKET_MOVE:
|
||||
GameServer.OnMovementPacket(this, Packet);
|
||||
break;
|
||||
case PacketBuilder.PACKET_PROFILE:
|
||||
GameServer.OnProfilePacket(this, Packet);
|
||||
break;
|
||||
case PacketBuilder.PACKET_CHAT:
|
||||
GameServer.OnChatPacket(this, Packet);
|
||||
break;
|
||||
case PacketBuilder.PACKET_KEEP_ALIVE:
|
||||
GameServer.OnKeepAlive(this, Packet);
|
||||
break;
|
||||
case PacketBuilder.PACKET_TRANSPORT:
|
||||
GameServer.OnTransportUsed(this, Packet);
|
||||
break;
|
||||
case PacketBuilder.PACKET_INVENTORY:
|
||||
GameServer.OnInventoryRequested(this, Packet);
|
||||
break;
|
||||
case PacketBuilder.PACKET_ITEM_INTERACTION:
|
||||
GameServer.OnItemInteraction(this,Packet);
|
||||
break;
|
||||
case PacketBuilder.PACKET_NPC:
|
||||
GameServer.OnNpcInteraction(this, Packet);
|
||||
break;
|
||||
default:
|
||||
Logger.ErrorPrint("Unimplemented Packet: " + BitConverter.ToString(Packet).Replace('-', ' '));
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void Disconnect()
|
||||
{
|
||||
Logger.DebugPrint(ClientSocket.RemoteEndPoint + " has Disconnected.");
|
||||
recvPackets.Abort();
|
||||
if(updateTimer != null)
|
||||
updateTimer.Dispose();
|
||||
if(inactivityTimer != null)
|
||||
inactivityTimer.Dispose();
|
||||
if(warnTimer != null)
|
||||
warnTimer.Dispose();
|
||||
if(kickTimer != null)
|
||||
kickTimer.Dispose();
|
||||
|
||||
GameServer.OnDisconnect(this);
|
||||
LoggedIn = false;
|
||||
LoggedinUser = null;
|
||||
ClientSocket.Close();
|
||||
ClientSocket.Dispose();
|
||||
}
|
||||
|
||||
public void Kick(string Reason)
|
||||
{
|
||||
byte[] kickPacket = PacketBuilder.CreateKickMessage(Reason);
|
||||
SendPacket(kickPacket);
|
||||
Disconnect();
|
||||
|
||||
Logger.InfoPrint("CLIENT: "+RemoteIp+" KICKED for: "+Reason);
|
||||
}
|
||||
|
||||
public void SendPacket(byte[] PacketData)
|
||||
{
|
||||
try
|
||||
{
|
||||
ClientSocket.Send(PacketData);
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Logger.ErrorPrint("Exception occured: " + e.Message);
|
||||
Disconnect();
|
||||
}
|
||||
}
|
||||
|
||||
public GameClient(Socket clientSocket)
|
||||
{
|
||||
ClientSocket = clientSocket;
|
||||
RemoteIp = clientSocket.RemoteEndPoint.ToString();
|
||||
|
||||
Logger.DebugPrint("Client connected @ " + RemoteIp);
|
||||
|
||||
kickTimer = new Timer(new TimerCallback(kickTimerTick), null, kickInterval, kickInterval);
|
||||
warnTimer = new Timer(new TimerCallback(warnTimerTick), null, warnInterval, warnInterval);
|
||||
|
||||
recvPackets = new Thread(() =>
|
||||
{
|
||||
receivePackets();
|
||||
});
|
||||
recvPackets.Start();
|
||||
}
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load diff
|
@ -1,416 +1,499 @@
|
|||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Horse_Isle_Server
|
||||
{
|
||||
class Gamedata
|
||||
{
|
||||
|
||||
public static void ReadGamedata()
|
||||
{
|
||||
if(!File.Exists(ConfigReader.GameDataFile))
|
||||
{
|
||||
Logger.ErrorPrint("Game Data JSON File: " + ConfigReader.GameDataFile + " Does not exist!");
|
||||
return;
|
||||
}
|
||||
string jsonData = File.ReadAllText(ConfigReader.GameDataFile);
|
||||
dynamic gameData = JsonConvert.DeserializeObject(jsonData);
|
||||
|
||||
// Register Towns
|
||||
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;
|
||||
town.StartY = gameData.places.towns[i].start_y;
|
||||
town.EndX = gameData.places.towns[i].end_x;
|
||||
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);
|
||||
}
|
||||
|
||||
// Register Areas
|
||||
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;
|
||||
area.StartY = gameData.places.areas[i].start_y;
|
||||
area.EndX = gameData.places.areas[i].end_x;
|
||||
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);
|
||||
}
|
||||
|
||||
// Register Isles
|
||||
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;
|
||||
isle.StartY = gameData.places.isles[i].start_y;
|
||||
isle.EndX = gameData.places.isles[i].end_x;
|
||||
isle.EndY = gameData.places.isles[i].end_y;
|
||||
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);
|
||||
}
|
||||
|
||||
// Register Special Tiles
|
||||
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;
|
||||
specialTile.Y = gameData.places.special_tiles[i].y;
|
||||
specialTile.Title = gameData.places.special_tiles[i].title;
|
||||
specialTile.Description = gameData.places.special_tiles[i].description;
|
||||
specialTile.Code = gameData.places.special_tiles[i].code;
|
||||
if(gameData.places.special_tiles[i].exit_x != null)
|
||||
specialTile.ExitX = gameData.places.special_tiles[i].exit_x;
|
||||
if(gameData.places.special_tiles[i].exit_x != null)
|
||||
specialTile.ExitY = gameData.places.special_tiles[i].exit_y;
|
||||
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);
|
||||
}
|
||||
|
||||
// Register Filter Reasons
|
||||
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;
|
||||
reason.Message = gameData.messages.chat.reason_messages[i].message;
|
||||
Chat.Reasons.Add(reason);
|
||||
|
||||
Logger.DebugPrint("Registered Chat Warning Reason: " + reason.Name + " (Message: " + reason.Message + ")");
|
||||
}
|
||||
// Register Filters
|
||||
|
||||
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;
|
||||
filter.MatchAll = gameData.messages.chat.filter[i].match_all;
|
||||
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 + ")");
|
||||
}
|
||||
|
||||
// Register Corrections
|
||||
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;
|
||||
correction.ReplacedWord = gameData.messages.chat.correct[i].new_word;
|
||||
Chat.CorrectedWords.Add(correction);
|
||||
|
||||
Logger.DebugPrint("Registered Word Correction: " + correction.FilteredWord + " to "+correction.ReplacedWord);
|
||||
}
|
||||
|
||||
// Register Transports
|
||||
|
||||
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;
|
||||
transportPoint.Y = gameData.transport.transport_points[i].y;
|
||||
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);
|
||||
}
|
||||
|
||||
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;
|
||||
transportPlace.Cost = gameData.transport.transport_places[i].cost;
|
||||
transportPlace.GotoX = gameData.transport.transport_places[i].goto_x;
|
||||
transportPlace.GotoY = gameData.transport.transport_places[i].goto_y;
|
||||
transportPlace.Type = gameData.transport.transport_places[i].type;
|
||||
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);
|
||||
}
|
||||
|
||||
// Register Items
|
||||
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.Name = gameData.item.item_list[i].name;
|
||||
item.PluralName = gameData.item.item_list[i].plural_name;
|
||||
item.Description = gameData.item.item_list[i].description;
|
||||
item.IconId = gameData.item.item_list[i].icon_id;
|
||||
item.SortBy = gameData.item.item_list[i].sort_by;
|
||||
item.SellPrice = gameData.item.item_list[i].sell_price;
|
||||
item.EmbedSwf = gameData.item.item_list[i].embed_swf;
|
||||
item.WishingWell = gameData.item.item_list[i].wishing_well;
|
||||
item.Type = gameData.item.item_list[i].type;
|
||||
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++)
|
||||
{
|
||||
effectsList[ii] = new Item.Effects();
|
||||
effectsList[ii].EffectsWhat = gameData.item.item_list[i].effects[ii].effect_what;
|
||||
effectsList[ii].EffectsWhat = gameData.item.item_list[i].effects[ii].effect_amount;
|
||||
}
|
||||
|
||||
item.Effects = effectsList;
|
||||
item.SpawnParamaters = new Item.SpawnRules();
|
||||
item.SpawnParamaters.SpawnCap = gameData.item.item_list[i].spawn_parameters.spawn_cap;
|
||||
item.SpawnParamaters.SpawnInArea = gameData.item.item_list[i].spawn_parameters.spawn_in_area;
|
||||
item.SpawnParamaters.SpawnOnTileType = gameData.item.item_list[i].spawn_parameters.spawn_on_tile_type;
|
||||
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);
|
||||
}
|
||||
|
||||
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;
|
||||
throwableItem.Message = gameData.item.throwable[i].message;
|
||||
Item.ThrowableItems.Add(throwableItem);
|
||||
}
|
||||
|
||||
// Register NPCs
|
||||
Logger.DebugPrint("Registering NPCS: ");
|
||||
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;
|
||||
npcEntry.Name = gameData.npc_list[i].name;
|
||||
npcEntry.AdminDescription = gameData.npc_list[i].admin_description;
|
||||
npcEntry.ShortDescription = gameData.npc_list[i].short_description;
|
||||
npcEntry.LongDescription = gameData.npc_list[i].long_description;
|
||||
npcEntry.Moves = gameData.npc_list[i].moves;
|
||||
npcEntry.X = gameData.npc_list[i].x;
|
||||
npcEntry.Y = gameData.npc_list[i].y;
|
||||
if (gameData.npc_list[i].stay_on != null)
|
||||
npcEntry.StayOn = gameData.npc_list[i].stay_on;
|
||||
if (gameData.npc_list[i].requires_questid_completed != null)
|
||||
npcEntry.RequiresQuestIdCompleted = gameData.npc_list[i].requires_questid_completed;
|
||||
if (gameData.npc_list[i].requires_questid_not_completed != null)
|
||||
npcEntry.RequiresQuestIdNotCompleted = gameData.npc_list[i].requires_questid_not_completed;
|
||||
if (gameData.npc_list[i].udlr_script != null)
|
||||
npcEntry.UDLRScript = gameData.npc_list[i].udlr_script;
|
||||
if (gameData.npc_list[i].udlr_start_x != null)
|
||||
npcEntry.UDLRStartX = gameData.npc_list[i].udlr_start_x;
|
||||
if (gameData.npc_list[i].udlr_start_y != null)
|
||||
npcEntry.UDLRStartY = gameData.npc_list[i].udlr_start_y;
|
||||
npcEntry.AdminOnly = gameData.npc_list[i].admin_only;
|
||||
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>();
|
||||
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;
|
||||
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;
|
||||
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;
|
||||
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_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);
|
||||
|
||||
}
|
||||
npcChat.Replies = replys.ToArray();
|
||||
chats.Add(npcChat);
|
||||
}
|
||||
npcEntry.Chatpoints = chats.ToArray();
|
||||
Npc.NpcList.Add(npcEntry);
|
||||
}
|
||||
|
||||
Item.Present = gameData.item.special.present;
|
||||
Item.MailMessage = gameData.item.special.mail_message;
|
||||
Item.DorothyShoes = gameData.item.special.dorothy_shoes;
|
||||
Item.PawneerOrder = gameData.item.special.pawneer_order;
|
||||
Item.Telescope = gameData.item.special.telescope;
|
||||
Item.Pitchfork = gameData.item.special.pitchfork;
|
||||
|
||||
// New Users
|
||||
Messages.NewUserMessage = gameData.new_user.starting_message;
|
||||
Map.NewUserStartX = gameData.new_user.starting_x;
|
||||
Map.NewUserStartY = gameData.new_user.starting_y;
|
||||
|
||||
// Announcements
|
||||
|
||||
Messages.WelcomeFormat = gameData.messages.welcome_format;
|
||||
Messages.MotdFormat = gameData.messages.motd_format;
|
||||
Messages.ProfileSavedMessage = gameData.messages.profile_save;
|
||||
Messages.LoginMessageForamt = gameData.messages.login_format;
|
||||
Messages.LogoutMessageFormat = gameData.messages.logout_format;
|
||||
|
||||
// Transport
|
||||
|
||||
Messages.CantAffordTransport = gameData.messages.transport.not_enough_money;
|
||||
Messages.WelcomeToAreaFormat = gameData.messages.transport.welcome_to_format;
|
||||
|
||||
// Chat
|
||||
|
||||
Messages.ChatViolationMessageFormat = gameData.messages.chat.violation_format;
|
||||
Messages.RequiredChatViolations = gameData.messages.chat.violation_points_required;
|
||||
|
||||
Messages.GlobalChatFormatForModerators = gameData.messages.chat.for_others.global_format_moderator;
|
||||
Messages.DirectChatFormatForModerators = gameData.messages.chat.for_others.dm_format_moderator;
|
||||
|
||||
|
||||
Messages.HereChatFormat = gameData.messages.chat.for_others.here_format;
|
||||
Messages.IsleChatFormat = gameData.messages.chat.for_others.isle_format;
|
||||
Messages.NearChatFormat = gameData.messages.chat.for_others.near_format;
|
||||
Messages.GlobalChatFormat = gameData.messages.chat.for_others.global_format;
|
||||
Messages.AdsChatFormat = gameData.messages.chat.for_others.ads_format;
|
||||
Messages.DirectChatFormat = gameData.messages.chat.for_others.dm_format;
|
||||
Messages.BuddyChatFormat = gameData.messages.chat.for_others.friend_format;
|
||||
Messages.ModChatFormat = gameData.messages.chat.for_others.mod_format;
|
||||
Messages.AdminChatFormat = gameData.messages.chat.for_others.admin_format;
|
||||
|
||||
Messages.HereChatFormatForSender = gameData.messages.chat.for_sender.here_format;
|
||||
Messages.IsleChatFormatForSender = gameData.messages.chat.for_sender.isle_format;
|
||||
Messages.NearChatFormatForSender = gameData.messages.chat.for_sender.near_format;
|
||||
Messages.BuddyChatFormatForSender = gameData.messages.chat.for_sender.friend_format;
|
||||
Messages.DirectChatFormatForSender = gameData.messages.chat.for_sender.dm_format;
|
||||
Messages.ModChatFormatForSender = gameData.messages.chat.for_sender.mod_format;
|
||||
Messages.AdminChatFormatForSender = gameData.messages.chat.for_sender.admin_format;
|
||||
|
||||
|
||||
Messages.PasswordNotice = gameData.messages.chat.password_included;
|
||||
Messages.CapsNotice = gameData.messages.chat.caps_notice;
|
||||
|
||||
// Hardcoded messages
|
||||
|
||||
Messages.NothingMessage = gameData.messages.meta.dropped_items.nothing_message;
|
||||
Messages.ItemsOnGroundMessage = gameData.messages.meta.dropped_items.items_message;
|
||||
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;
|
||||
|
||||
// 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;
|
||||
|
||||
// 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;
|
||||
|
||||
Server.IdleWarning = gameData.messages.disconnect.client_timeout.warn_after;
|
||||
Server.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;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using Newtonsoft.Json;
|
||||
using HISP.Game;
|
||||
|
||||
namespace HISP.Server
|
||||
{
|
||||
class Gamedata
|
||||
{
|
||||
|
||||
public static void ReadGamedata()
|
||||
{
|
||||
if(!File.Exists(ConfigReader.GameDataFile))
|
||||
{
|
||||
Logger.ErrorPrint("Game Data JSON File: " + ConfigReader.GameDataFile + " Does not exist!");
|
||||
return;
|
||||
}
|
||||
string jsonData = File.ReadAllText(ConfigReader.GameDataFile);
|
||||
dynamic gameData = JsonConvert.DeserializeObject(jsonData);
|
||||
|
||||
// Register Towns
|
||||
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;
|
||||
town.StartY = gameData.places.towns[i].start_y;
|
||||
town.EndX = gameData.places.towns[i].end_x;
|
||||
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);
|
||||
}
|
||||
|
||||
// Register Areas
|
||||
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;
|
||||
area.StartY = gameData.places.areas[i].start_y;
|
||||
area.EndX = gameData.places.areas[i].end_x;
|
||||
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);
|
||||
}
|
||||
|
||||
// Register Isles
|
||||
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;
|
||||
isle.StartY = gameData.places.isles[i].start_y;
|
||||
isle.EndX = gameData.places.isles[i].end_x;
|
||||
isle.EndY = gameData.places.isles[i].end_y;
|
||||
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);
|
||||
}
|
||||
|
||||
// Register Special Tiles
|
||||
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;
|
||||
specialTile.Y = gameData.places.special_tiles[i].y;
|
||||
specialTile.Title = gameData.places.special_tiles[i].title;
|
||||
specialTile.Description = gameData.places.special_tiles[i].description;
|
||||
specialTile.Code = gameData.places.special_tiles[i].code;
|
||||
if(gameData.places.special_tiles[i].exit_x != null)
|
||||
specialTile.ExitX = gameData.places.special_tiles[i].exit_x;
|
||||
if(gameData.places.special_tiles[i].exit_x != null)
|
||||
specialTile.ExitY = gameData.places.special_tiles[i].exit_y;
|
||||
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);
|
||||
}
|
||||
|
||||
// Register Filter Reasons
|
||||
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;
|
||||
reason.Message = gameData.messages.chat.reason_messages[i].message;
|
||||
Chat.Reasons.Add(reason);
|
||||
|
||||
Logger.DebugPrint("Registered Chat Warning Reason: " + reason.Name + " (Message: " + reason.Message + ")");
|
||||
}
|
||||
// Register Filters
|
||||
|
||||
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;
|
||||
filter.MatchAll = gameData.messages.chat.filter[i].match_all;
|
||||
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 + ")");
|
||||
}
|
||||
|
||||
// Register Corrections
|
||||
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;
|
||||
correction.ReplacedWord = gameData.messages.chat.correct[i].new_word;
|
||||
Chat.CorrectedWords.Add(correction);
|
||||
|
||||
Logger.DebugPrint("Registered Word Correction: " + correction.FilteredWord + " to "+correction.ReplacedWord);
|
||||
}
|
||||
|
||||
// Register Transports
|
||||
|
||||
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;
|
||||
transportPoint.Y = gameData.transport.transport_points[i].y;
|
||||
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);
|
||||
}
|
||||
|
||||
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;
|
||||
transportPlace.Cost = gameData.transport.transport_places[i].cost;
|
||||
transportPlace.GotoX = gameData.transport.transport_places[i].goto_x;
|
||||
transportPlace.GotoY = gameData.transport.transport_places[i].goto_y;
|
||||
transportPlace.Type = gameData.transport.transport_places[i].type;
|
||||
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);
|
||||
}
|
||||
|
||||
// Register Items
|
||||
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.Name = gameData.item.item_list[i].name;
|
||||
item.PluralName = gameData.item.item_list[i].plural_name;
|
||||
item.Description = gameData.item.item_list[i].description;
|
||||
item.IconId = gameData.item.item_list[i].icon_id;
|
||||
item.SortBy = gameData.item.item_list[i].sort_by;
|
||||
item.SellPrice = gameData.item.item_list[i].sell_price;
|
||||
item.EmbedSwf = gameData.item.item_list[i].embed_swf;
|
||||
item.WishingWell = gameData.item.item_list[i].wishing_well;
|
||||
item.Type = gameData.item.item_list[i].type;
|
||||
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++)
|
||||
{
|
||||
effectsList[ii] = new Item.Effects();
|
||||
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.SpawnParamaters.SpawnCap = gameData.item.item_list[i].spawn_parameters.spawn_cap;
|
||||
item.SpawnParamaters.SpawnInArea = gameData.item.item_list[i].spawn_parameters.spawn_in_area;
|
||||
item.SpawnParamaters.SpawnOnTileType = gameData.item.item_list[i].spawn_parameters.spawn_on_tile_type;
|
||||
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);
|
||||
}
|
||||
|
||||
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;
|
||||
throwableItem.Message = gameData.item.throwable[i].message;
|
||||
Item.ThrowableItems.Add(throwableItem);
|
||||
}
|
||||
|
||||
// Register NPCs
|
||||
Logger.DebugPrint("Registering NPCS: ");
|
||||
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;
|
||||
npcEntry.Name = gameData.npc_list[i].name;
|
||||
npcEntry.AdminDescription = gameData.npc_list[i].admin_description;
|
||||
npcEntry.ShortDescription = gameData.npc_list[i].short_description;
|
||||
npcEntry.LongDescription = gameData.npc_list[i].long_description;
|
||||
npcEntry.Moves = gameData.npc_list[i].moves;
|
||||
npcEntry.X = gameData.npc_list[i].x;
|
||||
npcEntry.Y = gameData.npc_list[i].y;
|
||||
if (gameData.npc_list[i].stay_on != null)
|
||||
npcEntry.StayOn = gameData.npc_list[i].stay_on;
|
||||
if (gameData.npc_list[i].requires_questid_completed != null)
|
||||
npcEntry.RequiresQuestIdCompleted = gameData.npc_list[i].requires_questid_completed;
|
||||
if (gameData.npc_list[i].requires_questid_not_completed != null)
|
||||
npcEntry.RequiresQuestIdNotCompleted = gameData.npc_list[i].requires_questid_not_completed;
|
||||
if (gameData.npc_list[i].udlr_script != null)
|
||||
npcEntry.UDLRScript = gameData.npc_list[i].udlr_script;
|
||||
if (gameData.npc_list[i].udlr_start_x != null)
|
||||
npcEntry.UDLRStartX = gameData.npc_list[i].udlr_start_x;
|
||||
if (gameData.npc_list[i].udlr_start_y != null)
|
||||
npcEntry.UDLRStartY = gameData.npc_list[i].udlr_start_y;
|
||||
npcEntry.AdminOnly = gameData.npc_list[i].admin_only;
|
||||
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>();
|
||||
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;
|
||||
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;
|
||||
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;
|
||||
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_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);
|
||||
|
||||
}
|
||||
npcChat.Replies = replys.ToArray();
|
||||
chats.Add(npcChat);
|
||||
}
|
||||
npcEntry.Chatpoints = chats.ToArray();
|
||||
Npc.NpcList.Add(npcEntry);
|
||||
}
|
||||
|
||||
// Register Quests
|
||||
|
||||
Logger.DebugPrint("Registering Quests: ");
|
||||
int totalQuests = gameData.quest_list.Count;
|
||||
for(int i = 0; i < totalQuests; i++)
|
||||
{
|
||||
Quest.QuestEntry quest = new Quest.QuestEntry();
|
||||
quest.Id = gameData.quest_list[i].id;
|
||||
quest.Notes = gameData.quest_list[i].notes;
|
||||
if(gameData.quest_list[i].title != null)
|
||||
quest.Title = gameData.quest_list[i].title;
|
||||
quest.RequiresQuestIdComplete = gameData.quest_list[i].requires_questid_npc.ToObject<int[]>();
|
||||
if (gameData.quest_list[i].alt_activation != null)
|
||||
{
|
||||
quest.AltActivation = new Quest.QuestAltActivation();
|
||||
quest.AltActivation.Type = gameData.quest_list[i].alt_activation.type;
|
||||
quest.AltActivation.ActivateX = gameData.quest_list[i].alt_activation.x;
|
||||
quest.AltActivation.ActivateY = gameData.quest_list[i].alt_activation.y;
|
||||
}
|
||||
quest.Tracked = gameData.quest_list[i].tracked;
|
||||
quest.MaxRepeats = gameData.quest_list[i].max_repeats;
|
||||
quest.MoneyCost = gameData.quest_list[i].money_cost;
|
||||
int itemsRequiredCount = gameData.quest_list[i].items_required.Count;
|
||||
|
||||
List<Quest.QuestItemInfo> itmInfo = new List<Quest.QuestItemInfo>();
|
||||
for(int ii = 0; ii < itemsRequiredCount; ii++)
|
||||
{
|
||||
Quest.QuestItemInfo itemInfo = new Quest.QuestItemInfo();
|
||||
itemInfo.ItemId = gameData.quest_list[i].items_required[ii].item_id;
|
||||
itemInfo.Quantity = gameData.quest_list[i].items_required[ii].quantity;
|
||||
itmInfo.Add(itemInfo);
|
||||
}
|
||||
quest.ItemsRequired = itmInfo.ToArray();
|
||||
if(gameData.quest_list[i].fail_npc_chat != null)
|
||||
quest.FailNpcChat = gameData.quest_list[i].fail_npc_chat;
|
||||
quest.MoneyEarned = gameData.quest_list[i].money_gained;
|
||||
|
||||
int itemsGainedCount = gameData.quest_list[i].items_gained.Count;
|
||||
itmInfo = new List<Quest.QuestItemInfo>();
|
||||
for (int ii = 0; ii < itemsGainedCount; ii++)
|
||||
{
|
||||
Quest.QuestItemInfo itemInfo = new Quest.QuestItemInfo();
|
||||
itemInfo.ItemId = gameData.quest_list[i].items_gained[ii].item_id;
|
||||
itemInfo.Quantity = gameData.quest_list[i].items_gained[ii].quantity;
|
||||
itmInfo.Add(itemInfo);
|
||||
}
|
||||
quest.ItemsEarned = itmInfo.ToArray();
|
||||
|
||||
quest.QuestPointsEarned = gameData.quest_list[i].quest_points;
|
||||
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;
|
||||
if(gameData.quest_list[i].warp_y != null)
|
||||
quest.WarpY = gameData.quest_list[i].warp_y;
|
||||
if(gameData.quest_list[i].success_message != null)
|
||||
quest.SuccessMessage = gameData.quest_list[i].success_message;
|
||||
if(gameData.quest_list[i].success_npc_chat != null)
|
||||
quest.SuccessNpcChat = gameData.quest_list[i].success_npc_chat;
|
||||
if (gameData.quest_list[i].requires_awardid != null)
|
||||
quest.AwardRequired = gameData.quest_list[i].requires_awardid;
|
||||
quest.RequiresQuestIdCompleted = gameData.quest_list[i].requires_questid_completed.ToObject<int[]>();
|
||||
quest.RequiresQuestIdNotCompleted = gameData.quest_list[i].requires_questid_not_completed.ToObject<int[]>();
|
||||
quest.HideReplyOnFail = gameData.quest_list[i].hide_reply_on_fail;
|
||||
if (gameData.quest_list[i].difficulty != null)
|
||||
quest.Difficulty = gameData.quest_list[i].difficulty;
|
||||
if (gameData.quest_list[i].author != null)
|
||||
quest.Author = gameData.quest_list[i].author;
|
||||
if (gameData.quest_list[i].chained_questid != null)
|
||||
quest.ChainedQuestId = gameData.quest_list[i].chained_questid;
|
||||
quest.Minigame = gameData.quest_list[i].minigame;
|
||||
Logger.DebugPrint("Registered Quest: " + quest.Id);
|
||||
Quest.QuestList.Add(quest);
|
||||
}
|
||||
Item.Present = gameData.item.special.present;
|
||||
Item.MailMessage = gameData.item.special.mail_message;
|
||||
Item.DorothyShoes = gameData.item.special.dorothy_shoes;
|
||||
Item.PawneerOrder = gameData.item.special.pawneer_order;
|
||||
Item.Telescope = gameData.item.special.telescope;
|
||||
Item.Pitchfork = gameData.item.special.pitchfork;
|
||||
|
||||
// New Users
|
||||
Messages.NewUserMessage = gameData.new_user.starting_message;
|
||||
Map.NewUserStartX = gameData.new_user.starting_x;
|
||||
Map.NewUserStartY = gameData.new_user.starting_y;
|
||||
|
||||
// Announcements
|
||||
|
||||
Messages.WelcomeFormat = gameData.messages.welcome_format;
|
||||
Messages.MotdFormat = gameData.messages.motd_format;
|
||||
Messages.ProfileSavedMessage = gameData.messages.profile_save;
|
||||
Messages.LoginMessageForamt = gameData.messages.login_format;
|
||||
Messages.LogoutMessageFormat = gameData.messages.logout_format;
|
||||
|
||||
// Transport
|
||||
|
||||
Messages.CantAffordTransport = gameData.messages.transport.not_enough_money;
|
||||
Messages.WelcomeToAreaFormat = gameData.messages.transport.welcome_to_format;
|
||||
|
||||
// Chat
|
||||
|
||||
Messages.ChatViolationMessageFormat = gameData.messages.chat.violation_format;
|
||||
Messages.RequiredChatViolations = gameData.messages.chat.violation_points_required;
|
||||
|
||||
Messages.GlobalChatFormatForModerators = gameData.messages.chat.for_others.global_format_moderator;
|
||||
Messages.DirectChatFormatForModerators = gameData.messages.chat.for_others.dm_format_moderator;
|
||||
|
||||
|
||||
Messages.HereChatFormat = gameData.messages.chat.for_others.here_format;
|
||||
Messages.IsleChatFormat = gameData.messages.chat.for_others.isle_format;
|
||||
Messages.NearChatFormat = gameData.messages.chat.for_others.near_format;
|
||||
Messages.GlobalChatFormat = gameData.messages.chat.for_others.global_format;
|
||||
Messages.AdsChatFormat = gameData.messages.chat.for_others.ads_format;
|
||||
Messages.DirectChatFormat = gameData.messages.chat.for_others.dm_format;
|
||||
Messages.BuddyChatFormat = gameData.messages.chat.for_others.friend_format;
|
||||
Messages.ModChatFormat = gameData.messages.chat.for_others.mod_format;
|
||||
Messages.AdminChatFormat = gameData.messages.chat.for_others.admin_format;
|
||||
|
||||
Messages.HereChatFormatForSender = gameData.messages.chat.for_sender.here_format;
|
||||
Messages.IsleChatFormatForSender = gameData.messages.chat.for_sender.isle_format;
|
||||
Messages.NearChatFormatForSender = gameData.messages.chat.for_sender.near_format;
|
||||
Messages.BuddyChatFormatForSender = gameData.messages.chat.for_sender.friend_format;
|
||||
Messages.DirectChatFormatForSender = gameData.messages.chat.for_sender.dm_format;
|
||||
Messages.ModChatFormatForSender = gameData.messages.chat.for_sender.mod_format;
|
||||
Messages.AdminChatFormatForSender = gameData.messages.chat.for_sender.admin_format;
|
||||
|
||||
|
||||
Messages.PasswordNotice = gameData.messages.chat.password_included;
|
||||
Messages.CapsNotice = gameData.messages.chat.caps_notice;
|
||||
|
||||
// Hardcoded messages
|
||||
|
||||
Messages.NothingMessage = gameData.messages.meta.dropped_items.nothing_message;
|
||||
Messages.ItemsOnGroundMessage = gameData.messages.meta.dropped_items.items_message;
|
||||
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;
|
||||
Messages.GrabbedAllObjectsMessage = gameData.messages.grab_all_message;
|
||||
|
||||
// Tools
|
||||
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.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Horse_Isle_Server
|
||||
{
|
||||
class Logger
|
||||
{
|
||||
public static void HackerPrint(string text) // When someone is obviously cheating.
|
||||
{
|
||||
Console.WriteLine("[HACK] " + text);
|
||||
}
|
||||
public static void DebugPrint(string text)
|
||||
{
|
||||
if (ConfigReader.Debug)
|
||||
Console.WriteLine("[DEBUG] " + text);
|
||||
}
|
||||
public static void WarnPrint(string text)
|
||||
{
|
||||
Console.WriteLine("[WARN] " + text);
|
||||
}
|
||||
public static void ErrorPrint(string text)
|
||||
{
|
||||
Console.WriteLine("[ERROR] " + text);
|
||||
}
|
||||
public static void InfoPrint(string text)
|
||||
{
|
||||
Console.WriteLine("[INFO] " + text);
|
||||
}
|
||||
}
|
||||
}
|
||||
using System;
|
||||
|
||||
namespace HISP.Server
|
||||
{
|
||||
class Logger
|
||||
{
|
||||
public static void HackerPrint(string text) // When someone is obviously cheating.
|
||||
{
|
||||
Console.WriteLine("[HACK] " + text);
|
||||
}
|
||||
public static void DebugPrint(string text)
|
||||
{
|
||||
if (ConfigReader.Debug)
|
||||
Console.WriteLine("[DEBUG] " + text);
|
||||
}
|
||||
public static void WarnPrint(string text)
|
||||
{
|
||||
Console.WriteLine("[WARN] " + text);
|
||||
}
|
||||
public static void ErrorPrint(string text)
|
||||
{
|
||||
Console.WriteLine("[ERROR] " + 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