#include "CellView.h"
#include "AUI/Render/IRenderer.h"
CellView::CellView(FieldCell& cell) : mCell(cell), mCellValueCopy(cell) {
connect(clickedButton, this, [&]() {
emit customCssPropertyChanged();
});
}
if (mCell != mCellValueCopy) {
mCellValueCopy = mCell;
}
if (bool(mCell & FieldCell::OPEN)) {
int count = field_cell::getBombCountAround(mCell);
if (count) {
fs.
size = getHeight() * 6 / 7;
fs.
align = ATextAlign::CENTER;
auto color = AColor::BLACK;
switch (count) {
case 1:
color = 0x0000ffffu;
break;
case 2:
color = 0x008000ffu;
break;
case 3:
color = 0xff0000ffu;
break;
case 4:
color = 0x000080ffu;
break;
case 5:
color = 0x800000ffu;
break;
case 6:
color = 0x008080ffu;
break;
case 7:
color = 0x000000ffu;
break;
case 8:
color = 0x808080ffu;
break;
}
context.render.
string({getWidth() / 3, (getHeight() - fs.size) / 2}, AString::number(count), fs);
}
}
}
virtual void render(ARenderContext ctx)
Draws this AView. Noone should call this function except rendering routine.
void setColor(const AColor &color)
Sets the color which is multiplied with any brush. Unlike setColorForced, the new color is multiplied...
Definition IRenderer.h:432
virtual void string(glm::vec2 position, const AString &string, const AFontStyle &fs={})=0
Draws string.
#define emit
emits the specified signal in context of this object.
Definition AObject.h:343
Definition AFontStyle.h:24
Render context passed to AView::render.
Definition ARenderContext.h:43