forked from openmultiplayer/omp-stdlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathomp_gangzone.inc
More file actions
478 lines (410 loc) · 17.9 KB
/
omp_gangzone.inc
File metadata and controls
478 lines (410 loc) · 17.9 KB
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
#if defined _INC_omp_gangzone
#endinput
#endif
#define _INC_omp_gangzone
/**
* <library name="omp_gangzone" summary="open.mp text draw functions.">
* <license>
* This Source Code Form is subject to the terms of the Mozilla Public License,
* v. 2.0. If a copy of the MPL was not distributed with this file, You can
* obtain one at http://mozilla.org/MPL/2.0/.
*
* The original code is copyright (c) 2023, open.mp team and contributors.
* </license>
* <summary pawndoc="true">
* This library uses the enhanced <em>pawndoc.xsl</em> from
* <a href="https://github.com/pawn-lang/pawndoc">pawn-lang/pawndoc</a>.
* This XSL has features such as library and markdown support, and will not
* render this message when used.
* </summary>
* </library>
*/
/// <p/>
#pragma tabsize 4
/**
* <library>omp_gangzone</library>
*/
#if defined MAX_GANG_ZONES
#if MAX_GANG_ZONES < 1 || MAX_GANG_ZONES > 1024
#error MAX_GANG_ZONES must be >= 1 and <= 1024
#endif
const __MAX_GANG_ZONES = MAX_GANG_ZONES;
#define __MAX_GANG_ZONES
#else
const MAX_GANG_ZONES = 1024;
#define MAX_GANG_ZONES 1024
#endif
/**
* <library>omp_gangzone</library>
*/
const INVALID_GANG_ZONE = 0xFFFFFFFF;
#define INVALID_GANG_ZONE -1
/*
,ad8888ba, 88 88 88
d8"' `"8b 88 88 88
d8' 88 88 88
88 88 ,adPPYba, 88,dPPYba, ,adPPYYba, 88
88 88888 88 a8" "8a 88P' "8a "" `Y8 88
Y8, 88 88 8b d8 88 d8 ,adPPPPP88 88
Y8a. .a88 88 "8a, ,a8" 88b, ,a8" 88, ,88 88
`"Y88888P" 88 `"YbbdP"' 8Y"Ybbd8"' `"8bbdP"Y8 88
*/
/*
native #Global();
*/
/**
* <library>omp_gangzone</library>
* <summary>Create a gangzone (coloured radar area).</summary>
* <param name="minX">The x coordinate for the west side of the gangzone</param>
* <param name="minY">The y coordinate for the south side of the gangzone</param>
* <param name="maxX">The x coordinate for the east side of the gangzone</param>
* <param name="maxY">The y coordinate for the north side of the gangzone</param>
* <seealso name="GangZoneDestroy" />
* <seealso name="GangZoneShowForPlayer" />
* <seealso name="GangZoneShowForAll" />
* <seealso name="GangZoneHideForPlayer" />
* <seealso name="GangZoneHideForAll" />
* <seealso name="GangZoneFlashForPlayer" />
* <seealso name="GangZoneFlashForAll" />
* <seealso name="GangZoneStopFlashForPlayer" />
* <seealso name="GangZoneStopFlashForAll" />
* <remarks>
* There is a limit of <b><c>1024</c></b> gangzones.<br />
* Putting the parameters in the wrong order results in glitchy behavior.
* </remarks>
* <remarks>This function merely CREATES the gangzone, you must use <a href="#GangZoneShowForPlayer">GangZoneShowForPlayer</a>
* or <a href="#GangZoneShowForAll">GangZoneShowForAll</a> to show it.</remarks>
* <returns>The ID of the created zone, returns <b><c>-1</c></b> if not created.</returns>
*/
native GangZoneCreate(Float:minX, Float:minY, Float:maxX, Float:maxY);
/**
* <library>omp_gangzone</library>
* <summary>Destroy a gangzone.</summary>
* <param name="zoneid">The ID of the zone to destroy</param>
* <seealso name="GangZoneCreate" />
* <seealso name="GangZoneShowForPlayer" />
* <seealso name="GangZoneShowForAll" />
* <seealso name="GangZoneHideForPlayer" />
* <seealso name="GangZoneHideForAll" />
* <seealso name="GangZoneFlashForPlayer" />
* <seealso name="GangZoneFlashForAll" />
* <seealso name="GangZoneStopFlashForPlayer" />
* <seealso name="GangZoneStopFlashForAll" />
*/
native GangZoneDestroy(zoneid);
/**
* <library>omp_gangzone</library>
* <summary>Show a gangzone for a player. Must be created with <a href="#GangZoneCreate">GangZoneCreate</a>
* first.</summary>
* <param name="playerid">The ID of the player you would like to show the gangzone for.</param>
* <param name="zoneid">The ID of the gang zone to show for the player. Returned by <a href="#GangZoneCreate">GangZoneCreate</a></param>
* <param name="colour">The colour to show the gang zone, as an integer or hex in <b>RGBA</b> colour
* format. Alpha transparency supported</param>
* <seealso name="GangZoneCreate" />
* <seealso name="GangZoneDestroy" />
* <seealso name="GangZoneShowForAll" />
* <seealso name="GangZoneHideForPlayer" />
* <seealso name="GangZoneHideForAll" />
* <seealso name="GangZoneFlashForPlayer" />
* <seealso name="GangZoneFlashForAll" />
* <seealso name="GangZoneStopFlashForPlayer" />
* <seealso name="GangZoneStopFlashForAll" />
* <returns><b><c>1</c></b> if the gangzone was shown, otherwise <b><c>0</c></b> (non-existant).</returns>
*/
native GangZoneShowForPlayer(playerid, zoneid, colour);
/**
* <library>omp_gangzone</library>
* <summary>Shows a gangzone with the desired colour to all players.</summary>
* <param name="zoneid">The ID of the gangzone to show (returned by <a href="# GangZoneCreate">GangZoneCreate</a>)</param>
* <param name="colour">The colour to show the gang zone, as an integer or hex in <b>RGBA</b> colour
* format. Alpha transparency supported</param>
* <seealso name="GangZoneCreate" />
* <seealso name="GangZoneDestroy" />
* <seealso name="GangZoneShowForPlayer" />
* <seealso name="GangZoneHideForPlayer" />
* <seealso name="GangZoneHideForAll" />
* <seealso name="GangZoneFlashForPlayer" />
* <seealso name="GangZoneFlashForAll" />
* <seealso name="GangZoneStopFlashForPlayer" />
* <seealso name="GangZoneStopFlashForAll" />
* <returns>
* <b><c>1</c></b>: The function executed successfully. The gang zone was shown for all players.<br
* />
* <b><c>0</c></b>: The function failed to execute. The gangzone does not exist.
* </returns>
*/
native GangZoneShowForAll(zoneid, colour);
/**
* <library>omp_gangzone</library>
* <summary>Hides a gangzone for a player.</summary>
* <param name="playerid">The ID of the player to hide the gangzone for</param>
* <param name="zoneid">The ID of the zone to hide</param>
* <seealso name="GangZoneCreate" />
* <seealso name="GangZoneDestroy" />
* <seealso name="GangZoneShowForPlayer" />
* <seealso name="GangZoneShowForAll" />
* <seealso name="GangZoneHideForAll" />
* <seealso name="GangZoneFlashForPlayer" />
* <seealso name="GangZoneFlashForAll" />
* <seealso name="GangZoneStopFlashForPlayer" />
* <seealso name="GangZoneStopFlashForAll" />
*/
native GangZoneHideForPlayer(playerid, zoneid);
/**
* <library>omp_gangzone</library>
* <summary>GangZoneHideForAll hides a gangzone from all players.</summary>
* <param name="zoneid">The zone to hide</param>
* <seealso name="GangZoneCreate" />
* <seealso name="GangZoneDestroy" />
* <seealso name="GangZoneShowForPlayer" />
* <seealso name="GangZoneShowForAll" />
* <seealso name="GangZoneHideForPlayer" />
* <seealso name="GangZoneFlashForPlayer" />
* <seealso name="GangZoneFlashForAll" />
* <seealso name="GangZoneStopFlashForPlayer" />
* <seealso name="GangZoneStopFlashForAll" />
*/
native GangZoneHideForAll(zoneid);
/**
* <library>omp_gangzone</library>
* <summary>Makes a gangzone flash for a player.</summary>
* <param name="playerid">The ID of the player to flash the gangzone for</param>
* <param name="zoneid">The ID of the zone to flash</param>
* <param name="flashColour">The colour to flash the gang zone, as an integer or hex in <b>RGBA</b>
* colour format. Alpha transparency supported</param>
* <seealso name="GangZoneCreate" />
* <seealso name="GangZoneDestroy" />
* <seealso name="GangZoneShowForPlayer" />
* <seealso name="GangZoneShowForAll" />
* <seealso name="GangZoneHideForPlayer" />
* <seealso name="GangZoneHideForAll" />
* <seealso name="GangZoneFlashForAll" />
* <seealso name="GangZoneStopFlashForPlayer" />
* <seealso name="GangZoneStopFlashForAll" />
*/
native GangZoneFlashForPlayer(playerid, zoneid, flashColour);
/**
* <library>omp_gangzone</library>
* <summary>GangZoneFlashForAll flashes a gangzone for all players.</summary>
* <param name="zoneid">The zone to flash</param>
* <param name="flashColour">The colour to flash the gang zone, as an integer or hex in <b>RGBA</b>
* colour format. Alpha transparency supported</param>
* <seealso name="GangZoneCreate" />
* <seealso name="GangZoneDestroy" />
* <seealso name="GangZoneShowForPlayer" />
* <seealso name="GangZoneShowForAll" />
* <seealso name="GangZoneHideForPlayer" />
* <seealso name="GangZoneHideForAll" />
* <seealso name="GangZoneFlashForPlayer" />
* <seealso name="GangZoneStopFlashForPlayer" />
* <seealso name="GangZoneStopFlashForAll" />
*/
native GangZoneFlashForAll(zoneid, flashColour);
/**
* <library>omp_gangzone</library>
* <summary>Stops a gangzone flashing for a player.</summary>
* <param name="playerid">The ID of the player to stop the gangzone flashing for</param>
* <param name="zoneid">The ID of the gangzonezone to stop flashing</param>
* <seealso name="GangZoneCreate" />
* <seealso name="GangZoneDestroy" />
* <seealso name="GangZoneShowForPlayer" />
* <seealso name="GangZoneShowForAll" />
* <seealso name="GangZoneHideForPlayer" />
* <seealso name="GangZoneHideForAll" />
* <seealso name="GangZoneFlashForPlayer" />
* <seealso name="GangZoneFlashForAll" />
* <seealso name="GangZoneStopFlashForAll" />
*/
native GangZoneStopFlashForPlayer(playerid, zoneid);
/**
* <library>omp_gangzone</library>
* <summary>Stops a gangzone flashing for all players.</summary>
* <param name="zoneid">The ID of the zone to stop flashing. Returned by <a href="#GangZoneCreate">GangZoneCreate</a></param>
* <seealso name="GangZoneCreate" />
* <seealso name="GangZoneDestroy" />
* <seealso name="GangZoneShowForPlayer" />
* <seealso name="GangZoneShowForAll" />
* <seealso name="GangZoneHideForPlayer" />
* <seealso name="GangZoneHideForAll" />
* <seealso name="GangZoneFlashForPlayer" />
* <seealso name="GangZoneFlashForAll" />
* <seealso name="GangZoneStopFlashForPlayer" />
* <returns>
* <b><c>1</c></b>: The function executed successfully. Success is reported even if the gang zone
* wasn't flashing to begin with.<br />
* <b><c>0</c></b>: The function failed to execute. The gangzone specified does not exist.
* </returns>
*/
native GangZoneStopFlashForAll(zoneid);
/**
* <library>omp_gangzone</library>
*/
native IsValidGangZone(zoneid);
/**
* <library>omp_gangzone</library>
*/
native IsPlayerInGangZone(playerid, zoneid);
/**
* <library>omp_gangzone</library>
*/
native IsGangZoneVisibleForPlayer(playerid, zoneid);
/**
* <library>omp_gangzone</library>
*/
native GangZoneGetColourForPlayer(playerid, zoneid);
/**
* <library>omp_gangzone</library>
*/
native GangZoneGetFlashColourForPlayer(playerid, zoneid);
/**
* <library>omp_gangzone</library>
*/
native IsGangZoneFlashingForPlayer(playerid, zoneid);
/**
* <library>omp_gangzone</library>
*/
native GangZoneGetPos(zoneid, &Float:minX, &Float:minY = 0.0, &Float:maxX = 0.0, &Float:maxY = 0.0);
/**
* <library>omp_gangzone</library>
* <summary>Enables the callback when a player enters this zone.</summary>
* <param name="zoneid">The ID of the zone to enable area detection for</param>
* <param name="enable">Should entry detection be started or stopped?</param>
*/
native UseGangZoneCheck(zoneid, bool:enable);
/*
88888888ba 88888888ba 88
88 "8b 88 "8b 88
88 ,8P 88 ,8P 88
88aaaaaa8P' ,adPPYba, 8b,dPPYba, 88aaaaaa8P' 88 ,adPPYYba, 8b d8 ,adPPYba, 8b,dPPYba,
88""""""' a8P_____88 88P' "Y8 aaaaaaaa 88""""""' 88 "" `Y8 `8b d8' a8P_____88 88P' "Y8
88 8PP""""""" 88 """""""" 88 88 ,adPPPPP88 `8b d8' 8PP""""""" 88
88 "8b, ,aa 88 88 88 88, ,88 `8b,d8' "8b, ,aa 88
88 `"Ybbd8"' 88 88 88 `"8bbdP"Y8 Y88' `"Ybbd8"' 88
d8'
d8'
*/
/*
native #Per-Player();
*/
/**
* <library>omp_gangzone</library>
*/
native CreatePlayerGangZone(playerid, Float:minx, Float:miny, Float:maxx, Float:maxy);
/**
* <library>omp_gangzone</library>
*/
native PlayerGangZoneDestroy(playerid, zoneid);
/**
* <library>omp_gangzone</library>
*/
native PlayerGangZoneShow(playerid, zoneid, colour);
/**
* <library>omp_gangzone</library>
*/
native PlayerGangZoneHide(playerid, zoneid);
/**
* <library>omp_gangzone</library>
*/
native PlayerGangZoneFlash(playerid, zoneid, flashColour);
/**
* <library>omp_gangzone</library>
*/
native PlayerGangZoneStopFlash(playerid, zoneid);
/**
* <library>omp_gangzone</library>
*/
native IsValidPlayerGangZone(playerid, zoneid);
/**
* <library>omp_gangzone</library>
*/
native IsPlayerInPlayerGangZone(playerid, zoneid);
/**
* <library>omp_gangzone</library>
*/
native IsPlayerGangZoneVisible(playerid, zoneid);
/**
* <library>omp_gangzone</library>
*/
native PlayerGangZoneGetColour(playerid, zoneid);
/**
* <library>omp_gangzone</library>
*/
native PlayerGangZoneGetFlashColour(playerid, zoneid);
/**
* <library>omp_gangzone</library>
*/
native IsPlayerGangZoneFlashing(playerid, zoneid);
/**
* <library>omp_gangzone</library>
*/
native PlayerGangZoneGetPos(playerid, zoneid, &Float:minX, &Float:minY = 0.0, &Float:maxX = 0.0, &Float:maxY = 0.0);
/**
* <library>omp_gangzone</library>
* <summary>Enables the callback when a player enters this zone.</summary>
* <param name="zoneid">The ID of the zone to enable area detection for</param>
* <param name="enable">Should entry detection be started or stopped?</param>
*/
native UsePlayerGangZoneCheck(zoneid, bool:enable);
/*
88888888ba, 88
88 `"8b ,d 88
88 `8b 88 88
88 88 ,adPPYba, 8b,dPPYba, 8b,dPPYba, ,adPPYba, ,adPPYba, ,adPPYYba, MM88MMM ,adPPYba, ,adPPYb,88
88 88 a8P_____88 88P' "8a 88P' "Y8 a8P_____88 a8" "" "" `Y8 88 a8P_____88 a8" `Y88
88 8P 8PP""""""" 88 d8 88 8PP""""""" 8b ,adPPPPP88 88 8PP""""""" 8b 88
88 .a8P "8b, ,aa 88b, ,a8" 88 "8b, ,aa "8a, ,aa 88, ,88 88, "8b, ,aa "8a, ,d88
88888888Y"' `"Ybbd8"' 88`YbbdP"' 88 `"Ybbd8"' `"Ybbd8"' `"8bbdP"Y8 "Y888 `"Ybbd8"' `"8bbdP"Y8
88
88
*/
/*
native #Deprecated();
*/
/**
* <library>omp_gangzone</library>
*/
#pragma deprecated Use `GangZoneGetColourForPlayer`
native GangZoneGetColorForPlayer(playerid, zoneid) = GangZoneGetColourForPlayer;
/**
* <library>omp_gangzone</library>
*/
#pragma deprecated Use `GangZoneGetFlashColourForPlayer`
native GangZoneGetFlashColorForPlayer(playerid, zoneid) = GangZoneGetFlashColourForPlayer;
/**
* <library>omp_gangzone</library>
*/
#pragma deprecated Use `PlayerGangZoneGetColour`
native PlayerGangZoneGetColor(playerid, zoneid) = PlayerGangZoneGetColour;
/**
* <library>omp_gangzone</library>
*/
#pragma deprecated Use `PlayerGangZoneGetFlashColour`
native PlayerGangZoneGetFlashColor(playerid, zoneid) = PlayerGangZoneGetFlashColour;
/*
,ad8888ba, 88 88 88 88
d8"' `"8b 88 88 88 88
d8' 88 88 88 88
88 ,adPPYYba, 88 88 88,dPPYba, ,adPPYYba, ,adPPYba, 88 ,d8 ,adPPYba,
88 "" `Y8 88 88 88P' "8a "" `Y8 a8" "" 88 ,a8" I8[ ""
Y8, ,adPPPPP88 88 88 88 d8 ,adPPPPP88 8b 8888[ `"Y8ba,
Y8a. .a8P 88, ,88 88 88 88b, ,a8" 88, ,88 "8a, ,aa 88`"Yba, aa ]8I
`"Y8888Y"' `"8bbdP"Y8 88 88 8Y"Ybbd8"' `"8bbdP"Y8 `"Ybbd8"' 88 `Y8a `"YbbdP"'
*/
/**
*/
forward OnPlayerEnterGangZone(playerid, zoneid);
/**
*/
forward OnPlayerLeaveGangZone(playerid, zoneid);
/**
*/
forward OnPlayerEnterPlayerGangZone(playerid, zoneid);
/**
*/
forward OnPlayerLeavePlayerGangZone(playerid, zoneid);
/**
*/
forward OnPlayerClickGangZone(playerid, zoneid);
/**
*/
forward OnPlayerClickPlayerGangZone(playerid, zoneid);