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

..03-May-2022-

ImakefileH A D03-May-2022942 3122

Makefile.stdH A D29-Jul-19921.2 KiB4221

READMEH A D29-Jul-19921.5 KiB4634

README.linuxH A D29-Jul-1992211 96

patchlevel.hH A D29-Jul-199242 21

qdown.xbmH A D29-Jul-1992322 98

qdownm.xbmH A D29-Jul-1992290 76

qleft.xbmH A D29-Jul-1992322 98

qleftm.xbmH A D29-Jul-1992290 76

qright.xbmH A D29-Jul-1992327 98

qrightm.xbmH A D29-Jul-1992293 76

qup.xbmH A D29-Jul-1992312 98

qupm.xbmH A D29-Jul-1992284 76

vier.cH A D03-May-202217 KiB794744

vier.hH A D03-May-2022340 1210

vierinit.cH A D03-May-20222.7 KiB9389

xvier.cH A D03-May-202238.5 KiB1,1811,149

xvier.hH A D29-Jul-1992149 118

xvier.manH A D29-Jul-19922.4 KiB9998

README

1xvier is a simple game where you and your opponent alternately throw
2stones into free columns. The stones pile up in the columns, and the
3goal is to get four stones in a row, in a column or diagonally. The
4game compiles without modifications at least on
5
6	Sun Sun4		SunOS 4.0, 4.1.1
7	Sun Sun3/60		SunOS 4.0
8	IBM RS6000		AIX 3.1
9	HP 9000/720		HP-UX 8.05
10	HP 9000/350		HP-UX 8.00
11	DEC VS3100		Ultrix-32 V3.1
12	DEC DS5400		Ultrix 4.2
13	Sequent Symmetry	Dynix 3.0.17.9
14
15To install xvier:
16
171. If you use Makefile.std, copy it to Makefile and choose locations
18   for the X11-binary (default: /usr/local/bin), the game program
19   (default: /usr/local/lib), and the manual page (default:
20   /usr/local/man/man6).
21   If you use imake, type "xmkmf" and "make depend".
22
232. Type "make".
24
253. Test the game with "./xvier -prog ./xvier_prog"
26
274. If it works, type "make install" (and "make install.man" with
28   imake).
29
30If you have problems with the compilation, look at the comments in
31Makefile.std or Imakefile.
32
33The game program uses a simple search tree, and the levels correspond
34to the depth of this tree. Thus the higher levels are quite slow, but
35normally I don't need them to get a good opponent ;-)
36It's interesting that level 1 seems to be weaker than level 0.
37
38You may use, copy, modify, and distribute this software and its
39documentation for any purpose and without fee. It is provided "as is"
40without any express or implied warranty.
41
42Have fun!
43
44	Norbert Jung
45	Email: jung@dia.informatik.uni-stuttgart.de
46

README.linux

1Simple port of a brand new program.
2
3Building:
4   gcc -s -o xvier_prog xvier_prog.a
5   mv xvier_prog /usr/games/lib/
6   gcc -s -o xvier xvier.a -lXext -lX11
7
8Rob Hooft (hooft@hutruu54.bitnet, hooft@chem.ruu.nl)
9