]> git.deb.at Git - pkg/netris.git/blob - netris.h
Comment out the homepage URL
[pkg/netris.git] / netris.h
1 /*
2  * Netris -- A free networked version of T*tris
3  * Copyright (C) 1994-1996,1999  Mark H. Weaver <mhw@netris.org>
4  * 
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * as published by the Free Software Foundation; either version 2
8  * of the License, or (at your option) any later version.
9  * 
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  * 
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  *
19  * $Id: netris.h,v 1.28 1999/05/16 06:56:29 mhw Exp $
20  */
21
22 #ifndef NETRIS_H
23 #define NETRIS_H
24
25 #include "config.h"
26 #include <sys/time.h>
27 #include <assert.h>
28 #include <stdio.h>
29 #include <signal.h>
30
31 #define ExtFunc         /* Marks functions that need prototypes */
32
33 #ifdef NOEXT
34 # define EXT
35 # define IN(a) a
36 #else
37 # define EXT extern
38 # define IN(a)
39 #endif
40
41 #ifndef NULL
42 # define NULL ((void *)0)
43 #endif
44
45 #ifdef HAS_SIGPROCMASK
46 typedef sigset_t MySigSet;
47 #else
48 typedef int MySigSet;
49 #endif
50
51 /*
52  * The following definitions are to ensure network compatibility even if
53  * the sizes of ints and shorts are different.  I'm not sure exactly how
54  * to deal with this problem, so I've added an abstraction layer.
55  */
56
57 typedef short netint2;
58 typedef long netint4;
59
60 #define hton2(x) htons(x)
61 #define hton4(x) htonl(x)
62
63 #define ntoh2(x) ntohs(x)
64 #define ntoh4(x) ntohl(x)
65
66 #define DEFAULT_PORT 9284       /* Very arbitrary */
67
68 #define DEFAULT_KEYS "jkl mspf^l"
69
70 /* Protocol versions */
71 #define MAJOR_VERSION           1       
72 #define PROTOCOL_VERSION        3
73 #define ROBOT_VERSION           1
74
75 #define MAX_BOARD_WIDTH         32
76 #define MAX_BOARD_HEIGHT        64
77 #define MAX_SCREENS                     2
78
79 #define DEFAULT_INTERVAL        300000  /* Step-down interval in microseconds */
80
81 /* NP_startConn flags */
82 #define SCF_usingRobot          000001
83 #define SCF_fairRobot           000002
84 #define SCF_setSeed                     000004
85
86 /* Event masks */
87 #define EM_alarm                        000001
88 #define EM_key                          000002
89 #define EM_net                          000004
90 #define EM_robot                        000010
91 #define EM_any                          000777
92
93 typedef enum _GameType { GT_onePlayer, GT_classicTwo, GT_len } GameType;
94 typedef enum _BlockTypeA { BT_none, BT_white, BT_blue, BT_magenta,
95                                                         BT_cyan, BT_yellow, BT_green, BT_red,
96                                                         BT_wall, BT_len } BlockTypeA;
97 typedef enum _Dir { D_down, D_right, D_up, D_left } Dir;
98 typedef enum _Cmd { C_end, C_forw, C_back, C_left, C_right, C_plot } Cmd;
99 typedef enum _FDType { FT_read, FT_write, FT_except, FT_len } FDType;
100 typedef enum _MyEventType { E_none, E_alarm, E_key, E_net,
101                                                         E_lostConn, E_robot, E_lostRobot } MyEventType;
102 typedef enum _NetPacketType { NP_endConn, NP_giveJunk, NP_newPiece,
103                                                         NP_down, NP_left, NP_right,
104                                                         NP_rotate, NP_drop, NP_clear,
105                                                         NP_insertJunk, NP_startConn,
106                                                         NP_userName, NP_pause, NP_version,
107                                                         NP_byeBye } NetPacketType;
108
109 typedef signed char BlockType;
110
111 typedef struct _MyEvent {
112         MyEventType type;
113         union {
114                 char key;
115                 struct {
116                         NetPacketType type;
117                         int size;
118                         void *data;
119                 } net;
120                 struct {
121                         int size;
122                         char *data;
123                 } robot;
124         } u;
125 } MyEvent;
126
127 struct _EventGenRec;
128 typedef MyEventType (*EventGenFunc)(struct _EventGenRec *gen, MyEvent *event);
129
130 typedef struct _EventGenRec {
131         struct _EventGenRec *next;
132         int ready;
133         FDType fdType;
134         int fd;
135         EventGenFunc func;
136         int mask;
137 } EventGenRec;
138
139 typedef struct _Shape {
140         struct _Shape *rotateTo;
141         int initY, initX, mirrored;
142         Dir initDir;
143         BlockType type;
144         Cmd *cmds;
145 } Shape;
146
147 typedef struct _ShapeOption {
148         float weight;
149         Shape *shape;
150 } ShapeOption;
151
152 typedef int (*ShapeDrawFunc)(int scr, int y, int x,
153                                         BlockType type, void *data);
154
155 EXT GameType game;
156 EXT int boardHeight[MAX_SCREENS];
157 EXT int boardVisible[MAX_SCREENS], boardWidth[MAX_SCREENS];
158 EXT Shape *curShape[MAX_SCREENS];
159 EXT int curY[MAX_SCREENS], curX[MAX_SCREENS];
160 EXT char opponentName[16], opponentHost[256];
161 EXT int standoutEnable, colorEnable;
162 EXT int robotEnable, robotVersion, fairRobot;
163 EXT int protocolVersion;
164
165 EXT long initSeed;
166 EXT long stepDownInterval, speed;
167
168 EXT int myFlags, opponentFlags;
169
170 EXT char scratch[1024];
171
172 extern ShapeOption stdOptions[];
173 extern char *version_string;
174
175 #include "proto.h"
176
177 #endif /* NETRIS_H */
178
179 /*
180  * vi: ts=4 ai
181  * vim: noai si
182  */