AnyGraphGo

September 13, 2025

AnyGraphGo is a small game that allows you to play Go on any 3D Graph.
I realized that the rules of go can work on any graph, so I made this little app to demonstrate this.


To define your graph you use the file format I came up with in 30 seconds :O

For each node you want to add, write it on a new line in the following format:
Node id, x, y, z, occupation (0 is empty, 1 is white, -1 is black), connected Node, connected Node, ...

Boleite Diagram

Here's an example which creates a 4x4x4 cube:
0,-6,-6,-6,0,1,4,16
1,-2,-6,-6,0,0,2,5,17
2,2,-6,-6,0,1,3,6,18
3,6,-6,-6,0,2,7,19
4,-6,-2,-6,0,0,5,8,20
5,-2,-2,-6,0,1,4,6,9,21
6,2,-2,-6,0,2,5,7,10,22
7,6,-2,-6,0,3,6,11,23
8,-6,2,-6,0,4,9,12,24
9,-2,2,-6,0,5,8,10,13,25
10,2,2,-6,0,6,9,11,14,26
11,6,2,-6,0,7,10,15,27
12,-6,6,-6,0,8,13,28
13,-2,6,-6,0,9,12,14,29
14,2,6,-6,0,10,13,15,30
15,6,6,-6,0,11,14,31
16,-6,-6,-2,0,0,17,20,32
17,-2,-6,-2,0,1,16,18,21,33
18,2,-6,-2,0,2,17,19,22,34
19,6,-6,-2,0,3,18,23,35
20,-6,-2,-2,0,4,16,21,24,36
21,-2,-2,-2,0,5,17,20,22,25,37
22,2,-2,-2,0,6,18,21,23,26,38
23,6,-2,-2,0,7,19,22,27,39
24,-6,2,-2,0,8,20,25,28,40
25,-2,2,-2,0,9,21,24,26,29,41
26,2,2,-2,0,10,22,25,27,30,42
27,6,2,-2,0,11,23,26,31,43
28,-6,6,-2,0,12,24,29,44
29,-2,6,-2,0,13,25,28,30,45
30,2,6,-2,0,14,26,29,31,46
31,6,6,-2,0,15,27,30,47
32,-6,-6,2,0,16,33,36,48
33,-2,-6,2,0,17,32,34,37,49
34,2,-6,2,0,18,33,35,38,50
35,6,-6,2,0,19,34,39,51
36,-6,-2,2,0,20,32,37,40,52
37,-2,-2,2,0,21,33,36,38,41,53
38,2,-2,2,0,22,34,37,39,42,54
39,6,-2,2,0,23,35,38,43,55
40,-6,2,2,0,24,36,41,44,56
41,-2,2,2,0,25,37,40,42,45,57
42,2,2,2,0,26,38,41,43,46,58
43,6,2,2,0,27,39,42,47,59
44,-6,6,2,0,28,40,45,60
45,-2,6,2,0,29,41,44,46,61
46,2,6,2,0,30,42,45,47,62
47,6,6,2,0,31,43,46,63
48,-6,-6,6,0,32,49,52
49,-2,-6,6,0,33,48,50,53
50,2,-6,6,0,34,49,51,54
51,6,-6,6,0,35,50,55
52,-6,-2,6,0,36,48,53,56
53,-2,-2,6,0,37,49,52,54,57
54,2,-2,6,0,38,50,53,55,58
55,6,-2,6,0,39,51,54,59
56,-6,2,6,0,40,52,57,60
57,-2,2,6,0,41,53,56,58,61
58,2,2,6,0,42,54,57,59,62
59,6,2,6,0,43,55,58,63
60,-6,6,6,0,44,56,61
61,-2,6,6,0,45,57,60,62
62,2,6,6,0,46,58,61,63
63,6,6,6,0,47,59,62


You can donload the windows build here:
Download

If you are interested in playing it in the browser or on mobile, message me and I might port it over.

Privacy Policy