ReC98/th04/op/darken.cpp

22 lines
666 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Darkens the [w]×[h] area starting at [vram_offset], by writing an
// alternating dot pattern in the given [col]. [x] and [y] store the currently
// iterated position.
#define darken(vram_offset, x, y, w, h, col) \
grcg_setcolor(GC_RMW, col); \
dots32_t pattern = 0xAAAAAAAA; \
\
y = 0; \
while(y < h) { \
pattern = ((y & 1) == 0) ? 0xAAAAAAAA : 0x55555555; \
\
x = 0; \
while(x < (w / BYTE_DOTS)) { \
grcg_put(vram_offset, pattern, 32); \
x += static_cast<vram_byte_amount_t>(sizeof(pattern)); \
vram_offset += static_cast<vram_offset_t>(sizeof(pattern)); \
} \
y++; \
vram_offset += (ROW_SIZE - (w / BYTE_DOTS)); \
} \
grcg_off();