Go Game In Go Lang
Switch branches/tags
Nothing to show
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
data
.gitignore
README.md
TODO
board.go
ggigl.go
handicap.go
piece.go

README.md

ggigl

ggigl (Go Game In Go Lang) is an implementation of the Go board game in the Go programming language.

Status

The game is mostly playable, but it can't calculate score. In fact, there's no way to end the game other than quitting.

For more information, see TODO.

Usage

ggigl [options]

-size=<num> (Default: 19)
The board size to use. Only accepts 9 or 19.
-handicap=<num> (Default: 0)
The handicap. 0 is no handicap; maximum is 19.
-komi=<num> (Default: -1)
Komi. Anything less than 0 will have different results depending on the handicap settings. If there's no handicap, then komi will be 5.5. If there is a handicap, komi will be 0.
-superko (Default: false)
Use super ko rules instead of simple ko.

Authors

  • DeedleFake