本文整理汇总了C++中TileMap::get方法的典型用法代码示例。如果您正苦于以下问题:C++ TileMap::get方法的具体用法?C++ TileMap::get怎么用?C++ TileMap::get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TileMap
的用法示例。
在下文中一共展示了TileMap::get方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: getTile
int TileMapBinder::getTile(lua_State* L)
{
StackChecker checker(L, "TileMapBinder::getTile", 3);
Binder binder(L);
TileMap* tilemap = static_cast<TileMap*>(binder.getInstance("TileMap", 1));
int x = luaL_checkinteger(L, 2) - 1;
int y = luaL_checkinteger(L, 3) - 1;
int tx, ty, flip;
GStatus status;
tilemap->get(x, y, &tx, &ty, &flip, &status);
if (status.error() == true)
{
luaL_error(L, status.errorString());
return 0;
}
if (TileMap::isEmpty(tx, ty))
{
lua_pushnil(L);
lua_pushnil(L);
lua_pushnil(L);
}
else
{
lua_pushinteger(L, tx + 1);
lua_pushinteger(L, ty + 1);
lua_pushinteger(L, flip);
}
return 3;
}