jgkaplan / shogiUI

Mobile/Web shogi UI (forked from lichess.org)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Shogiground

Shogiground is a free/libre open source shogi UI. It is a fork of Chessground designed for shogi. It targets modern browsers, as well as mobile development using Cordova.

License

Shogiground is distributed under the GPL-3.0 license (or any later version, at your option). When you use Shogiground for your website, your combined work may be distributed only under the GPL. You must release your source code to the users of your website.

Please read more about GPL for JavaScript on greendrake.info/#nfy0.

Features

  • Well typed with TypeScript
  • Fast. Uses a custom DOM diff algorithm to reduce DOM writes to the absolute minimum.
  • Small footprint: 10K gzipped (30K unzipped). No dependencies.
  • SVG drawing of circles and arrows on the board
  • Entirely configurable and reconfigurable at any time
  • Styling with CSS only: board and pieces can be changed by simply switching a class
  • Fluid layout: board can be resized at any time
  • Support for 3D pieces and boards
  • Full mobile support (touchstart, touchmove, touchend)
  • Move pieces by click
  • Move pieces by drag & drop
    • Minimum distance before drag
    • Centralisation of the piece under the cursor
    • Piece ghost element
    • Drop off revert or trash
  • Premove by click or drag
  • Drag new pieces onto the board (editor, Crazyhouse)
  • Animation of pieces: moving and fading away
  • Display last move, check, move destinations, and premove destinations (hover effects possible)
  • Import and export positions in FEN notation
  • User callbacks

Usage

const Shogiground = require('shogiground').Shogiground;

const config = {};
const ground = Shogiground(document.body, config);

Documentation

Development

Install build dependencies:

npm install

To build the node module:

npm run compile -- --watch

To build the standalone:

gulp dev  # build once
gulp      # build and watch
gulp prod # build minified

About

Mobile/Web shogi UI (forked from lichess.org)

License:GNU General Public License v3.0


Languages

Language:TypeScript 88.4%Language:CSS 9.2%Language:JavaScript 1.6%Language:HTML 0.6%Language:Shell 0.3%