1GOGUI(1) GoGui Reference GOGUI(1)
2
3
4
6 gogui - Graphical user interface for Go programs.
7
9 gogui [-analyze-commands file] [-auto] [-computer-black |
10 -computer-white | -computer-both | -computer-none]
11 [-command command] [-config file] [-gtpfile filename]
12 [-komi value] [-laf name] [-move n] [-program command]
13 [-register] [-size n] [-time timespec] [-verbose] [file]
14
15 gogui -help
16
17 gogui -version
18
20 GoGui is a graphical interface to programs that play the game of Go and
21 use GTP (Go Text Protocol). This reference describes only the command
22 line arguments for invoking GoGui. A complete HTML documentation is
23 included in the GoGui package.
24
26 -analyze-commands file
27 Use the given file to read analyze command configuration.
28
29 -auto
30 Automatically start a new game if the program plays both colors and
31 a game is finished.
32
33 -command command
34 Send GTP command at startup. The argument can contain multiple
35 commands separated by '\n'.
36
37 -computer-black
38 Computer plays Black.
39
40 -computer-both
41 Computer plays both sides.
42
43 -computer-none
44 Computer plays no side.
45
46 -computer-white
47 Computer plays White.
48
49 -config file
50 Read command line options and arguments from the given file.
51
52 -gtpfile filename
53 Send GTP file at startup.
54
55 -help
56 Display help and exit.
57
58 -komi value
59 Set the komi value.
60
61 -laf name
62 Set the Swing look and feel. If this option is not used, GoGui
63 tries to use "system" on Linux and Windows, and "quaqua" on Mac
64 OS/X, but shows no error if the look and feel is not found. If the
65 option is used, the name can be "default" or an empty string for
66 the default look and feel of the Java implementation, a full class
67 name, or one of the following shortcuts:
68
69 cross
70 UIManager.getCrossPlatformLookAndFeelClassName()
71
72 motif
73 com.sun.java.swing.plaf.motif.MotifLookAndFeel
74
75 gtk
76 com.sun.java.swing.plaf.gtk.GTKLookAndFeel
77
78 quaqua
79 ch.randelshofer.quaqua.QuaquaLookAndFeel
80
81 system
82 UIManager.getSystemLookAndFeelClassName()
83
84 windows
85 com.sun.java.swing.plaf.windows.WindowsLookAndFeel
86
87
88 -move n
89 Load SGF file given as the main argument until the given move
90 number.
91
92 -program command
93 Go program to attach. The argument is the command line to start the
94 program.
95
96 -register
97 Automatically create an entry in the Program menu if GoGui was
98 invoked with the option -program and no menu item for a program
99 with the given command already exists.
100
101 -size n
102 Set the board size.
103
104 -time timespec
105 Set time limits (basetime[+overtime/moves]). The base time and
106 overtime (byoyomi) can have an optional unit specifier (m or min
107 for minutes; s or sec for seconds; default is minutes).
108
109 -verbose
110 Print debugging messages. This includes the complete stream of GTP
111 commands. Compared to the GTP shell, this has the additional
112 advantage that the commands and responses are written immediately
113 when they are received and the order of the standard output and
114 standard error stream of the Go engine will more likely be in the
115 correct order.
116
117 -version
118 Print version and exit.
119
120GoGui 1.4.9 02/10/2017 GOGUI(1)