マリオのキャラクターであるプレイヤークラスがあります。左に歩くと、Leftアニメーションを開始して速度を設定するメソッドを呼び出します。
ここに私の問題があります: プレイヤーの衝突長方形を作成するにはどうすればよいでしょうか? これは私の長方形です:
rectangle = new Rectangle(currentFrame * frameWidth, 0, frameWidth, frameHeight);
これは私のcurrentFrame
変数を使用し、frameWidth
とHeight
.
RectanlgeHelper
次のようなクラスもあります。
public static class RectangleHelper
{
public static bool TouchTopOf(this Rectangle r1, Rectangle r2)
{
return (r1.Bottom >= r2.Top - 1 &&
r1.Bottom <= r2.Top + (r2.Height / 2) &&
r1.Right >= r2.Left + r2.Width / 5 &&
r1.Left <= r2.Right - r2.Height / 6);
}
public static bool TouchBottomOf(this Rectangle r1, Rectangle r2)
{
return (r1.Top <= r2.Bottom + (r2.Height / 5) &&
r1.Top >= r2.Bottom - 1 &&
r1.Right >= r2.Left + r2.Width / 5 &&
r1.Left <= r2.Right - r2.Width / 5);
}
public static bool TouchLeftOf(this Rectangle r1, Rectangle r2)
{
return (r1.Right <= r2.Right &&
r1.Right >= r2.Left - 5 &&
r1.Top <= r2.Bottom - (r2.Width / 4) &&
r1.Bottom >= r2.Top + (r2.Width / 4));
}
public static bool TouchRightOf(this Rectangle r1, Rectangle r2)
{
return (r1.Left >= r2.Right &&
r1.Left <= r2.Right + 5 &&
r1.Top <= r1.Bottom - (r2.Width / 4) &&
r1.Bottom >= r2.Top + (r2.Width / 4));
}
}
そしてTile
、マップ上にタイルを描画する私のクラスでは:
class Tiles
{
protected Texture2D texture;
private Rectangle rectangle;
public Rectangle Rectangle
{
get { return rectangle; }
protected set { rectangle = value; }
}
private static ContentManager content;
public static ContentManager Content
{
protected get { return content; }
set { content = value; }
}
public void Draw(SpriteBatch spriteBatch)
{
spriteBatch.Draw(texture, rectangle, Color.White);
}
}
class CollisionTiles : Tiles
{
public CollisionTiles(int i, Rectangle newRectangle)
{
texture = Content.Load<Texture2D>("Tiles/Tile" + i);
this.Rectangle = newRectangle;
}
}
そして、必要に応じてMap
、マップ/レベルを生成する私のクラス:
class Map
{
private List<CollisionTiles> collisionTiles = new List<CollisionTiles>();
public List<CollisionTiles> CollisionTiles
{
get { return collisionTiles; }
}
private int width, height;
public int Width
{
get { return width; }
}
public int Height
{
get { return height; }
}
public Map() { }
public void Generate(int[,] map, int size)
{
for (int x = 0; x < map.GetLength(1); x++)
for (int y = 0; y < map.GetLength(0); y++)
{
int number = map[y, x];
if (number > 0)
{
CollisionTiles.Add(new CollisionTiles(number, new Rectangle(x * size, y * size, size, size)));
width = (x + 1) * size;
height = (y + 1) * size;
}
}
}
public void Draw(SpriteBatch spriteBatch)
{
foreach (CollisionTiles tile in collisionTiles)
tile.Draw(spriteBatch);
}
}
では、衝突を使用できるように、プレーヤー クラスで別の四角形を作成するにはどうすればよいでしょうか?
事前に感謝します。さらに何かを知る必要がある場合は、教えてください。