Debug move icons

This commit is contained in:
Loic Guegan 2022-02-17 10:29:59 +01:00
parent cba432b023
commit bc55363569

View file

@ -105,7 +105,7 @@ std::uint32_t MoveTable::UpdateMoves(CGEHalfMove *m, std::uint32_t line,
if (m->move.size() > 0) { if (m->move.size() > 0) {
char c = m->move[0]; char c = m->move[0];
if (!(c == 'a' || c == 'b' || c == 'c' || c == 'd' || c == 'e' || if (!(c == 'a' || c == 'b' || c == 'c' || c == 'd' || c == 'e' ||
c == 'f' || c == 'O' || c == '0')) { c == 'f' || c == 'g' || c == 'h' || 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') {
img.prop |= Property::Knight; img.prop |= Property::Knight;
@ -190,8 +190,7 @@ std::uint32_t MoveTable::DrawComment(CGEHalfMove *m, std::uint32_t line,
const char &indent_black) { const char &indent_black) {
// Show three dots // Show three dots
if (!m->IsBlack) { if (!m->IsBlack) {
DRAW_DOTS(status->MarginBarWidth + DRAW_DOTS(status->MarginBarWidth + status->MoveWidth * (indent + 1) +
status->MoveWidth * (indent + 1) +
((indent + 1) / 2 * status->MarginBarWidth), ((indent + 1) / 2 * status->MarginBarWidth),
status->MoveHeight * line); status->MoveHeight * line);
} }
@ -237,8 +236,7 @@ std::uint32_t MoveTable::DrawVariations(CGEHalfMove *m, std::uint32_t line,
const char &indent_black) { const char &indent_black) {
// Show three dots next to move if white turn // Show three dots next to move if white turn
if ((m->variations.size() == 0) && !m->IsBlack) { if ((m->variations.size() == 0) && !m->IsBlack) {
DRAW_DOTS(status->MarginBarWidth + DRAW_DOTS(status->MarginBarWidth + status->MoveWidth * (indent + 1),
status->MoveWidth * (indent + 1),
status->MoveHeight * line); status->MoveHeight * line);
} }
// Show button on the right side of the move // Show button on the right side of the move
@ -266,8 +264,7 @@ std::uint32_t MoveTable::DrawVariations(CGEHalfMove *m, std::uint32_t line,
{ {
Element e; Element e;
e.prop = Property::Rectangle | Property::Button; e.prop = Property::Rectangle | Property::Button;
e.x = (status->MarginBarWidth + e.x = (status->MarginBarWidth + status->MoveWidth * indent) +
status->MoveWidth * indent) +
status->MoveWidth - std::ceil(status->MoveHeight / 2) - status->MoveWidth - std::ceil(status->MoveHeight / 2) -
std::ceil(status->MoveHeight / 4); std::ceil(status->MoveHeight / 4);
e.y = (status->MoveHeight * (line + 1)) + e.y = (status->MoveHeight * (line + 1)) +