forked from aburch/simutrans
-
Notifications
You must be signed in to change notification settings - Fork 1
/
simskin.cc
213 lines (192 loc) · 8.78 KB
/
simskin.cc
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
#include "besch/skin_besch.h"
#include "besch/spezial_obj_tpl.h"
#include "simskin.h"
#include "tpl/slist_tpl.h"
/*
* Alle Skin-Bestandteile, die wir brauchen
*/
// menus
const skin_besch_t* skinverwaltung_t::werkzeuge_general = NULL;
const skin_besch_t* skinverwaltung_t::werkzeuge_simple = NULL;
const skin_besch_t* skinverwaltung_t::werkzeuge_dialoge = NULL;
const skin_besch_t* skinverwaltung_t::werkzeuge_toolbars = NULL;
const skin_besch_t* skinverwaltung_t::werkzeuge_background = NULL;
/* Window skin images are menus too! */
const skin_besch_t* skinverwaltung_t::button = NULL;
const skin_besch_t* skinverwaltung_t::round_button = NULL;
const skin_besch_t* skinverwaltung_t::check_button = NULL;
const skin_besch_t* skinverwaltung_t::posbutton = NULL;
const skin_besch_t* skinverwaltung_t::back = NULL;
const skin_besch_t* skinverwaltung_t::scrollbar = NULL;
const skin_besch_t* skinverwaltung_t::divider = NULL;
const skin_besch_t* skinverwaltung_t::editfield = NULL;
const skin_besch_t* skinverwaltung_t::listbox = NULL;
const skin_besch_t* skinverwaltung_t::gadget= NULL;
// symbol images
const skin_besch_t* skinverwaltung_t::biglogosymbol = NULL;
const skin_besch_t* skinverwaltung_t::logosymbol = NULL;
const skin_besch_t* skinverwaltung_t::neujahrsymbol = NULL;
const skin_besch_t* skinverwaltung_t::neueweltsymbol = NULL;
const skin_besch_t* skinverwaltung_t::flaggensymbol = NULL;
const skin_besch_t* skinverwaltung_t::meldungsymbol = NULL;
const skin_besch_t* skinverwaltung_t::zughaltsymbol = NULL;
const skin_besch_t* skinverwaltung_t::autohaltsymbol = NULL;
const skin_besch_t* skinverwaltung_t::schiffshaltsymbol = NULL;
const skin_besch_t* skinverwaltung_t::airhaltsymbol = NULL;
const skin_besch_t* skinverwaltung_t::monorailhaltsymbol = NULL;
const skin_besch_t* skinverwaltung_t::maglevhaltsymbol = NULL;
const skin_besch_t* skinverwaltung_t::narrowgaugehaltsymbol = NULL;
const skin_besch_t* skinverwaltung_t::bushaltsymbol = NULL;
const skin_besch_t* skinverwaltung_t::tramhaltsymbol = NULL;
const skin_besch_t* skinverwaltung_t::networksymbol = NULL;
const skin_besch_t* skinverwaltung_t::timelinesymbol = NULL;
const skin_besch_t* skinverwaltung_t::fastforwardsymbol = NULL;
const skin_besch_t* skinverwaltung_t::pausesymbol = NULL;
const skin_besch_t* skinverwaltung_t::electricity = NULL;
const skin_besch_t* skinverwaltung_t::intown = NULL;
const skin_besch_t* skinverwaltung_t::passagiere = NULL;
const skin_besch_t* skinverwaltung_t::post = NULL;
const skin_besch_t* skinverwaltung_t::waren = NULL;
const skin_besch_t* skinverwaltung_t::station_type = NULL;
const skin_besch_t* skinverwaltung_t::seasons_icons = NULL;
const skin_besch_t* skinverwaltung_t::message_options = NULL;
const skin_besch_t* skinverwaltung_t::color_options = NULL;
// cursors
const skin_besch_t* skinverwaltung_t::cursor_general = NULL; // new cursors
const skin_besch_t* skinverwaltung_t::bauigelsymbol = NULL;
const skin_besch_t* skinverwaltung_t::belegtzeiger = NULL;
const skin_besch_t* skinverwaltung_t::mouse_cursor = NULL;
// misc images
const skin_besch_t* skinverwaltung_t::construction_site = NULL;
const skin_besch_t* skinverwaltung_t::fussweg = NULL;
const skin_besch_t* skinverwaltung_t::pumpe = NULL;
const skin_besch_t* skinverwaltung_t::senke = NULL;
const skin_besch_t* skinverwaltung_t::tunnel_texture = NULL;
slist_tpl<const skin_besch_t *>skinverwaltung_t::extra_obj;
static spezial_obj_tpl<skin_besch_t> const misc_objekte[] = {
{ &skinverwaltung_t::senke, "PowerDest" },
{ &skinverwaltung_t::pumpe, "PowerSource" },
{ &skinverwaltung_t::construction_site, "Construction" },
{ &skinverwaltung_t::fussweg, "Sidewalk" },
{ &skinverwaltung_t::tunnel_texture, "TunnelTexture"},
{ NULL, NULL }
};
static spezial_obj_tpl<skin_besch_t> const menu_objekte[] = {
// new menu system
{ &skinverwaltung_t::button, "Button" },
{ &skinverwaltung_t::round_button, "Roundbutton" },
{ &skinverwaltung_t::check_button, "Checkbutton" },
{ &skinverwaltung_t::posbutton, "Posbutton" },
{ &skinverwaltung_t::scrollbar, "Scrollbar" },
{ &skinverwaltung_t::divider, "Divider" },
{ &skinverwaltung_t::editfield, "Editfield" },
{ &skinverwaltung_t::listbox, "Listbox" },
{ &skinverwaltung_t::back, "Back" },
{ &skinverwaltung_t::gadget, "Gadget" },
{ &skinverwaltung_t::werkzeuge_general, "GeneralTools" },
{ &skinverwaltung_t::werkzeuge_simple, "SimpleTools" },
{ &skinverwaltung_t::werkzeuge_dialoge, "DialogeTools" },
{ &skinverwaltung_t::werkzeuge_toolbars,"BarTools" },
{ NULL, NULL }
};
static spezial_obj_tpl<skin_besch_t> const symbol_objekte[] = {
{ &skinverwaltung_t::seasons_icons, "Seasons" },
{ &skinverwaltung_t::message_options, "MessageOptions" },
{ &skinverwaltung_t::color_options, "ColorOptions" },
{ &skinverwaltung_t::logosymbol, "Logo" },
{ &skinverwaltung_t::neujahrsymbol, "NewYear" },
{ &skinverwaltung_t::neueweltsymbol, "NewWorld" },
{ &skinverwaltung_t::flaggensymbol, "Flags" },
{ &skinverwaltung_t::meldungsymbol, "Message" },
{ &skinverwaltung_t::electricity, "Electricity" },
{ &skinverwaltung_t::intown, "InTown" },
{ &skinverwaltung_t::passagiere, "Passagiere" },
{ &skinverwaltung_t::post, "Post" },
{ &skinverwaltung_t::waren, "Waren" },
{ NULL, NULL }
};
// simutrans will work without those
static spezial_obj_tpl<skin_besch_t> const fakultative_objekte[] = {
{ &skinverwaltung_t::biglogosymbol, "BigLogo" },
{ &skinverwaltung_t::mouse_cursor, "Mouse" },
{ &skinverwaltung_t::zughaltsymbol, "TrainStop" },
{ &skinverwaltung_t::autohaltsymbol, "CarStop" },
{ &skinverwaltung_t::schiffshaltsymbol, "ShipStop" },
{ &skinverwaltung_t::bushaltsymbol, "BusStop" },
{ &skinverwaltung_t::airhaltsymbol, "AirStop" },
{ &skinverwaltung_t::monorailhaltsymbol, "MonorailStop" },
{ &skinverwaltung_t::maglevhaltsymbol, "MaglevStop" },
{ &skinverwaltung_t::narrowgaugehaltsymbol,"NarrowgaugeStop"},
{ &skinverwaltung_t::tramhaltsymbol, "TramStop" },
{ &skinverwaltung_t::networksymbol, "networksym" },
{ &skinverwaltung_t::timelinesymbol, "timelinesym" },
{ &skinverwaltung_t::fastforwardsymbol, "fastforwardsym" },
{ &skinverwaltung_t::pausesymbol, "pausesym" },
{ &skinverwaltung_t::station_type, "station_type" },
{ &skinverwaltung_t::werkzeuge_background,"ToolsBackground"},
{ NULL, NULL }
};
static spezial_obj_tpl<skin_besch_t> const cursor_objekte[] = {
// old cursors
{ &skinverwaltung_t::bauigelsymbol, "Builder" },
{ &skinverwaltung_t::cursor_general, "GeneralTools" },
{ &skinverwaltung_t::belegtzeiger, "Marked" },
{ NULL, NULL }
};
bool skinverwaltung_t::alles_geladen(skintyp_t type)
{
spezial_obj_tpl<skin_besch_t> const* sb;
switch (type) {
case menu: sb = menu_objekte+1; break;
case cursor: sb = cursor_objekte; break;
case symbol: sb = symbol_objekte; break;
case misc:
sb = misc_objekte+2;
// for compatibility: use sidewalk as tunneltexture
if (tunnel_texture==NULL) {
tunnel_texture = fussweg;
}
break;
case nothing: return true;
default: return false;
}
return ::alles_geladen(sb);
}
bool skinverwaltung_t::register_besch(skintyp_t type, const skin_besch_t* besch)
{
spezial_obj_tpl<skin_besch_t> const* sb;
switch (type) {
case menu: sb = menu_objekte; break;
case cursor: sb = cursor_objekte; break;
case symbol: sb = symbol_objekte; break;
case misc: sb = misc_objekte; break;
case nothing: return true;
default: return false;
}
if( !::register_besch(sb, besch) ) {
// currently no misc objects allowed ...
if( !(type==cursor || type==symbol) ) {
if( type==menu ) {
extra_obj.insert( besch );
dbg->message( "skinverwaltung_t::register_besch()","Extra object %s added.", besch->get_name() );
}
else {
dbg->warning("skinverwaltung_t::register_besch()","Spurious object '%s' loaded (will not be referenced anyway)!", besch->get_name() );
}
}
else {
return ::register_besch( fakultative_objekte, besch );
}
}
return true;
}
// return the extra_obj with this name
const skin_besch_t *skinverwaltung_t::get_extra( const char *str, int len )
{
FOR(slist_tpl<skin_besch_t const*>, const s, skinverwaltung_t::extra_obj) {
if (strncmp(str, s->get_name(), len) == 0) {
return s;
}
}
return NULL;
}