Page 1 of 1

Go Board Game

Posted: Sun May 16, 2021 11:56 pm
by myQwil
Repository: https://github.com/myQwil/love-go
go.love
(7.04 KiB) Downloaded 235 times
screenshot.png
screenshot.png (44.15 KiB) Viewed 7243 times
The squares with up and down arrows work by clicking and dragging up and down to change their values.

The game requires GNU Go so that it can be used as an "Oracle" to generate its board positions.

Getting GNU Go for Linux and Mac users is a fairly straight-forward process.

For Debian/Ubuntu users:

Code: Select all

apt install gnugo
For Mac users:

Code: Select all

brew install gnu-go
For Windows users, binaries can be downloaded at http://gnugo.baduk.org/ . It doesn't come with an installer, so the binaries need to be manually extracted to the folder C:\Program Files\gnugo\ .

Re: Go Board Game

Posted: Mon May 17, 2021 3:01 am
by darkfrei
Is AI like Alpha Go?

Re: Go Board Game

Posted: Mon May 17, 2021 2:09 pm
by myQwil
darkfrei wrote: Mon May 17, 2021 3:01 am Is AI like Alpha Go?
Actually, there isn't any AI. This is basically just a GUI interface for an external AI. I recommend using GNU Go, which is probably nowhere near as sophisticated as Alpha Go, but in theory you should be able to swap out GNU Go with any other AI so long as it uses GTP (Go Text Protocol) and accepts the same set of commands as what GNU Go offers.