mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
216 lines
8.3 KiB
C#
216 lines
8.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Horse_Isle_Server
|
|
{
|
|
class Meta
|
|
{
|
|
// Meta
|
|
|
|
private static string buildLocationString(int x, int y)
|
|
{
|
|
string locationString = "";
|
|
|
|
if (World.InArea(x, y))
|
|
locationString += Messages.AreaFormat.Replace("%AREA%", World.GetArea(x, y).Name);
|
|
if (World.InTown(x, y))
|
|
locationString += Messages.TownFormat.Replace("%TOWN%", World.GetTown(x, y).Name);
|
|
if (World.InIsle(x, y))
|
|
locationString += Messages.IsleFormat.Replace("%ISLE%", World.GetIsle(x, y).Name);
|
|
if (locationString != "")
|
|
locationString = Messages.LocationFormat.Replace("%META%", locationString);
|
|
return locationString;
|
|
}
|
|
|
|
|
|
private static string buildNearbyString(int x, int y)
|
|
{
|
|
string playersNearby = "";
|
|
|
|
User[] nearbyUsers = Server.GetNearbyUsers(x, y, true, true);
|
|
if (nearbyUsers.Length > 1)
|
|
{
|
|
playersNearby += Messages.NearbyPlayers;
|
|
playersNearby += Messages.Seperator;
|
|
|
|
string usersWest = "";
|
|
string usersNorth = "";
|
|
string usersEast = "";
|
|
string usersSouth = "";
|
|
foreach (User nearbyUser in nearbyUsers)
|
|
{
|
|
if (nearbyUser.X < x)
|
|
{
|
|
usersWest += " " + nearbyUser.Username + " ";
|
|
}
|
|
else if (nearbyUser.X > x)
|
|
{
|
|
usersEast += " " + nearbyUser.Username + " ";
|
|
}
|
|
else if (nearbyUser.Y > y)
|
|
{
|
|
usersSouth += " " + nearbyUser.Username + " ";
|
|
}
|
|
else if (nearbyUser.Y < y)
|
|
{
|
|
usersNorth += " " + nearbyUser.Username + " ";
|
|
}
|
|
}
|
|
|
|
if (usersEast != "")
|
|
playersNearby += " " + Messages.East + usersEast + Messages.Seperator;
|
|
if (usersWest != "")
|
|
playersNearby += " " + Messages.West + usersWest + Messages.Seperator;
|
|
if (usersSouth != "")
|
|
playersNearby += " " + Messages.South + usersSouth + Messages.Seperator;
|
|
if (usersNorth != "")
|
|
playersNearby += " " + Messages.North + usersNorth + Messages.Seperator;
|
|
|
|
|
|
|
|
}
|
|
|
|
return playersNearby;
|
|
|
|
}
|
|
private static string buildCommonInfo(int x, int y)
|
|
{
|
|
string message = "";
|
|
|
|
message += buildNearbyString(x, y);
|
|
|
|
// Dropped Items
|
|
DroppedItems.DroppedItem[] Items = DroppedItems.GetItemsAt(x, y);
|
|
if (Items.Length == 0)
|
|
message += Messages.NothingMessage;
|
|
else
|
|
{
|
|
message += Messages.ItemsOnGroundMessage;
|
|
foreach(DroppedItems.DroppedItem item in Items)
|
|
{
|
|
Item.ItemInformation itemInfo = item.instance.GetItemInfo();
|
|
message += Messages.FormatGrabItemMessage(itemInfo.Name, item.instance.RandomId, itemInfo.IconId);
|
|
}
|
|
if(Items.Length > 1)
|
|
message += Messages.GrabAllItemsButton;
|
|
}
|
|
return message;
|
|
}
|
|
public static string BuildTransportInfo(Transport.TransportPoint transportPoint)
|
|
{
|
|
string message = "";
|
|
// Build list of locations
|
|
foreach(int transportLocationId in transportPoint.Locations)
|
|
{
|
|
Transport.TransportLocation transportLocation = Transport.GetTransportLocation(transportLocationId);
|
|
message += Messages.FormatTransportMessage(transportLocation.Type, transportLocation.LocationTitle, transportLocation.Cost, transportLocation.Id, transportLocation.GotoX, transportLocation.GotoY);
|
|
}
|
|
return message;
|
|
}
|
|
public static string BuildSpecialTileInfo(World.SpecialTile specialTile)
|
|
{
|
|
string message = "";
|
|
|
|
if (specialTile.Code == null)
|
|
message += buildLocationString(specialTile.X, specialTile.Y)+Messages.Seperator;
|
|
|
|
|
|
if (specialTile.Title != null && specialTile.Title != "")
|
|
message += Messages.FormatTileName(specialTile.Title) + Messages.Seperator;
|
|
|
|
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);
|
|
|
|
if (specialTile.Code == null)
|
|
message += buildCommonInfo(specialTile.X, specialTile.Y);
|
|
if (specialTile.Code == "TRANSPORT")
|
|
{
|
|
Transport.TransportPoint point = Transport.GetTransportPoint(specialTile.X, specialTile.Y);
|
|
message += Meta.BuildTransportInfo(point)+ "^R1";
|
|
}
|
|
|
|
if (specialTile.ExitX != 0 && specialTile.ExitY != 0)
|
|
message += Messages.ExitThisPlace + Messages.MetaTerminator;
|
|
|
|
Logger.DebugPrint(message);
|
|
|
|
return message;
|
|
}
|
|
|
|
public static string BuildInventoryInfo(PlayerInventory inv)
|
|
{
|
|
string message = "";
|
|
message += Messages.FormatPlayerInventoryHeaderMeta(inv.Count, Messages.DefaultInventoryMax);
|
|
InventoryItem[] items = inv.GetItemList();
|
|
foreach(InventoryItem item in items)
|
|
{
|
|
Item.ItemInformation itemInfo = Item.GetItemById(item.ItemId);
|
|
string title = itemInfo.Name;
|
|
if (item.ItemInstances.Count > 1 && itemInfo.PluralName != "")
|
|
title = itemInfo.PluralName;
|
|
|
|
|
|
message += Messages.FormatPlayerInventoryItemMeta(itemInfo.IconId, item.ItemInstances.Count, title);
|
|
|
|
int randomId = item.ItemInstances[0].RandomId;
|
|
|
|
if (itemInfo.Id == Item.Present || itemInfo.Id == Item.DorothyShoes || itemInfo.Id == Item.Telescope)
|
|
message += Messages.FormatItemUseButton(randomId);
|
|
|
|
if (itemInfo.Type == "TEXT")
|
|
message += Messages.FormatItemReadButton(randomId);
|
|
|
|
if (itemInfo.Type == "PLAYERFOOD")
|
|
message += Messages.FormatItemConsumeButton(randomId);
|
|
|
|
if (Item.IsThrowable(itemInfo.Id))
|
|
message += Messages.FormatItemThrowButton(randomId);
|
|
|
|
if (itemInfo.Type != "QUEST" && itemInfo.Type != "TEXT" && World.CanDropItems(inv.BaseUser.X, inv.BaseUser.Y))
|
|
message += Messages.FormatItemDropButton(randomId);
|
|
message += Messages.FormatItemInformationButton(randomId);
|
|
message += "^R1";
|
|
}
|
|
|
|
message += Messages.BackToMap;
|
|
message += Messages.MetaTerminator;
|
|
return message;
|
|
}
|
|
public static string BuildChatpoint(Npc.NpcEntry npc, Npc.NpcChat chatpoint)
|
|
{
|
|
string message = "";
|
|
message += Messages.FormatNpcChatpoint(npc.Name, npc.ShortDescription, chatpoint.ChatText);
|
|
foreach(Npc.NpcReply reply in chatpoint.Replies)
|
|
{
|
|
message += Messages.FormatNpcReply(reply.ReplyText, reply.Id);
|
|
}
|
|
return message;
|
|
}
|
|
|
|
public static string BuildMetaInfo(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 += buildCommonInfo(x, y);
|
|
return message;
|
|
}
|
|
|
|
}
|
|
}
|