ScummVM API documentation
room406.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef MADS_PHANTOM_ROOM406_H
23 #define MADS_PHANTOM_ROOM406_H
24 
25 #include "mads/madsv2/core/general.h"
26 
27 namespace MADS {
28 namespace MADSV2 {
29 namespace Phantom {
30 namespace Rooms {
31 
32 #define local (&scratch)
33 #define ss local->sprite
34 #define seq local->sequence
35 #define aa local->animation
36 
37 struct Scratch { /* Room local variables */
38 
39  int16 sprite[15]; /* Sprite series handles */
40  int16 sequence[15]; /* Sequence handles */
41  int16 animation[4]; /* Animation handles */
42  int16 frame_is_here; /* T if any frame is here */
43  int16 dyn_red;
44  int16 dyn_green;
45  int16 dyn_blue;
46  int16 dyn_yellow;
47  int16 frame_here_for_taking; /* T if a specific frame is here */
48 
49 
50 };
51 
52 /* ========================= Sprite Series =================== */
53 
54 #define fx_bend_down_9 0 /* rrd_9 */
55 #define fx_red_frame 1 /* rm401f0 */
56 #define fx_green_frame 2 /* rm401f1 */
57 #define fx_blue_frame 3 /* rm401f2 */
58 #define fx_yellow_frame 4 /* rm401f3 */
59 
60 /* ========================= Triggers ======================== */
61 
62 /* ========================= Other Macros ==================== */
63 
64 #define WEST_X 20
65 #define WEST_Y 122
66 
67 #define WALK_TO_WEST_X 66
68 #define WALK_TO_WEST_Y 122
69 
70 #define EAST_X 310
71 #define EAST_Y 118
72 
73 #define WALK_TO_EAST_X 271
74 #define WALK_TO_EAST_Y 118
75 
76 } // namespace Rooms
77 } // namespace Phantom
78 } // namespace MADSV2
79 } // namespace MADS
80 
81 #endif
Definition: sound_manager.h:38