FIx som stuff

This commit is contained in:
SilicaAndPina 2020-10-22 00:28:40 +13:00
parent 2a241c35aa
commit 74aeb84494
7 changed files with 53 additions and 15 deletions

BIN
DataCollection/HI1.MAP Normal file

Binary file not shown.

View file

@ -42,7 +42,7 @@
"end_of_meta":"^Z",
"back_to_map":"^M",
"long_full_line":"^L",
"inventory_format":"^ATYour Inventory^H<B>You are carrying the following %ITEMCOUNT% different items:</B> (%% max)",
"inventory_format":"^ATYour Inventory^H<B>You are carrying the following %ITEMCOUNT% different items:</B> (%MAX%)",
"dropped_items":{
"nothing_message":"^LYou see nothing on the ground of interest.^R1",
"items_message":"^LYou see the following on the ground:^R1",

View file

@ -305,7 +305,7 @@ namespace Horse_Isle_Server
db.Open();
MySqlCommand sqlCommand = db.CreateCommand();
sqlCommand.CommandText = "DELETE FROM Inventory WHERE (RandomId=@randomId)";
sqlCommand.CommandText = "DELETE FROM DroppedItems WHERE (RandomId=@randomId)";
sqlCommand.Parameters.AddWithValue("@randomId", randomId);
sqlCommand.Prepare();
sqlCommand.ExecuteNonQuery();

View file

@ -57,14 +57,22 @@ namespace Horse_Isle_Server
int epoch_new = (Int32)(DateTime.UtcNow - new DateTime(1970, 1, 1)).TotalSeconds;
DespawnItems(epoch, epoch_new);
epoch = epoch_new;
GenerateItems();
}
public static void RemoveDroppedItem(DroppedItem item)
{
Database.RemoveDroppedItem(item.instance.RandomID);
droppedItemsList.Remove(item);
int randomId = item.instance.RandomID;
Database.RemoveDroppedItem(randomId);
for (int i = 0; i < droppedItemsList.Count; i++)
{
if(droppedItemsList[i].instance.RandomID == randomId)
{
droppedItemsList.RemoveAt(i);
}
}
}
public static DroppedItem GetDroppedItemById(int randomId)
{
@ -84,17 +92,21 @@ namespace Horse_Isle_Server
}
public static void DespawnItems(int old_epoch, int new_epoch)
{
int removedCount = 0;
DroppedItem[] items = droppedItemsList.ToArray();
foreach (DroppedItem item in items)
{
if(old_epoch + item.DespawnTimer < new_epoch)
if(new_epoch + item.DespawnTimer < old_epoch)
{
if(Server.GetUsersAt(item.X, item.Y,true,true).Length == 0)
{
RemoveDroppedItem(item);
removedCount++;
}
}
}
if(removedCount > 0)
epoch = new_epoch;
}
public static void GenerateItems()
{
@ -176,7 +188,9 @@ namespace Horse_Isle_Server
}
if(newItems > 0)
{
Database.AddDroppedItems(droppedItemsList.ToArray());
}
}
public static void Init()

View file

@ -18,23 +18,28 @@ namespace Horse_Isle_Server
public static int[] OverlayTileDepth;
public static TerrainTile[] TerrainTiles;
public static int Width;
public static int Height;
public static Bitmap MapData;
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 > MapData.Width || x < 0) || (y > MapData.Height || y < 0)) // Outside map?
if ((x > Width || x < 0) || (y > Height || y < 0)) // Outside map?
return 0x1;
int pos = ((x * Height) + y);
if (overlay)
return MapData.GetPixel(x, y).R;
return oMapData[pos];
else
return MapData.GetPixel(x, y).B;
return MapData[pos];
}
public static bool CheckPassable(int x, int y)
{
@ -83,7 +88,26 @@ namespace Horse_Isle_Server
return;
}
MapData = new Bitmap(ConfigReader.MapFile);
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;
}
}
}

View file

@ -13,7 +13,7 @@ db_password=test123
db_port=3306
# Map Data
map=MapDataCombined.bmp
map=HI1.MAP
# JSON Format Data

View file

@ -476,7 +476,7 @@ namespace Horse_Isle_Server
sender.LoggedinUser.Inventory.Add(item.instance);
DroppedItems.RemoveDroppedItem(item);
UpdateAreaForAll(item.X, item.Y);
UpdateAreaForAll(sender.LoggedinUser.X, sender.LoggedinUser.Y);
byte[] chatMessage = PacketBuilder.CreateChat(Messages.GrabbedItemMessage, PacketBuilder.CHAT_BOTTOM_RIGHT);
sender.SendPacket(chatMessage);