mirror of
https://gitlab.com/manzerbredes/cgeditor.git
synced 2025-04-06 10:06:27 +02:00
Debug move icons
This commit is contained in:
parent
3e818c0f0c
commit
3a058b2cfd
1 changed files with 7 additions and 7 deletions
|
@ -98,7 +98,6 @@ std::uint32_t MoveTable::UpdateMoves(CGEHalfMove *m, std::uint32_t line,
|
||||||
img.width = status->MoveIconWidth;
|
img.width = status->MoveIconWidth;
|
||||||
img.height = status->MoveHeight;
|
img.height = status->MoveHeight;
|
||||||
img.ShouldApplyScroll = true;
|
img.ShouldApplyScroll = true;
|
||||||
elements.push_back(img);
|
|
||||||
// Move
|
// Move
|
||||||
Element e;
|
Element e;
|
||||||
e.prop = move_bound.prop | Property::Text;
|
e.prop = move_bound.prop | Property::Text;
|
||||||
|
@ -109,18 +108,18 @@ std::uint32_t MoveTable::UpdateMoves(CGEHalfMove *m, std::uint32_t line,
|
||||||
c == 'f' || c == 'O' || c == '0')) {
|
c == 'f' || c == 'O' || c == '0')) {
|
||||||
e.text = m->move.substr(1, m->move.size());
|
e.text = m->move.substr(1, m->move.size());
|
||||||
if (c == 'N') {
|
if (c == 'N') {
|
||||||
e.prop |= Property::Knight;
|
img.prop |= Property::Knight;
|
||||||
} else if (c == 'B') {
|
} else if (c == 'B') {
|
||||||
e.prop |= Property::Bishop;
|
img.prop |= Property::Bishop;
|
||||||
} else if (c == 'R') {
|
} else if (c == 'R') {
|
||||||
e.prop |= Property::Rook;
|
img.prop |= Property::Rook;
|
||||||
} else if (c == 'Q') {
|
} else if (c == 'Q') {
|
||||||
e.prop |= Property::Queen;
|
img.prop |= Property::Queen;
|
||||||
} else {
|
} else {
|
||||||
e.prop |= Property::King;
|
img.prop |= Property::King;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
e.prop |= Property::Pawn;
|
img.prop |= Property::Pawn;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
e.x = status->MoveIconWidth + move_bound.x;
|
e.x = status->MoveIconWidth + move_bound.x;
|
||||||
|
@ -128,6 +127,7 @@ std::uint32_t MoveTable::UpdateMoves(CGEHalfMove *m, std::uint32_t line,
|
||||||
e.width = status->MoveWidth - status->MoveIconWidth;
|
e.width = status->MoveWidth - status->MoveIconWidth;
|
||||||
e.height = status->MoveHeight;
|
e.height = status->MoveHeight;
|
||||||
e.ShouldApplyScroll = true;
|
e.ShouldApplyScroll = true;
|
||||||
|
elements.push_back(img);
|
||||||
elements.push_back(e);
|
elements.push_back(e);
|
||||||
} else {
|
} else {
|
||||||
move_bound.prop |= Property::Text;
|
move_bound.prop |= Property::Text;
|
||||||
|
|
Loading…
Add table
Reference in a new issue