blob: 803e3961cb8d2a35f5cbc9b26d43ea72adebe53d (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
/* ScummVM - Scumm Interpreter
* Copyright (C) 2003 The ScummVM project
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* $Header$
*
*/
#include "struc.h"
//This file is incomplete, several flags still missing.
#define key_buffer_size 80
#define sequence_count 3
//screen/grid defines
#define game_screen_width 320
#define game_screen_height 192
#define full_screen_width 320
#define full_screen_height 200
#define tot_no_grids 70
#define grid_size 120
#define GRID_X 20
#define GRID_Y 24
#define GRID_W 16
#define GRID_H 8
#define GRID_W_SHIFT 4
#define GRID_H_SHIFT 3
#define top_left_x 128
#define top_left_y 136
//item list defines
#define section_0_item 119
#define c_base_mode 0
#define c_base_mode56 56
#define c_action_mode 4
#define c_sp_colour 90
#define c_mega_set 112
#define c_grid_width 114
//#define next_mega_set
#define send_sync -1
#define lf_start_fx -2
#define safe_start_screen 0
//autoroute defines
#define upy 0
#define downy 1
#define lefty 2
#define righty 3
#define route_space 64
#define l_script 1
#define l_ar 2
#define l_ar_anim 3
#define l_ar_turning 4
#define l_alt 5
#define l_mod_animate 6
#define l_turning 7
#define l_cursor 8
#define l_talk 9
#define l_listen 10
#define l_stopped 11
#define l_choose 12
#define l_frames 13
#define l_pause 14
#define l_wait_synch 15
#define l_simple_mod 16
|