-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathveh_typedef.cpp
214 lines (195 loc) · 6.43 KB
/
veh_typedef.cpp
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 "vehicle.h"
#include "game.h"
// GENERAL GUIDELINES
// When adding a new vehicle, you MUST REMEMBER to insert it in the vhtype_id enum
// at the bottom of veh_type.h!
// also, before using PART, you MUST call VEHICLE
//
// To determine mount position for parts (dx, dy), check this scheme:
// orthogonal dir left: (Y-)
// ^
// back: X- -------> forward dir: X+
// v
// orthogonal dir right (Y+)
//
// i.e, if you want to add a part to the back from the center of vehicle,
// use dx = -1, dy = 0;
// for the part 1 tile forward and two tiles left from the center of vehicle,
// use dx = 1, dy = -2.
//
// Internal parts should be added after external on the same mount point, i.e:
// PART (0, 1, vp_seat); // put a seat (it's external)
// PART (0, 1, vp_controls); // put controls for driver here
// PART (0, 1, vp_seatbelt); // also, put a seatbelt here
// To determine, what parts can be external, and what can not, check
// vpart_id enum in veh_type.h file
// If you use wrong config, installation of part will fail
void game::init_vehicles()
{
vehicle *veh;
int index = 0;
int pi;
vtypes.push_back(new vehicle(this, (vhtype_id)index++)); // veh_null
vtypes.push_back(new vehicle(this, (vhtype_id)index++)); // veh_custom
#define VEHICLE(nm) { veh = new vehicle(this, (vhtype_id)index++); veh->name = nm; vtypes.push_back(veh); }
#define PART(mdx, mdy, id) { pi = veh->install_part(mdx, mdy, id); \
if (pi < 0) debugmsg("init_vehicles: '%s' part '%s'(%d) can't be installed to %d,%d", veh->name.c_str(), vpart_list[id].name, veh->parts.size(), mdx, mdy); }
// name
VEHICLE ("motorcycle");
// o
// ^
// #
// o
// dx, dy, part_id
PART (0, 0, vp_frame_v2);
PART (0, 0, vp_seat);
PART (0, 0, vp_controls);
PART (0, 0, vp_engine_gas_small);
PART (1, 0, vp_frame_handle);
PART (1, 0, vp_fuel_tank_gas);
PART (2, 0, vp_wheel);
PART (-1, 0, vp_wheel);
PART (-1, 0, vp_cargo_box);
// name
VEHICLE ("quad bike");
// 0^0
// #
// 0H0
// dx, dy, part_id
PART (0, 0, vp_frame_v2);
PART (0, 0, vp_seat);
PART (0, 0, vp_controls);
PART (0, 0, vp_seatbelt);
PART (1, 0, vp_frame_cover);
PART (1, 0, vp_engine_gas_med);
PART (1, 0, vp_fuel_tank_gas);
PART (1, 0, vp_steel_plate);
PART (-1,0, vp_frame_h);
// PART (-1,0, vp_engine_motor);
// PART (-1,0, vp_fuel_tank_plut);
PART (-1,0, vp_cargo_trunk);
PART (-1,0, vp_steel_plate);
PART (1, -1, vp_wheel_large);
PART (1, 1, vp_wheel_large);
PART (-1,-1, vp_wheel_large);
PART (-1, 1, vp_wheel_large);
// PART (1, -2, vp_blade_h);
// PART (1, 2, vp_blade_h);
// name
VEHICLE ("car");
// o--o
// |""|
// +##+
// +##+
// |HH|
// o++o
// dx, dy, part_id
PART (0, 0, vp_frame_v2);
PART (0, 0, vp_seat);
PART (0, 0, vp_seatbelt);
PART (0, 0, vp_controls);
PART (0, 0, vp_roof);
PART (0, 1, vp_frame_v2);
PART (0, 1, vp_seat);
PART (0, 1, vp_seatbelt);
PART (0, 1, vp_roof);
PART (0, -1, vp_door);
PART (0, 2, vp_door);
PART (-1, 0, vp_frame_v2);
PART (-1, 0, vp_seat);
PART (-1, 0, vp_seatbelt);
PART (-1, 0, vp_roof);
PART (-1, 1, vp_frame_v2);
PART (-1, 1, vp_seat);
PART (-1, 1, vp_seatbelt);
PART (-1, 1, vp_roof);
PART (-1, -1, vp_door);
PART (-1, 2, vp_door);
PART (1, 0, vp_frame_h);
PART (1, 0, vp_window);
PART (1, 1, vp_frame_h);
PART (1, 1, vp_window);
PART (1, -1, vp_frame_v);
PART (1, 2, vp_frame_v);
PART (2, 0, vp_frame_h);
PART (2, 0, vp_engine_gas_med);
PART (2, 1, vp_frame_h);
PART (2, -1, vp_wheel);
PART (2, 2, vp_wheel);
PART (-2, 0, vp_frame_v);
PART (-2, 0, vp_cargo_trunk);
PART (-2, 0, vp_muffler);
PART (-2, 0, vp_roof);
PART (-2, 1, vp_frame_v);
PART (-2, 1, vp_cargo_trunk);
PART (-2, 1, vp_roof);
PART (-2, -1, vp_board_v);
PART (-2, -1, vp_fuel_tank_gas);
PART (-2, 2, vp_board_v);
PART (-3, -1, vp_wheel);
PART (-3, 0, vp_door);
PART (-3, 1, vp_door);
PART (-3, 2, vp_wheel);
// name
VEHICLE ("truck");
// 0-^-0
// |"""|
// +###+
// |---|
// |HHH|
// 0HHH0
PART (0, 0, vp_frame_v);
PART (0, 0, vp_cargo_box);
PART (0, 0, vp_roof);
// PART (0, 0, vp_seatbelt);
PART (0, -1, vp_frame_v2);
PART (0, -1, vp_seat);
PART (0, -1, vp_seatbelt);
PART (0, -1, vp_roof);
PART (0, 1, vp_frame_v2);
PART (0, 1, vp_seat);
PART (0, 1, vp_seatbelt);
PART (0, 1, vp_roof);
PART (0, -2, vp_door);
PART (0, 2, vp_door);
PART (0, -1, vp_controls);
PART (1, 0, vp_frame_h);
PART (1, 0, vp_window);
PART (1, -1, vp_frame_h);
PART (1, -1, vp_window);
PART (1, 1, vp_frame_h);
PART (1, 1, vp_window);
PART (1, -2, vp_frame_v);
PART (1, 2, vp_frame_v);
PART (2, -1, vp_frame_h);
PART (2, 0, vp_frame_cover);
PART (2, 0, vp_engine_gas_med);
PART (2, 1, vp_frame_h);
PART (2, -2, vp_wheel_large);
PART (2, 2, vp_wheel_large);
PART (-1, -1, vp_board_h);
PART (-1, 0, vp_board_h);
PART (-1, 1, vp_board_h);
PART (-1, -2, vp_board_b);
PART (-1, -2, vp_fuel_tank_gas);
PART (-1, 2, vp_board_n);
PART (-1, 2, vp_fuel_tank_gas);
PART (-2, -1, vp_frame_v);
PART (-2, -1, vp_cargo_trunk);
PART (-2, 0, vp_frame_v);
PART (-2, 0, vp_cargo_trunk);
PART (-2, 1, vp_frame_v);
PART (-2, 1, vp_cargo_trunk);
PART (-2, -2, vp_board_v);
PART (-2, 2, vp_board_v);
PART (-3, -1, vp_frame_h);
PART (-3, -1, vp_cargo_trunk);
PART (-3, 0, vp_frame_h);
PART (-3, 0, vp_cargo_trunk);
PART (-3, 1, vp_frame_h);
PART (-3, 1, vp_cargo_trunk);
PART (-3, -2, vp_wheel_large);
PART (-3, 2, vp_wheel_large);
if (vtypes.size() != num_vehicles)
debugmsg("%d vehicles, %d types", vtypes.size(), num_vehicles);
}