Chess game analysis software.
Find a file
2023-06-03 15:51:44 +02:00
libs Update uciadapter 2023-05-10 15:08:26 +02:00
src Update ui icons 2023-06-03 15:51:44 +02:00
tools Update ui icons 2023-06-03 15:51:44 +02:00
.gitattributes Setting up doxygen 2023-05-11 21:35:06 +02:00
.gitignore Improve ui icons 2023-06-03 15:44:46 +02:00
.gitlab-ci.yml Debug CI 2023-01-19 17:14:02 +01:00
.gitmodules Debug submodules configuration 2023-01-19 16:50:29 +01:00
CMakeLists.txt Improve CMakeLists.txt 2023-05-09 22:33:21 +02:00
LICENSE Add license file 2023-01-12 14:36:13 +01:00
README.md Update README.md 2023-04-30 16:38:04 +02:00
TODO.md Debug duplicated move in games 2023-06-03 12:34:53 +02:00

Open Chess   Pipeline Pipeline Pipeline

Screenshot

Features

  • PGNs files (.si4 files not yet but soon!)
  • Handle heavy game files
  • Live chess engine analysis with UCI compliant chess engines
  • Intuitive game annotations
  • Simple games database management system

Installing OChess

On ArchLinux from AUR:

> yay -S ochess

Running OChess from sources

Requires CMake and wxWidgets:

> git clone --recursive https://gitlab.com/manzerbredes/ochess
> cd ./ochess
> mkdir ./build && cd ./build
> cmake ../ && make
> ./ochess # Launch OChess

Notes

  • OChess is still in early development stage. For more informations, please read the TODO.md file.
  • For questions and discussions please join irc://irc.libera.chat/ochess.

Satellites projects

OChess is based on several satellite projects that implement individual and independant features:

  • chessarbiter: A chess classical chess game C++ arbiter
  • pgnp: An efficient PGN parser
  • uciadapter: A cross platform utility to interact with UCI chess engines
  • cgeditor: A 2D chess game moves presenter/editor
  • chess-move-interface A chess half move interface for libraries interoperability

Acknowledgments