]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/mutators/events.qh
Fix FL_WEAPON flag overlapping FL_JUMPRELEASED. This unintentional change was introdu...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / mutators / events.qh
1 #pragma once
2
3 #define EV_NO_ARGS(i, o)
4
5 #pragma noref 1
6
7 #define MUTATOR_TYPES(_, x) \
8     _(x, bool) \
9     _(x, int) \
10     _(x, entity) \
11     _(x, float) \
12     _(x, vector) \
13     _(x, string) \
14     /**/
15
16 // TODO: migrate to arrays some day when no other globals are used
17 #define M_ARGV(x, type) MUTATOR_ARGV_##x##_##type
18 #define MUTATOR_NEWGLOBAL(x, type) type MUTATOR_ARGV_##x##_##type;
19
20 MUTATOR_TYPES(MUTATOR_NEWGLOBAL, 0)
21 MUTATOR_TYPES(MUTATOR_NEWGLOBAL, 1)
22 MUTATOR_TYPES(MUTATOR_NEWGLOBAL, 2)
23 MUTATOR_TYPES(MUTATOR_NEWGLOBAL, 3)
24 MUTATOR_TYPES(MUTATOR_NEWGLOBAL, 4)
25 MUTATOR_TYPES(MUTATOR_NEWGLOBAL, 5)
26 MUTATOR_TYPES(MUTATOR_NEWGLOBAL, 6)
27 MUTATOR_TYPES(MUTATOR_NEWGLOBAL, 7)
28 MUTATOR_TYPES(MUTATOR_NEWGLOBAL, 8)
29 MUTATOR_TYPES(MUTATOR_NEWGLOBAL, 9)
30 MUTATOR_TYPES(MUTATOR_NEWGLOBAL, 10)
31
32 #undef MUTATOR_TYPES
33 #undef MUTATOR_NEWGLOBAL
34
35 #pragma noref 0
36
37 /** appends ":mutatorname" to argument for logging */
38 #define EV_BuildMutatorsString(i, o) \
39     /** mutator string */ i(string, MUTATOR_ARGV_0_string) \
40     /**/                  o(string, MUTATOR_ARGV_0_string) \
41     /**/
42 MUTATOR_HOOKABLE(BuildMutatorsString, EV_BuildMutatorsString);
43
44 /** appends ", Mutator name" to ret_string for display */
45 #define EV_BuildMutatorsPrettyString(i, o) \
46     /** mutator string */ i(string, MUTATOR_ARGV_0_string) \
47     /**/                  o(string, MUTATOR_ARGV_0_string) \
48     /**/
49 MUTATOR_HOOKABLE(BuildMutatorsPrettyString, EV_BuildMutatorsPrettyString);
50
51 /** appends mutator string for displaying extra gameplay tips */
52 #define EV_BuildGameplayTipsString(i, o) \
53     /** tips string */    i(string, MUTATOR_ARGV_0_string) \
54     /**/                  o(string, MUTATOR_ARGV_0_string) \
55     /**/
56 MUTATOR_HOOKABLE(BuildGameplayTipsString, EV_BuildGameplayTipsString);
57
58 #define EV_IsFlying(i, o) \
59         /**/ i(entity, MUTATOR_ARGV_0_entity) \
60         /**/
61 MUTATOR_HOOKABLE(IsFlying, EV_IsFlying);
62
63 #define EV_WP_Format(i, o) \
64     /**/ i(entity, MUTATOR_ARGV_0_entity) \
65     /**/ i(string, MUTATOR_ARGV_1_string) \
66     /**/ o(vector, MUTATOR_ARGV_2_vector) \
67     /**/ o(string, MUTATOR_ARGV_3_string) \
68     /**/ o(string, MUTATOR_ARGV_4_string) \
69     /**/
70 MUTATOR_HOOKABLE(WP_Format, EV_WP_Format);
71
72 /**
73  * called before any player physics, may adjust variables for movement,
74  * is run AFTER bot code and idle checking on the server
75  */
76 #define EV_PlayerPhysics(i, o) \
77     /** player */ i(entity, MUTATOR_ARGV_0_entity) \
78     /** ticrate*/ i(float, MUTATOR_ARGV_1_float) \
79     /**/
80 MUTATOR_HOOKABLE(PlayerPhysics, EV_PlayerPhysics);
81
82 /** called when a player presses the jump key */
83 #define EV_PlayerJump(i, o) \
84     /** player */      i(entity, MUTATOR_ARGV_0_entity) \
85     /** jump height */ i(float, MUTATOR_ARGV_1_float) \
86     /**/               o(float, MUTATOR_ARGV_1_float) \
87     /** multijump */   i(bool, MUTATOR_ARGV_2_bool) \
88     /**/               o(bool, MUTATOR_ARGV_2_bool) \
89     /**/
90 MUTATOR_HOOKABLE(PlayerJump, EV_PlayerJump);
91
92 /** called during player physics, allows adjusting the movement type used */
93 #define EV_PM_Physics(i, o) \
94     /** player */       i(entity, MUTATOR_ARGV_0_entity) \
95     /** maxspeed_mod */ i(float, MUTATOR_ARGV_1_float) \
96     /** tick rate */    i(float, MUTATOR_ARGV_2_float) \
97     /**/
98 MUTATOR_HOOKABLE(PM_Physics, EV_PM_Physics);
99
100 /** called when a weapon sound is about to be played, allows custom paths etc. */
101 #define EV_WeaponSound(i, o) \
102     /** sound       */ i(string, MUTATOR_ARGV_0_string) \
103     /** output      */ i(string, MUTATOR_ARGV_1_string) \
104     /**/               o(string, MUTATOR_ARGV_1_string) \
105     /**/
106 MUTATOR_HOOKABLE(WeaponSound, EV_WeaponSound);
107
108 /** called when a weapon model is about to be set, allows custom paths etc. */
109 #define EV_WeaponModel(i, o) \
110     /** model */  i(string, MUTATOR_ARGV_0_string) \
111     /** output */ i(string, MUTATOR_ARGV_1_string) \
112     /**/          o(string, MUTATOR_ARGV_1_string) \
113     /**/
114 MUTATOR_HOOKABLE(WeaponModel, EV_WeaponModel);
115
116 /** decides whether a player can crouch or not */
117 #define EV_PlayerCanCrouch(i, o) \
118     /** player */      i(entity, MUTATOR_ARGV_0_entity) \
119     /** do_crouch */   i(bool, MUTATOR_ARGV_1_bool) \
120     /**/               o(bool, MUTATOR_ARGV_1_bool) \
121     /**/
122 MUTATOR_HOOKABLE(PlayerCanCrouch, EV_PlayerCanCrouch);