本文整理汇总了C++中BitmapRef::CheckPixels方法的典型用法代码示例。如果您正苦于以下问题:C++ BitmapRef::CheckPixels方法的具体用法?C++ BitmapRef::CheckPixels怎么用?C++ BitmapRef::CheckPixels使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BitmapRef
的用法示例。
在下文中一共展示了BitmapRef::CheckPixels方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: GenerateAutotiles
BitmapRef TilemapLayer::GenerateAutotiles(int count, const std::map<uint32_t, TileXY>& map) {
int rows = (count + TILES_PER_ROW - 1) / TILES_PER_ROW;
BitmapRef tiles = Bitmap::Create(TILES_PER_ROW * TILE_SIZE, rows * TILE_SIZE);
tiles->Clear();
Rect rect(0, 0, TILE_SIZE/2, TILE_SIZE/2);
std::map<uint32_t, TileXY>::const_iterator it;
for (it = map.begin(); it != map.end(); ++it) {
uint32_t quarters_hash = it->first;
TileXY dst = it->second;
// unpack the quarters data
for (int j = 0; j < 2; j++) {
for (int i = 0; i < 2; i++) {
int x = quarters_hash >> 28;
quarters_hash <<= 4;
int y = quarters_hash >> 28;
quarters_hash <<= 4;
rect.x = (x * 2 + i) * (TILE_SIZE/2);
rect.y = (y * 2 + j) * (TILE_SIZE/2);
tiles->Blit((dst.x * 2 + i) * (TILE_SIZE / 2), (dst.y * 2 + j) * (TILE_SIZE / 2), *chipset, rect, 255);
}
}
}
if (rows > 0) {
tiles->CheckPixels(Bitmap::Flag_Chipset | Bitmap::Flag_ReadOnly);
}
return tiles;
}