Integrate Chess Move Interface

This commit is contained in:
Loic Guegan 2023-01-19 15:51:12 +01:00
parent da88575493
commit 81f06cb209
7 changed files with 39 additions and 8 deletions

View file

@ -3,4 +3,4 @@ archlinux:
before_script:
- pacman -Sy cmake --noconfirm --needed
script:
- mkdir build && cd build && cmake ../ && make && ctest
- mkdir build && cd build && cmake ../ -DCOMPILE_TESTS:BOOL:ON && make && ctest

3
.gitmodules vendored Normal file
View file

@ -0,0 +1,3 @@
[submodule "libs/chess-move-interface"]
path = libs/chess-move-interface
url = git@gitlab.com:manzerbredes/chess-move-interface.git

View file

@ -12,9 +12,16 @@ configure_file(src/PGN.hpp ${PGNP_INCLUDE_DIR}/pgnp.hpp COPYONLY)
configure_file(src/HalfMove.hpp ${PGNP_INCLUDE_DIR} COPYONLY)
configure_file(src/LargeFileStream.hpp ${PGNP_INCLUDE_DIR} COPYONLY)
configure_file(src/Types.hpp ${PGNP_INCLUDE_DIR} COPYONLY)
include_directories(${PGNP_INCLUDE_DIR})
# ChessMoveInterface
add_subdirectory(libs/chess-move-interface)
include_directories(${CMI_INCLUDE_DIR})
# Unit tests
enable_testing()
add_subdirectory(./tests)
set(COMPILE_TESTS OFF CACHE BOOL "Should unit tests be compiled")
if(COMPILE_TESTS)
enable_testing()
add_subdirectory(./tests)
endif()

@ -0,0 +1 @@
Subproject commit 3a4af94254d21e51ae260ad71fcc605ebb7e734e

View file

@ -78,4 +78,20 @@ HalfMove *HalfMove::GetHalfMoveAt(int distance) {
return (tmp);
}
CMI::HalfMove *HalfMove::GetAsCMI(){
CMI::HalfMove *m=new CMI::HalfMove();
m->SetSAN(move);
m->SetNumber(count);
m->SetIsBlack(isBlack);
m->SetComment(comment);
m->SetNAG(NAG);
if(MainLine!=NULL){
m->SetMainline(MainLine->GetAsCMI());
}
for (HalfMove *var : variations) {
m->AddVariation(var->GetAsCMI());
}
return m;
}
} // namespace pgnp

View file

@ -5,6 +5,8 @@
#include <string>
#include <vector>
#include "CMI.hpp"
namespace pgnp {
/**
@ -40,6 +42,8 @@ public:
void Copy(HalfMove *copy);
/// @brief Get HalfMove located x down the MainLine
HalfMove *GetHalfMoveAt(int);
/// @brief Get CMI version of HalfMove
CMI::HalfMove *GetAsCMI();
};
struct HalfMoveOutOfRange : public std::exception {

View file

@ -8,17 +8,17 @@ add_library(pgnp_catch3 SHARED ./catch3/catch_amalgamated.cpp)
# Add tests
add_executable(pgnp_valid valid.cpp)
target_link_libraries(pgnp_valid pgnp pgnp_catch3)
target_link_libraries(pgnp_valid pgnp pgnp_catch3 ChessMoveInterface)
add_test(PGNP_Valid_PGN_Set pgnp_valid)
add_executable(pgnp_str str.cpp)
target_link_libraries(pgnp_str pgnp pgnp_catch3)
target_link_libraries(pgnp_str pgnp pgnp_catch3 ChessMoveInterface)
add_test(PGNP_STR_Compliant_Set pgnp_str)
add_executable(pgnp_combined combined.cpp)
target_link_libraries(pgnp_combined pgnp pgnp_catch3)
target_link_libraries(pgnp_combined pgnp pgnp_catch3 ChessMoveInterface)
add_test(PGNP_Combined_Set pgnp_combined)
add_executable(from_string from_string.cpp)
target_link_libraries(from_string pgnp pgnp_catch3)
target_link_libraries(from_string pgnp pgnp_catch3 ChessMoveInterface)
add_test(PGNP_FromString_Set from_string)