summaryrefslogtreecommitdiffstats
path: root/rules/uttt.in
blob: 62860b7c2d089c5dc3d1a613c3759f8592c5632e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
## SECTION=staging
## old section:
### SECTION=games

menuconfig UTTT
	tristate
	prompt "Ultra Tic Tac Toe             "
	select LIBC_PTHREAD
	help
	  Ultra Tic Tac Toe (UTTT) is a console game board package containing
	  tic tac toe (naughts and crosses) and connect 4 games.

	  STAGING: remove in ptxdist-2016.12.0
	  Upstream dead and fails to build with with gcc-5.x

if UTTT

config UTTT_TTT
	bool
	prompt "Install Tic Tac Toe"
	help
	  Tic tac toe can be played on any size square board from 3x3 up to 7x7.
	  On any size board, filling an entire row, column, or diagonal wins the
	  game. With 5x5 and larger boards, a point system is used to determine
	  the winner if neither player fills an entire line. One point is given
	  for each line of 4 of a player's pieces.

config UTTT_CONNECT4
	bool
	prompt "Install connect4"
	help
	  Connect 4 is played on a 7x6 board. As in the original board game,
	  pieces are placed at the top of a column, and "fall" to the bottom of
	  the column. The game is won by having 4 pieces in a line (horizontal,
	  vertical, or diagonal).

endif