I m back. Again. :3 Right now, I m working on my RPG project (just for fun, I don t have any illusions that it will be easy), and I ve come to the point where I ve written the underlying framework and I now want to write an elegant method of drawing sprites from a sprite map.
此时此刻,我正在使用来自pokémon 钻石的图示(只是测试而已,因为它很容易获得。我不是在做下一个“pokemon”游戏),它使主要英雄一行走三个方向,37px x 37px 斯图示,12图示在图像中。
The image is here: http://spriters-resource.com/ds/pkmndiamondpearl/lucas.png (I am working with the "Walking" subset, currently).
我创建了 SpriteSheet 类( 与 SpriteSheetData 类一起, 这是代表一个 XML 文件, 用于收集 spliteshites 表格) 和一个 SpriteManager 类, 全部列出如下 :
Spliteshet. cs 缩略图
namespace RPG.Utils.Graphics
{
/// <summary>
/// Represents a Sprite Sheet. A Sprite Sheet is a graphic that contains a number of frames for animations.
/// These are laid out a set distance apart.
/// </summary>
public struct SpriteSheet
{
/// <summary>
/// The name for the texture. Used internally to reference the texture.
/// </summary>
[ContentSerializer]
public string TextureName
{
get;
private set;
}
/// <summary>
/// The file name of the texture.
/// </summary>
[ContentSerializer]
public string TextureFile
{
get;
private set;
}
/// <summary>
/// The width of each sprite in the sprite sheet.
/// </summary>
[ContentSerializer]
public int SpriteWidth
{
get;
private set;
}
/// <summary>
/// The height of each sprite in the sprite sheet.
/// </summary>
[ContentSerializer]
public int SpriteHeight
{
get;
private set;
}
/// <summary>
/// The interval between each frame of animation.
/// This should be (by default) 100f or 100ms.
/// </summary>
[ContentSerializer]
public float AnimationInterval
{
get;
set;
}
/// <summary>
/// The number of frames per each individual animation.
/// </summary>
[ContentSerializer]
public int AnimationLength
{
get;
set;
}
/// <summary>
/// The texture for this sprite sheet.
/// </summary>
[ContentSerializerIgnore]
public Texture2D Texture
{
get;
set;
}
}
Splite 管理器. cs
/// <summary>
/// A sprite manager. Just loads sprites from a file and then stores them.
/// </summary>
public static class SpriteManager
{
private static Dictionary<string, SpriteSheetData> m_spriteSheets;
public static Dictionary<string, SpriteSheetData> SpriteSheets
{
get
{
if (m_spriteSheets == null)
m_spriteSheets = new Dictionary<string, SpriteSheetData>();
return m_spriteSheets;
}
}
/// <summary>
/// Loads all the sprites from the given directory using the content manager.
/// Sprites are loaded by iterating SpriteSheetData (.xml) files inside the /Sprites/ directory.
/// </summary>
/// <param name="mgr">Content Manager.</param>
/// <param name="subdir">Directory to load.</param>
public static void LoadAllSprites(ContentManager mgr, string subdir)
{
// Get the files in the subdirectory.
IEnumerable<string> files = Directory.EnumerateFiles(mgr.RootDirectory+"/"+subdir);
foreach (string f in files)
{
// Microsoft, why do you insist on not letting us load stuff with file extensions?
string fname = f.Replace("Content/", "").Replace(".xnb", "");
SpriteSheetData data = mgr.Load<SpriteSheetData>(fname);
string spriteSheetDir = subdir +"/" + data.SpriteSheetName + "/";
int loaded = 0;
for (int i = 0; i < data.SpriteSheets.Length; i++)
{
loaded++;
SpriteSheet current = data.SpriteSheets[i];
current.Texture = mgr.Load<Texture2D>(spriteSheetDir + current.TextureFile);
data.SpriteSheetMap[current.TextureName] = current;
}
Console.WriteLine("Loaded SpriteSheetData file "{0}".xml ({1} sprite sheet(s) loaded).", data.SpriteSheetName, loaded);
SpriteSheets[data.SpriteSheetName] = data;
}
}
/// <summary>
/// Query if a given Sprite definition file is loaded.
/// </summary>
/// <param name="spriteName">
/// The sprite definition file name (ie, "Hero"). This should correspond with the XML file
/// that contains the definition for the sprite sheets. It should NOT be the name OF a spritesheet.
/// </param>
/// <returns>True if the sprite definition file is loaded.</returns>
public static bool IsLoaded(string spriteName)
{
return SpriteSheets.ContainsKey(spriteName);
}
}
SpriteSheetData. cs 缩略图数据
/// <summary>
/// Represents data for a SpriteSheet. These are stored in XML files.
/// </summary>
public struct SpriteSheetData
{
/// <summary>
/// The collective name for the sprite sheets.
/// </summary>
[ContentSerializer]
public string SpriteSheetName
{
get;
set;
}
/// <summary>
/// The SpriteSheets in this data file.
/// </summary>
[ContentSerializer]
internal SpriteSheet[] SpriteSheets
{
get;
set;
}
[ContentSerializerIgnore]
private Dictionary<string, SpriteSheet> m_map;
/// <summary>
/// The sprite sheet map.
/// </summary>
[ContentSerializerIgnore]
public Dictionary<string, SpriteSheet> SpriteSheetMap
{
get
{
if (m_map == null)
m_map = new Dictionary<string, SpriteSheet>();
return m_map;
}
}
}
And the file that I am using to "read in" the sprites is: Sprites/Hero.xml
<?xml version="1.0" encoding="utf-8" ?>
<XnaContent>
<Asset Type="RPG.Utils.Graphics.SpriteSheetData">
<SpriteSheetName>Hero</SpriteSheetName>
<SpriteSheets>
<Item Type="RPG.Utils.Graphics.SpriteSheet">
<TextureName>HeroWalking</TextureName>
<TextureFile>hero_walk</TextureFile>
<SpriteWidth>37</SpriteWidth>
<SpriteHeight>37</SpriteHeight>
<AnimationInterval>400</AnimationInterval>
<AnimationLength>3</AnimationLength>
</Item>
</SpriteSheets>
</Asset>
</XnaContent>
我所要解决的问题是,我不确定如何优雅地组织1) 巨型装货和2) 对一个实体/同类物体(特别是玩家(因为这正是我现在正试图做的)配对(这是游戏中的“典型”部分,我打算重新使用,所以我不知道我可能创建的实体有多少实例)进行配对,我不确定如何继续提供这种帮助,我非常感激。
如有需要,请多问一句,然后发给你:3