本文整理汇总了C++中TileMap::Mask方法的典型用法代码示例。如果您正苦于以下问题:C++ TileMap::Mask方法的具体用法?C++ TileMap::Mask怎么用?C++ TileMap::Mask使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TileMap
的用法示例。
在下文中一共展示了TileMap::Mask方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1:
void
TileCell::Draw(Bitmap* bitmap, GFX::rect *rect, bool advanceFrame, bool full)
{
MapOverlay* overlayZero = fOverlays[0];
if (overlayZero == NULL)
return;
TileMap* tileMapZero = overlayZero->TileMapForTileCell(fNumber);
if (tileMapZero == NULL) {
std::cerr << "Tilemap Zero is NULL!" << std::endl;
return;
}
const int8 mask = tileMapZero->Mask();
int maxOverlay = full ? fNumOverlays : 1;
for (int i = maxOverlay - 1; i >= 0; i--) {
if (!ShouldDrawOverlay(i, mask))
continue;
MapOverlay *overlay = fOverlays[i];
TileMap *map = overlay->TileMapForTileCell(i == 0 ? fNumber : 0);
if (map == NULL)
continue;
int16 index = map->TileIndex(advanceFrame);
if (fDoor != NULL && !fDoor->Opened()) {
int16 secondaryIndex = map->SecondaryTileIndex();
if (secondaryIndex != -1)
index = secondaryIndex;
else
std::cerr << "TileCell::Draw(): secondary index is -1. BUG?." << std::endl;
}
TISResource *tis = gResManager->GetTIS(overlay->TileSet());
Bitmap *cell = tis->TileAt(index);
assert(cell != NULL);
gResManager->ReleaseResource(tis);
GFX::Color *color = NULL;
if (i == 0 && mask != 0) {
color = &sTransparentColor;
//color = &cell->format->palette->colors[255];
}
_DrawOverlay(bitmap, cell, *rect, color);
cell->Release();
}
}