Debug and cleaning

This commit is contained in:
Loic Guegan 2023-01-02 12:43:46 +01:00
parent e40f98ccda
commit 7077fef33e
6 changed files with 13 additions and 5 deletions

View file

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.10)
project(ochess VERSION "0.0.0")
project(ochess VERSION 0.0.0)
# wxWidgets
find_package(wxWidgets COMPONENTS net gl core base adv aui propgrid REQUIRED)
@ -8,6 +8,8 @@ include(${wxWidgets_USE_FILE})
# Ochess
include_directories(src)
file(GLOB_RECURSE CPP_FILES src/*.cpp)
configure_file(${CMAKE_SOURCE_DIR}/src/config.h.in ${CMAKE_BINARY_DIR}/config.h)
include_directories(${CMAKE_CURRENT_BINARY_DIR}) # Enable access to config.h
add_executable(ochess ${CPP_FILES})
target_link_libraries(ochess ${wxWidgets_LIBRARIES})

View file

@ -18,7 +18,7 @@ MainWindow::MainWindow()
: MainFrame(NULL, wxID_ANY, "OChess: The Open Chess software",
wxDefaultPosition, wxSize(1500, 1000)),
prefsEditor(nullptr) {
SetStatusText("OChess");
SetStatusText("OChess v"+std::string(OCHESS_VERSION));
/// File menu
menu_file->Append(1, "Settings", "Configure OChess");

View file

@ -6,6 +6,7 @@
#include <wx/filedlg.h>
#include <wx/preferences.h>
#include <wx/textdlg.h>
#include "config.h"
wxDECLARE_EVENT(REFRESH_TAB_TITLE, wxCommandEvent);
wxDECLARE_EVENT(NEW_GAME_EVENT, wxCommandEvent);

5
src/config.h.in Normal file
View file

@ -0,0 +1,5 @@
#define OCHESS_VERSION "@PROJECT_VERSION@"
#define OCHESS_MAJOR "@PROJECT_VERSION_MAJOR@"
#define OCHESS_MINOR "@PROJECT_VERSION_MINOR@"
#define OCHESS_PATCH "@PROJECT_VERSION_PATCH@"
#define OCHESS_TWEAK "@PROJECT_VERSION_TWEAK@"

View file

@ -133,7 +133,7 @@ void BoardCanvas::SetupBoard(const GameState &new_gs) {
Refresh();
}
void BoardCanvas::Animate(const GameState &new_gs, std::string src, std::string dst, bool faster){
void BoardCanvas::Animate(const GameState &new_gs, const std::string &src, const std::string &dst, bool faster){
std::uint8_t pfile = src[0]-'a';
std::uint8_t prank = src[1]-'1';
adata.piece_moved = gs.board[pfile + 8 * (7-prank)]; // Piece to move

View file

@ -65,7 +65,7 @@ typedef struct GameState {
bool is_black_turn;
bool mat_black;
bool mat_white;
ClockTime black_time, white_time;
ClockTime black_time={-1,-1,-1}, white_time={-1,-1,-1};
} GameState;
class BoardCanvas : public wxPanel {
@ -101,6 +101,6 @@ public:
void Swap();
void OnResize(wxSizeEvent &e);
void SetupBoard(const GameState &new_gs);
void Animate(const GameState &new_gs, std::string src, std::string dst,bool faster);
void Animate(const GameState &new_gs, const std::string &src, const std::string &dst,bool faster);
void SetClockTime(short hours, short min, short sec, bool IsBlack);
};