• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

English.lproj/H05-Oct-2002-6130

French.lproj/H05-Oct-2002-6230

German.lproj/H05-Oct-2002-6130

Hungarian.lproj/H20-Apr-2004-6633

Italian.lproj/H05-Oct-2002-6130

Norwegian.lproj/H20-Apr-2004-6230

Spanish.lproj/H05-Oct-2002-7130

Swedish.lproj/H05-Oct-2002-6230

TraditionalChinese.lproj/H05-Oct-2002-6331

Board.hH A D05-Feb-20096.4 KiB20976

Board.mH A D27-Feb-200719.4 KiB886775

Controller.hH A D05-Oct-20021.2 KiB4416

Controller.mH A D27-Feb-20075.8 KiB232195

GNUmakefileH A D05-Feb-20092 KiB8355

GNUstep.hH A D05-Feb-20092.5 KiB8543

GomokuInfo.plistH A D05-Feb-2009628 1412

INSTALLH A D27-Feb-20071.4 KiB6137

INSTALL.OSXH A D05-Feb-20091.5 KiB5635

READMEH A D27-Feb-20072.5 KiB8258

TODOH A D05-Oct-2002153 54

main.mH A D05-Feb-20095.7 KiB204172

README

1Welcome to Gomoku.app !
2
3WHAT IS IT
4==========
5
6Gomoku.app is an extended TicTacToe game for GNUstep.  You win the
7game if you are able to put 5 of your pieces in a row, column or
8diagonal.  You lose if the computer does it before you.
9
10Most of the development effort was concentrated on the artificial
11intelligence engine used by the computer while playing.  Unlike most
12other engines, this engine is not designed to play very well, but
13rather to give you fun when you play against it.
14
15COPYING
16=======
17
18This program is free sofware, released under GNU GPL 2.0.
19
20COMPILING
21=========
22
23Please check the 'INSTALL' file to build the game on GNUstep, and the
24'INSTALL.OSX' file to build the game on Apple/Mac OS X.
25
26RUNNING THE PROGRAM IN ANOTHER LANGUAGE
27=======================================
28
29The program has been translated into the following languages:
30
31 English
32 Italian (by Nicola Pero <nicola.pero@meta-innovation.com>)
33 French (by Emmanuel Maillard <e.rsz@libertysurf.fr>)
34 Swedish (by Erik Dalen <dalen@jpl.nu>)
35 Spanish (by Rodrigo Sancho Senosiain <ruysan@wanadoo.es>)
36 German (by Matthias Zoellner <matthias.zoellner@fen-net.de>)
37 Traditional Chinese (by Yen-Ju Chen <yjchenx@hotmail.com>)
38 Hungarian (by Varga Peter <debbug123@freemail.hu>)
39 Norwegian (by Per Christian Gaustad <svele@netcom.no>)
40
41Under GNUstep, to run Gomoku.app in your preferite language, for
42example Italian, set your GNUstep preferences to use that language by
43giving the following command at the shell prompt:
44
45defaults write NSGlobalDomain NSLanguages "(Italian)"
46
47To translate it into another language, just take the
48English.lproj/Localizable.strings, translate each string into your
49language (look at Italian.lproj/Localizable.strings for an example),
50put everything into a new YourLanguage.lproj/Localizable.strings.  Add
51your language to the GNUmakefile.  Ah - and don't forget to send the
52result of your work to nicola.pero@meta-innovation.com so it can be
53included in the next release !
54
55BOARDS OF DIFFERENT SIZES
56=========================
57
58If you get bored with the standard board, you can play the game on
59boards of different size; the default size is 8 but 10 is also nice to
60play.  Pass the size of the board as argument of Gomoku.app.  For
61example, to play on a 10x10 board, you can start Gomoku with:
62
63openapp ./Gomoku.app 10
64
65Warning: board size must be >= 8.
66
67BUGS
68====
69
70Please mail them to <nicola.pero@meta-innovation.com>
71
72HOMEPAGE
73========
74
75http://www.gnustep.it/nicola/Applications/Gomoku/
76
77THANKS
78======
79
80To David Relson <relson@osagesoftware.com>, for providing support for
81boards of arbitrary sizes.
82