]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/_all.qh
3636f89848037cf7770455030fc5203bd9b2c7f6
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / _all.qh
1 #ifndef SERVER_ALL_H
2 #define SERVER_ALL_H
3
4 int maxclients;
5
6 const string STR_PLAYER = "player";
7 const string STR_SPECTATOR = "spectator";
8 const string STR_OBSERVER = "observer";
9
10 #define IS_PLAYER(v) ((v).classname == STR_PLAYER)
11 #define IS_SPEC(v) ((v).classname == STR_SPECTATOR)
12 #define IS_OBSERVER(v) ((v).classname == STR_OBSERVER)
13
14 #define IS_CLIENT(v) (v.flags & FL_CLIENT)
15 #define IS_BOT_CLIENT(v) (clienttype(v) == CLIENTTYPE_BOT)
16 #define IS_REAL_CLIENT(v) (clienttype(v) == CLIENTTYPE_REAL)
17 #define IS_NOT_A_CLIENT(v) (clienttype(v) == CLIENTTYPE_NOTACLIENT)
18
19 #define IS_MONSTER(v) (v.flags & FL_MONSTER)
20 #define IS_VEHICLE(v) (v.vehicle_flags & VHF_ISVEHICLE)
21 #define IS_TURRET(v) (v.turret_flags & TUR_FLAG_ISTURRET)
22
23 #define FOR_EACH_CLIENTSLOT(v) for (v = world; (v = nextent(v)) && (etof(v) <= maxclients); )
24 #define FOR_EACH_CLIENT(v) FOR_EACH_CLIENTSLOT(v) if (IS_CLIENT(v))
25 // NOTE: FOR_EACH_REALCLIENT deprecated! Use the following instead: FOREACH_CLIENT(IS_REAL_CLIENT(it), LAMBDA(yourcode));
26
27 // NOTE: FOR_EACH_PLAYER deprecated! Use the following instead: FOREACH_CLIENT(IS_PLAYER(it), LAMBDA(yourcode));
28 // NOTE: FOR_EACH_SPEC deprecated! Use the following instead: FOREACH_CLIENT(IS_SPEC(it), LAMBDA(yourcode));
29 // NOTE: FOR_EACH_OBSERVER deprecated! Use the following instead: FOREACH_CLIENT(IS_OBSERVER(it), LAMBDA(yourcode));
30 // NOTE: FOR_EACH_REALPLAYER deprecated! Use the following instead: FOREACH_CLIENT(IS_PLAYER(it) && IS_REAL_CLIENT(it), LAMBDA(yourcode));
31
32 #define FOREACH_CLIENT(cond, body) \
33         MACRO_BEGIN { \
34                 for(int _i = 1; _i <= maxclients; ++_i) \
35                 { \
36                         const noref int i = _i; \
37                         const noref entity it = ftoe(i); \
38                         if(it == NULL || !IS_CLIENT(it)) continue; \
39                         if(cond) { LAMBDA(body) } \
40                 } \
41         } MACRO_END
42
43 // NOTE: FOR_EACH_MONSTER deprecated! Use the following instead: FOREACH_ENTITY_FLAGS(flags, FL_MONSTER, LAMBDA(yourcode));
44
45 #include "../common/effects/all.qh"
46 #include "../common/models/all.qh"
47 #include "../common/sounds/all.qh"
48
49 #include "autocvars.qh"
50 #include "constants.qh"
51 #include "defs.qh"
52 #include "miscfunctions.qh"
53
54 #endif