-
Notifications
You must be signed in to change notification settings - Fork 118
/
Copy pathgangzones.inc
683 lines (550 loc) · 26.7 KB
/
gangzones.inc
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
#if defined gangzones_included
#endinput
#endif
#define gangzones_included
/**************************************/
// gangzones.inc - v2.2 - Last Updated: 28 April, 2018 - By Gammix & beijind
/***************************************/
#if !defined GANGZONE_DEFAULT_BORDER_SIZE
#define GANGZONE_DEFAULT_BORDER_SIZE 2.0
#endif
#if !defined GANGZONE_DEFAULT_NUMBER_SIZE
#define GANGZONE_DEFAULT_NUMBER_SIZE 1.0
#endif
#if !defined GANGZONE_DEFAULT_BORDER_COLOR
#define GANGZONE_DEFAULT_BORDER_COLOR 0xAA
#endif
#if !defined GANGZONE_DEFAULT_NUMBER_COLOR
#define GANGZONE_DEFAULT_NUMBER_COLOR 0xAA
#endif
static GangZone@MainZone[MAX_GANG_ZONES] = {-1, ...};
static GangZone@Border[MAX_GANG_ZONES][4];
static GangZone@Number1[MAX_GANG_ZONES][5];
static GangZone@Number2[MAX_GANG_ZONES][5];
static GangZone_CreateBorder(dest[], Float:minx, Float:miny, Float:maxx, Float:maxy, Float:bordersize) {
dest[0] = GangZoneCreate(minx - bordersize, miny + bordersize, minx + bordersize, maxy - bordersize);
dest[1] = GangZoneCreate(minx - bordersize, maxy - bordersize, maxx + bordersize, maxy + bordersize);
dest[2] = GangZoneCreate(maxx - bordersize, miny + bordersize, maxx + bordersize, maxy - bordersize);
dest[3] = GangZoneCreate(minx - bordersize, miny - bordersize, maxx + bordersize, miny + bordersize);
for (new i = 0; i < 4; i++) {
if (dest[i] == -1) {
for (i = 0; i < 4; i++) {
GangZoneDestroy(dest[i]);
dest[i] = -1;
}
return 0;
}
}
return 4;
}
static GangZone_CreateNumber(dest[], number, Float:centpos_x, Float:centpos_y, Float:numbersize) {
if (number < '0' || number > '9') {
return 0;
}
static const Float:LETTER_STROKE = 3.5;
static const Float:LETTER_XSQUASH = 0.7;
new ret = 0;
switch (number) {
case '0': {
new Float:stroke = (LETTER_STROKE * numbersize);
new Float:distance_x = (20.0 * numbersize * LETTER_XSQUASH);
new Float:distance_y = (20.0 * numbersize);
dest[0] = GangZoneCreate((centpos_x - distance_x - stroke), (centpos_y - distance_y - stroke), (centpos_x + distance_x + stroke), (centpos_y - distance_y + stroke)); // Down of 0
dest[1] = GangZoneCreate((centpos_x - distance_x - stroke), (centpos_y + distance_y + stroke), (centpos_x + distance_x + stroke), (centpos_y + distance_y - stroke)); // Up of 0
dest[2] = GangZoneCreate((centpos_x - distance_x - stroke), (centpos_y - distance_y + stroke), (centpos_x - distance_x + stroke), (centpos_y + distance_y - stroke)); // Left of 0
dest[3] = GangZoneCreate((centpos_x + distance_x - stroke), (centpos_y - distance_y + stroke), (centpos_x + distance_x + stroke), (centpos_y + distance_y - stroke)); // Right of 0
ret = 4;
}
case '1': {
new Float:stroke = (LETTER_STROKE * numbersize);
new Float:distance_y = (20.0 * numbersize);
dest[0] = GangZoneCreate((centpos_x - stroke), (centpos_y - distance_y - stroke),(centpos_x + stroke), (centpos_y + distance_y + stroke));
ret = 1;
}
case '2': {
new Float:stroke = (LETTER_STROKE * numbersize);
new Float:distance_y = (20.0 * numbersize);
new Float:distance_x = (25.0 * numbersize * LETTER_XSQUASH);
dest[0] = GangZoneCreate((centpos_x - distance_x), (centpos_y + distance_y - stroke), (centpos_x + distance_x), (centpos_y + distance_y + stroke)); // Up
dest[1] = GangZoneCreate((centpos_x + distance_x - (2 * stroke)),(centpos_y + stroke), (centpos_x + distance_x), (centpos_y + distance_y - stroke)); // Right Stick
dest[2] = GangZoneCreate((centpos_x - distance_x), (centpos_y - stroke), (centpos_x + distance_x), (centpos_y + stroke)); // Middle
dest[3] = GangZoneCreate((centpos_x - distance_x), (centpos_y - distance_y + stroke), (centpos_x - distance_x + (2 * stroke)),(centpos_y - stroke)); // Left Stick
dest[4] = GangZoneCreate((centpos_x - distance_x), (centpos_y - distance_y - stroke), (centpos_x + distance_x), (centpos_y - distance_y + stroke)); // Down
ret = 5;
}
case '3': {
new Float:stroke = (LETTER_STROKE * numbersize);
new Float:distance_y = (20.0 * numbersize);
new Float:distance_x = (25.0 * numbersize * LETTER_XSQUASH);
dest[0] = GangZoneCreate((centpos_x - distance_x), (centpos_y + distance_y - stroke), (centpos_x + distance_x), (centpos_y + distance_y + stroke)); // Up
dest[1] = GangZoneCreate((centpos_x + distance_x), (centpos_y - distance_y - stroke), (centpos_x + distance_x + (2 * stroke)),(centpos_y + distance_y + stroke)); // Stick
dest[2] = GangZoneCreate((centpos_x - distance_x), (centpos_y - stroke), (centpos_x + distance_x), (centpos_y + stroke)); // Middle
dest[3] = GangZoneCreate((centpos_x - distance_x), (centpos_y - distance_y - stroke), (centpos_x + distance_x), (centpos_y - distance_y + stroke)); // Down
ret = 4;
}
case '4': {
new Float:stroke = (LETTER_STROKE * numbersize);
new Float:distance_y = (20.0 * numbersize);
new Float:distance_x = (25.0 * numbersize * LETTER_XSQUASH);
dest[0] = GangZoneCreate((centpos_x - distance_x), (centpos_y + distance_y), (centpos_x - distance_x + (2 * stroke)), (centpos_y + stroke)); // Left
dest[1] = GangZoneCreate((centpos_x - distance_x), (centpos_y - stroke), (centpos_x + distance_x), (centpos_y + stroke));// Middle
dest[2] = GangZoneCreate((centpos_x + distance_x), (centpos_y - distance_y), (centpos_x + distance_x + (2 * stroke)), (centpos_y + distance_y)); // Stick
ret = 3;
}
case '5': {
new Float:stroke = (LETTER_STROKE * numbersize);
new Float:distance_y = (20.0 * numbersize);
new Float:distance_x = (25.0 * numbersize * LETTER_XSQUASH);
dest[0] = GangZoneCreate((centpos_x - distance_x - stroke), (centpos_y + distance_y - stroke), (centpos_x + distance_x + stroke), (centpos_y + distance_y + stroke)); // Up
dest[1] = GangZoneCreate((centpos_x - distance_x - stroke), (centpos_y + stroke), (centpos_x - distance_x + stroke), (centpos_y + distance_y - stroke)); // Left Stick
dest[2] = GangZoneCreate((centpos_x - distance_x - stroke), (centpos_y - stroke), (centpos_x + distance_x + stroke), (centpos_y + stroke)); // Middle
dest[3] = GangZoneCreate((centpos_x + distance_x - stroke), (centpos_y - stroke), (centpos_x + distance_x + stroke), (centpos_y - distance_y + stroke)); // Right Stick
dest[4] = GangZoneCreate((centpos_x - distance_x - stroke), (centpos_y - distance_y - stroke), (centpos_x + distance_x + stroke), (centpos_y - distance_y + stroke)); // Down
ret = 5;
}
case '6': {
new Float:stroke = (LETTER_STROKE * numbersize);
new Float:distance_y = (20.0 * numbersize);
new Float:distance_x = (25.0 * numbersize * LETTER_XSQUASH);
dest[0] = GangZoneCreate((centpos_x - distance_x), (centpos_y + distance_y - stroke), (centpos_x + distance_x), (centpos_y + distance_y + stroke)); // Up
dest[1] = GangZoneCreate((centpos_x - distance_x - (2 * stroke)), (centpos_y + distance_y + stroke), (centpos_x - distance_x), (centpos_y - distance_y - stroke)); // Main Left Stick
dest[2] = GangZoneCreate((centpos_x - distance_x), (centpos_y - stroke), (centpos_x + distance_x), (centpos_y + stroke)); // Middle
dest[3] = GangZoneCreate((centpos_x - distance_x), (centpos_y - distance_y - stroke), (centpos_x + distance_x), (centpos_y - distance_y + stroke)); // Down
dest[4] = GangZoneCreate((centpos_x + distance_x - (2 * stroke)), (centpos_y - distance_y + stroke), (centpos_x + distance_x), (centpos_y - stroke)); // Right small stick
ret = 5;
}
case '7': {
new Float:stroke = (LETTER_STROKE * numbersize);
new Float:distance_y = (20.0 * numbersize);
new Float:distance_x = (15.0 * numbersize * LETTER_XSQUASH);
dest[0] = GangZoneCreate((centpos_x + distance_x - stroke), (centpos_y - distance_y - stroke), (centpos_x + distance_x + stroke), (centpos_y + distance_y - stroke)); // Stick of 7
dest[1] = GangZoneCreate((centpos_x - distance_x - distance_x), (centpos_y + distance_y - stroke), (centpos_x + distance_x + stroke), (centpos_y + distance_y + stroke)); // Up of 7
ret = 2;
}
case '8': {
new Float:stroke = (LETTER_STROKE * numbersize);
new Float:distance_y = (20.0 * numbersize);
new Float:distance_x = (25.0 * numbersize * LETTER_XSQUASH);
dest[0] = GangZoneCreate((centpos_x - distance_x - stroke), (centpos_y + distance_y + stroke), (centpos_x - distance_x + stroke), (centpos_y - distance_y - stroke)); // Left stick
dest[1] = GangZoneCreate((centpos_x + distance_x - stroke), (centpos_y + distance_y + stroke), (centpos_x + distance_x + stroke), (centpos_y - distance_y - stroke)); // Right stick
dest[2] = GangZoneCreate((centpos_x - distance_x + stroke), (centpos_y + distance_y - stroke), (centpos_x + distance_x - stroke), (centpos_y + distance_y + stroke)); // Up
dest[3] = GangZoneCreate((centpos_x - distance_x + stroke), (centpos_y - stroke), (centpos_x + distance_x - stroke), (centpos_y + stroke)); // Center
dest[4] = GangZoneCreate((centpos_x - distance_x + stroke), (centpos_y - distance_y - stroke), (centpos_x + distance_x - stroke), (centpos_y - distance_y + stroke)); // Down
ret = 5;
}
case '9': {
new Float:stroke = (LETTER_STROKE * numbersize);
new Float:distance_y = (20.0 * numbersize);
new Float:distance_x = (25.0 * numbersize * LETTER_XSQUASH);
dest[0] = GangZoneCreate((centpos_x - distance_x - stroke), centpos_y, (centpos_x - distance_x + stroke), (centpos_y + distance_y - stroke)); // Left Stick
dest[1] = GangZoneCreate((centpos_x + distance_x), (centpos_y - distance_y - stroke), (centpos_x + distance_x + (2 * stroke)), (centpos_y + distance_y + stroke)); // Right Stick
dest[2] = GangZoneCreate((centpos_x - distance_x - stroke), (centpos_y + distance_y - stroke), (centpos_x + distance_x), (centpos_y + distance_y + stroke)); // Up
dest[3] = GangZoneCreate((centpos_x - distance_x + stroke), centpos_y, (centpos_x + distance_x), (centpos_y + stroke + stroke)); // Middle
dest[4] = GangZoneCreate((centpos_x - distance_x - stroke), (centpos_y - distance_y - stroke), (centpos_x + distance_x), (centpos_y - distance_y + stroke)); // Down
ret = 5;
}
}
for (new i = 0; i < ret; i++) {
if (dest[i] == -1) {
for (i = 0; i < ret; i++) {
GangZoneDestroy(dest[i]);
dest[i] = -1;
}
return 0;
}
}
return ret;
}
stock GangZone_Create(Float:minx, Float:miny, Float:maxx, Float:maxy, number = -1, Float:bordersize = GANGZONE_DEFAULT_BORDER_SIZE, Float:numbersize = GANGZONE_DEFAULT_NUMBER_SIZE) {
new index = -1;
for (new i = 0; i < MAX_GANG_ZONES; i++) {
if (GangZone@MainZone[i] == -1) {
index = i;
break;
}
}
if (index == -1) {
return -1;
}
GangZone@MainZone[index] = GangZoneCreate(minx, miny, maxx, maxy);
if (GangZone@MainZone[index] == -1) {
return -1;
}
GangZone@Border[index][0] = -1;
GangZone@Border[index][1] = -1;
GangZone@Border[index][2] = -1;
GangZone@Border[index][3] = -1;
GangZone@Number1[index][0] = -1;
GangZone@Number1[index][1] = -1;
GangZone@Number1[index][2] = -1;
GangZone@Number1[index][3] = -1;
GangZone@Number1[index][4] = -1;
GangZone@Number2[index][0] = -1;
GangZone@Number2[index][1] = -1;
GangZone@Number2[index][2] = -1;
GangZone@Number2[index][3] = -1;
GangZone@Number2[index][4] = -1;
if (bordersize != 0.0) {
if (GangZone_CreateBorder(GangZone@Border[index], minx, miny, maxx, maxy, bordersize) == 0) {
GangZoneDestroy(GangZone@MainZone[index]);
GangZone@MainZone[index] = -1;
return -1;
}
}
if (numbersize != 0.0) {
if (number == -1) {
number = (index % 100);
}
if (number >= 0 && number <= 9) {
new Float:centpos_x = ((minx + maxx) / 2);
new Float:centpos_y = ((miny + maxy) / 2);
new chars[2];
format(chars, sizeof(chars), "%i", number);
if (GangZone_CreateNumber(GangZone@Number1[index], chars[0], centpos_x, centpos_y, numbersize) == 0) {
GangZoneDestroy(GangZone@MainZone[index]);
GangZone@MainZone[index] = -1;
GangZoneDestroy(GangZone@Border[index][0]);
GangZoneDestroy(GangZone@Border[index][1]);
GangZoneDestroy(GangZone@Border[index][2]);
GangZoneDestroy(GangZone@Border[index][3]);
return -1;
}
}
else if (number >= 10 && number <= 99) {
const Float:NUMBER_DISTANCE = 25.0;
new Float:centpos_x = ((minx + maxx) / 2);
new Float:centpos_y = ((miny + maxy) / 2);
new chars[3];
format(chars, sizeof(chars), "%i", number);
new numZones = GangZone_CreateNumber(GangZone@Number1[index], chars[0], (centpos_x - (NUMBER_DISTANCE * numbersize)), centpos_y, numbersize);
if (numZones == 0) {
GangZoneDestroy(GangZone@MainZone[index]);
GangZone@MainZone[index] = -1;
GangZoneDestroy(GangZone@Border[index][0]);
GangZoneDestroy(GangZone@Border[index][1]);
GangZoneDestroy(GangZone@Border[index][2]);
GangZoneDestroy(GangZone@Border[index][3]);
return -1;
}
if (GangZone_CreateNumber(GangZone@Number2[index], chars[1], (centpos_x + (NUMBER_DISTANCE * numbersize)), centpos_y, numbersize) == 0) {
GangZoneDestroy(GangZone@MainZone[index]);
GangZone@MainZone[index] = -1;
GangZoneDestroy(GangZone@Border[index][0]);
GangZoneDestroy(GangZone@Border[index][1]);
GangZoneDestroy(GangZone@Border[index][2]);
GangZoneDestroy(GangZone@Border[index][3]);
for (new i = 0; i < numZones; i++) {
GangZoneDestroy(GangZone@Number1[index][i]);
}
return -1;
}
}
else {
GangZoneDestroy(GangZone@MainZone[index]);
GangZone@MainZone[index] = -1;
GangZoneDestroy(GangZone@Border[index][0]);
GangZoneDestroy(GangZone@Border[index][1]);
GangZoneDestroy(GangZone@Border[index][2]);
GangZoneDestroy(GangZone@Border[index][3]);
return -1;
}
}
return index;
}
#if defined _ALS_GangZoneCreate
#undef GangZoneCreate
#else
#define _ALS_GangZoneCreate
#endif
#define GangZoneCreate GangZone_Create
stock GangZone_Destroy(gangzone) {
if (gangzone < 0 || gangzone >= MAX_GANG_ZONES) {
return 0;
}
if (GangZone@MainZone[gangzone] == -1) {
return 0;
}
GangZoneDestroy(GangZone@MainZone[gangzone]);
GangZone@MainZone[gangzone] = -1;
GangZoneDestroy(GangZone@Border[gangzone][0]);
GangZoneDestroy(GangZone@Border[gangzone][1]);
GangZoneDestroy(GangZone@Border[gangzone][2]);
GangZoneDestroy(GangZone@Border[gangzone][3]);
GangZoneDestroy(GangZone@Number1[gangzone][0]);
GangZoneDestroy(GangZone@Number1[gangzone][1]);
GangZoneDestroy(GangZone@Number1[gangzone][2]);
GangZoneDestroy(GangZone@Number1[gangzone][3]);
GangZoneDestroy(GangZone@Number1[gangzone][4]);
GangZoneDestroy(GangZone@Number2[gangzone][0]);
GangZoneDestroy(GangZone@Number2[gangzone][1]);
GangZoneDestroy(GangZone@Number2[gangzone][2]);
GangZoneDestroy(GangZone@Number2[gangzone][3]);
GangZoneDestroy(GangZone@Number2[gangzone][4]);
return 1;
}
#if defined _ALS_GangZoneDestroy
#undef GangZoneDestroy
#else
#define _ALS_GangZoneDestroy
#endif
#define GangZoneDestroy GangZone_Destroy
stock GangZone_ShowForPlayer(playerid, gangzone, color, bordercolor = GANGZONE_DEFAULT_BORDER_COLOR, numbercolor = GANGZONE_DEFAULT_NUMBER_COLOR) {
if (gangzone < 0 || gangzone >= MAX_GANG_ZONES) {
return 0;
}
if (GangZone@MainZone[gangzone] == -1) {
return 0;
}
GangZoneShowForPlayer(playerid, GangZone@MainZone[gangzone], color);
GangZoneShowForPlayer(playerid, GangZone@Border[gangzone][0], bordercolor);
GangZoneShowForPlayer(playerid, GangZone@Border[gangzone][1], bordercolor);
GangZoneShowForPlayer(playerid, GangZone@Border[gangzone][2], bordercolor);
GangZoneShowForPlayer(playerid, GangZone@Border[gangzone][3], bordercolor);
GangZoneShowForPlayer(playerid, GangZone@Number1[gangzone][0], numbercolor);
GangZoneShowForPlayer(playerid, GangZone@Number1[gangzone][1], numbercolor);
GangZoneShowForPlayer(playerid, GangZone@Number1[gangzone][2], numbercolor);
GangZoneShowForPlayer(playerid, GangZone@Number1[gangzone][3], numbercolor);
GangZoneShowForPlayer(playerid, GangZone@Number1[gangzone][4], numbercolor);
GangZoneShowForPlayer(playerid, GangZone@Number2[gangzone][0], numbercolor);
GangZoneShowForPlayer(playerid, GangZone@Number2[gangzone][1], numbercolor);
GangZoneShowForPlayer(playerid, GangZone@Number2[gangzone][2], numbercolor);
GangZoneShowForPlayer(playerid, GangZone@Number2[gangzone][3], numbercolor);
GangZoneShowForPlayer(playerid, GangZone@Number2[gangzone][4], numbercolor);
return 1;
}
#if defined _ALS_GangZoneShowForPlayer
#undef GangZoneShowForPlayer
#else
#define _ALS_GangZoneShowForPlayer
#endif
#define GangZoneShowForPlayer GangZone_ShowForPlayer
stock GangZone_ShowForAll(gangzone, color, bordercolor = GANGZONE_DEFAULT_BORDER_COLOR, numbercolor = GANGZONE_DEFAULT_NUMBER_COLOR) {
if (gangzone < 0 || gangzone >= MAX_GANG_ZONES) {
return 0;
}
if (GangZone@MainZone[gangzone] == -1) {
return 0;
}
GangZoneShowForAll(GangZone@MainZone[gangzone], color);
GangZoneShowForAll(GangZone@Border[gangzone][0], bordercolor);
GangZoneShowForAll(GangZone@Border[gangzone][1], bordercolor);
GangZoneShowForAll(GangZone@Border[gangzone][2], bordercolor);
GangZoneShowForAll(GangZone@Border[gangzone][3], bordercolor);
GangZoneShowForAll(GangZone@Number1[gangzone][0], numbercolor);
GangZoneShowForAll(GangZone@Number1[gangzone][1], numbercolor);
GangZoneShowForAll(GangZone@Number1[gangzone][2], numbercolor);
GangZoneShowForAll(GangZone@Number1[gangzone][3], numbercolor);
GangZoneShowForAll(GangZone@Number1[gangzone][4], numbercolor);
GangZoneShowForAll(GangZone@Number2[gangzone][0], numbercolor);
GangZoneShowForAll(GangZone@Number2[gangzone][1], numbercolor);
GangZoneShowForAll(GangZone@Number2[gangzone][2], numbercolor);
GangZoneShowForAll(GangZone@Number2[gangzone][3], numbercolor);
GangZoneShowForAll(GangZone@Number2[gangzone][4], numbercolor);
return 1;
}
#if defined _ALS_GangZoneShowForAll
#undef GangZoneShowForAll
#else
#define _ALS_GangZoneShowForAll
#endif
#define GangZoneShowForAll GangZone_ShowForAll
stock GangZone_HideForPlayer(playerid, gangzone) {
if (gangzone < 0 || gangzone >= MAX_GANG_ZONES) {
return 0;
}
if (GangZone@MainZone[gangzone] == -1) {
return 0;
}
GangZoneHideForPlayer(playerid, GangZone@MainZone[gangzone]);
GangZoneHideForPlayer(playerid, GangZone@Border[gangzone][0]);
GangZoneHideForPlayer(playerid, GangZone@Border[gangzone][1]);
GangZoneHideForPlayer(playerid, GangZone@Border[gangzone][2]);
GangZoneHideForPlayer(playerid, GangZone@Border[gangzone][3]);
GangZoneHideForPlayer(playerid, GangZone@Number1[gangzone][0]);
GangZoneHideForPlayer(playerid, GangZone@Number1[gangzone][1]);
GangZoneHideForPlayer(playerid, GangZone@Number1[gangzone][2]);
GangZoneHideForPlayer(playerid, GangZone@Number1[gangzone][3]);
GangZoneHideForPlayer(playerid, GangZone@Number1[gangzone][4]);
GangZoneHideForPlayer(playerid, GangZone@Number2[gangzone][0]);
GangZoneHideForPlayer(playerid, GangZone@Number2[gangzone][1]);
GangZoneHideForPlayer(playerid, GangZone@Number2[gangzone][2]);
GangZoneHideForPlayer(playerid, GangZone@Number2[gangzone][3]);
GangZoneHideForPlayer(playerid, GangZone@Number2[gangzone][4]);
return 1;
}
#if defined _ALS_GangZoneHideForPlayer
#undef GangZoneHideForPlayer
#else
#define _ALS_GangZoneHideForPlayer
#endif
#define GangZoneHideForPlayer GangZone_HideForPlayer
stock GangZone_HideForAll(gangzone) {
if (gangzone < 0 || gangzone >= MAX_GANG_ZONES) {
return 0;
}
if (GangZone@MainZone[gangzone] == -1) {
return 0;
}
GangZoneHideForAll(GangZone@MainZone[gangzone]);
GangZoneHideForAll(GangZone@Border[gangzone][0]);
GangZoneHideForAll(GangZone@Border[gangzone][1]);
GangZoneHideForAll(GangZone@Border[gangzone][2]);
GangZoneHideForAll(GangZone@Border[gangzone][3]);
GangZoneHideForAll(GangZone@Number1[gangzone][0]);
GangZoneHideForAll(GangZone@Number1[gangzone][1]);
GangZoneHideForAll(GangZone@Number1[gangzone][2]);
GangZoneHideForAll(GangZone@Number1[gangzone][3]);
GangZoneHideForAll(GangZone@Number1[gangzone][4]);
GangZoneHideForAll(GangZone@Number2[gangzone][0]);
GangZoneHideForAll(GangZone@Number2[gangzone][1]);
GangZoneHideForAll(GangZone@Number2[gangzone][2]);
GangZoneHideForAll(GangZone@Number2[gangzone][3]);
GangZoneHideForAll(GangZone@Number2[gangzone][4]);
return 1;
}
#if defined _ALS_GangZoneHideForAll
#undef GangZoneHideForAll
#else
#define _ALS_GangZoneHideForAll
#endif
#define GangZoneHideForAll GangZone_HideForAll
stock GangZone_FlashForPlayer(playerid, gangzone, flashcolor, borderflashcolor = 0x00, numberflashcolor = 0x00) {
if (gangzone < 0 || gangzone >= MAX_GANG_ZONES) {
return 0;
}
if (GangZone@MainZone[gangzone] == -1) {
return 0;
}
GangZoneFlashForPlayer(playerid, GangZone@MainZone[gangzone], flashcolor);
if (borderflashcolor != 0x00) {
GangZoneFlashForPlayer(playerid, GangZone@Border[gangzone][0], borderflashcolor);
GangZoneFlashForPlayer(playerid, GangZone@Border[gangzone][1], borderflashcolor);
GangZoneFlashForPlayer(playerid, GangZone@Border[gangzone][2], borderflashcolor);
GangZoneFlashForPlayer(playerid, GangZone@Border[gangzone][3], borderflashcolor);
}
if (numberflashcolor != 0x00) {
GangZoneFlashForPlayer(playerid, GangZone@Number1[gangzone][0], numberflashcolor);
GangZoneFlashForPlayer(playerid, GangZone@Number1[gangzone][1], numberflashcolor);
GangZoneFlashForPlayer(playerid, GangZone@Number1[gangzone][2], numberflashcolor);
GangZoneFlashForPlayer(playerid, GangZone@Number1[gangzone][3], numberflashcolor);
GangZoneFlashForPlayer(playerid, GangZone@Number1[gangzone][4], numberflashcolor);
GangZoneFlashForPlayer(playerid, GangZone@Number2[gangzone][0], numberflashcolor);
GangZoneFlashForPlayer(playerid, GangZone@Number2[gangzone][1], numberflashcolor);
GangZoneFlashForPlayer(playerid, GangZone@Number2[gangzone][2], numberflashcolor);
GangZoneFlashForPlayer(playerid, GangZone@Number2[gangzone][3], numberflashcolor);
GangZoneFlashForPlayer(playerid, GangZone@Number2[gangzone][4], numberflashcolor);
}
return 1;
}
#if defined _ALS_GangZoneFlashForPlayer
#undef GangZoneFlashForPlayer
#else
#define _ALS_GangZoneFlashForPlayer
#endif
#define GangZoneFlashForPlayer GangZone_FlashForPlayer
stock GangZone_FlashForAll(gangzone, flashcolor, borderflashcolor = 0x00, numberflashcolor = 0x00) {
if (gangzone < 0 || gangzone >= MAX_GANG_ZONES) {
return 0;
}
if (GangZone@MainZone[gangzone] == -1) {
return 0;
}
GangZoneFlashForAll(GangZone@MainZone[gangzone], flashcolor);
if (borderflashcolor != 0x00) {
GangZoneFlashForAll(GangZone@Border[gangzone][0], borderflashcolor);
GangZoneFlashForAll(GangZone@Border[gangzone][1], borderflashcolor);
GangZoneFlashForAll(GangZone@Border[gangzone][2], borderflashcolor);
GangZoneFlashForAll(GangZone@Border[gangzone][3], borderflashcolor);
}
if (numberflashcolor != 0x00) {
GangZoneFlashForAll(GangZone@Number1[gangzone][0], numberflashcolor);
GangZoneFlashForAll(GangZone@Number1[gangzone][1], numberflashcolor);
GangZoneFlashForAll(GangZone@Number1[gangzone][2], numberflashcolor);
GangZoneFlashForAll(GangZone@Number1[gangzone][3], numberflashcolor);
GangZoneFlashForAll(GangZone@Number1[gangzone][4], numberflashcolor);
GangZoneFlashForAll(GangZone@Number2[gangzone][0], numberflashcolor);
GangZoneFlashForAll(GangZone@Number2[gangzone][1], numberflashcolor);
GangZoneFlashForAll(GangZone@Number2[gangzone][2], numberflashcolor);
GangZoneFlashForAll(GangZone@Number2[gangzone][3], numberflashcolor);
GangZoneFlashForAll(GangZone@Number2[gangzone][4], numberflashcolor);
}
return 1;
}
#if defined _ALS_GangZoneFlashForAll
#undef GangZoneFlashForAll
#else
#define _ALS_GangZoneFlashForAll
#endif
#define GangZoneFlashForAll GangZone_FlashForAll
stock GangZone_StopFlashForPlayer(playerid, gangzone, bool:mainzone = true, bool:border = true, bool:number = true) {
if (gangzone < 0 || gangzone >= MAX_GANG_ZONES) {
return 0;
}
if (GangZone@MainZone[gangzone] == -1) {
return 0;
}
if (mainzone) {
GangZoneStopFlashForPlayer(playerid, GangZone@MainZone[gangzone]);
}
if (border) {
GangZoneStopFlashForPlayer(playerid, GangZone@Border[gangzone][0]);
GangZoneStopFlashForPlayer(playerid, GangZone@Border[gangzone][1]);
GangZoneStopFlashForPlayer(playerid, GangZone@Border[gangzone][2]);
GangZoneStopFlashForPlayer(playerid, GangZone@Border[gangzone][3]);
}
if (number) {
GangZoneStopFlashForPlayer(playerid, GangZone@Number1[gangzone][0]);
GangZoneStopFlashForPlayer(playerid, GangZone@Number1[gangzone][1]);
GangZoneStopFlashForPlayer(playerid, GangZone@Number1[gangzone][2]);
GangZoneStopFlashForPlayer(playerid, GangZone@Number1[gangzone][3]);
GangZoneStopFlashForPlayer(playerid, GangZone@Number1[gangzone][4]);
GangZoneStopFlashForPlayer(playerid, GangZone@Number2[gangzone][0]);
GangZoneStopFlashForPlayer(playerid, GangZone@Number2[gangzone][1]);
GangZoneStopFlashForPlayer(playerid, GangZone@Number2[gangzone][2]);
GangZoneStopFlashForPlayer(playerid, GangZone@Number2[gangzone][3]);
GangZoneStopFlashForPlayer(playerid, GangZone@Number2[gangzone][4]);
}
return 1;
}
#if defined _ALS_GangZoneStopFlashForPlayer
#undef GangZoneStopFlashForPlayer
#else
#define _ALS_GangZoneStopFlashForPlayer
#endif
#define GangZoneStopFlashForPlayer GangZone_StopFlashForPlayer
stock GangZone_StopFlashForAll(gangzone, bool:mainzone = true, bool:border = true, bool:number = true) {
if (gangzone < 0 || gangzone >= MAX_GANG_ZONES) {
return 0;
}
if (GangZone@MainZone[gangzone] == -1) {
return 0;
}
if (mainzone) {
GangZoneStopFlashForAll(GangZone@MainZone[gangzone]);
}
if (border) {
GangZoneStopFlashForAll(GangZone@Border[gangzone][0]);
GangZoneStopFlashForAll(GangZone@Border[gangzone][1]);
GangZoneStopFlashForAll(GangZone@Border[gangzone][2]);
GangZoneStopFlashForAll(GangZone@Border[gangzone][3]);
}
if (number) {
GangZoneStopFlashForAll(GangZone@Number1[gangzone][0]);
GangZoneStopFlashForAll(GangZone@Number1[gangzone][1]);
GangZoneStopFlashForAll(GangZone@Number1[gangzone][2]);
GangZoneStopFlashForAll(GangZone@Number1[gangzone][3]);
GangZoneStopFlashForAll(GangZone@Number1[gangzone][4]);
GangZoneStopFlashForAll(GangZone@Number2[gangzone][0]);
GangZoneStopFlashForAll(GangZone@Number2[gangzone][1]);
GangZoneStopFlashForAll(GangZone@Number2[gangzone][2]);
GangZoneStopFlashForAll(GangZone@Number2[gangzone][3]);
GangZoneStopFlashForAll(GangZone@Number2[gangzone][4]);
}
return 1;
}
#if defined _ALS_GangZoneStopFlashForAll
#undef GangZoneStopFlashForAll
#else
#define _ALS_GangZoneStopFlashForAll
#endif
#define GangZoneStopFlashForAll GangZone_StopFlashForAll