代码拉取完成,页面将自动刷新
#ifndef VEC_H
#define VEC_H
#include "config.h"
/**
*\brief 网格坐标,j是横坐标,i是纵坐标,int
*/
typedef struct gridvec
{
int j, i;
gridvec(int j = 0, int i = 0) : j(j), i(i)
{
}
int operator-(gridvec b)
{
if (j - b.j == 1 && i == b.i)
{
return Direction::RIGHT;
}
if (j - b.j == -1 && i == b.i)
{
return Direction::LEFT;
}
if (i - b.i == 1 && j == b.j)
{
return Direction::DOWN;
}
if (i - b.i == -1 && j == b.j)
{
return Direction::UP;
}
return 0;
}
gridvec operator+(int side) const
{
switch (side)
{
case Direction::UP:
return gridvec{j, i - 1};
case Direction::DOWN:
return gridvec{j, i + 1};
case Direction::LEFT:
return gridvec{j - 1, i};
case Direction::RIGHT:
return gridvec{j + 1, i};
}
return gridvec{j, i};
}
bool operator==(const gridvec &pos) const
{
return j == pos.j && i == pos.i;
}
} GridVec;
/**
*\brief 图片坐标,x是横坐标,y是纵坐标,int
*/
typedef struct picvec
{
int x, y;
} PicVec;
#endif // VEC_H
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。