Add tests and improve interface

This commit is contained in:
Loic Guegan 2023-01-19 10:09:07 +01:00
parent 8fd85102ab
commit f3e3ab4911
8 changed files with 21718 additions and 18 deletions

6
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,6 @@
archlinux:
image: "archlinux:base-devel"
before_script:
- pacman -Sy cmake --noconfirm --needed
script:
- mkdir build && cd build && cmake ../ && make && ctest

View file

@ -19,4 +19,8 @@ include_directories(src)
file(GLOB_RECURSE SRC_CPP_FILES src/*.cpp)
if(NOT TARGET ChessMoveInterface)
add_library(ChessMoveInterface SHARED ${SRC_CPP_FILES})
endif()
endif()
# Unit tests
enable_testing()
add_subdirectory(./tests)

View file

@ -1,6 +1,73 @@
#include "CMI.hpp"
namespace CMI{
HalfMove::HalfMove(): number(1), isBlack(false){
}
HalfMove::~HalfMove() {
if(mainline!=nullptr)
delete mainline;
for(HalfMove *v:variations)
delete v;
}
void HalfMove::SetParent(CMI::HalfMove* m){
parent=static_cast<HalfMove*>(m);
}
std::vector<CMI::HalfMove*> HalfMove::GetVariations() const {
std::vector<CMI::HalfMove*> vars;
for(HalfMove *v:variations){
vars.push_back(static_cast<CMI::HalfMove*>(v));
}
return vars;
}
void HalfMove::SetVariations(std::vector<CMI::HalfMove*> vars){
variations.clear();
for(auto *v: vars){
variations.push_back(static_cast<HalfMove*>(v));
}
}
void HalfMove::SetMainline(CMI::HalfMove* m) {
mainline = static_cast<HalfMove*>(m);
if(m!=nullptr){
if (!this->isBlack) {
m->SetIsBlack(true);
m->SetNumber(this->number);
} else {
m->SetIsBlack(false);
m->SetNumber(this->number + 1);
}
m->SetParent(static_cast<CMI::HalfMove*>(this));
}
}
CMI::HalfMove* HalfMove::GetMainline() const {return mainline;};
CMI::HalfMove* HalfMove::GetParent() const {return parent;};
std::string HalfMove::GetSAN() const {return SAN;};
void HalfMove::SetSAN(std::string newSAN) {SAN=newSAN;};
std::uint16_t HalfMove::GetNumber() const {return number;};
void HalfMove::SetNumber(std::uint16_t n) {number=n;};
std::uint8_t HalfMove::GetNAG() const {return NAG;};
void HalfMove::SetNAG(std::uint8_t n) {NAG=n;};
std::string HalfMove::GetComment() const {return comment;};
void HalfMove::SetComment(std::string c) { comment=c;};
bool HalfMove::IsBlack() const {return isBlack;};
void HalfMove::SetIsBlack(bool b) {isBlack=b;};
// ---------- Implementation of various common operations ----------
void HalfMove::Promote(){
HalfMove *broot=GetBranchRoot();
if(broot!=nullptr){

View file

@ -14,56 +14,64 @@ namespace CMI {
* to the CMI::HalfMove remains in the move tree.
*/
class HalfMove {
HalfMove *parent = nullptr;
HalfMove *mainline = nullptr;
std::vector<HalfMove *> variations;
std::string SAN,comment;
std::uint16_t number;
std::uint8_t NAG;
bool isBlack;
public:
HalfMove();
/// @brief Ensure that the destructor of the child class is called
virtual ~HalfMove() {};
virtual ~HalfMove();
/**
* @brief Return a pointer to the next CMI::HalfMove
*
* @return HalfMove* if any and nullptr otherwise
*/
virtual HalfMove* GetMainline() const = 0;
virtual HalfMove* GetMainline() const;
/**
* @brief Set the next CMI::HalfMove
* Existing main line pointer will be overriten (NOT DELETED) and the internal state (Number, IsBlack) of the new move
* must be ajusted in the implementation of this method.
*/
virtual void SetMainline(HalfMove*) = 0;
virtual void SetMainline(HalfMove*);
/**
* @brief Get the previous CMI::HalfMove
*
* @return HalfMove* if any and nullptr otherwise
*/
virtual HalfMove* GetParent() const = 0;
virtual HalfMove* GetParent() const;
/**
* @brief Set the parent of current CMI::HalfMove
*
*/
virtual void SetParent(HalfMove*) = 0;
virtual void SetParent(HalfMove*);
/// @brief Return the current move using the SAN notation e.g: "Qxc5+" or "a4"
virtual std::string GetSAN() const = 0;
virtual std::string GetSAN() const;
/// @brief Setter to replace current SAN
virtual void SetSAN(std::string) = 0;
virtual void SetSAN(std::string);
/// @brief Return the HalfMove move number e.g 1 for the first white's and black's move
virtual std::uint16_t GetNumber() const = 0;
virtual std::uint16_t GetNumber() const;
/// @brief Setter to replace current Number
virtual void SetNumber(std::uint16_t) = 0;
virtual void SetNumber(std::uint16_t);
/// @brief Return the Numeric Annotation Glyphs code
virtual std::uint8_t GetNAG() const = 0;
virtual std::uint8_t GetNAG() const;
/// @brief Setter to replace current NAG
virtual void SetNAG(std::uint8_t) = 0;
virtual void SetNAG(std::uint8_t);
/// @brief Return the comment linked to the current move or empty string
virtual std::string GetComment() const = 0;
virtual std::string GetComment() const;
/// @brief Setter to replace current comment
virtual void SetComment(std::string) = 0;
virtual void SetComment(std::string);
/// @brief Return true if the current HalfMove was played by black
virtual bool IsBlack() const = 0;
virtual bool IsBlack() const;
/// @brief Setter to replace that determined the return values of HalfMove::IsBlack()
virtual void SetIsBlack(bool) = 0;
virtual void SetIsBlack(bool);
/// @brief All the variations of the current move
virtual std::vector<HalfMove*> GetVariations() const = 0;
virtual std::vector<HalfMove*> GetVariations() const;
/// @brief Setter to replace current variations
virtual void SetVariations(std::vector<HalfMove*>) = 0;
virtual void SetVariations(std::vector<HalfMove*>);
// ---------- Implementation of various common operations ----------

11
tests/CMakeLists.txt Normal file
View file

@ -0,0 +1,11 @@
# Configure catch3
include_directories(./catch3/)
add_library(cmi_catch3 SHARED ./catch3/catch_amalgamated.cpp)
# Add tests
add_executable(cmi_tests cmi_tests.cpp)
target_link_libraries(cmi_tests ChessMoveInterface cmi_catch3)
add_test(CMI_TESTS cmi_tests)

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

23
tests/cmi_tests.cpp Normal file
View file

@ -0,0 +1,23 @@
#include "CMI.hpp"
#include <catch_amalgamated.hpp>
using namespace CMI;
#define NEW_MOVE(VAR,SAN) HalfMove *(VAR)=new HalfMove(); (VAR)->SetSAN((SAN));
HalfMove *BuildTree(){
NEW_MOVE(m1,"e4");
NEW_MOVE(m2,"e5");
m1->SetMainline(m2);
return m1;
}
TEST_CASE("CMI Tests", "[valid]") {
HalfMove *m=BuildTree();
CHECK(m->GetNumber()==1);
CHECK(m->GetMainline()->GetNumber()==1);
}