From 445cc09d01f8e3beeb406e175b5a98d6be58ea9a Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Mon, 9 Jan 2023 13:13:03 +0100 Subject: Debug BoardCanvas DragNDrop and highlight last played move --- src/game_tab/left_panel/GameTabLeftPanel.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/game_tab/left_panel/GameTabLeftPanel.cpp') diff --git a/src/game_tab/left_panel/GameTabLeftPanel.cpp b/src/game_tab/left_panel/GameTabLeftPanel.cpp index 25ded2c..5b8162c 100644 --- a/src/game_tab/left_panel/GameTabLeftPanel.cpp +++ b/src/game_tab/left_panel/GameTabLeftPanel.cpp @@ -107,6 +107,15 @@ void GameTabLeftPanel::Notify(bool skip_animation) { gs.black=game->GetTag("Black"); gs.mat_black=game->IsCheckmate(true); gs.mat_white=game->IsCheckmate(false); + if(m){ + // There should be a valid src_hl or dst_hl ortherwise it explode: + std::string src_hl, dst_hl; + m->GetAbsoluteMove(src_hl,dst_hl); + if(src_hl.size()>0){ // Just in case + gs.squares_hl.push_back(src_hl+"d"); + gs.squares_hl.push_back(dst_hl+"a"); + } + } if(skip_animation || !animate){ board_canvas->SetupBoard(gs); } -- cgit v1.2.3