182 lines
7.3 KiB
C#
182 lines
7.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.Xna.Framework;
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
using PyTK.CustomElementHandler;
|
|
using StardewValley;
|
|
|
|
namespace Revitalize.Framework.Objects.Machines
|
|
{
|
|
public class PipeMultiTiledObject:MultiTiledObject
|
|
{
|
|
public PipeMultiTiledObject() : base()
|
|
{
|
|
|
|
}
|
|
|
|
public PipeMultiTiledObject(CustomObjectData PyTKData, BasicItemInformation info)
|
|
: base(PyTKData, info)
|
|
{
|
|
|
|
}
|
|
|
|
public PipeMultiTiledObject(CustomObjectData PyTKData, BasicItemInformation info, Vector2 TileLocation)
|
|
: base(PyTKData, info, TileLocation)
|
|
{
|
|
|
|
}
|
|
|
|
public PipeMultiTiledObject(CustomObjectData PyTKData, BasicItemInformation info, Vector2 TileLocation, Dictionary<Vector2, MultiTiledComponent> ObjectsList)
|
|
: base(PyTKData, info, TileLocation, ObjectsList)
|
|
{
|
|
|
|
|
|
}
|
|
|
|
public override Item getOne()
|
|
{
|
|
Dictionary<Vector2, MultiTiledComponent> objs = new Dictionary<Vector2, MultiTiledComponent>();
|
|
foreach (var pair in this.objects)
|
|
{
|
|
objs.Add(pair.Key, (MultiTiledComponent)pair.Value.getOne());
|
|
}
|
|
return new PipeMultiTiledObject(this.data, this.info.Copy(), this.TileLocation, objs);
|
|
}
|
|
|
|
public override ICustomObject recreate(Dictionary<string, string> additionalSaveData, object replacement)
|
|
{
|
|
PipeMultiTiledObject obj = (PipeMultiTiledObject)Revitalize.ModCore.Serializer.DeserializeGUID<PipeMultiTiledObject>(additionalSaveData["GUID"]);
|
|
if (obj == null)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
Dictionary<Vector2, Guid> guids = new Dictionary<Vector2, Guid>();
|
|
|
|
foreach (KeyValuePair<Vector2, Guid> pair in obj.childrenGuids)
|
|
{
|
|
guids.Add(pair.Key, pair.Value);
|
|
}
|
|
|
|
foreach (KeyValuePair<Vector2, Guid> pair in guids)
|
|
{
|
|
obj.childrenGuids.Remove(pair.Key);
|
|
MultiTiledComponent component = Revitalize.ModCore.Serializer.DeserializeGUID<MultiTiledComponent>(pair.Value.ToString());
|
|
component.InitNetFields();
|
|
obj.removeComponent(pair.Key);
|
|
obj.addComponent(pair.Key, component);
|
|
|
|
|
|
}
|
|
obj.InitNetFields();
|
|
|
|
if (!Revitalize.ModCore.ObjectGroups.ContainsKey(additionalSaveData["GUID"]))
|
|
{
|
|
Revitalize.ModCore.ObjectGroups.Add(additionalSaveData["GUID"], obj);
|
|
return obj;
|
|
}
|
|
else
|
|
{
|
|
return Revitalize.ModCore.ObjectGroups[additionalSaveData["GUID"]];
|
|
}
|
|
|
|
|
|
}
|
|
|
|
public override Dictionary<string, string> getAdditionalSaveData()
|
|
{
|
|
Dictionary<string, string> saveData = base.getAdditionalSaveData();
|
|
//saveData.Add("GUID", this.guid.ToString());
|
|
//Revitalize.ModCore.Serializer.SerializeGUID(this.guid.ToString(), this);
|
|
return saveData;
|
|
}
|
|
|
|
public override void rebuild(Dictionary<string, string> additionalSaveData, object replacement)
|
|
{
|
|
base.rebuild(additionalSaveData, replacement);
|
|
}
|
|
|
|
public override void draw(SpriteBatch spriteBatch, int x, int y, float alpha = 1)
|
|
{
|
|
this.updateInfo();
|
|
foreach (KeyValuePair<Vector2, StardewValley.Object> pair in this.objects)
|
|
{
|
|
(pair.Value as MultiTiledComponent).draw(spriteBatch, x + ((int)pair.Key.X), y + ((int)pair.Key.Y), alpha);
|
|
}
|
|
}
|
|
|
|
public override void draw(SpriteBatch spriteBatch, int xNonTile, int yNonTile, float layerDepth, float alpha = 1)
|
|
{
|
|
this.updateInfo();
|
|
foreach (KeyValuePair<Vector2, StardewValley.Object> pair in this.objects)
|
|
{
|
|
pair.Value.draw(spriteBatch, xNonTile + (int)pair.Key.X * Game1.tileSize, yNonTile + (int)pair.Key.Y * Game1.tileSize, layerDepth, alpha);
|
|
}
|
|
|
|
//base.draw(spriteBatch, xNonTile, yNonTile, layerDepth, alpha);
|
|
}
|
|
|
|
public override void drawInMenu(SpriteBatch spriteBatch, Vector2 location, float scaleSize, float transparency, float layerDepth, bool drawStackNumber, Color c, bool drawShadow)
|
|
{
|
|
this.updateInfo();
|
|
foreach (KeyValuePair<Vector2, StardewValley.Object> pair in this.objects)
|
|
{
|
|
//ModCore.log(location + (pair.Key * 16) + new Vector2(32, 32));
|
|
pair.Value.drawInMenu(spriteBatch, location + (pair.Key * 16) + new Vector2(32, 32), 1.0f, transparency, layerDepth, drawStackNumber, c, drawShadow);
|
|
}
|
|
if (drawStackNumber && this.maximumStackSize() > 1 && ((double)scaleSize > 0.3 && this.Stack != int.MaxValue) && this.Stack > 1)
|
|
Utility.drawTinyDigits(this.Stack, spriteBatch, location + new Vector2((float)(Game1.tileSize - Utility.getWidthOfTinyDigitString(this.Stack, 3f * scaleSize)) + 3f * scaleSize, (float)((double)Game1.tileSize - 18.0 * (double)scaleSize + 2.0)), 3f * scaleSize, 1f, Color.White);
|
|
//base.drawInMenu(spriteBatch, location, scaleSize, transparency, layerDepth, drawStackNumber, c, drawShadow);
|
|
}
|
|
|
|
public override void drawWhenHeld(SpriteBatch spriteBatch, Vector2 objectPosition, Farmer f)
|
|
{
|
|
this.updateInfo();
|
|
foreach (KeyValuePair<Vector2, StardewValley.Object> pair in this.objects)
|
|
pair.Value.drawWhenHeld(spriteBatch, objectPosition + (pair.Key * Game1.tileSize), f);
|
|
//base.drawWhenHeld(spriteBatch, objectPosition, f);
|
|
}
|
|
|
|
public override bool canStackWith(Item other)
|
|
{
|
|
if (other is PipeMultiTiledObject)
|
|
{
|
|
return (other as PipeMultiTiledObject).info.id == this.info.id && (other as PipeMultiTiledObject).info.DyedColor == this.info.DyedColor;
|
|
}
|
|
else return false;
|
|
}
|
|
|
|
public override int maximumStackSize()
|
|
{
|
|
return 999;
|
|
}
|
|
|
|
public override bool placementAction(GameLocation location, int x, int y, Farmer who = null)
|
|
{
|
|
this.updateInfo();
|
|
PipeMultiTiledObject m = (PipeMultiTiledObject)this.getOne();
|
|
|
|
foreach (KeyValuePair<Vector2, StardewValley.Object> pair in m.objects)
|
|
{
|
|
/*
|
|
if ((pair.Value as CustomObject).info.ignoreBoundingBox)
|
|
{
|
|
pair.Value.placementAction(location, -1 * (x + (int)pair.Key.X * Game1.tileSize), -1 * (y + (int)pair.Key.Y * Game1.tileSize), who);
|
|
}
|
|
else
|
|
{
|
|
pair.Value.placementAction(location, x + (int)pair.Key.X * Game1.tileSize, y + (int)pair.Key.Y * Game1.tileSize, who);
|
|
}*/
|
|
(pair.Value as MultiTiledComponent).placementAction(location, x + (int)pair.Key.X * Game1.tileSize, y + (int)pair.Key.Y * Game1.tileSize, who);
|
|
//ModCore.log(pair.Value.TileLocation);
|
|
}
|
|
m.location = location;
|
|
return true;
|
|
//return base.placementAction(location, x, y, who);
|
|
}
|
|
}
|
|
}
|