mirror of
https://github.com/vattam/BSDGames.git
synced 2025-12-20 19:04:49 +00:00
Initial revision
git-svn-id: file:///srv/svn/joey/bsdgames-trunk@5086 a4a2c43b-8ac3-0310-8836-e0e880c912e2
This commit is contained in:
31
atc/games/Atlantis
Normal file
31
atc/games/Atlantis
Normal file
@@ -0,0 +1,31 @@
|
||||
update = 5;
|
||||
newplane = 5;
|
||||
width = 30;
|
||||
height = 21;
|
||||
|
||||
exit: ( 10 0 x )
|
||||
( 29 6 a )
|
||||
( 27 20 q )
|
||||
( 0 16 d ) ;
|
||||
|
||||
beacon: ( 10 6 ) ( 23 6 )
|
||||
( 23 16 ) ( 15 16 ) ( 7 16 )
|
||||
( 7 9 ) ( 15 6 ) ;
|
||||
|
||||
airport: ( 23 8 x ) ( 15 12 w ) ;
|
||||
|
||||
line: [ ( 10 1 ) ( 10 5 ) ]
|
||||
[ ( 11 6 ) ( 14 6 ) ]
|
||||
[ ( 16 6 ) ( 22 6 ) ]
|
||||
[ ( 24 6 ) ( 28 6 ) ]
|
||||
[ ( 1 16 ) ( 6 16 ) ]
|
||||
[ ( 8 16 ) ( 14 16 ) ]
|
||||
[ ( 16 16 ) ( 22 16 ) ]
|
||||
[ ( 23 7 ) ( 23 7 ) ]
|
||||
[ ( 23 9 ) ( 23 15 ) ]
|
||||
[ ( 15 7 ) ( 15 11 ) ]
|
||||
[ ( 15 13 ) ( 15 15 ) ]
|
||||
[ ( 7 10 ) ( 7 15 ) ]
|
||||
[ ( 9 7 ) ( 8 8 ) ]
|
||||
[ ( 6 10 ) ( 1 15 ) ]
|
||||
[ ( 24 17 ) ( 26 19 ) ] ;
|
||||
15
atc/games/Game_List
Normal file
15
atc/games/Game_List
Normal file
@@ -0,0 +1,15 @@
|
||||
default
|
||||
easy
|
||||
crossover
|
||||
Killer
|
||||
game_2
|
||||
Atlantis
|
||||
OHare
|
||||
Tic-Tac-Toe
|
||||
airports
|
||||
box
|
||||
crosshatch
|
||||
game_3
|
||||
game_4
|
||||
novice
|
||||
two-corners
|
||||
21
atc/games/Killer
Normal file
21
atc/games/Killer
Normal file
@@ -0,0 +1,21 @@
|
||||
update = 1;
|
||||
newplane = 4;
|
||||
width = 30;
|
||||
height = 21;
|
||||
|
||||
exit: ( 29 7 a ) ( 29 17 a )
|
||||
( 0 7 d ) ( 0 0 c ) ;
|
||||
|
||||
beacon: ( 12 7 ) ( 12 17 ) ( 14 10 ) ( 20 15 ) ;
|
||||
|
||||
airport: ( 20 18 d ) ;
|
||||
|
||||
line: [ ( 1 1 ) ( 6 6 ) ]
|
||||
[ ( 12 1 ) ( 12 6 ) ]
|
||||
[ ( 13 7 ) ( 28 7 ) ]
|
||||
[ ( 28 1 ) ( 13 16 ) ]
|
||||
[ ( 1 13 ) ( 11 13 ) ]
|
||||
[ ( 12 8 ) ( 12 16 ) ]
|
||||
[ ( 11 18 ) ( 10 19 ) ]
|
||||
[ ( 13 17 ) ( 28 17 ) ]
|
||||
[ ( 1 7 ) ( 11 7 ) ] ;
|
||||
14
atc/games/Makefrag
Normal file
14
atc/games/Makefrag
Normal file
@@ -0,0 +1,14 @@
|
||||
# Makefrag - makefile fragment for atc/games
|
||||
|
||||
atc_games_DIRS := $(ATC_DIR)
|
||||
atc_games_GAMES := atc/games/Game_List atc/games/default atc/games/easy \
|
||||
atc/games/crossover atc/games/Killer atc/games/game_2 \
|
||||
atc/games/Atlantis atc/games/OHare atc/games/Tic-Tac-Toe \
|
||||
atc/games/airports atc/games/box atc/games/crosshatch \
|
||||
atc/games/game_3 atc/games/game_4 atc/games/novice \
|
||||
atc/games/two-corners
|
||||
|
||||
atc_games_all: $(atc_games_GAMES)
|
||||
|
||||
atc_games_install:
|
||||
set -e; for g in Game_List `cat atc/games/Game_List`; do $(INSTALL_DATA) atc/games/$$g $(INSTALL_PREFIX)$(ATC_DIR)/$$g; done
|
||||
23
atc/games/OHare
Normal file
23
atc/games/OHare
Normal file
@@ -0,0 +1,23 @@
|
||||
update = 5;
|
||||
newplane = 5;
|
||||
width = 30;
|
||||
height = 21;
|
||||
|
||||
exit: ( 6 0 x ) ( 18 0 x )
|
||||
( 29 5 a ) ( 29 13 a )
|
||||
( 14 20 e ) ( 6 20 w ) ;
|
||||
|
||||
beacon: ( 6 5 ) ( 18 5 )
|
||||
( 6 13 ) ;
|
||||
|
||||
airport: ( 8 8 d ) ;
|
||||
|
||||
line: [ ( 6 1 ) ( 6 4 ) ]
|
||||
[ ( 18 1 ) ( 18 4 ) ]
|
||||
[ ( 6 6 ) ( 6 12 ) ]
|
||||
[ ( 6 14 ) ( 6 19 ) ]
|
||||
[ ( 28 6 ) ( 15 19 ) ]
|
||||
[ ( 7 13 ) ( 20 13 ) ]
|
||||
[ ( 22 13 ) ( 28 13 ) ]
|
||||
[ ( 7 5 ) ( 17 5 ) ]
|
||||
[ ( 19 5 ) ( 28 5 ) ] ;
|
||||
25
atc/games/Tic-Tac-Toe
Normal file
25
atc/games/Tic-Tac-Toe
Normal file
@@ -0,0 +1,25 @@
|
||||
update = 5;
|
||||
newplane = 5;
|
||||
width = 30;
|
||||
height = 21;
|
||||
|
||||
exit: ( 10 0 x ) ( 19 0 x )
|
||||
( 29 7 a ) ( 29 13 a )
|
||||
( 19 20 w ) ( 10 20 w )
|
||||
( 0 13 d ) ( 0 7 d ) ;
|
||||
|
||||
beacon: ( 10 7 ) ( 19 7 )
|
||||
( 19 13 ) ( 10 13 ) ;
|
||||
|
||||
line: [ ( 10 1 ) ( 10 6 ) ]
|
||||
[ ( 19 1 ) ( 19 6 ) ]
|
||||
[ ( 1 7 ) ( 9 7 ) ]
|
||||
[ ( 11 7 ) ( 18 7 ) ]
|
||||
[ ( 20 7 ) ( 28 7 ) ]
|
||||
[ ( 10 8 ) ( 10 12 ) ]
|
||||
[ ( 19 8 ) ( 19 12 ) ]
|
||||
[ ( 1 13 ) ( 9 13 ) ]
|
||||
[ ( 11 13 ) ( 18 13 ) ]
|
||||
[ ( 20 13 ) ( 28 13 ) ]
|
||||
[ ( 10 14 ) ( 10 19 ) ]
|
||||
[ ( 19 14 ) ( 19 19 ) ] ;
|
||||
30
atc/games/airports
Normal file
30
atc/games/airports
Normal file
@@ -0,0 +1,30 @@
|
||||
update = 6;
|
||||
newplane = 6;
|
||||
width = 30;
|
||||
height = 21;
|
||||
|
||||
exit: ( 13 0 x ) ( 0 10 d ) ;
|
||||
|
||||
beacon: ( 6 3 ) ( 19 4 ) ( 27 4 )
|
||||
( 27 10 )
|
||||
( 27 16 ) ( 13 16 ) ( 6 16 )
|
||||
( 13 10 )
|
||||
( 19 10 ) ;
|
||||
|
||||
airport: ( 6 5 w ) ( 23 4 a )
|
||||
( 19 7 w ) ( 25 10 d )
|
||||
( 24 16 a ) ( 13 13 x )
|
||||
( 6 13 w ) ;
|
||||
|
||||
line: [ ( 13 1 ) ( 13 9 ) ]
|
||||
[ ( 13 11 ) ( 13 12 ) ]
|
||||
[ ( 13 14 ) ( 13 15 ) ]
|
||||
[ ( 7 16 ) ( 12 16 ) ]
|
||||
[ ( 18 5 ) ( 14 9 ) ]
|
||||
[ ( 6 14 ) ( 6 15 ) ]
|
||||
[ ( 6 11 ) ( 6 12 ) ]
|
||||
[ ( 6 6 ) ( 6 9 ) ]
|
||||
[ ( 1 10 ) ( 12 10 ) ]
|
||||
[ ( 27 5 ) ( 27 9 ) ]
|
||||
[ ( 27 11 ) ( 27 15 ) ] ;
|
||||
|
||||
45
atc/games/box
Normal file
45
atc/games/box
Normal file
@@ -0,0 +1,45 @@
|
||||
update = 5;
|
||||
newplane = 6;
|
||||
width = 29;
|
||||
height = 21;
|
||||
|
||||
exit: ( 0 0 c ) ( 14 0 x ) ( 28 0 z )
|
||||
( 28 10 a )
|
||||
( 28 20 q ) ( 14 20 w ) ( 0 20 e )
|
||||
( 0 10 d ) ;
|
||||
|
||||
beacon: ( 4 4 ) ( 14 4 ) ( 24 4 )
|
||||
( 24 10 )
|
||||
( 24 16 ) ( 14 16 ) ( 4 16 )
|
||||
( 4 10 )
|
||||
( 14 13 ) ( 14 7 ) ;
|
||||
|
||||
airport: ( 9 7 a ) ( 19 7 d )
|
||||
( 19 13 d ) ( 9 13 a ) ;
|
||||
|
||||
line: [ ( 1 1 ) ( 3 3 ) ]
|
||||
[ ( 14 1 ) ( 14 3 ) ]
|
||||
[ ( 27 1 ) ( 25 3 ) ]
|
||||
[ ( 5 4 ) ( 13 4 ) ]
|
||||
[ ( 15 4 ) ( 23 4 ) ]
|
||||
[ ( 4 5 ) ( 4 9 ) ]
|
||||
[ ( 14 5 ) ( 14 6 ) ]
|
||||
[ ( 24 5 ) ( 24 9 ) ]
|
||||
[ ( 10 7 ) ( 13 7 ) ]
|
||||
[ ( 15 7 ) ( 18 7 ) ]
|
||||
[ ( 14 8 ) ( 14 9 ) ]
|
||||
[ ( 1 10 ) ( 3 10 ) ]
|
||||
[ ( 5 10 ) ( 23 10 ) ]
|
||||
[ ( 25 10 ) ( 27 10 ) ]
|
||||
[ ( 4 11 ) ( 4 15 ) ]
|
||||
[ ( 14 11 ) ( 14 12 ) ]
|
||||
[ ( 24 11 ) ( 24 15 ) ]
|
||||
[ ( 10 13 ) ( 13 13 ) ]
|
||||
[ ( 15 13 ) ( 18 13 ) ]
|
||||
[ ( 14 14 ) ( 14 15 ) ]
|
||||
[ ( 5 16 ) ( 13 16 ) ]
|
||||
[ ( 15 16 ) ( 23 16 ) ]
|
||||
[ ( 3 17 ) ( 1 19 ) ]
|
||||
[ ( 14 17 ) ( 14 19 ) ]
|
||||
[ ( 25 17 ) ( 27 19 ) ] ;
|
||||
|
||||
39
atc/games/crosshatch
Normal file
39
atc/games/crosshatch
Normal file
@@ -0,0 +1,39 @@
|
||||
update = 5;
|
||||
newplane = 5;
|
||||
width = 30;
|
||||
height = 21;
|
||||
|
||||
exit: ( 0 10 d ) ( 6 0 x )
|
||||
( 12 0 x ) ( 18 0 x )
|
||||
( 24 0 x ) ( 29 10 a )
|
||||
( 24 20 w ) ( 18 20 w )
|
||||
( 12 20 w ) ( 6 20 w ) ;
|
||||
|
||||
beacon: ( 6 10 ) ( 12 10 ) ( 18 10 ) ( 24 10 )
|
||||
( 6 5 ) ( 12 5 ) ( 18 5 ) ( 24 5 )
|
||||
( 12 15 ) ( 18 15 ) ;
|
||||
|
||||
airport: ( 9 15 a ) ( 21 15 d ) ( 15 5 d ) ;
|
||||
|
||||
line: [ ( 6 1 ) ( 6 4 ) ]
|
||||
[ ( 12 1 ) ( 12 4 ) ]
|
||||
[ ( 18 1 ) ( 18 4 ) ]
|
||||
[ ( 24 1 ) ( 24 4 ) ]
|
||||
[ ( 6 6 ) ( 6 9 ) ]
|
||||
[ ( 12 6 ) ( 12 9 ) ]
|
||||
[ ( 18 6 ) ( 18 9 ) ]
|
||||
[ ( 24 6 ) ( 24 9 ) ]
|
||||
[ ( 12 11 ) ( 12 14 ) ]
|
||||
[ ( 18 11 ) ( 18 14 ) ]
|
||||
[ ( 6 11 ) ( 6 19 ) ]
|
||||
[ ( 24 11 ) ( 24 19 ) ]
|
||||
[ ( 12 16 ) ( 12 19 ) ]
|
||||
[ ( 18 16 ) ( 18 19 ) ]
|
||||
[ ( 7 5 ) ( 11 5 ) ]
|
||||
[ ( 19 5 ) ( 23 5 ) ]
|
||||
[ ( 13 15 ) ( 17 15 ) ]
|
||||
[ ( 1 10 ) ( 5 10 ) ]
|
||||
[ ( 7 10 ) ( 11 10 ) ]
|
||||
[ ( 13 10 ) ( 17 10 ) ]
|
||||
[ ( 19 10 ) ( 23 10 ) ]
|
||||
[ ( 25 10 ) ( 29 10 ) ] ;
|
||||
14
atc/games/crossover
Normal file
14
atc/games/crossover
Normal file
@@ -0,0 +1,14 @@
|
||||
update = 5;
|
||||
newplane = 5;
|
||||
width = 29;
|
||||
height = 21;
|
||||
|
||||
exit: ( 0 0 c ) ( 8 0 c ) ( 20 0 z ) ( 28 0 z )
|
||||
( 28 20 q ) ( 20 20 q ) ( 8 20 e ) ( 0 20 e );
|
||||
|
||||
beacon: ( 14 6 ) ( 18 10 ) ( 14 14 ) ( 10 10 );
|
||||
|
||||
line: [ ( 0 0 ) ( 20 20 ) ]
|
||||
[ ( 8 0 ) ( 28 20 ) ]
|
||||
[ ( 20 0 ) ( 0 20 ) ]
|
||||
[ ( 28 0 ) ( 8 20 ) ];
|
||||
21
atc/games/default
Normal file
21
atc/games/default
Normal file
@@ -0,0 +1,21 @@
|
||||
update = 5;
|
||||
newplane = 10;
|
||||
width = 30;
|
||||
height = 21;
|
||||
|
||||
exit: ( 12 0 x ) ( 29 0 z ) ( 29 7 a ) ( 29 17 a )
|
||||
( 9 20 e ) ( 0 13 d ) ( 0 7 d ) ( 0 0 c ) ;
|
||||
|
||||
beacon: ( 12 7 ) ( 12 17 ) ;
|
||||
|
||||
airport: ( 20 15 w ) ( 20 18 d ) ;
|
||||
|
||||
line: [ ( 1 1 ) ( 6 6 ) ]
|
||||
[ ( 12 1 ) ( 12 6 ) ]
|
||||
[ ( 13 7 ) ( 28 7 ) ]
|
||||
[ ( 28 1 ) ( 13 16 ) ]
|
||||
[ ( 1 13 ) ( 11 13 ) ]
|
||||
[ ( 12 8 ) ( 12 16 ) ]
|
||||
[ ( 11 18 ) ( 10 19 ) ]
|
||||
[ ( 13 17 ) ( 28 17 ) ]
|
||||
[ ( 1 7 ) ( 11 7 ) ] ;
|
||||
15
atc/games/easy
Normal file
15
atc/games/easy
Normal file
@@ -0,0 +1,15 @@
|
||||
update = 7;
|
||||
newplane = 12;
|
||||
width = 15;
|
||||
height = 15;
|
||||
|
||||
exit: ( 7 0 x ) ( 14 0 z ) ( 12 14 q ) ( 0 14 e ) ;
|
||||
|
||||
beacon: ( 12 7 ) ;
|
||||
|
||||
airport: ( 7 8 w ) ;
|
||||
|
||||
line: [ ( 1 1 ) ( 6 6 ) ]
|
||||
[ ( 7 9 ) ( 12 14 ) ]
|
||||
[ ( 7 0 ) ( 7 14 ) ]
|
||||
[ ( 1 7 ) ( 11 7 ) ] ;
|
||||
22
atc/games/game_2
Normal file
22
atc/games/game_2
Normal file
@@ -0,0 +1,22 @@
|
||||
update = 5;
|
||||
newplane = 8;
|
||||
width = 30;
|
||||
height = 21;
|
||||
|
||||
exit: ( 12 0 x ) ( 29 0 z ) ( 29 6 a ) ( 29 13 a )
|
||||
( 9 20 e ) ( 0 13 d ) ( 0 6 d ) ( 0 0 c ) ;
|
||||
|
||||
beacon: ( 12 17 ) ( 23 6 ) ( 23 13 ) ( 25 17 )
|
||||
( 12 6 ) ( 12 13 ) ( 6 6 ) ;
|
||||
|
||||
airport: ( 18 17 d ) ;
|
||||
|
||||
line: [ ( 1 1 ) ( 16 16 ) ]
|
||||
[ ( 1 6 ) ( 28 6 ) ]
|
||||
[ ( 12 1 ) ( 12 17 ) ]
|
||||
[ ( 10 19 ) ( 28 1 ) ]
|
||||
[ ( 13 17 ) ( 17 17 ) ]
|
||||
[ ( 1 13 ) ( 28 13 ) ]
|
||||
[ ( 19 17 ) ( 24 17 ) ]
|
||||
[ ( 19 17 ) ( 22 14 ) ]
|
||||
[ ( 26 16 ) ( 28 14 ) ] ;
|
||||
17
atc/games/game_3
Normal file
17
atc/games/game_3
Normal file
@@ -0,0 +1,17 @@
|
||||
update = 5;
|
||||
newplane = 5;
|
||||
width = 30;
|
||||
height = 21;
|
||||
|
||||
exit: ( 12 0 x ) ( 0 6 d ) ( 29 12 a ) ( 26 20 q ) ;
|
||||
|
||||
beacon: ( 12 6 ) ;
|
||||
|
||||
airport: ( 8 11 x ) ;
|
||||
|
||||
line: [ ( 12 1 ) ( 12 5 ) ]
|
||||
[ ( 1 6 ) ( 11 6 ) ]
|
||||
[ ( 8 7 ) ( 8 10 ) ]
|
||||
[ ( 28 12 ) ( 19 12 ) ]
|
||||
[ ( 13 7 ) ( 25 19 ) ] ;
|
||||
|
||||
37
atc/games/game_4
Normal file
37
atc/games/game_4
Normal file
@@ -0,0 +1,37 @@
|
||||
update = 5;
|
||||
newplane = 5;
|
||||
width = 30;
|
||||
height = 21;
|
||||
|
||||
exit: ( 9 0 c ) ( 29 0 z ) ( 29 20 q ) ( 9 20 e )
|
||||
( 0 20 e ) ( 0 10 d ) ( 0 0 c ) ;
|
||||
|
||||
beacon: ( 5 5 ) ( 14 5 ) ( 24 5 ) ( 24 9 ) ( 24 11 )
|
||||
( 24 15 ) ( 14 15 ) ( 5 15 ) ( 5 10 ) ( 14 10 ) ;
|
||||
|
||||
airport: ( 19 9 a ) ( 19 11 a ) ;
|
||||
|
||||
line: [ ( 1 1 ) ( 4 4 ) ]
|
||||
[ ( 10 1 ) ( 13 4 ) ]
|
||||
[ ( 28 1 ) ( 25 4 ) ]
|
||||
[ ( 6 5 ) ( 13 5 ) ]
|
||||
[ ( 15 5 ) ( 23 5 ) ]
|
||||
[ ( 1 10 ) ( 13 10 ) ]
|
||||
[ ( 15 10 ) ( 17 10 ) ]
|
||||
[ ( 18 9 ) ( 18 9 ) ]
|
||||
[ ( 18 11 ) ( 18 11 ) ]
|
||||
[ ( 20 9 ) ( 23 9 ) ]
|
||||
[ ( 20 11 ) ( 23 11 ) ]
|
||||
[ ( 6 15 ) ( 13 15 ) ]
|
||||
[ ( 15 15 ) ( 24 15 ) ]
|
||||
[ ( 1 19 ) ( 4 16 ) ]
|
||||
[ ( 10 19 ) ( 13 16 ) ]
|
||||
[ ( 28 19 ) ( 25 16 ) ]
|
||||
[ ( 5 6 ) ( 5 9 ) ]
|
||||
[ ( 5 11 ) ( 5 14 ) ]
|
||||
[ ( 14 6 ) ( 14 9 ) ]
|
||||
[ ( 14 11 ) ( 14 14 ) ]
|
||||
[ ( 24 6 ) ( 24 8 ) ]
|
||||
[ ( 24 10 ) ( 24 10 ) ]
|
||||
[ ( 24 12 ) ( 24 14 ) ] ;
|
||||
|
||||
15
atc/games/novice
Normal file
15
atc/games/novice
Normal file
@@ -0,0 +1,15 @@
|
||||
update = 6;
|
||||
newplane = 6;
|
||||
width = 30;
|
||||
height = 21;
|
||||
|
||||
exit: ( 0 2 c ) ( 29 2 z )
|
||||
( 29 18 q ) ( 0 18 e ) ;
|
||||
|
||||
beacon: ( 8 10 ) ( 21 10 ) ;
|
||||
|
||||
line: [ ( 1 3 ) ( 7 9 ) ]
|
||||
[ ( 7 11 ) ( 1 17 ) ]
|
||||
[ ( 28 3 ) ( 22 9 ) ]
|
||||
[ ( 22 11 ) ( 28 17 ) ]
|
||||
[ ( 9 10 ) ( 20 10 ) ] ;
|
||||
21
atc/games/two-corners
Normal file
21
atc/games/two-corners
Normal file
@@ -0,0 +1,21 @@
|
||||
update = 5;
|
||||
newplane = 5;
|
||||
width = 30;
|
||||
height = 21;
|
||||
|
||||
exit: ( 0 0 c ) ( 10 0 x ) ( 29 10 a )
|
||||
( 29 20 q )
|
||||
( 19 20 w ) ( 0 10 d ) ;
|
||||
|
||||
beacon: ( 10 10 ) ( 19 10 ) ;
|
||||
|
||||
airport: ( 15 15 x ) ;
|
||||
|
||||
line: [ ( 1 1 ) ( 9 9 ) ]
|
||||
[ ( 10 1 ) ( 10 9 ) ]
|
||||
[ ( 1 10 ) ( 9 10 ) ]
|
||||
[ ( 11 10 ) ( 18 10 ) ]
|
||||
[ ( 15 11 ) ( 15 14 ) ]
|
||||
[ ( 20 10 ) ( 28 10 ) ]
|
||||
[ ( 19 11 ) ( 19 19 ) ]
|
||||
[ ( 20 11 ) ( 28 19 ) ] ;
|
||||
Reference in New Issue
Block a user