mirror of
https://gitlab.com/manzerbredes/ochess.git
synced 2025-04-06 01:56:28 +02:00
Debug BoardCanvas
This commit is contained in:
parent
4f2c68de60
commit
98edb4253c
2 changed files with 8 additions and 5 deletions
|
@ -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()
|
||||
|
|
|
@ -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()
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue