mirror of
https://gitlab.com/manzerbredes/ochess.git
synced 2025-04-06 10:06:29 +02:00
Remove all warnings from source code
This commit is contained in:
parent
ff671f2171
commit
a9b9ed95f3
31 changed files with 72 additions and 48 deletions
|
@ -89,11 +89,13 @@ void MainWindow::AddPage(wxWindow* window, TabInfos* infos){
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::OnAuiNotebookPageClosed(wxAuiNotebookEvent& event){
|
void MainWindow::OnAuiNotebookPageClosed(wxAuiNotebookEvent& event){
|
||||||
|
UNUSED(event);
|
||||||
// Refresh tab that require knowledge on other tabs
|
// Refresh tab that require knowledge on other tabs
|
||||||
for(auto i: wxGetApp().ListTabInfos()){i->Refresh();}
|
for(auto i: wxGetApp().ListTabInfos()){i->Refresh();}
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::OnCloseTabEvent(wxCommandEvent &event) {
|
void MainWindow::OnCloseTabEvent(wxCommandEvent &event) {
|
||||||
|
UNUSED(event);
|
||||||
notebook->DeletePage(notebook->GetSelection());
|
notebook->DeletePage(notebook->GetSelection());
|
||||||
// Refresh tab that require knowledge on other tabs
|
// Refresh tab that require knowledge on other tabs
|
||||||
for(auto i: wxGetApp().ListTabInfos()){i->Refresh();}
|
for(auto i: wxGetApp().ListTabInfos()){i->Refresh();}
|
||||||
|
@ -102,7 +104,7 @@ void MainWindow::OnCloseTabEvent(wxCommandEvent &event) {
|
||||||
void MainWindow::OnCloseTabLinkedTo(wxCommandEvent &event){
|
void MainWindow::OnCloseTabLinkedTo(wxCommandEvent &event){
|
||||||
TabInfos *infosEvent=(TabInfos*)event.GetClientData();
|
TabInfos *infosEvent=(TabInfos*)event.GetClientData();
|
||||||
// Now close all tabs in the notebook related to the one in the event
|
// Now close all tabs in the notebook related to the one in the event
|
||||||
int i=0;
|
std::size_t i=0;
|
||||||
while(i<notebook->GetPageCount()){
|
while(i<notebook->GetPageCount()){
|
||||||
wxWindow *page=notebook->GetPage(i);
|
wxWindow *page=notebook->GetPage(i);
|
||||||
TabInfos* infos=(TabInfos*)page->GetClientData();
|
TabInfos* infos=(TabInfos*)page->GetClientData();
|
||||||
|
@ -180,6 +182,7 @@ void MainWindow::OnMenuItemClick(wxCommandEvent &event) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::OnRefreshEngineList(wxCommandEvent &event) {
|
void MainWindow::OnRefreshEngineList(wxCommandEvent &event) {
|
||||||
|
UNUSED(event);
|
||||||
// Delete all items
|
// Delete all items
|
||||||
wxMenuItemList items = manageMenu->GetMenuItems();
|
wxMenuItemList items = manageMenu->GetMenuItems();
|
||||||
for (wxMenuItem *item : items) {
|
for (wxMenuItem *item : items) {
|
||||||
|
@ -230,7 +233,7 @@ void MainWindow::OpenSettings() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::ApplyPreferences() {
|
void MainWindow::ApplyPreferences() {
|
||||||
for (int i = 0; i < notebook->GetPageCount(); i++) {
|
for (std::size_t i = 0; i < notebook->GetPageCount(); i++) {
|
||||||
TabInfos *infos = (TabInfos*)(notebook->GetPage(i))->GetClientData();
|
TabInfos *infos = (TabInfos*)(notebook->GetPage(i))->GetClientData();
|
||||||
infos->ApplyPreferences();
|
infos->ApplyPreferences();
|
||||||
}
|
}
|
||||||
|
@ -261,6 +264,7 @@ void MainWindow::NewGame(bool useFen) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::OnPageChange(wxAuiNotebookEvent &event) {
|
void MainWindow::OnPageChange(wxAuiNotebookEvent &event) {
|
||||||
|
UNUSED(event);
|
||||||
TabInfos *infos = (TabInfos*)(notebook->GetCurrentPage())->GetClientData();
|
TabInfos *infos = (TabInfos*)(notebook->GetCurrentPage())->GetClientData();
|
||||||
if (infos->type != TabInfos::GAME) {
|
if (infos->type != TabInfos::GAME) {
|
||||||
for (short i = 10; i < 20; i++) {
|
for (short i = 10; i < 20; i++) {
|
||||||
|
|
|
@ -88,7 +88,7 @@ void Openings::LoadVolume(const std::string &tsv, Volume *vol){
|
||||||
std::string line;
|
std::string line;
|
||||||
while (std::getline(f, line)) {
|
while (std::getline(f, line)) {
|
||||||
int eco=-1,name=-1,pgn=-1;
|
int eco=-1,name=-1,pgn=-1;
|
||||||
for(int i=0;i<line.size();i++){
|
for(std::size_t i=0;i<line.size();i++){
|
||||||
if(line[i]=='\t'){
|
if(line[i]=='\t'){
|
||||||
if(eco == -1)
|
if(eco == -1)
|
||||||
eco=i-1;
|
eco=i-1;
|
||||||
|
|
|
@ -26,6 +26,7 @@ BaseGameTab::BaseGameTab(wxFrame *parent, std::shared_ptr<GameBase> base)
|
||||||
|
|
||||||
|
|
||||||
void BaseGameTab::OnApplyFilter(wxCommandEvent &event){
|
void BaseGameTab::OnApplyFilter(wxCommandEvent &event){
|
||||||
|
UNUSED(event);
|
||||||
wxString terms=search_terms->GetValue();
|
wxString terms=search_terms->GetValue();
|
||||||
if(terms.length()>0){
|
if(terms.length()>0){
|
||||||
glm->Filter(terms.ToStdString());
|
glm->Filter(terms.ToStdString());
|
||||||
|
@ -35,6 +36,7 @@ void BaseGameTab::OnApplyFilter(wxCommandEvent &event){
|
||||||
}
|
}
|
||||||
|
|
||||||
void BaseGameTab::OnDelete(wxCommandEvent &event) {
|
void BaseGameTab::OnDelete(wxCommandEvent &event) {
|
||||||
|
UNUSED(event);
|
||||||
for(auto i: glm->GetSelectedItems()){
|
for(auto i: glm->GetSelectedItems()){
|
||||||
game_list->SetItemState(i, 0, wxLIST_STATE_SELECTED); // First deselect
|
game_list->SetItemState(i, 0, wxLIST_STATE_SELECTED); // First deselect
|
||||||
long gameid=glm->GetItemGameId(i);
|
long gameid=glm->GetItemGameId(i);
|
||||||
|
|
|
@ -26,6 +26,7 @@ TabBase_TabImport(parent), main_tab(main_tab), base(db)
|
||||||
}
|
}
|
||||||
|
|
||||||
void BaseImportTab::OnImportDatabase(wxCommandEvent &event){
|
void BaseImportTab::OnImportDatabase(wxCommandEvent &event){
|
||||||
|
UNUSED(event);
|
||||||
if(std::find(databases_to_import.begin(), databases_to_import.end(), selected_base->GetFilePath()) == databases_to_import.end()){
|
if(std::find(databases_to_import.begin(), databases_to_import.end(), selected_base->GetFilePath()) == databases_to_import.end()){
|
||||||
databases_to_import.push_back(selected_base->GetFilePath());
|
databases_to_import.push_back(selected_base->GetFilePath());
|
||||||
selected_games_to_import.erase(selected_base->GetFilePath());
|
selected_games_to_import.erase(selected_base->GetFilePath());
|
||||||
|
@ -72,6 +73,7 @@ void BaseImportTab::RefreshImportLists(){
|
||||||
}
|
}
|
||||||
|
|
||||||
void BaseImportTab::OnImportSelection(wxCommandEvent &event){
|
void BaseImportTab::OnImportSelection(wxCommandEvent &event){
|
||||||
|
UNUSED(event);
|
||||||
if(std::find(databases_to_import.begin(), databases_to_import.end(), selected_base->GetFilePath()) == databases_to_import.end()){
|
if(std::find(databases_to_import.begin(), databases_to_import.end(), selected_base->GetFilePath()) == databases_to_import.end()){
|
||||||
long selected = -1;
|
long selected = -1;
|
||||||
while ((selected = game_list->GetNextItem(selected, wxLIST_NEXT_ALL,
|
while ((selected = game_list->GetNextItem(selected, wxLIST_NEXT_ALL,
|
||||||
|
@ -96,6 +98,7 @@ void BaseImportTab::OnImportSelection(wxCommandEvent &event){
|
||||||
}
|
}
|
||||||
|
|
||||||
void BaseImportTab::OnImportGame(wxCommandEvent &event){
|
void BaseImportTab::OnImportGame(wxCommandEvent &event){
|
||||||
|
UNUSED(event);
|
||||||
TabInfos *game_tab=(TabInfos*)opened_game_list->GetClientData(opened_game_list->GetSelection());
|
TabInfos *game_tab=(TabInfos*)opened_game_list->GetClientData(opened_game_list->GetSelection());
|
||||||
std::shared_ptr<Game> g=game_tab->GetGame();
|
std::shared_ptr<Game> g=game_tab->GetGame();
|
||||||
if(std::find(games_to_import.begin(), games_to_import.end(), g) == games_to_import.end()){ wxLogDebug("Import!");
|
if(std::find(games_to_import.begin(), games_to_import.end(), g) == games_to_import.end()){ wxLogDebug("Import!");
|
||||||
|
@ -106,6 +109,7 @@ void BaseImportTab::OnImportGame(wxCommandEvent &event){
|
||||||
}
|
}
|
||||||
|
|
||||||
void BaseImportTab::OnLoad(wxCommandEvent &event){
|
void BaseImportTab::OnLoad(wxCommandEvent &event){
|
||||||
|
UNUSED(event);
|
||||||
TabInfos *game_tab=(TabInfos*)opened_db_list->GetClientData(opened_db_list->GetSelection());
|
TabInfos *game_tab=(TabInfos*)opened_db_list->GetClientData(opened_db_list->GetSelection());
|
||||||
|
|
||||||
// Load all games (for now :)
|
// Load all games (for now :)
|
||||||
|
|
|
@ -26,6 +26,7 @@ BaseTab::BaseTab(wxFrame *parent, std::string base_file)
|
||||||
this->Bind(wxEVT_BUTTON, &BaseTab::OnSave, this, ID_SAVE_BUTTON);
|
this->Bind(wxEVT_BUTTON, &BaseTab::OnSave, this, ID_SAVE_BUTTON);
|
||||||
this->Bind(wxEVT_LIST_ITEM_ACTIVATED, &BaseTab::OnOpenGame, this, ID_TABGAMES_GAME_LIST);
|
this->Bind(wxEVT_LIST_ITEM_ACTIVATED, &BaseTab::OnOpenGame, this, ID_TABGAMES_GAME_LIST);
|
||||||
Bind(REFRESH_MANAGE_TAB,[p=this](wxCommandEvent &e){
|
Bind(REFRESH_MANAGE_TAB,[p=this](wxCommandEvent &e){
|
||||||
|
UNUSED(e);
|
||||||
p->manage_tab->RefreshInformations();
|
p->manage_tab->RefreshInformations();
|
||||||
p->is_dirty=p->manage_tab->HasPendingEvents(); // Refresh tab dirty flag
|
p->is_dirty=p->manage_tab->HasPendingEvents(); // Refresh tab dirty flag
|
||||||
},wxID_ANY);
|
},wxID_ANY);
|
||||||
|
@ -46,6 +47,7 @@ void BaseTab::Refresh(){
|
||||||
}
|
}
|
||||||
|
|
||||||
void BaseTab::OnSave(wxCommandEvent &event) {
|
void BaseTab::OnSave(wxCommandEvent &event) {
|
||||||
|
UNUSED(event);
|
||||||
SHOW_DIALOG_BUSY("Apply all changes. Take a coffee, this process can takes time...");
|
SHOW_DIALOG_BUSY("Apply all changes. Take a coffee, this process can takes time...");
|
||||||
// First import games
|
// First import games
|
||||||
std::vector<std::shared_ptr<Game>> new_games=games_tab->GetEditedGames();
|
std::vector<std::shared_ptr<Game>> new_games=games_tab->GetEditedGames();
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#include "GameListManager.hpp"
|
#include "GameListManager.hpp"
|
||||||
|
|
||||||
|
|
||||||
GameListManager::GameListManager(wxListCtrl *game_list): game_list(game_list), game_counter(0) {
|
GameListManager::GameListManager(wxListCtrl *game_list): game_counter(0), game_list(game_list) {
|
||||||
game_list->InsertColumn(0, L"Id", wxLIST_FORMAT_LEFT, 50);
|
game_list->InsertColumn(0, L"Id", wxLIST_FORMAT_LEFT, 50);
|
||||||
game_list->InsertColumn(1, L"White", wxLIST_FORMAT_LEFT, 200);
|
game_list->InsertColumn(1, L"White", wxLIST_FORMAT_LEFT, 200);
|
||||||
game_list->InsertColumn(2, L"Black", wxLIST_FORMAT_LEFT, 200);
|
game_list->InsertColumn(2, L"Black", wxLIST_FORMAT_LEFT, 200);
|
||||||
|
@ -117,7 +117,7 @@ long GameListManager::GetItemGameId(long item){
|
||||||
|
|
||||||
void GameListManager::Filter(std::string terms){
|
void GameListManager::Filter(std::string terms){
|
||||||
ClearDisplayedRow();
|
ClearDisplayedRow();
|
||||||
for(int i=0;i<rows.size();i++){
|
for(std::size_t i=0;i<rows.size();i++){
|
||||||
RType row=rows[i];
|
RType row=rows[i];
|
||||||
if(TERMS_IN(White) ||
|
if(TERMS_IN(White) ||
|
||||||
TERMS_IN(Black) ||
|
TERMS_IN(Black) ||
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
#define BG_OPEN(INDEX) game_list->SetItemBackgroundColour(INDEX, *wxGREEN)
|
#define BG_OPEN(INDEX) game_list->SetItemBackgroundColour(INDEX, *wxGREEN)
|
||||||
#define BG_DELETE(INDEX) game_list->SetItemBackgroundColour(INDEX, *wxRED)
|
#define BG_DELETE(INDEX) game_list->SetItemBackgroundColour(INDEX, *wxRED)
|
||||||
#define BG_IMPORT(INDEX) game_list->SetItemBackgroundColour(INDEX, *wxBLUE)
|
#define BG_IMPORT(INDEX) game_list->SetItemBackgroundColour(INDEX, *wxBLUE)
|
||||||
#define DISPLAY_ALL_ROWS() {for(int i=0;i<rows.size();i++){DisplayRow(i);}}
|
#define DISPLAY_ALL_ROWS() {for(std::size_t i=0;i<rows.size();i++){DisplayRow(i);}}
|
||||||
|
|
||||||
///@brief Column content type
|
///@brief Column content type
|
||||||
typedef std::string CType;
|
typedef std::string CType;
|
||||||
|
|
|
@ -1,5 +1,15 @@
|
||||||
#include "binres.hpp"
|
#include "binres.hpp"
|
||||||
|
|
||||||
|
// Embedded PGNs:
|
||||||
|
#include "swap_png.hpp"
|
||||||
|
#include "zoomin_png.hpp"
|
||||||
|
#include "zoomout_png.hpp"
|
||||||
|
#include "cburnett_png.hpp"
|
||||||
|
#include "chesscom_8bits_png.hpp"
|
||||||
|
#include "hide_png.hpp"
|
||||||
|
#include "mat_png.hpp"
|
||||||
|
#include "ochess_png.hpp"
|
||||||
|
|
||||||
wxBitmap LoadPNG(std::string icon, wxSize size) {
|
wxBitmap LoadPNG(std::string icon, wxSize size) {
|
||||||
wxImage img = LoadPNG(icon).ConvertToImage();
|
wxImage img = LoadPNG(icon).ConvertToImage();
|
||||||
return (wxBitmap(
|
return (wxBitmap(
|
||||||
|
|
|
@ -1,14 +1,6 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "ochess.hpp"
|
#include "ochess.hpp"
|
||||||
#include "swap_png.hpp"
|
|
||||||
#include "zoomin_png.hpp"
|
|
||||||
#include "zoomout_png.hpp"
|
|
||||||
#include "cburnett_png.hpp"
|
|
||||||
#include "chesscom_8bits_png.hpp"
|
|
||||||
#include "hide_png.hpp"
|
|
||||||
#include "mat_png.hpp"
|
|
||||||
#include "ochess_png.hpp"
|
|
||||||
|
|
||||||
wxBitmap LoadPNG(std::string icon, wxSize size);
|
wxBitmap LoadPNG(std::string icon, wxSize size);
|
||||||
wxBitmap LoadPNG(std::string icon);
|
wxBitmap LoadPNG(std::string icon);
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
static unsigned char cburnett_png[] = {
|
unsigned char cburnett_png[] = {
|
||||||
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d,
|
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d,
|
||||||
0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x04, 0xb0,
|
0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x04, 0xb0,
|
||||||
0x08, 0x04, 0x00, 0x00, 0x00, 0x7f, 0x22, 0xd4, 0xd6, 0x00, 0x00, 0x00,
|
0x08, 0x04, 0x00, 0x00, 0x00, 0x7f, 0x22, 0xd4, 0xd6, 0x00, 0x00, 0x00,
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
static unsigned char chesscom_8bits_png[] = {
|
unsigned char chesscom_8bits_png[] = {
|
||||||
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d,
|
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d,
|
||||||
0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x00, 0xc8,
|
0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x00, 0xc8,
|
||||||
0x02, 0x03, 0x00, 0x00, 0x00, 0xbb, 0x7b, 0x5f, 0x71, 0x00, 0x00, 0x03,
|
0x02, 0x03, 0x00, 0x00, 0x00, 0xbb, 0x7b, 0x5f, 0x71, 0x00, 0x00, 0x03,
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
static unsigned char hide_png[] = {
|
unsigned char hide_png[] = {
|
||||||
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d,
|
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d,
|
||||||
0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x32,
|
0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x32,
|
||||||
0x08, 0x06, 0x00, 0x00, 0x00, 0x1e, 0x3f, 0x88, 0xb1, 0x00, 0x00, 0x01,
|
0x08, 0x06, 0x00, 0x00, 0x00, 0x1e, 0x3f, 0x88, 0xb1, 0x00, 0x00, 0x01,
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
static unsigned char mat_png[] = {
|
unsigned char mat_png[] = {
|
||||||
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d,
|
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d,
|
||||||
0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x32,
|
0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x32,
|
||||||
0x08, 0x06, 0x00, 0x00, 0x00, 0x1e, 0x3f, 0x88, 0xb1, 0x00, 0x00, 0x00,
|
0x08, 0x06, 0x00, 0x00, 0x00, 0x1e, 0x3f, 0x88, 0xb1, 0x00, 0x00, 0x00,
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
static unsigned char swap_png[] = {
|
unsigned char swap_png[] = {
|
||||||
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d,
|
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d,
|
||||||
0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x32,
|
0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x32,
|
||||||
0x08, 0x06, 0x00, 0x00, 0x00, 0x1e, 0x3f, 0x88, 0xb1, 0x00, 0x00, 0x10,
|
0x08, 0x06, 0x00, 0x00, 0x00, 0x1e, 0x3f, 0x88, 0xb1, 0x00, 0x00, 0x10,
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
static unsigned char zoomin_png[] = {
|
unsigned char zoomin_png[] = {
|
||||||
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d,
|
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d,
|
||||||
0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x32,
|
0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x32,
|
||||||
0x08, 0x06, 0x00, 0x00, 0x00, 0x1e, 0x3f, 0x88, 0xb1, 0x00, 0x00, 0x13,
|
0x08, 0x06, 0x00, 0x00, 0x00, 0x1e, 0x3f, 0x88, 0xb1, 0x00, 0x00, 0x13,
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
static unsigned char zoomout_png[] = {
|
unsigned char zoomout_png[] = {
|
||||||
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d,
|
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d,
|
||||||
0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x32,
|
0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x32,
|
||||||
0x08, 0x06, 0x00, 0x00, 0x00, 0x1e, 0x3f, 0x88, 0xb1, 0x00, 0x00, 0x11,
|
0x08, 0x06, 0x00, 0x00, 0x00, 0x1e, 0x3f, 0x88, 0xb1, 0x00, 0x00, 0x11,
|
||||||
|
|
|
@ -23,7 +23,7 @@ EngineTab::EngineTab(wxWindow *parent, uciadapter::UCI *engine,
|
||||||
|
|
||||||
Bind(wxEVT_BUTTON, &EngineTab::OnSave, this, ENGINE_SAVE_CONF_BUTTON);
|
Bind(wxEVT_BUTTON, &EngineTab::OnSave, this, ENGINE_SAVE_CONF_BUTTON);
|
||||||
Bind(wxEVT_BUTTON, &EngineTab::OnDelete, this, ENGINE_DELETE_CONF_BUTTON);
|
Bind(wxEVT_BUTTON, &EngineTab::OnDelete, this, ENGINE_DELETE_CONF_BUTTON);
|
||||||
Bind(wxEVT_PG_CHANGED, [p=this](wxPropertyGridEvent& event){p->is_dirty=true;});
|
Bind(wxEVT_PG_CHANGED, [p=this](wxPropertyGridEvent& event){ UNUSED(event); p->is_dirty=true;});
|
||||||
}
|
}
|
||||||
|
|
||||||
EngineTab::EngineTab(wxWindow *parent, std::uint32_t id)
|
EngineTab::EngineTab(wxWindow *parent, std::uint32_t id)
|
||||||
|
@ -46,7 +46,7 @@ EngineTab::EngineTab(wxWindow *parent, std::uint32_t id)
|
||||||
|
|
||||||
Bind(wxEVT_BUTTON, &EngineTab::OnSave, this, ENGINE_SAVE_CONF_BUTTON);
|
Bind(wxEVT_BUTTON, &EngineTab::OnSave, this, ENGINE_SAVE_CONF_BUTTON);
|
||||||
Bind(wxEVT_BUTTON, &EngineTab::OnDelete, this, ENGINE_DELETE_CONF_BUTTON);
|
Bind(wxEVT_BUTTON, &EngineTab::OnDelete, this, ENGINE_DELETE_CONF_BUTTON);
|
||||||
Bind(wxEVT_PG_CHANGED, [p=this](wxPropertyGridEvent& event){p->is_dirty=true;});
|
Bind(wxEVT_PG_CHANGED, [p=this](wxPropertyGridEvent& event){ UNUSED(event); p->is_dirty=true;});
|
||||||
}
|
}
|
||||||
|
|
||||||
EngineTab::~EngineTab() {
|
EngineTab::~EngineTab() {
|
||||||
|
@ -58,6 +58,7 @@ EngineTab::~EngineTab() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void EngineTab::OnDelete(wxCommandEvent &event) {
|
void EngineTab::OnDelete(wxCommandEvent &event) {
|
||||||
|
UNUSED(event);
|
||||||
CONFIG_OPEN(conf);
|
CONFIG_OPEN(conf);
|
||||||
conf->DeleteGroup(confGroup);
|
conf->DeleteGroup(confGroup);
|
||||||
CONFIG_CLOSE(conf);
|
CONFIG_CLOSE(conf);
|
||||||
|
@ -103,6 +104,7 @@ void EngineTab::LoadConfiguration() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void EngineTab::OnSave(wxCommandEvent &event) {
|
void EngineTab::OnSave(wxCommandEvent &event) {
|
||||||
|
UNUSED(event);
|
||||||
CONFIG_OPEN(conf2);
|
CONFIG_OPEN(conf2);
|
||||||
// Update engine name:
|
// Update engine name:
|
||||||
conf2->Write(confGroup + "/name", engine_name->GetValue());
|
conf2->Write(confGroup + "/name", engine_name->GetValue());
|
||||||
|
|
|
@ -7,8 +7,8 @@ wxDECLARE_EVENT(REFRESH_ENGINE_LIST, wxCommandEvent);
|
||||||
wxDECLARE_EVENT(REFRESH_TAB_TITLE, wxCommandEvent);
|
wxDECLARE_EVENT(REFRESH_TAB_TITLE, wxCommandEvent);
|
||||||
|
|
||||||
class EngineTab : public TabEngine, public TabInfos {
|
class EngineTab : public TabEngine, public TabInfos {
|
||||||
uciadapter::UCI *engine;
|
|
||||||
std::string confGroup, enginePath;
|
std::string confGroup, enginePath;
|
||||||
|
uciadapter::UCI *engine;
|
||||||
std::uint32_t engine_id;
|
std::uint32_t engine_id;
|
||||||
void InitConfiguration();
|
void InitConfiguration();
|
||||||
void LoadConfiguration();
|
void LoadConfiguration();
|
||||||
|
|
|
@ -11,12 +11,12 @@
|
||||||
*/
|
*/
|
||||||
class Game {
|
class Game {
|
||||||
/// @brief 64 char string that contains all the pieces on the board (used in BoardCanvas)
|
/// @brief 64 char string that contains all the pieces on the board (used in BoardCanvas)
|
||||||
|
HalfMove *current;
|
||||||
|
HalfMove *moves;
|
||||||
std::string board;
|
std::string board;
|
||||||
std::string initial_fen;
|
std::string initial_fen;
|
||||||
std::string result;
|
std::string result;
|
||||||
std::unordered_map<std::string, std::string> tags;
|
std::unordered_map<std::string, std::string> tags;
|
||||||
HalfMove *moves;
|
|
||||||
HalfMove *current;
|
|
||||||
/// @brief Used by various methods of the class
|
/// @brief Used by various methods of the class
|
||||||
chessarbiter::ChessArbiter arbiter;
|
chessarbiter::ChessArbiter arbiter;
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ wxDEFINE_EVENT(GAME_CHANGE, wxCommandEvent);
|
||||||
wxDEFINE_EVENT(SHOW_ENGINE_EVALUATION, wxCommandEvent);
|
wxDEFINE_EVENT(SHOW_ENGINE_EVALUATION, wxCommandEvent);
|
||||||
|
|
||||||
GameTab::GameTab(wxFrame *parent, std::shared_ptr<Game> game)
|
GameTab::GameTab(wxFrame *parent, std::shared_ptr<Game> game)
|
||||||
: wxPanel(parent), game(game), TabInfos(TabInfos::GAME) {
|
: wxPanel(parent), TabInfos(TabInfos::GAME), game(game) {
|
||||||
// Splitter
|
// Splitter
|
||||||
wxSplitterWindow *splitter = new wxSplitterWindow(this, wxID_ANY);
|
wxSplitterWindow *splitter = new wxSplitterWindow(this, wxID_ANY);
|
||||||
splitter->SetSashGravity(0.8);
|
splitter->SetSashGravity(0.8);
|
||||||
|
@ -41,7 +41,7 @@ GameTab::GameTab(wxFrame *parent, std::shared_ptr<Game> game)
|
||||||
void GameTab::OnToolClick(wxCommandEvent &event){
|
void GameTab::OnToolClick(wxCommandEvent &event){
|
||||||
short id=event.GetId();
|
short id=event.GetId();
|
||||||
if(id==0){
|
if(id==0){
|
||||||
if(!related_file.size()>0){
|
if(!(related_file.size()>0)){
|
||||||
wxFileDialog
|
wxFileDialog
|
||||||
newFileDialog(this, _("Save Game"), "", "",
|
newFileDialog(this, _("Save Game"), "", "",
|
||||||
"PGN files (*.pgn)|*.pgn", wxFD_SAVE|wxFD_OVERWRITE_PROMPT);
|
"PGN files (*.pgn)|*.pgn", wxFD_SAVE|wxFD_OVERWRITE_PROMPT);
|
||||||
|
|
|
@ -50,7 +50,7 @@ std::string HalfMove::GetLineAsSAN(){
|
||||||
auto line=GetLine(); // Vector of HalfMove
|
auto line=GetLine(); // Vector of HalfMove
|
||||||
std::string pgn;
|
std::string pgn;
|
||||||
int count=1;
|
int count=1;
|
||||||
for(int i=0;i<line.size();i++){
|
for(std::size_t i=0;i<line.size();i++){
|
||||||
if(i%2==0){
|
if(i%2==0){
|
||||||
pgn+=std::to_string(count)+".";
|
pgn+=std::to_string(count)+".";
|
||||||
count+=1;
|
count+=1;
|
||||||
|
|
|
@ -25,10 +25,10 @@ GameTabLeftPanel::GameTabLeftPanel(wxFrame *parent, std::shared_ptr<Game> game)
|
||||||
|
|
||||||
// Bind events:
|
// Bind events:
|
||||||
Bind(PLAY_MOVE_EVENT, &GameTabLeftPanel::OnPlay, this, wxID_ANY);
|
Bind(PLAY_MOVE_EVENT, &GameTabLeftPanel::OnPlay, this, wxID_ANY);
|
||||||
Bind(wxEVT_BUTTON, [bc=board_canvas](wxCommandEvent &event){bc->Zoom(10);}, ZOOM_IN_BTN);
|
Bind(wxEVT_BUTTON, [bc=board_canvas](wxCommandEvent &event){UNUSED(event);bc->Zoom(10);}, ZOOM_IN_BTN);
|
||||||
Bind(wxEVT_BUTTON, [bc=board_canvas](wxCommandEvent &event){bc->Zoom(-10);}, ZOOM_OUT_BTN);
|
Bind(wxEVT_BUTTON, [bc=board_canvas](wxCommandEvent &event){UNUSED(event);bc->Zoom(-10);}, ZOOM_OUT_BTN);
|
||||||
Bind(wxEVT_BUTTON, [bc=board_canvas](wxCommandEvent &event){bc->Swap();}, SWAP_BTN);
|
Bind(wxEVT_BUTTON, [bc=board_canvas](wxCommandEvent &event){UNUSED(event);bc->Swap();}, SWAP_BTN);
|
||||||
Bind(wxEVT_KEY_UP, [p=this](wxKeyEvent &e){p->repeat=false;});
|
Bind(wxEVT_KEY_UP, [p=this](wxKeyEvent &e){UNUSED(e);p->repeat=false;});
|
||||||
Bind(wxEVT_KEY_DOWN, [p=this](wxKeyEvent &e){
|
Bind(wxEVT_KEY_DOWN, [p=this](wxKeyEvent &e){
|
||||||
if(e.GetKeyCode() == WXK_RIGHT){
|
if(e.GetKeyCode() == WXK_RIGHT){
|
||||||
p->game->Next();
|
p->game->Next();
|
||||||
|
|
|
@ -11,8 +11,8 @@ tmp=rot_m.TransformPoint(tmp); \
|
||||||
wxDEFINE_EVENT(PLAY_MOVE_EVENT, wxCommandEvent);
|
wxDEFINE_EVENT(PLAY_MOVE_EVENT, wxCommandEvent);
|
||||||
|
|
||||||
BoardCanvas::BoardCanvas(wxFrame *parent)
|
BoardCanvas::BoardCanvas(wxFrame *parent)
|
||||||
: wxPanel(parent), black_side(false), frozen(false),
|
: wxPanel(parent), t(new Theme()), t_captures(new Theme()), black_side(false), frozen(false),
|
||||||
lock_square_size(false), t(new Theme()), t_captures(new Theme()) {
|
lock_square_size(false) {
|
||||||
color_arrows=wxColour(145, 233, 255);
|
color_arrows=wxColour(145, 233, 255);
|
||||||
is_dragging = false;
|
is_dragging = false;
|
||||||
valid_drag = false;
|
valid_drag = false;
|
||||||
|
@ -64,11 +64,12 @@ BoardCanvas::BoardCanvas(wxFrame *parent, std::uint32_t square_width,
|
||||||
: BoardCanvas(parent) {
|
: BoardCanvas(parent) {
|
||||||
t->ResizeSquaresAndPieces(square_width);
|
t->ResizeSquaresAndPieces(square_width);
|
||||||
t_captures->ResizePieces(t->GetPiecesSizes() * CAPTURE_FACTOR);
|
t_captures->ResizePieces(t->GetPiecesSizes() * CAPTURE_FACTOR);
|
||||||
this->frozen = true;
|
this->frozen = frozen;
|
||||||
lock_square_size = true;
|
lock_square_size = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void BoardCanvas::OnPaint(wxPaintEvent &event) {
|
void BoardCanvas::OnPaint(wxPaintEvent &event) {
|
||||||
|
UNUSED(event);
|
||||||
wxBufferedPaintDC dc(this);
|
wxBufferedPaintDC dc(this);
|
||||||
dc.SetBackground(*wxWHITE_BRUSH);
|
dc.SetBackground(*wxWHITE_BRUSH);
|
||||||
dc.Clear();
|
dc.Clear();
|
||||||
|
@ -90,7 +91,6 @@ void BoardCanvas::OnPaint(wxPaintEvent &event) {
|
||||||
else {
|
else {
|
||||||
// Reuse buffer and animate
|
// Reuse buffer and animate
|
||||||
dc.DrawBitmap(*adata.buffer, 0, 0, true);
|
dc.DrawBitmap(*adata.buffer, 0, 0, true);
|
||||||
double percent=adata.frame/adata.frames;
|
|
||||||
// Draw moving piece
|
// Draw moving piece
|
||||||
dc.DrawBitmap(*t->Get(adata.piece_moved),
|
dc.DrawBitmap(*t->Get(adata.piece_moved),
|
||||||
adata.src.x + adata.frame*(adata.transVect.x/adata.frames),
|
adata.src.x + adata.frame*(adata.transVect.x/adata.frames),
|
||||||
|
@ -174,7 +174,6 @@ void BoardCanvas::Animate(const GameState &new_gs, const std::string &src, const
|
||||||
int frame_duration=(1000/adata.fps);
|
int frame_duration=(1000/adata.fps);
|
||||||
adata.frame=0;
|
adata.frame=0;
|
||||||
adata.frames=adata.duration/frame_duration; // total number of frames
|
adata.frames=adata.duration/frame_duration; // total number of frames
|
||||||
int time_per_frame=adata.duration/adata.frames;
|
|
||||||
wxStopWatch sw;
|
wxStopWatch sw;
|
||||||
for(int i=adata.frames;i>0;i--){
|
for(int i=adata.frames;i>0;i--){
|
||||||
Refresh();
|
Refresh();
|
||||||
|
@ -220,7 +219,7 @@ void BoardCanvas::DrawBoard(wxDC &dc) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Draw highlighted squares
|
// Draw highlighted squares
|
||||||
for(int i=0;i<(gs.squares_hl.size()+squares_hl.size());i++){
|
for(std::size_t i=0;i<(gs.squares_hl.size()+squares_hl.size());i++){
|
||||||
const GameState::Square &s=i<gs.squares_hl.size() ? gs.squares_hl[i] : squares_hl[i-gs.squares_hl.size()];
|
const GameState::Square &s=i<gs.squares_hl.size() ? gs.squares_hl[i] : squares_hl[i-gs.squares_hl.size()];
|
||||||
std::uint8_t sfile = s.square[0]-'a';
|
std::uint8_t sfile = s.square[0]-'a';
|
||||||
std::uint8_t srank = s.square[1]-'1';
|
std::uint8_t srank = s.square[1]-'1';
|
||||||
|
@ -357,7 +356,7 @@ void BoardCanvas::DrawBoard(wxDC &dc) {
|
||||||
boardY + square_width * 8 + numbers_size.y*2));
|
boardY + square_width * 8 + numbers_size.y*2));
|
||||||
}
|
}
|
||||||
// Draw arrows
|
// Draw arrows
|
||||||
for(int i=0;i<(gs.arrows.size()+arrows.size());i++){
|
for(std::size_t i=0;i<(gs.arrows.size()+arrows.size());i++){
|
||||||
const GameState::Arrow &arrow= i<gs.arrows.size() ? gs.arrows[i] : arrows[i-gs.arrows.size()];
|
const GameState::Arrow &arrow= i<gs.arrows.size() ? gs.arrows[i] : arrows[i-gs.arrows.size()];
|
||||||
std::uint8_t sfile = arrow.src[0]-'a';
|
std::uint8_t sfile = arrow.src[0]-'a';
|
||||||
std::uint8_t srank = arrow.src[1]-'1';
|
std::uint8_t srank = arrow.src[1]-'1';
|
||||||
|
@ -404,7 +403,6 @@ void BoardCanvas::DrawBoard(wxDC &dc) {
|
||||||
std::uint32_t PY = boardY + srank * square_width;
|
std::uint32_t PY = boardY + srank * square_width;
|
||||||
|
|
||||||
short offset=0,border=5;
|
short offset=0,border=5;
|
||||||
char s=is_black_promotion ? 's' : 'S';
|
|
||||||
|
|
||||||
for (char p : {'q', 'r', 'b', 'n'}) {
|
for (char p : {'q', 'r', 'b', 'n'}) {
|
||||||
p=is_black_promotion ? p : std::toupper(p);
|
p=is_black_promotion ? p : std::toupper(p);
|
||||||
|
@ -612,7 +610,7 @@ void BoardCanvas::DrawArrow(wxDC &dc, int xsrc, int ysrc, int xdst, int ydst, st
|
||||||
wxPoint vect(xdst-xsrc,ydst-ysrc);
|
wxPoint vect(xdst-xsrc,ydst-ysrc);
|
||||||
double length=ceil(sqrt(pow(vect.x,2)+pow(vect.y,2)));
|
double length=ceil(sqrt(pow(vect.x,2)+pow(vect.y,2)));
|
||||||
double angle=acos(vect.x/length);
|
double angle=acos(vect.x/length);
|
||||||
angle= (vect.y>0) ? angle=angle : -angle;
|
angle= (vect.y>0) ? angle : -angle;
|
||||||
|
|
||||||
// Translate starting point (xsrc,ysrc) about arrows_offset px to not start on the center of the square (less confusing visually)
|
// Translate starting point (xsrc,ysrc) about arrows_offset px to not start on the center of the square (less confusing visually)
|
||||||
double k=arrows_offset/length;
|
double k=arrows_offset/length;
|
||||||
|
|
|
@ -27,7 +27,7 @@ wxDECLARE_EVENT(PLAY_MOVE_EVENT, wxCommandEvent);
|
||||||
file = 7 - file; \
|
file = 7 - file; \
|
||||||
rank = 7 - rank; \
|
rank = 7 - rank; \
|
||||||
} \
|
} \
|
||||||
bool IsCurrentSquareValid = file >= 0 && file <= 7 && rank >= 0 && rank <= 7;
|
bool IsCurrentSquareValid = file <= 7 && rank <= 7; // Do not need to check rank>=0 and file>=0 since unsigned int
|
||||||
|
|
||||||
#define MOUSE_ON(x, y, width, height) \
|
#define MOUSE_ON(x, y, width, height) \
|
||||||
(mouseX >= (x) && mouseX <= ((x) + (width)) && mouseY >= (y) && \
|
(mouseX >= (x) && mouseX <= ((x) + (width)) && mouseY >= (y) && \
|
||||||
|
@ -100,7 +100,7 @@ class BoardCanvas : public wxPanel {
|
||||||
|
|
||||||
// Various canvas state variables
|
// Various canvas state variables
|
||||||
bool black_side, is_dragging, valid_drag, arrow_drag, is_black_turn;
|
bool black_side, is_dragging, valid_drag, arrow_drag, is_black_turn;
|
||||||
std::uint32_t boardX, boardY, square_width, piece_width, mouseX, mouseY, lastClickX,
|
std::int32_t boardX, boardY, square_width, piece_width, mouseX, mouseY, lastClickX,
|
||||||
lastClickY;
|
lastClickY;
|
||||||
wxSize canvas_size;
|
wxSize canvas_size;
|
||||||
wxPoint active_square;
|
wxPoint active_square;
|
||||||
|
|
|
@ -46,6 +46,7 @@ GameTabRightPanel::GameTabRightPanel(wxFrame *parent, std::shared_ptr<Game> game
|
||||||
}
|
}
|
||||||
|
|
||||||
void GameTabRightPanel::OnLiveAnalysis(wxCommandEvent &event) {
|
void GameTabRightPanel::OnLiveAnalysis(wxCommandEvent &event) {
|
||||||
|
UNUSED(event);
|
||||||
if (live_engine == nullptr) {
|
if (live_engine == nullptr) {
|
||||||
int selection = engine_list->GetSelection();
|
int selection = engine_list->GetSelection();
|
||||||
if (selection != wxNOT_FOUND) {
|
if (selection != wxNOT_FOUND) {
|
||||||
|
@ -84,6 +85,7 @@ void GameTabRightPanel::OnTagSelected(wxListEvent &event) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void GameTabRightPanel::OnTagDeselected(wxListEvent &event) {
|
void GameTabRightPanel::OnTagDeselected(wxListEvent &event) {
|
||||||
|
UNUSED(event);
|
||||||
selected_item = -1;
|
selected_item = -1;
|
||||||
delete_button->Enable(false);
|
delete_button->Enable(false);
|
||||||
}
|
}
|
||||||
|
@ -114,6 +116,7 @@ void GameTabRightPanel::OnCommentChange(wxCommandEvent &event) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void GameTabRightPanel::OnApply(wxCommandEvent &event) {
|
void GameTabRightPanel::OnApply(wxCommandEvent &event) {
|
||||||
|
UNUSED(event);
|
||||||
std::string key = tagTextCtrl->GetValue().ToStdString();
|
std::string key = tagTextCtrl->GetValue().ToStdString();
|
||||||
if (key == "FEN") {
|
if (key == "FEN") {
|
||||||
SHOW_DIALOG_ERROR("Editing the FEN tag is forbidden");
|
SHOW_DIALOG_ERROR("Editing the FEN tag is forbidden");
|
||||||
|
@ -130,6 +133,7 @@ void GameTabRightPanel::OnApply(wxCommandEvent &event) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void GameTabRightPanel::OnDelete(wxCommandEvent &event) {
|
void GameTabRightPanel::OnDelete(wxCommandEvent &event) {
|
||||||
|
UNUSED(event);
|
||||||
if (selected_item >= 0) {
|
if (selected_item >= 0) {
|
||||||
wxListItem item;
|
wxListItem item;
|
||||||
item.SetColumn(0);
|
item.SetColumn(0);
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
#include "LiveEngineDialog.hpp"
|
#include "LiveEngineDialog.hpp"
|
||||||
|
|
||||||
LiveEngineDialog::LiveEngineDialog(wxWindow *parent, std::uint32_t engine_id)
|
LiveEngineDialog::LiveEngineDialog(wxWindow *parent, std::uint32_t engine_id)
|
||||||
: DialogLiveEngine(parent), interval(1000),
|
: DialogLiveEngine(parent), engine(nullptr), interval(1000) {
|
||||||
engine(nullptr) {
|
|
||||||
lines_list->InsertColumn(0, "#", wxLIST_FORMAT_LEFT, 50);
|
lines_list->InsertColumn(0, "#", wxLIST_FORMAT_LEFT, 50);
|
||||||
lines_list->InsertColumn(1, "CP", wxLIST_FORMAT_LEFT, 70);
|
lines_list->InsertColumn(1, "CP", wxLIST_FORMAT_LEFT, 70);
|
||||||
lines_list->InsertColumn(2, "Line", wxLIST_FORMAT_LEFT, 300);
|
lines_list->InsertColumn(2, "Line", wxLIST_FORMAT_LEFT, 300);
|
||||||
|
@ -63,6 +62,7 @@ void LiveEngineDialog::InitEngine() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void LiveEngineDialog::OnClose(wxCloseEvent &e) {
|
void LiveEngineDialog::OnClose(wxCloseEvent &e) {
|
||||||
|
UNUSED(e);
|
||||||
if (engine != nullptr) {
|
if (engine != nullptr) {
|
||||||
wxLogDebug("Close live engine!!");
|
wxLogDebug("Close live engine!!");
|
||||||
timer.Stop();
|
timer.Stop();
|
||||||
|
@ -83,6 +83,7 @@ void LiveEngineDialog::SetFEN(std::string fen) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void LiveEngineDialog::TogglePauseEngine(wxCommandEvent &event) {
|
void LiveEngineDialog::TogglePauseEngine(wxCommandEvent &event) {
|
||||||
|
UNUSED(event);
|
||||||
if (timer.IsRunning()) {
|
if (timer.IsRunning()) {
|
||||||
StopEngine();
|
StopEngine();
|
||||||
engine_stop_button->SetLabel("Restart");
|
engine_stop_button->SetLabel("Restart");
|
||||||
|
@ -115,6 +116,7 @@ void LiveEngineDialog::StartEngine() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void LiveEngineDialog::OnTimerTick(wxTimerEvent &event) {
|
void LiveEngineDialog::OnTimerTick(wxTimerEvent &event) {
|
||||||
|
UNUSED(event);
|
||||||
lines_list->DeleteAllItems(); // Clear lines_list
|
lines_list->DeleteAllItems(); // Clear lines_list
|
||||||
engine->SyncAfter(0);
|
engine->SyncAfter(0);
|
||||||
EngineEvaluation *eval=new EngineEvaluation();
|
EngineEvaluation *eval=new EngineEvaluation();
|
||||||
|
|
|
@ -22,6 +22,7 @@ EditorCanvas::EditorCanvas(wxFrame *parent, std::shared_ptr<Game> game)
|
||||||
}
|
}
|
||||||
|
|
||||||
void EditorCanvas::OnPaint(wxPaintEvent &event) {
|
void EditorCanvas::OnPaint(wxPaintEvent &event) {
|
||||||
|
UNUSED(event);
|
||||||
wxPaintDC current_dc(this);
|
wxPaintDC current_dc(this);
|
||||||
current_dc.SetBackground(*wxWHITE_BRUSH);
|
current_dc.SetBackground(*wxWHITE_BRUSH);
|
||||||
current_dc.Clear();
|
current_dc.Clear();
|
||||||
|
|
|
@ -45,7 +45,7 @@ bool MyApp::OnInit() {
|
||||||
std::vector<TabInfos *> MyApp::ListTabInfos() {
|
std::vector<TabInfos *> MyApp::ListTabInfos() {
|
||||||
std::vector<TabInfos *> tinfos;
|
std::vector<TabInfos *> tinfos;
|
||||||
wxAuiNotebook *notebook = ((MainWindow *)this->GetTopWindow())->notebook;
|
wxAuiNotebook *notebook = ((MainWindow *)this->GetTopWindow())->notebook;
|
||||||
for (int i = 0; i < notebook->GetPageCount(); i++) {
|
for (std::size_t i = 0; i < notebook->GetPageCount(); i++) {
|
||||||
tinfos.push_back(dynamic_cast<TabInfos *>(notebook->GetPage(i)));
|
tinfos.push_back(dynamic_cast<TabInfos *>(notebook->GetPage(i)));
|
||||||
}
|
}
|
||||||
return (tinfos);
|
return (tinfos);
|
||||||
|
@ -53,7 +53,7 @@ std::vector<TabInfos *> MyApp::ListTabInfos() {
|
||||||
|
|
||||||
void MyApp::FocusOnTab(TabInfos * toFocus){
|
void MyApp::FocusOnTab(TabInfos * toFocus){
|
||||||
wxAuiNotebook *notebook = ((MainWindow *)this->GetTopWindow())->notebook;
|
wxAuiNotebook *notebook = ((MainWindow *)this->GetTopWindow())->notebook;
|
||||||
for (int i = 0; i < notebook->GetPageCount(); i++) {
|
for (std::size_t i = 0; i < notebook->GetPageCount(); i++) {
|
||||||
if(dynamic_cast<TabInfos *>(notebook->GetPage(i))->id== toFocus->id)
|
if(dynamic_cast<TabInfos *>(notebook->GetPage(i))->id== toFocus->id)
|
||||||
notebook->SetSelection(i);
|
notebook->SetSelection(i);
|
||||||
}
|
}
|
||||||
|
|
|
@ -36,6 +36,7 @@
|
||||||
#define CONFIG_OPEN(name) wxConfig *name = new wxConfig("ochess")
|
#define CONFIG_OPEN(name) wxConfig *name = new wxConfig("ochess")
|
||||||
#define CONFIG_CLOSE(name) delete name
|
#define CONFIG_CLOSE(name) delete name
|
||||||
#define CONFIG_VERSION "1.0"
|
#define CONFIG_VERSION "1.0"
|
||||||
|
#define UNUSED(symbol) (void)(symbol);
|
||||||
|
|
||||||
class Game;
|
class Game;
|
||||||
class GameBase;
|
class GameBase;
|
||||||
|
|
|
@ -30,6 +30,7 @@ public:
|
||||||
Bind(wxEVT_SPINCTRL, &BoardPrefsPanel::OnConfChange, this, wxID_ANY);
|
Bind(wxEVT_SPINCTRL, &BoardPrefsPanel::OnConfChange, this, wxID_ANY);
|
||||||
}
|
}
|
||||||
void OnConfChange(wxCommandEvent &event) {
|
void OnConfChange(wxCommandEvent &event) {
|
||||||
|
UNUSED(event);
|
||||||
ApplyPreferences();
|
ApplyPreferences();
|
||||||
real_board_canvas->ApplyPreferences();
|
real_board_canvas->ApplyPreferences();
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,6 +14,7 @@ public:
|
||||||
// Bind(wxEVT_SPINCTRL, &BoardPrefsPanel::OnConfChange, this, wxID_ANY);
|
// Bind(wxEVT_SPINCTRL, &BoardPrefsPanel::OnConfChange, this, wxID_ANY);
|
||||||
}
|
}
|
||||||
void OnConfChange(wxCommandEvent &event) {
|
void OnConfChange(wxCommandEvent &event) {
|
||||||
|
UNUSED(event);
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual bool TransferDataToWindow() {
|
virtual bool TransferDataToWindow() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue