这是我的瓷砖地图代码。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Game_AI
{
class MapRow
{
public List<MapCell> Columns = new List<MapCell>();
}
class TileMap
{
public List<MapRow> Rows = new List<MapRow>();
public int MapWidth = 20;
public int MapHeight = 16;
public TileMap()
{
int[,] tiles = new int[,]{
{ 6, 0, 4,22, 8, 8, 8, 8, 8, 8,11, 8, 8, 8, 8,11, 8, 8, 8,21},
{ 6, 0, 4, 6, 0, 0, 0, 0, 0, 0,26, 0, 0, 0, 0,26, 0, 0, 0, 4},
{ 6, 0, 7, 9, 0,15,16,16,17, 0,26, 0, 1, 3, 0,26, 0,25, 0, 4},
{ 6, 0, 0, 0, 0, 0, 0, 0, 0, 0,27, 0, 7, 9, 0,27, 0,26, 0, 4},
{24, 2, 3, 0, 1, 3, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0,26, 0, 4},
{22, 8, 9, 0, 7, 9, 0, 7, 9, 0, 1, 2, 3, 0, 1, 3, 0,27, 0, 4},
{ 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 5, 6, 0, 4, 6, 0, 0, 0, 4},
{ 6, 0,25, 0, 1, 3, 0, 1, 3, 0, 7, 8, 9, 0, 7, 9, 0, 1, 2,23},
{ 6, 0,26, 0, 7, 9, 0, 7, 9, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8,21},
{ 6, 0,27, 0, 0, 0, 0, 0, 0, 0,25, 0, 1, 3, 0,25, 0, 0, 0, 4},
{ 6, 0, 0, 0, 0, 1, 2, 2, 3, 0,26, 0, 7, 9, 0,19,18,17, 0, 4},
{14,16,16,17, 0, 7,21,22, 9, 0,26, 0, 0, 0, 0, 4, 6, 0, 0, 4},
{ 6, 0, 0, 0, 0, 0, 4, 6, 0, 0,26, 0, 1, 3, 0, 4, 6, 0, 1,23},
{ 6, 0,15,16,17, 0, 4, 6, 0,15,20, 0, 4, 6, 0, 7, 9, 0, 7, 8},
{ 6, 0, 0, 0, 0, 0, 4, 6, 0, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, 0},
{24, 2, 2, 2, 2, 2,23,24, 2, 2, 2, 2,23,24, 2, 2, 2, 2, 2, 2}
};
for (int y = 0; y < MapHeight; y++)
{
MapRow thisRow = new MapRow();
for (int x = 0; x < MapWidth; x++)
{
thisRow.Columns.Add(new MapCell(0,true));
}
Rows.Add(thisRow);
}
for (int y = 0; y < MapHeight; y++)
{
for (int x = 0; x < MapWidth; x++)
{
Rows[y].Columns[x].TileID = tiles[y, x];
}
}
for (int y = 0; y < MapHeight; y++)
{
for (int x = 0; x < MapWidth; x++)
{
if (Rows[y].Columns[x].TileID != 0)
Rows[y].Columns[x].passable = false;
}
}
}
}
}
因此,我将每个图块都设置为 index 和 boolean passable。这就是我移动精灵的方式,但它总是遇到错误。
private Vector2 cekPosisiPlayer()
{
float tileX = pstChar.X / 60;
float tileY = pstChar.Y / 60;
return new Vector2(tileX, tileY);
}
private void cekTapTap()
{
// is there gestures available
while (TouchPanel.IsGestureAvailable)
{
// read gesture
GestureSample gesture = TouchPanel.ReadGesture();
// is it Flick or Tap
switch (gesture.GestureType)
{
case GestureType.Tap:
//posisiTap=gesture.Position;
posisiX = (int)gesture.Position.X;
posisiY = (int)gesture.Position.Y;
for(int y=0 ;y<squaresDown ;y++)
{
for(int x=0 ;x<squaresAcross ;x++)
{
//kanan
else if (posisiX > 120 && posisiX < 170 && posisiY > 360 && posisiY < 410)
{
kanan = true;
if (myMap.Rows[(int)cekPosisiPlayer().Y + 60].Columns[(int)cekPosisiPlayer().X + 60].passable)
{
pstChar.X += 5;
if (CharBawahX < 3)
{
CharBawahX++;
}
else if (CharBawahX >= 3)
{
CharBawahX = 0;
}
}
else
{
pstChar.X += 0;
}
//cameraX++;
atas = false;
bawah = false;
kiri = false;
kananchar = true;
kirichar = false;
ataschar = false;
bawahchar = false;
}
break;
//case GestureType.Hold :
}
}
}
它只检查正确的运动一段时间,如果我将我的 char 向右移动,它会崩溃。有什么不对?或者告诉我您是否需要更多解释或代码。