ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
psx_clut.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  * Additional copyright for this file:
8  * Copyright (C) 1999-2000 Revolution Software Ltd.
9  * This code is based on source code created by Revolution Software,
10  * used with permission.
11  *
12  * This program is free software: you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation, either version 3 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program. If not, see <http://www.gnu.org/licenses/>.
24  *
25  */
26 
27 #ifndef ICB_PSX_CLUT_H
28 #define ICB_PSX_CLUT_H
29 
30 namespace ICB {
31 
32 // Where the actor cluts go
33 #define CHARACTER_CLUT_X (0)
34 #define CHARACTER_CLUT_Y (240)
35 
36 // Where the actor alternate cluts go
37 #define CHARACTER_ALTERNATE_CLUT_X (512)
38 #define CHARACTER_ALTERNATE_CLUT_Y (500)
39 
40 // Where the background goes
41 #define BACKGROUND_CLUT_X (0)
42 #define BACKGROUND_CLUT_Y (496)
43 
44 // Where the icons put their CLUT's
45 #define ICONS_CLUT_X (0)
46 #define ICONS_CLUT_Y (497)
47 
48 // Where the text CLUT lives
49 #define TEXT_CLUT_X (0)
50 #define TEXT_CLUT_Y (498)
51 
52 // Where the layer Z-map CLUT lives
53 #define LAYERS_ZMAP_CLUT_X (0)
54 #define LAYERS_ZMAP_CLUT_Y (499)
55 
56 // Where the solid layers CLUT lives
57 #define LAYERS_SOLID_CLUT_X (0)
58 #define LAYERS_SOLID_CLUT_Y (500)
59 
60 // Where the solid layers CLUT lives
61 #define LAYERS_SOLIDFG_CLUT_X (0)
62 #define LAYERS_SOLIDFG_CLUT_Y (501)
63 
64 // Where the semi-trans additive CLUT lives
65 #define LAYERS_SEMIADD_CLUT_X (0)
66 #define LAYERS_SEMIADD_CLUT_Y (502)
67 
68 // Where the semi-trans average CLUT lives
69 #define LAYERS_SEMIAVG_CLUT_X (0)
70 #define LAYERS_SEMIAVG_CLUT_Y (503)
71 
72 // Where the remora sprites CLUT lives
73 #define REMORA_SPRITE_CLUT_X (0)
74 #define REMORA_SPRITE_CLUT_Y (504)
75 
76 // Where the props put their CLUT's
77 #define PROPS_CLUT_X (256)
78 #define PROPS_CLUT_Y (240)
79 #define PROPS_CLUT_MAX_Y (255)
80 
81 // Where the layer CLUT's live
82 #define LAYER_CLUT_X (512 + 128)
83 #define LAYER_CLUT_MAX_Y (511)
84 
85 // Where the PSX debug font lives
86 #define FNTLOAD_X (768)
87 #define FNTLOAD_Y (256)
88 
89 // Where the text characters get loaded into
90 #define TEXT_FONT_X (512)
91 #define TEXT_FONT_Y (240)
92 #define TEXT_FONT_MAX_X (1024)
93 #define TEXT_FONT_MAX_Y (256)
94 
95 } // End of namespace ICB
96 
97 #endif // #ifndef PSX_CLUT_H
Definition: actor.h:32