- Sashité for Developers
- Documentation
- CELL
- 1.0.0
- Examples
- 1D Chess
1D Chess Board - Size 8
CELL Coordinates: a
, b
, c
, d
, e
, f
, g
, h
┌───┬───┬───┬───┬───┬───┬───┬───┐
│ │ │ │ │ │ │ │ │
└───┴───┴───┴───┴───┴───┴───┴───┘
a b c d e f g h
Empty squares represented by spaces.
Initial Position
Initial position with two kings and their pawns:
┌───┬───┬───┬───┬───┬───┬───┬───┐
│ K │ P │ │ │ │ │ p │ k │
└───┴───┴───┴───┴───┴───┴───┴───┘
a b c d e f g h
Legend
- K = White King
- k = Black King
- P = White Pawn
- p = Black Pawn
Locations
- White King:
a
- White Pawn:
b
- Black Pawn:
g
- Black King:
h
Next Position
Position after White move:
┌───┬───┬───┬───┬───┬───┬───┬───┐
│ K │ │ P │ │ │ │ p │ k │
└───┴───┴───┴───┴───┴───┴───┴───┘
a b c d e f g h
Locations
- White King:
a
- White Pawn:
c
- Black Pawn:
g
- Black King:
h
CELL Integration
This example demonstrates CELL’s 1D coordinate system using Latin lowercase letters (dimension 1). Each position is uniquely identified by a single character, making notation simple and unambiguous for linear board games.