您好,我是 XNA 的新手,正在尝试开发一个游戏原型,其中角色使用鼠标单击从一个位置移动到另一个位置。
我有一个代表当前位置的矩形。我使用玩家鼠标输入将目标位置作为 Vector2。我通过 Vector2 减法提取从源到目标的方向向量。
//the cursor's coordinates should be the center of the target position
float x = mouseState.X - this.position.Width / 2;
float y = mouseState.Y - this.position.Height / 2;
Vector2 targetVector = new Vector2(x, y);
Vector2 dir = (targetVector - this.Center); //vector from source center to target
//center
我使用平铺地图表示世界,每个单元格都是 32x32 像素。
int tileMap[,];
我想要做的是检查上面的方向矢量是否穿过地图上的任何蓝色瓷砖。蓝色瓷砖在地图上等于 1。
我不知道该怎么做。我考虑过使用线性线方程和三角公式,但我发现它很难实现。我尝试对向量进行归一化并乘以 32 以获得沿向量路径的 32 个像素长度间隔,但它似乎不起作用。谁能告诉我它是否有任何问题,或解决此问题的其他方法?谢谢
//collision with blue wall. Returns point of impact
private bool CheckCollisionWithBlue(Vector2 dir)
{
int num = Worldmap.size; //32
int i = 0;
int intervals = (int)(dir.Length() / num + 1); //the number of 32-pixel length
//inervals on the vector, with an edge
Vector2 unit = Vector2.Normalize(dir) * num; //a vector of length 32 in the same
//direction as dir.
Vector2 v = unit;
while (i <= intervals & false)
{
int x = (int)(v.X / num);
int y = (int)(v.Y / num);
int type = Worldmap.getType(y, x);
if (type == 1) //blue tile
{
return true;
}
else
{
i++;
v = unit * i;
}
}
return false;
}