Chess moves representation standard.
Find a file
2023-05-10 07:07:41 +02:00
src Debug an cleaning source code 2023-05-10 07:07:41 +02:00
tests Debug an cleaning source code 2023-05-10 07:07:41 +02:00
.gitignore Create CMI interface 2023-01-18 21:53:37 +01:00
.gitlab-ci.yml Debug CI 2023-01-19 15:54:06 +01:00
CMakeLists.txt Debug CMake file 2023-05-02 19:16:51 +02:00
LICENSE Create CMI interface 2023-01-18 21:53:37 +01:00
README.md Create CMI interface 2023-01-18 21:53:37 +01:00

Chess Move Interface

The Chess Move Interface (CMI) define a common Interface for standard chess half moves. It allows for a better interoperability among chess libraries.

CMake Integration

By using the add_subdirectory() directive on this repository, you will be able to use the following cmake calls in your project:

include_directories(${CMI_INCLUDE_DIR})
target_link_libraries(<YOUR_TARGET> ChessMoveInterface)

Note that the ChessMoveInterface target is guaranty to be define only once. Thus, it can be part of several subprojects/submodules in a given project.

How to use it ?

Create your own implementation of a chess half move by extending CMI::HalfMove. See the following projects for more informations:

  • OChess A software for chess games analysis and management
  • CGEditor A chess game editor
  • pgnp An efficient pgn parser