version 1.12 | | version 1.13 |
---|
| | |
/* | | /* |
* static char *rcsid_newserver_h = | | * static char *rcsid_newserver_h = |
* "$Id: newserver.h,v 1.12 2001/05/29 04:41:53 mwedel Exp $"; | | * "$Id: newserver.h,v 1.13 2001/06/04 06:41:02 mwedel Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
}; | | }; |
| | |
struct Map { | | struct Map { |
struct MapCell cells[11][11]; | | struct MapCell cells[MAP_CLIENT_X][MAP_CLIENT_Y]; |
}; | | }; |
| | |
/* True max is 16383 given current map compaction method */ | | /* True max is 16383 given current map compaction method */ |
| | |
uint32 update_look:1; /* If true, we need to send the look window */ | | uint32 update_look:1; /* If true, we need to send the look window */ |
uint32 can_write:1; /* Can we write to this socket? */ | | uint32 can_write:1; /* Can we write to this socket? */ |
uint16 look_position; /* start of drawing of look window */ | | uint16 look_position; /* start of drawing of look window */ |
| | uint8 mapx, mapy; /* How large a map the client wants */ |
| | |
/* Below here is information only relevant for old sockets */ | | /* Below here is information only relevant for old sockets */ |
char *comment; /* name or listen comment */ | | char *comment; /* name or listen comment */ |