本文整理汇总了C++中Tileset::copy方法的典型用法代码示例。如果您正苦于以下问题:C++ Tileset::copy方法的具体用法?C++ Tileset::copy怎么用?C++ Tileset::copy使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Tileset
的用法示例。
在下文中一共展示了Tileset::copy方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: drawlayer
void TileMap::drawlayer(Layer * layer)
{
//for(std::map<std::string, Layer*>::iterator it = _layers.begin(); it!=_layers.end(); it++)
//{
// Layer* layer = it->second;
std::pair<int, int> p = layer->firstGid();
while(p.second != 0)
{
Tileset * set = findTilesetByGid(p.second);
if(set)
{
set->copy(_image.surface(), ((p.first)%_w)*_tileWidth,
((p.first)/_w)*_tileHeight, p.second);
}
p = layer->nextGid();
}
//}
_image.update();
}
示例2: setGid
bool TileMap::setGid(int x, int y, int gid)
{
if(_layers.size() <= 0)
return false;
SDL_Rect rect;
rect.x = x/_tileWidth * _tileWidth;
rect.y = y/_tileHeight* _tileHeight;
rect.w = _tileWidth;
rect.h = _tileHeight;
_image.fill(&_bgColor, &rect);
int position = x/_tileWidth + y/_tileHeight*_w;
Layer* layer = _layers.begin()->second;
layer->setGid(position, gid);
Tileset * tileset = findTilesetByGid(gid);
if(tileset && gid != 0)
tileset->copy(_image.surface(), rect.x, rect.y, gid);
return true;
}