XNA
テクスチャのフィールド(50x50)を描画するプログラムがあります
図面のコードは次のようになります。
namespace Village
{
public class DrawLogic
{
internal static void DrawCreatures(GameTime gameTime, GraphicsDevice graphicsDevice, SpriteBatch spriteBatch, Dictionary<string, Texture2D> creatureTextures, List<Creature> list, Coordinate current)
{
spriteBatch.Begin();
foreach (var item in list)
{
Vector2 origin = new Vector2(0, 0);
if (item.Selected)
{
spriteBatch.Draw(creatureTextures["selected"], new Vector2((item.Coordinates.X * 32) - current.X, (item.Coordinates.Y * 32) - current.Y), new Rectangle(0, 0, creatureTextures["human"].Width, creatureTextures["human"].Height), Color.White, 0.0f, origin, 1f, SpriteEffects.None, 1f);
}
else
{
spriteBatch.Draw(creatureTextures["human"], new Vector2((item.Coordinates.X * 32) - current.X, (item.Coordinates.Y * 32) - current.Y), new Rectangle(0, 0, creatureTextures["human"].Width, creatureTextures["human"].Height), Color.White, 0.0f, origin, 1f, SpriteEffects.None, 1f);
}
}
spriteBatch.End();
}
internal static void DrawObjects(GameTime gameTime, GraphicsDevice graphicsDevice, SpriteBatch spriteBatch, Dictionary<string, Texture2D> creatureTextures, List<IHarvestable> list, Coordinate current)
{
spriteBatch.Begin();
foreach (var item in list)
{
Vector2 origin = new Vector2(0, 0);
spriteBatch.Draw(creatureTextures["tree"], new Vector2((item.Coordinates.X * 32) - current.X, (item.Coordinates.Y * 32) - current.Y), new Rectangle(0, 0, creatureTextures["tree"].Width, creatureTextures["tree"].Height), Color.White, 0.0f, origin, 1f, SpriteEffects.None, 1f);
}
spriteBatch.End();
}
internal static void DrawMap(GameTime gameTime, GraphicsDevice graphicsDevice, SpriteBatch spriteBatch, Dictionary<string, Texture2D> worldTextures, Block[,] map, Coordinate current)
{
spriteBatch.Begin();
for (int i = 0; i < map.GetLength(0); i++)
{
for (int j = 0; j < map.GetLength(1); j++)
{
if (map[i, j].GetType() == typeof(Grass))
{
Vector2 origin = new Vector2(0, 0);
spriteBatch.Draw(worldTextures["grass"], new Vector2((i * 32) - current.X, (j * 32) - current.Y), new Rectangle(0, 0, worldTextures["grass"].Width, worldTextures["grass"].Height), Color.White, 0.0f, origin, 1.0f, SpriteEffects.None, 1f);
}
}
}
spriteBatch.End();
}
}
}
私の質問は今ですが、どうすれば地図全体を回転させることができますか?
次のようになります。
これを行うための最良の方法がわかりません。
すべてのテクスチャを回転させて正しい順序に配置する必要がありますか、それともレベル全体を回転させる方法はありますか?
レベル全体を回転させることができれば、現在のアルゴリズムと変わらないので、クリーチャーの歩行アルゴリズムははるかに簡単になると思います。
他の方法(すべてのテクスチャを回転させる)ははるかに難しいでしょう..私は思います。
前もって感謝します!