A dependency-free chess game editor library written in C++.
Find a file
2022-02-17 09:34:52 +01:00
examples/wxWidgets Improve editor move icons management 2022-02-17 08:33:32 +01:00
src Add move side property to the img element 2022-02-17 09:34:52 +01:00
.gitignore Create project 2022-02-12 19:13:34 +01:00
CMakeLists.txt Create project 2022-02-12 19:13:34 +01:00
LICENSE Create project 2022-02-12 19:13:34 +01:00
README.md Update readme 2022-02-12 21:30:46 +01:00

license

cgeditor: Chess Game Editor

cgeditor is a dependency-free chess game editor library written in C++. It can be used with any library that provides 2D canvas drawing and mouse inputs features.

Features

  • Show move,move number, variations, comments etc.
  • Delete, Promote and Set as main line features
  • Handle pieces icons
  • Its graphical appareance is entirely customizable

Architecture

To run cgeditor you need to extend 2 classes:

  • CGEditor (To draw and handle events)
  • CGEHalfMove (The data structure displayed by the editor)

Example

An example based on wxWidgets is available in the examples/ folder: wxWidgets