2003-03-05 19:04:34 +00:00
|
|
|
/* 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
|
2003-03-06 07:52:40 +00:00
|
|
|
#define game_screen_width 320
|
|
|
|
#define game_screen_height 192
|
|
|
|
#define full_screen_width 320
|
|
|
|
#define full_screen_height 200
|
2003-03-05 19:04:34 +00:00
|
|
|
|
2003-03-06 07:52:40 +00:00
|
|
|
#define tot_no_grids 70
|
2003-03-05 19:04:34 +00:00
|
|
|
|
2003-03-06 07:52:40 +00:00
|
|
|
#define grid_size 120
|
2003-03-05 19:04:34 +00:00
|
|
|
|
2003-03-06 07:52:40 +00:00
|
|
|
#define GRID_X 20
|
|
|
|
#define GRID_Y 24
|
|
|
|
#define GRID_W 16
|
|
|
|
#define GRID_H 8
|
2003-03-05 19:04:34 +00:00
|
|
|
|
2003-03-06 07:52:40 +00:00
|
|
|
#define GRID_W_SHIFT 4
|
|
|
|
#define GRID_H_SHIFT 3
|
2003-03-05 19:04:34 +00:00
|
|
|
|
|
|
|
#define top_left_x 128
|
2003-03-06 07:52:40 +00:00
|
|
|
#define top_left_y 136
|
2003-03-05 19:04:34 +00:00
|
|
|
|
|
|
|
//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
|
2003-03-06 07:52:40 +00:00
|
|
|
#define c_mega_set 112
|
2003-03-05 19:04:34 +00:00
|
|
|
#define c_grid_width 114
|
|
|
|
|
|
|
|
//#define next_mega_set
|
|
|
|
|
2003-03-06 07:52:40 +00:00
|
|
|
#define send_sync -1
|
|
|
|
#define lf_start_fx -2
|
2003-03-05 19:04:34 +00:00
|
|
|
#define safe_start_screen 0
|
|
|
|
|
|
|
|
//autoroute defines
|
2003-03-06 07:52:40 +00:00
|
|
|
#define upy 0
|
|
|
|
#define downy 1
|
|
|
|
#define lefty 2
|
|
|
|
#define righty 3
|
2003-03-05 19:04:34 +00:00
|
|
|
|
2003-03-06 07:52:40 +00:00
|
|
|
#define route_space 64
|
2003-03-05 19:04:34 +00:00
|
|
|
|
|
|
|
#define l_script 1
|
2003-03-06 07:52:40 +00:00
|
|
|
#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
|
2003-03-05 19:04:34 +00:00
|
|
|
#define l_talk 9
|
2003-03-06 07:52:40 +00:00
|
|
|
#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
|
2003-03-05 19:04:34 +00:00
|
|
|
#define l_simple_mod 16
|