本文整理汇总了C++中TileMap::end方法的典型用法代码示例。如果您正苦于以下问题:C++ TileMap::end方法的具体用法?C++ TileMap::end怎么用?C++ TileMap::end使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TileMap
的用法示例。
在下文中一共展示了TileMap::end方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: getTile
Tile* Map::getTile(unsigned short _x, unsigned short _y, unsigned char _z)
{
if (_z < MAP_LAYER)
{
// _x & 0x3F is like _x % 64
// _x & 0x1F is like _x % 32
TileMap *tm = &tileMaps[_x & 0x1F][_y & 0x1F][_z];
// search in the stl map for the requested tile
TileMap::iterator it = tm->find((_x << 16) | _y);
// ... found
if (it != tm->end())
return it->second;
}
// or not
return NULL;
}
示例2: print
// Print the map in the console for testing purpose
void Mapper::print(TileMap& tiles)
{
std::string out = "";
for (TileMap::iterator col = tiles.begin(); col != tiles.end(); ++col)
{
for (std::vector<TileSprite*>::iterator it = col->begin(); it != col->end(); ++it)
{
TileSprite* tile = *it;
if(!tile)
{
out += MAP_NULL;
}
else if(tile->getType() == TileType::GROUND)
{
out += MAP_GROUND;
}
}
out += MAP_LINE_BREAK;
}
}