Debug BoardCanvas

This commit is contained in:
Loic Guegan 2023-01-02 08:28:59 +01:00
parent 4f2c68de60
commit 98edb4253c
2 changed files with 8 additions and 5 deletions

View file

@ -25,6 +25,11 @@ BoardCanvas::BoardCanvas(wxFrame *parent)
Bind(wxEVT_KEY_UP, [p=this](wxKeyEvent &e){e.ResumePropagation(1);e.Skip();});
Bind(wxEVT_PAINT, &BoardCanvas::OnPaint, this);
Bind(wxEVT_SIZE, &BoardCanvas::OnResize, this);
// Mouse events:
Bind(wxEVT_MOTION, &BoardCanvas::MouseEvent, this);
Bind(wxEVT_LEFT_DOWN, &BoardCanvas::MouseEvent, this);
Bind(wxEVT_LEFT_UP, &BoardCanvas::MouseEvent, this);
}
void BoardCanvas::OnResize(wxSizeEvent &e){
@ -367,6 +372,9 @@ void BoardCanvas::MouseEvent(wxMouseEvent &event) {
((char)('a' + file)) + std::to_string(rank + 1);
event.SetString(move);
ProcessEvent(event);
} else {
// If square not valid just redraw (place piece back to its square)
Refresh();
}
}
if (event.LeftDown()) {
@ -412,7 +420,3 @@ void BoardCanvas::SetClockTime(short hours, short min, short sec,
white_time = std::make_tuple(hours, min, sec);
}
}
wxBEGIN_EVENT_TABLE(BoardCanvas, wxPanel)
EVT_MOUSE_EVENTS(BoardCanvas::MouseEvent)
wxEND_EVENT_TABLE()

View file

@ -95,5 +95,4 @@ public:
std::string white_player, std::string black_player);
void Animate(const std::string &board, bool is_black_turn, std::map<char, std::uint8_t> captures, std::string src, std::string dst,bool faster);
void SetClockTime(short hours, short min, short sec, bool IsBlack);
DECLARE_EVENT_TABLE()
};