mirror of
https://gitlab.com/manzerbredes/pgnp.git
synced 2025-04-05 17:46:25 +02:00
Integrate Chess Move Interface
This commit is contained in:
parent
da88575493
commit
81f06cb209
7 changed files with 39 additions and 8 deletions
|
@ -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
3
.gitmodules
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
[submodule "libs/chess-move-interface"]
|
||||
path = libs/chess-move-interface
|
||||
url = git@gitlab.com:manzerbredes/chess-move-interface.git
|
|
@ -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()
|
||||
|
||||
|
|
1
libs/chess-move-interface
Submodule
1
libs/chess-move-interface
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 3a4af94254d21e51ae260ad71fcc605ebb7e734e
|
|
@ -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
|
|
@ -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 {
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue