]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/lib/_all.inc
Merge branch 'master' into Mario/wepent_experimental
[xonotic/xonotic-data.pk3dir.git] / qcsrc / lib / _all.inc
1 #ifndef NOCOMPAT
2         #define COMPAT_NO_MOD_IS_XONOTIC
3 #endif
4
5 #ifdef CSQC
6 #define IS_CSQC 1
7 #else
8 #define IS_CSQC 0
9 #endif
10
11 #ifdef SVQC
12 #define IS_SVQC 1
13 #else
14 #define IS_SVQC 0
15 #endif
16
17 #include "compiler.qh"
18
19 #ifndef QCC_SUPPORT_INT
20         #define int float
21 #endif
22
23 #ifndef QCC_SUPPORT_BOOL
24         #define bool float
25 #endif
26
27 #include <dpdefs/pre.qh>
28
29 #if defined(CSQC)
30         #include <dpdefs/csprogsdefs.qh>
31         #include <dpdefs/keycodes.qh>
32 #elif defined(SVQC)
33         #include <server/sys-pre.qh>
34         #include <dpdefs/progsdefs.qh>
35         #include <dpdefs/dpextensions.qh>
36         #include <server/sys-post.qh>
37 #elif defined(MENUQC)
38         #include <dpdefs/menudefs.qh>
39         #include <dpdefs/keycodes.qh>
40 #endif
41
42 #include <dpdefs/post.qh>
43
44 #include "self.qh"
45
46 #define USING(name, T) typedef T name
47
48 #include "bool.qh"
49 #include "int.qh"
50
51 #include "macro.qh"
52
53 #if NDEBUG
54         #define TC(T, sym) MACRO_BEGIN MACRO_END
55 #else
56         #define TC(T, sym) MACRO_BEGIN \
57                 if (!is_##T(sym)) { \
58                         LOG_WARNF("Type check failed: " #sym " :: " #T); \
59                         isnt_##T(sym); \
60                 } \
61         MACRO_END
62 #endif
63
64 #define   is_float(this) (true || ftoe(this))
65 #define isnt_float(this)
66 #define   is_vector(this) (true || vtos(this))
67 #define isnt_vector(this)
68 #define   is_string(this) (true || stof(this))
69 #define isnt_string(this)
70 #define   is_entity(this) (true || etof(this))
71 #define isnt_entity(this)
72 bool      is_int(float this) { return this == floor(this); }
73 void    isnt_int(float this) { print(ftos(this)); }
74 bool      is_bool(float this) { return this == true || this == false; }
75 void    isnt_bool(float this) { print(ftos(this)); }
76
77 #include "warpzone/mathlib.qc"
78
79 #include "accumulate.qh"
80 #include "angle.qc"
81 #include "arraylist.qh"
82 #include "bits.qh"
83 #include "color.qh"
84 #include "counting.qh"
85 #include "cvar.qh"
86 #include "defer.qh"
87 #include "draw.qh"
88 #include "enumclass.qh"
89 #include "file.qh"
90 #include "functional.qh"
91 #include "i18n.qh"
92 #include "intrusivelist.qh"
93 #include "iter.qh"
94 #include "json.qc"
95 #include "lazy.qh"
96 #include "linkedlist.qh"
97 #include "log.qh"
98 #include "map.qh"
99 #include "markdown.qh"
100 #include "math.qh"
101 #include "misc.qh"
102 #include "net.qh"
103 #include "nil.qh"
104 #include "noise.qh"
105 #include "oo.qh"
106 #include "p2mathlib.qc"
107 #include "progname.qh"
108 #include "random.qc"
109 #include "registry.qh"
110 #include "registry_net.qh"
111 #include "replicate.qh"
112 #include "sortlist.qc"
113 #include "sort.qh"
114 #include "spawnfunc.qh"
115 #include "static.qh"
116 #include "stats.qh"
117 #include "string.qh"
118 #include "struct.qh"
119 #include "test.qc"
120 #include "unsafe.qh"
121 #include "urllib.qc"
122 #include "vector.qh"
123 #include "yenc.qh"
124
125 #include "matrix/_mod.inc"
126
127 #ifndef SVQC
128 #define objerror_safe(e)
129 #else
130 void make_safe_for_remove(entity this);
131     #define objerror_safe(e) make_safe_for_remove(e)
132 #endif
133
134 #define objerror(this, msg) MACRO_BEGIN { \
135         LOG_WARN("======OBJECT ERROR======"); \
136         entity _e = (this); \
137         eprint(_e); \
138         objerror_safe(_e); \
139         delete(_e); \
140         LOG_WARNF("%s OBJECT ERROR in %s:\n%s\nTip: read above for entity information", PROGNAME, __FUNC__, msg); \
141 } MACRO_END
142
143 #ifdef MENUQC
144         void _m_init();
145         void m_init() { if (_m_init) _m_init(); }
146         #define m_init _m_init
147
148         void _m_shutdown();
149         void m_shutdown() { if (_m_shutdown) _m_shutdown(); }
150         #define m_shutdown _m_shutdown
151
152         void _m_draw(float width, float height);
153         void m_draw(float width, float height) { if (_m_draw) _m_draw(width, height); }
154         #define m_draw _m_draw
155
156         void _m_keydown(int keynr, int ascii);
157         void m_keydown(int keynr, int ascii) { if (_m_keydown) _m_keydown(keynr, ascii); }
158         #define m_keydown _m_keydown
159
160         void _m_toggle(int mode);
161         void m_toggle(int mode) { if (_m_toggle) _m_toggle(mode); }
162         #define m_toggle _m_toggle
163 #endif
164
165 #ifdef SVQC
166         void _main();
167         void main() { if (_main) _main(); }
168         #define main _main
169
170         void _SV_Shutdown();
171         void SV_Shutdown() { if (_SV_Shutdown) _SV_Shutdown(); }
172         #define SV_Shutdown _SV_Shutdown
173
174         void _StartFrame();
175         void StartFrame() { if (_StartFrame) _StartFrame(); }
176         #define StartFrame _StartFrame
177
178         void _SetNewParms();
179         void SetNewParms() { if (_SetNewParms) _SetNewParms(); }
180         #define SetNewParms _SetNewParms
181
182         void _SetChangeParms(entity this);
183         void SetChangeParms() { ENGINE_EVENT(); if (_SetChangeParms) _SetChangeParms(this); }
184         #define SetChangeParms _SetChangeParms
185
186         void _ClientConnect(entity this);
187         void ClientConnect() { ENGINE_EVENT(); if (_ClientConnect) _ClientConnect(this); }
188         #define ClientConnect _ClientConnect
189
190         void _ClientDisconnect(entity this);
191         void ClientDisconnect() { ENGINE_EVENT(); if (_ClientDisconnect) _ClientDisconnect(this); }
192         #define ClientDisconnect _ClientDisconnect
193
194         void _PutClientInServer(entity this);
195         void PutClientInServer() { ENGINE_EVENT(); if (_PutClientInServer) _PutClientInServer(this); }
196         #define PutClientInServer _PutClientInServer
197
198         void _ClientKill(entity this);
199         void ClientKill() { ENGINE_EVENT(); if (_ClientKill) _ClientKill(this); }
200         #define ClientKill _ClientKill
201
202         void _PlayerPreThink(entity this);
203         void PlayerPreThink() { ENGINE_EVENT(); if (_PlayerPreThink) _PlayerPreThink(this); }
204         #define PlayerPreThink _PlayerPreThink
205
206         void _PlayerPostThink(entity this);
207         void PlayerPostThink() { ENGINE_EVENT(); if (_PlayerPostThink) _PlayerPostThink(this); }
208         #define PlayerPostThink _PlayerPostThink
209
210         void _SV_PlayerPhysics(entity this);
211         void SV_PlayerPhysics() { ENGINE_EVENT(); if (_SV_PlayerPhysics) _SV_PlayerPhysics(this); }
212         #define SV_PlayerPhysics _SV_PlayerPhysics
213
214         void _SV_OnEntityPreSpawnFunction(entity this);
215         void SV_OnEntityPreSpawnFunction()
216         {
217                 ENGINE_EVENT();
218                 if (_SV_OnEntityPreSpawnFunction) _SV_OnEntityPreSpawnFunction(this);
219         }
220         #define SV_OnEntityPreSpawnFunction _SV_OnEntityPreSpawnFunction
221
222         void _SV_ChangeTeam(entity this, int _color);
223         void SV_ChangeTeam(int _color) { ENGINE_EVENT(); if (_SV_ChangeTeam) _SV_ChangeTeam(this, _color); }
224         #define SV_ChangeTeam _SV_ChangeTeam
225
226         void _SV_ParseClientCommand(entity this, string command);
227         void SV_ParseClientCommand(string command)
228         {
229                 ENGINE_EVENT();
230                 if (_SV_ParseClientCommand) _SV_ParseClientCommand(this, command);
231         }
232         #define SV_ParseClientCommand _SV_ParseClientCommand
233 #endif
234
235 #ifdef CSQC
236         void _CSQC_Init();
237         void CSQC_Init() { if (_CSQC_Init) _CSQC_Init(); }
238         #define CSQC_Init _CSQC_Init
239
240         void _CSQC_Shutdown();
241         void CSQC_Shutdown() { if (_CSQC_Shutdown) _CSQC_Shutdown(); }
242         #define CSQC_Shutdown _CSQC_Shutdown
243
244         void _CSQC_UpdateView(entity this, float w, float h);
245         void CSQC_UpdateView(float w, float h) { ENGINE_EVENT(); if (_CSQC_UpdateView) _CSQC_UpdateView(this, w, h); }
246         #define CSQC_UpdateView _CSQC_UpdateView
247
248         bool _CSQC_InputEvent(int inputType, float nPrimary, float nSecondary);
249         bool CSQC_InputEvent(int inputType, float nPrimary, float nSecondary)
250         {
251                 return _CSQC_InputEvent ? _CSQC_InputEvent(inputType, nPrimary, nSecondary) : false;
252         }
253         #define CSQC_InputEvent _CSQC_InputEvent
254
255         bool _CSQC_ConsoleCommand(string s);
256         bool CSQC_ConsoleCommand(string s) { return _CSQC_ConsoleCommand ? _CSQC_ConsoleCommand(s) : false; }
257         #define CSQC_ConsoleCommand _CSQC_ConsoleCommand
258
259         void _CSQC_Ent_Update(entity this, bool isNew);
260         void CSQC_Ent_Update(bool isNew) { ENGINE_EVENT(); if (_CSQC_Ent_Update) _CSQC_Ent_Update(this, isNew); }
261         #define CSQC_Ent_Update _CSQC_Ent_Update
262
263         void _CSQC_Ent_Remove(entity this);
264         void CSQC_Ent_Remove() { ENGINE_EVENT(); if (_CSQC_Ent_Remove) _CSQC_Ent_Remove(this); }
265         #define CSQC_Ent_Remove _CSQC_Ent_Remove
266 #endif
267 #undef ENGINE_EVENT
268
269 #if XONOTIC
270 #ifdef GAMEQC
271         #include <ecs/_mod.qh>
272 #endif
273 #endif