SpriteLibrary/SpriteLibrary/SpriteDatabase.cs

265 lines
9.7 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Drawing;
using System.Xml;
using System.Xml.Serialization;
using System.Resources;
using System.IO;
namespace SpriteLibrary
{
internal struct ImageStruct
{
internal Image TheImage;
internal string ImageName;
}
/// <summary>
/// Store of all the types of things in the ADVDemo
/// </summary>
public class SpriteDatabase
{
List<SpriteInfo> SpriteInfoList = new List<SpriteInfo>();
List<ImageStruct> TheImages = new List<ImageStruct>();
ResourceManager myResourceManager = null;
string Filename = "";
Size SnapGridSize = new Size(5, 5);
public SpriteDatabase(ResourceManager theResourceManager, string filename)
{
myResourceManager = theResourceManager;
Filename = filename;
Load();
}
internal void Load()
{
LoadSpriteInfo();
}
public void SetSnapGridSize(Size GridSize)
{
if (GridSize.Width <= 0) return;
if (GridSize.Height <= 0) return;
if (GridSize.Width > 500) return;
if (GridSize.Height > 500) return;
SnapGridSize = GridSize;
}
//*******************************
//**** Sprite Info Functions ***
//*******************************
#region SpriteInfo Functions
void LoadSpriteInfo()
{
if (DoesResourceExist(Filename))
{
//This clears out the old list, as it gets replaced.
SpriteInfoList = LoadObjectFromXmlFile<List<SpriteInfo>>(Filename, myResourceManager);
}
else
{
//try loading it from an actual filename
if (File.Exists(Filename))
SpriteInfoList = ReadFromXmlFile<List<SpriteInfo>>(Filename);
}
//If neither works, we end up with an empty file.
//If it fails, SpriteInfoList is null and things explode.
if (SpriteInfoList == null)
SpriteInfoList = new List<SpriteInfo>(); //make an empty one so things do not explode.
}
public List<string> SpriteNames()
{
List<string> theNames = new List<string>();
foreach (SpriteInfo si in SpriteInfoList)
{
theNames.Add(si.SpriteName);
}
return theNames;
}
internal bool DoesResourceExist(string resourcename)
{
if (myResourceManager == null) return false;
if (myResourceManager.GetObject(resourcename) != null)
return true;
return false;
}
public void OpenEditWindow(int FirstItemIndex=-1)
{
SpriteEntryForm SEF = new SpriteEntryForm(myResourceManager, SpriteInfoList, SnapGridSize);
SEF.ShowDialog();
//Use the updated list returned from the form.
SpriteInfoList.Clear();
SpriteInfoList.AddRange(SEF.GetUpdatedList());
}
#endregion
#region General Functions
public Image GetImageFromName(string Name, bool UseSmartImages)
{
Image MyImage = null;
if (UseSmartImages)
{
foreach (ImageStruct IS in TheImages)
{
if (IS.ImageName.Equals(Name, StringComparison.InvariantCultureIgnoreCase))
{
MyImage = IS.TheImage;
break;
}
}
}
if (MyImage == null)
{
ResourceManager rm = myResourceManager;
MyImage = (Bitmap)rm.GetObject(Name);
if (UseSmartImages)
{
ImageStruct NewIS = new ImageStruct();
NewIS.ImageName = Name;
NewIS.TheImage = MyImage;
TheImages.Add(NewIS);
}
}
return MyImage;
}
public Sprite SmartDuplicateSprite(SpriteController theController, string SpriteName, bool UseSmartImages = true)
{
Sprite DestSprite = theController.DuplicateSprite(SpriteName);
if (DestSprite != null) return DestSprite;
//If it does not exist, make it
foreach (SpriteInfo SI in SpriteInfoList)
{
if (SI.SpriteName == SpriteName)
{
SI.CreateSprite(theController, this);
return theController.DuplicateSprite(SpriteName);
}
}
return null;
}
#endregion
#region Generic XML Funcs
/// <summary>
/// Load in an XML serialized item from the specified ResourceManager. You will usually make one of these by
/// creating an object and using <see cref="SpriteDatabase.WriteToXmlFile">SpriteDatabase.WriteToXmlFile</see> to
/// save it to a file on your desktop. Then you can drag and drop that file into your project and then use this
/// LoadObjectFromXmlFile function.
/// </summary>
/// <typeparam name="T">The type of object to load. It could be something as simple as an int, a class, or a list of classes.</typeparam>
/// <param name="XMLResourceToLoad">The resource item to load. If you would access it like: properties.resources.myFile,
/// the correct value to put here would be "myFile"</param>
/// <param name="MyManager">The resource manager. Usually Properties.Resources.ResourceManager</param>
/// <returns>An object of the value you specified. Or null if it fails.</returns>
public static T LoadObjectFromXmlFile<T>(string XMLResourceToLoad, ResourceManager MyManager) where T : new()
{
//Load in the sprite data
XmlSerializer serializer = new XmlSerializer(typeof(T));
// Retrieves String and Image resources.
object titem = MyManager.GetObject(XMLResourceToLoad);
byte[] item = (byte[])System.Text.Encoding.UTF8.GetBytes((string)titem);
try
{
return (T)serializer.Deserialize(new MemoryStream(item));
}
finally
{
}
}
/// <summary>
/// Writes the given object instance to an XML file.
/// <para>Only Public properties and variables will be written to the file. These can be any type though, even other classes.</para>
/// <para>If there are public properties/variables that you do not want written to the file, decorate them with the [XmlIgnore] attribute.</para>
/// <para>Object type must have a parameterless constructor.</para>
/// </summary>
/// <typeparam name="T">The type of object being written to the file.</typeparam>
/// <param name="filePath">The file path to write the object instance to.</param>
/// <param name="objectToWrite">The object instance to write to the file.</param>
internal static void WriteToXmlFile<T>(string filePath, T objectToWrite) where T : new()
{
TextWriter writer = null;
try
{
var serializer = new XmlSerializer(typeof(T));
writer = new StreamWriter(filePath);
serializer.Serialize(writer, objectToWrite);
}
finally
{
if (writer != null)
writer.Close();
}
}
/// <summary>
/// Reads an object instance from an XML file.
/// <para>Object type must have a parameterless constructor.</para>
/// </summary>
/// <typeparam name="T">The type of object to read from the file.</typeparam>
/// <param name="filePath">The file path to read the object instance from.</param>
/// <returns>Returns a new instance of the object read from the XML file.</returns>
public static T ReadFromXmlFile<T>(string filePath) where T : new()
{
TextReader reader = null;
try
{
var serializer = new XmlSerializer(typeof(T));
reader = new StreamReader(filePath);
return (T)serializer.Deserialize(reader);
}
finally
{
if (reader != null)
reader.Close();
}
}
public static string WriteToXMLString<T>(T toSerialize)
{
XmlSerializer xmlSerializer = new XmlSerializer(toSerialize.GetType());
using (StringWriter textWriter = new StringWriter())
{
xmlSerializer.Serialize(textWriter, toSerialize);
return textWriter.ToString();
}
}
public static T ReadFromXmlString<T>(string toDeserialize) where T : new()
{
XmlSerializer xmlSerializer = new XmlSerializer(typeof(T));
using (StringReader textReader = new StringReader(toDeserialize))
return (T)xmlSerializer.Deserialize(textReader);
}
public static T CloneByXMLSerializing<T>(T ObjectToClone)
{
XmlSerializer xmlSerializer = new XmlSerializer(typeof(T));
string dest;
using (StringWriter textWriter = new StringWriter())
{
xmlSerializer.Serialize(textWriter, ObjectToClone);
dest = textWriter.ToString();
}
using (StringReader textReader = new StringReader(dest))
return (T)xmlSerializer.Deserialize(textReader);
}
#endregion
}
}