2018-03-19 07:06:49 +08:00
|
|
|
|
using CustomNPCFramework.Framework.ModularNPCS.ModularRenderers;
|
|
|
|
|
using CustomNPCFramework.Framework.NPCS;
|
2018-02-24 17:04:35 +08:00
|
|
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
|
|
|
using StardewValley;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace CustomNPCFramework.Framework.ModularNPCS
|
|
|
|
|
{
|
2018-03-20 14:01:43 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Used as a wrapper for the npcs to hold sprite information.
|
|
|
|
|
/// </summary>
|
2018-02-24 17:04:35 +08:00
|
|
|
|
public class Sprite
|
|
|
|
|
{
|
2018-03-20 14:01:43 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The actual sprite to draw for the npc.
|
|
|
|
|
/// </summary>
|
2018-02-24 17:04:35 +08:00
|
|
|
|
public AnimatedSprite sprite;
|
2018-03-20 14:01:43 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The path to the texture to use for the animated sprite.
|
|
|
|
|
/// </summary>
|
2018-02-24 17:04:35 +08:00
|
|
|
|
public string relativePath;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2018-03-04 20:36:46 +08:00
|
|
|
|
/// A class for handling character sprites.
|
2018-02-24 17:04:35 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="path">The full path to the file.</param>
|
|
|
|
|
public Sprite(string path)
|
|
|
|
|
{
|
2018-03-17 19:04:04 +08:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
this.relativePath = Class1.getShortenedDirectory(path);
|
|
|
|
|
}
|
|
|
|
|
catch(Exception err)
|
|
|
|
|
{
|
|
|
|
|
this.relativePath = path;
|
|
|
|
|
}
|
|
|
|
|
try
|
|
|
|
|
{
|
2018-05-01 09:21:31 +08:00
|
|
|
|
this.sprite = new AnimatedSprite();
|
|
|
|
|
Texture2D text = Class1.ModHelper.Content.Load<Texture2D>(this.relativePath);
|
|
|
|
|
var reflect=Class1.ModHelper.Reflection.GetField<Texture2D>(this.sprite, "Texture", true);
|
|
|
|
|
reflect.SetValue(text);
|
|
|
|
|
|
2018-03-17 19:04:04 +08:00
|
|
|
|
}
|
|
|
|
|
catch(Exception err)
|
|
|
|
|
{
|
2018-05-01 09:21:31 +08:00
|
|
|
|
this.sprite = new AnimatedSprite();
|
|
|
|
|
Texture2D text = Class1.ModHelper.Content.Load<Texture2D>(this.relativePath);
|
|
|
|
|
var reflect = Class1.ModHelper.Reflection.GetField<Texture2D>(this.sprite, "Texture", true);
|
|
|
|
|
reflect.SetValue(text);
|
2018-03-17 19:04:04 +08:00
|
|
|
|
}
|
2018-05-01 09:21:31 +08:00
|
|
|
|
this.sprite.SpriteWidth = this.sprite.Texture.Width;
|
|
|
|
|
this.sprite.SpriteHeight = this.sprite.Texture.Height;
|
2018-02-24 17:04:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-04 20:36:46 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Constructor.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="path">Used to hold the path to the asset.</param>
|
|
|
|
|
/// <param name="texture">Used to assign the texture to the sprite from a pre-loaded asset.</param>
|
2018-05-01 09:21:31 +08:00
|
|
|
|
public Sprite(string path, string texture)
|
2018-03-04 20:36:46 +08:00
|
|
|
|
{
|
|
|
|
|
this.relativePath = path;
|
|
|
|
|
this.sprite = new AnimatedSprite(texture);
|
2018-05-01 09:21:31 +08:00
|
|
|
|
this.sprite.SpriteWidth = this.sprite.Texture.Width;
|
|
|
|
|
this.sprite.SpriteHeight = this.sprite.Texture.Height;
|
2018-03-04 20:36:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-02-24 17:04:35 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Sets the npc's portrait to be this portrait texture.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="npc"></param>
|
|
|
|
|
public void setCharacterSpriteFromThis(ExtendedNPC npc)
|
|
|
|
|
{
|
|
|
|
|
npc.Sprite = this.sprite;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Reloads the texture for the NPC portrait.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public void reload()
|
|
|
|
|
{
|
2018-05-01 09:21:31 +08:00
|
|
|
|
var text=CustomNPCFramework.Class1.ModHelper.Reflection.GetField<Texture2D>(this.sprite.Texture, "Texture", true);
|
|
|
|
|
Texture2D loaded= Class1.ModHelper.Content.Load<Texture2D>(this.relativePath);
|
|
|
|
|
text.SetValue(loaded);
|
2018-02-24 17:04:35 +08:00
|
|
|
|
}
|
2018-03-19 07:06:49 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Set's the npc's sprites to face left IF and only if there is a non-null modular Renderer attached to the npc.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="npc"></param>
|
|
|
|
|
public void setLeft(ExtendedNPC npc)
|
|
|
|
|
{
|
|
|
|
|
if (npc.characterRenderer == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
else npc.characterRenderer.setLeft();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Set's the npc's sprites to face left IF and only if there is a non-null modular Renderer attached to the npc.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="npc"></param>
|
|
|
|
|
public void setRight(ExtendedNPC npc)
|
|
|
|
|
{
|
|
|
|
|
if (npc.characterRenderer == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
else npc.characterRenderer.setRight();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Set's the npc's sprites to face left IF and only if there is a non-null modular Renderer attached to the npc.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="npc"></param>
|
|
|
|
|
public void setDown(ExtendedNPC npc)
|
|
|
|
|
{
|
|
|
|
|
if (npc.characterRenderer == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
else npc.characterRenderer.setDown();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Set's the npc's sprites to face left IF and only if there is a non-null modular Renderer attached to the npc.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="npc"></param>
|
|
|
|
|
public void setUp(ExtendedNPC npc)
|
|
|
|
|
{
|
|
|
|
|
if (npc.characterRenderer == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
else npc.characterRenderer.setUp();
|
|
|
|
|
}
|
2018-02-24 17:04:35 +08:00
|
|
|
|
}
|
|
|
|
|
}
|