DaJobat / zigzag

A (very in-progress) chess engine built with Zig

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Zigzag

Zigzag is a chess engine built primarily with Zig (hence the creative name), whose primary components are stored in zigzag/core. This monorepo is intended to store both the essential components of the engine, as well as related tools and interfaces.

This project was largely inspired by Sebastian Lague's excellent series on implementing a chess engine in C#, which is an excellent introduction to chess programming and some key ideas within. Go watch it here.

Components

Core

zigzag/core is the underlying essential base of Zigzag, providing essential functionality to all other components. It doesn't provide C ABI compatibility (currently), so other components are expected to provide Zig wrappers where necessary.

Potential Future Components

  • A Python library via the CPython ABI (3.11.4+).
  • A JS/Zigzag wrapper via node-ffi.
  • Other GUI and analysis components.

About

A (very in-progress) chess engine built with Zig

License:MIT License


Languages

Language:Zig 99.5%Language:C 0.5%