Debug live engine dialog

This commit is contained in:
Loic Guegan 2022-02-27 19:55:30 +01:00
parent 3cdb25e546
commit 175ce5e108
8 changed files with 32 additions and 5 deletions

@ -1 +1 @@
Subproject commit cce0131c30a1f5fb4e3930dc03091bf238d9e80e
Subproject commit e5e820575894e31cd4da0c45a7f460fc47bcc9d3

View file

@ -39,9 +39,21 @@ EditorPanel::EditorPanel(wxFrame *parent, Game *game)
wxID_ANY);
this->Bind(wxEVT_BUTTON, &EditorPanel::OnApply, this, UPDATE_BTN);
this->Bind(wxEVT_BUTTON, &EditorPanel::OnDelete, this, DELETE_BTN);
this->Bind(wxEVT_BUTTON, &EditorPanel::OnLiveAnalysis, this,
LIVE_ANALYSIS_GAME_BUTTON);
ApplyPreferences();
}
void EditorPanel::OnLiveAnalysis(wxCommandEvent &event) {
int selection = engine_list->GetSelection();
if (selection != wxNOT_FOUND) {
LiveEngineDialog *diag = new LiveEngineDialog(this, engine_list->GetString(selection).ToStdString());
diag->SetFEN("rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1");
diag->Show();
}
}
void EditorPanel::OnTagSelected(wxListEvent &event) {
wxListItem item = event.GetItem();
std::string key = item.GetText().ToStdString();

View file

@ -1,9 +1,9 @@
#include "../Game.hpp"
#include "EditorCanvas.hpp"
#include "EditorPanelBF.h"
#include "ochess.hpp"
#include <wx/listctrl.h>
#include <wx/notebook.h>
#include "EditorPanelBF.h"
// Local events
wxDECLARE_EVENT(GOTO_MOVE_EVENT, wxCommandEvent);
@ -36,5 +36,6 @@ public:
void OnDelete(wxCommandEvent &event);
void OnPreviousMove(wxCommandEvent &event);
void OnNextMove(wxCommandEvent &event);
void OnLiveAnalysis(wxCommandEvent &event);
void ApplyPreferences();
};

View file

@ -88,7 +88,7 @@ EditorPanelBF::EditorPanelBF( wxWindow* parent, wxWindowID id, const wxPoint& po
analyze_game_button = new wxButton( engine_page, wxID_ANY, wxT("Analyze game"), wxDefaultPosition, wxDefaultSize, 0 );
engine_page_sizer->Add( analyze_game_button, 0, wxALL|wxEXPAND, 5 );
live_analysis_button = new wxButton( engine_page, wxID_ANY, wxT("Live analysis"), wxDefaultPosition, wxDefaultSize, 0 );
live_analysis_button = new wxButton( engine_page, LIVE_ANALYSIS_GAME_BUTTON, wxT("Live analysis"), wxDefaultPosition, wxDefaultSize, 0 );
engine_page_sizer->Add( live_analysis_button, 0, wxALL|wxEXPAND, 5 );

View file

@ -32,6 +32,7 @@
#define COMMENT_INPUT_BOX 1000
#define UPDATE_BTN 1001
#define DELETE_BTN 1002
#define LIVE_ANALYSIS_GAME_BUTTON 1003
///////////////////////////////////////////////////////////////////////////////
/// Class EditorPanelBF

View file

@ -10,6 +10,7 @@ LiveEngineDialog::LiveEngineDialog(wxWindow *parent, std::string engine_name)
InitEngine();
Bind(wxEVT_BUTTON, &LiveEngineDialog::TogglePauseEngine, this,
LIVE_ENGINE_PAUSE_BUTTON);
Bind(wxEVT_CLOSE_WINDOW, &LiveEngineDialog::OnClose, this);
}
void LiveEngineDialog::InitEngine() {
@ -29,7 +30,7 @@ void LiveEngineDialog::InitEngine() {
wxString optPath = opt_name + "/";
wxString default_value_wxString = conf->Read(optPath + "value");
std::string default_value = default_value_wxString.ToStdString();
engine->setoption(opt_name.ToStdString(),default_value);
engine->setoption(opt_name.ToStdString(), default_value);
} while (conf->GetNextGroup(opt_name, index));
}
@ -39,6 +40,17 @@ void LiveEngineDialog::InitEngine() {
timer.Bind(wxEVT_TIMER, &LiveEngineDialog::OnTimerTick, this);
}
void LiveEngineDialog::OnClose(wxCloseEvent &e) {
if (engine != NULL) {
wxLogDebug("Close live engine!!");
timer.Stop();
engine->stop();
engine->quit();
delete engine;
}
e.Skip();
}
void LiveEngineDialog::SetFEN(std::string fen) {
timer.Stop();
engine->position(fen);

View file

@ -15,4 +15,5 @@ public:
void TogglePauseEngine(wxCommandEvent &event);
void OnTimerTick(wxTimerEvent &event);
void SetFEN(std::string fen);
void OnClose(wxCloseEvent &e);
};

View file

@ -1086,7 +1086,7 @@
<property name="font"></property>
<property name="gripper">0</property>
<property name="hidden">0</property>
<property name="id">wxID_ANY</property>
<property name="id">LIVE_ANALYSIS_GAME_BUTTON</property>
<property name="label">Live analysis</property>
<property name="margins"></property>
<property name="markup">0</property>