113 lines
4 KiB
C#
113 lines
4 KiB
C#
// Decompiled with JetBrains decompiler
|
|
// Type: Terraria.GameContent.Tile_Entities.TEItemFrame
|
|
// Assembly: Terraria, Version=1.3.5.3, Culture=neutral, PublicKeyToken=null
|
|
// MVID: 68659D26-2BE6-448F-8663-74FA559E6F08
|
|
// Assembly location: C:\Users\mikeyisbaeyt\Downloads\depotdownloader-2.4.5\depots\105601\6707058\Terraria.exe
|
|
|
|
using System;
|
|
using System.IO;
|
|
using Terraria.DataStructures;
|
|
|
|
namespace Terraria.GameContent.Tile_Entities
|
|
{
|
|
public class TEItemFrame : TileEntity
|
|
{
|
|
public Item item;
|
|
|
|
public static void Initialize() => TileEntity._NetPlaceEntity += new Action<int, int, int>(TEItemFrame.NetPlaceEntity);
|
|
|
|
public static void NetPlaceEntity(int x, int y, int type)
|
|
{
|
|
if (type != 1 || !TEItemFrame.ValidTile(x, y))
|
|
return;
|
|
NetMessage.SendData(86, number: TEItemFrame.Place(x, y), number2: ((float) x), number3: ((float) y));
|
|
}
|
|
|
|
public TEItemFrame() => this.item = new Item();
|
|
|
|
public static int Place(int x, int y)
|
|
{
|
|
TEItemFrame teItemFrame = new TEItemFrame();
|
|
teItemFrame.Position = new Point16(x, y);
|
|
teItemFrame.ID = TileEntity.AssignNewID();
|
|
teItemFrame.type = (byte) 1;
|
|
TileEntity.ByID[teItemFrame.ID] = (TileEntity) teItemFrame;
|
|
TileEntity.ByPosition[teItemFrame.Position] = (TileEntity) teItemFrame;
|
|
return teItemFrame.ID;
|
|
}
|
|
|
|
public static int Hook_AfterPlacement(int x, int y, int type = 395, int style = 0, int direction = 1)
|
|
{
|
|
if (Main.netMode != 1)
|
|
return TEItemFrame.Place(x, y);
|
|
NetMessage.SendTileSquare(Main.myPlayer, x, y, 2);
|
|
NetMessage.SendData(87, number: x, number2: ((float) y), number3: 1f);
|
|
return -1;
|
|
}
|
|
|
|
public static void Kill(int x, int y)
|
|
{
|
|
TileEntity tileEntity;
|
|
if (!TileEntity.ByPosition.TryGetValue(new Point16(x, y), out tileEntity) || tileEntity.type != (byte) 1)
|
|
return;
|
|
TileEntity.ByID.Remove(tileEntity.ID);
|
|
TileEntity.ByPosition.Remove(new Point16(x, y));
|
|
}
|
|
|
|
public static int Find(int x, int y)
|
|
{
|
|
TileEntity tileEntity;
|
|
return TileEntity.ByPosition.TryGetValue(new Point16(x, y), out tileEntity) && tileEntity.type == (byte) 1 ? tileEntity.ID : -1;
|
|
}
|
|
|
|
public static bool ValidTile(int x, int y) => Main.tile[x, y].active() && Main.tile[x, y].type == (ushort) 395 && Main.tile[x, y].frameY == (short) 0 && (int) Main.tile[x, y].frameX % 36 == 0;
|
|
|
|
public override void WriteExtraData(BinaryWriter writer, bool networkSend)
|
|
{
|
|
writer.Write((short) this.item.netID);
|
|
writer.Write(this.item.prefix);
|
|
writer.Write((short) this.item.stack);
|
|
}
|
|
|
|
public override void ReadExtraData(BinaryReader reader, bool networkSend)
|
|
{
|
|
this.item = new Item();
|
|
this.item.netDefaults((int) reader.ReadInt16());
|
|
this.item.Prefix((int) reader.ReadByte());
|
|
this.item.stack = (int) reader.ReadInt16();
|
|
}
|
|
|
|
public override string ToString() => this.Position.X.ToString() + "x " + (object) this.Position.Y + "y item: " + this.item.ToString();
|
|
|
|
public void DropItem()
|
|
{
|
|
if (Main.netMode != 1)
|
|
Item.NewItem((int) this.Position.X * 16, (int) this.Position.Y * 16, 32, 32, this.item.netID, pfix: ((int) this.item.prefix));
|
|
this.item = new Item();
|
|
}
|
|
|
|
public static void TryPlacing(int x, int y, int netid, int prefix, int stack)
|
|
{
|
|
int key = TEItemFrame.Find(x, y);
|
|
if (key == -1)
|
|
{
|
|
int number = Item.NewItem(x * 16, y * 16, 32, 32, 1);
|
|
Main.item[number].netDefaults(netid);
|
|
Main.item[number].Prefix(prefix);
|
|
Main.item[number].stack = stack;
|
|
NetMessage.SendData(21, number: number);
|
|
}
|
|
else
|
|
{
|
|
TEItemFrame teItemFrame = (TEItemFrame) TileEntity.ByID[key];
|
|
if (teItemFrame.item.stack > 0)
|
|
teItemFrame.DropItem();
|
|
teItemFrame.item = new Item();
|
|
teItemFrame.item.netDefaults(netid);
|
|
teItemFrame.item.Prefix(prefix);
|
|
teItemFrame.item.stack = stack;
|
|
NetMessage.SendData(86, number: teItemFrame.ID, number2: ((float) x), number3: ((float) y));
|
|
}
|
|
}
|
|
}
|
|
}
|