-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathc_gen.c
278 lines (237 loc) Β· 6.02 KB
/
c_gen.c
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
/*
Map generator -- direct 1 to 1
translation from JS prototype
*/
#include <stdio.h>
#include "c_gen.h"
#include "c_map.h"
#include "p_game.h"
#include "i_math.h"
void js_horizontall_wall_randomizer (uint8_t map[511][511])
{
int xoff = 0;
int yoff = 0;
int cx = 0;
int cy = 0;
int x;
for (x = 31; x < 500; x += 12)
{
cx = x - get_random_int(0, 16, 1);
cy = 0;
while (cy < 490)
{
yoff = cy + get_random_int(3, 12, 1);
while (cy < yoff)
{
// console.log(cx, cy);
map[cx][cy] = 9;
map[cx + 1][cy] = 9;
cy++;
}
xoff = x - get_random_int(0, 12, 1);
const int xdel = cx < xoff ? 1 : -1;
while (cx != xoff)
{
map[cx][cy] = 9;
map[cx][cy + 1] = 9;
cx += xdel;
}
}
}
}
void js_make_doors (uint8_t map[511][511])
{
// raster scan
int x, y;
for (y = 0; y < 511; y += get_random_int(3, 8, 1))
{
bool skip = true;
for (x = 0; x < 511 - 4; x++)
{
if (map[x + 2][y - 1] != 0 && map[x + 2][y + 1] != 0 && map[x + 1][y - 1] != 0 && map[x + 1][y + 1] != 0 && map[x + 0][y] == 0 && map[x + 1][y] != 0 && map[x + 2][y] != 0 && map[x + 3][y] == 0 && map[x + 1][y - 1] != 0 && map[x + 1][y + 1] != 0 && map[x + 2][y - 1] != 0 && map[x + 2][y - 1] != 0)
{
if (skip)
{
skip = false;
x += 3;
continue;
}
const int door_type = get_random_int(5, 8, 1);
// map[x][y] = randInt(1, 4);
map[x + 1][y] = door_type;
map[x + 2][y] = door_type;
// map[x + 3][y] = randInt(1, 4);
x += 3; // really good optimalization i bet
if (get_random_int(0, 100, 1) < 50)
skip = true;
}
}
}
}
void js_gen_props (uint8_t map[511][511])
{
int z;
for (z = 0; z < 50000; z++)
{
const int x = get_random_int(10, 500, 1);
const int y = get_random_int(10, 500, 1);
if (x == 255 && y == 255)
continue;
// can spawn?
bool spawn = true;
int i;
for (i = x - 1; i <= x + 1; i++)
{
int j;
for (j = y - 1; j <= y + 1; j++)
if (map[i][j] != 0)
{
spawn = false;
break;
}
}
if (spawn)
{
const int ch = get_random_int(1, 19, 1);
if (ch < 15) // 15 from <21, 36> and 4 <41, 44>
map[x][y] = get_random_int(21, 36, 1);
else
map[x][y] = get_random_int(41, 44, 1);
}
}
}
void js_map_generator (uint8_t map[511][511])
{
js_horizontall_wall_randomizer(map);
int doors[4096][2]; /* fails sometimes! */
int doors_ptr = 0;
int x, y, i, j;
for (y = 0; y < 504; y += 16)
{
int nextDoorCheck = 0;
for (x = 0; x < 511; x++)
{
int type = 9;
if (x == nextDoorCheck)
{
if (map[x][y - 1] == 0 && map[x][y + 2] == 0)
{
type = 4;
// doors.push([x, y]);
doors[doors_ptr][0] = x;
doors[doors_ptr][1] = y;
doors_ptr++;
}
nextDoorCheck += get_random_int(6, 14, 1);
}
map[x][y] = type;
map[x][y + 1] = type;
}
}
for (i = 0; i < doors_ptr; i = i + 1)
{
// static walls only
// const floor_color = randInt(1, 4);
const int col = get_random_int(10, 16, 1);
const int orn = (col <= 12) ? col : 17 + (col - 13) % 4;
const int lampning = get_random_int(1, 3, 1) * 2 + 1;
const int winding = get_random_int(3, 5, 1);
// let markedlamps = [];
int markedlamps[1024][2];
int markedlamps_ptr = 0;
for (y = doors[i][1] + 2; y < doors[i][1] + 32; y += 1)
{
// check
if (y >= 510)
break;
if (map[doors[i][0]][y] != 0)
{
map[doors[i][0]][y] = col;
break;
}
// to left
for (x = doors[i][0] - 1; x > doors[i][0] - 32; x--)
{
if (x <= 10)
break;
if (map[x][y] != 0)
{
// map[x][y] = col;
map[x][y] = (y % winding == 0) ? orn : col;
break;
}
if (map[x][y - 1] != 0)
map[x][y - 1] = col;
if (map[x][y + 1] != 0)
map[x][y + 1] = col;
// if (map[x][y] == 0)
// map[x][y] = floor_color;
if (x % lampning == 0 && y % lampning == 0)
{
markedlamps[markedlamps_ptr][0] = x;
markedlamps[markedlamps_ptr][1] = y;
markedlamps_ptr++;
}
}
// to right
for (x = doors[i][0]; x < doors[i][0] + 32; x++)
{
if (x >= 510)
break;
if (map[x][y] != 0)
{
map[x][y] = (y % winding == 0) ? orn : col;
break;
}
if (map[x][y - 1] != 0)
map[x][y - 1] = col;
if (map[x][y + 1] != 0)
map[x][y + 1] = col;
// if (map[x][y] == 0)
// map[x][y] = floor_color;
if (x % lampning == 0 && y % lampning == 0)
{
markedlamps[markedlamps_ptr][0] = x;
markedlamps[markedlamps_ptr][1] = y;
markedlamps_ptr++;
}
}
// map[doors[i][0]][y] = 3;
} // {for each doors}
const int lamptype = get_random_int(37, 40, 1);
// int j;
for (j = 0; j < markedlamps_ptr; j++)
{
map[markedlamps[j][0]][markedlamps[j][1]] = lamptype;
}
}
for (i = 0; i < doors_ptr; i++)
{
map[doors[i][0]][doors[i][1]] = get_random_int(5, 8, 1);
map[doors[i][0]][doors[i][1] + 1] = get_random_int(5, 8, 1);
}
js_make_doors(map);
js_gen_props(map);
// let player out
for (y = 255; y > 255 - 16; y--)
{
map[255][y] = 0;
if (map[255 - 1][y] < MAP_DOOR_END && map[255 - 1][y] > MAP_DOOR_START)
map[255 - 1][y] = 9;
if (map[255 + 1][y] < MAP_DOOR_END && map[255 + 1][y] > MAP_DOOR_START)
map[255 + 1][y] = 9;
}
// secure far lands
for (i = 12; i < 511 - 12; i++)
{
map[i][12] = 9;
map[i][511 - 12] = 9;
map[12][i] = 9;
map[511 - 12][i] = 9;
}
}
void generate_map (map_t * map)
{
memset(map->tiles, 0, sizeof(map->tiles));
js_map_generator(map->tiles);
}