]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/mutators/mutator/gamemode_ctf.qh
server: pass compilation units test
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / mutators / mutator / gamemode_ctf.qh
1 #pragma once
2
3 #ifdef SVQC
4
5 #include "../gamemode.qh"
6 // used in cheats.qc
7 void ctf_RespawnFlag(entity flag);
8
9 // score rule declarations
10 const int ST_CTF_CAPS = 1;
11 const int SP_CTF_CAPS = 4;
12 const int SP_CTF_CAPTIME = 5;
13 const int SP_CTF_PICKUPS = 6;
14 const int SP_CTF_DROPS = 7;
15 const int SP_CTF_FCKILLS = 8;
16 const int SP_CTF_RETURNS = 9;
17
18 CLASS(Flag, Pickup)
19     ATTRIB(Flag, m_mins, vector, PL_MIN_CONST + '0 0 -13')
20     ATTRIB(Flag, m_maxs, vector, PL_MAX_CONST + '0 0 -13')
21 ENDCLASS(Flag)
22 Flag CTF_FLAG; STATIC_INIT(Flag) { CTF_FLAG = NEW(Flag); }
23 void ctf_FlagTouch() { SELFPARAM(); ITEM_HANDLE(Pickup, CTF_FLAG, this, other); }
24
25 // flag constants // for most of these, there is just one question to be asked: WHYYYYY?
26
27 const float FLAG_SCALE = 0.6;
28
29 const float FLAG_THINKRATE = 0.2;
30 const float FLAG_TOUCHRATE = 0.5;
31 const float WPFE_THINKRATE = 0.5;
32
33 const vector FLAG_DROP_OFFSET = ('0 0 32');
34 const vector FLAG_CARRY_OFFSET = ('-16 0 8');
35 #define FLAG_SPAWN_OFFSET ('0 0 1' * (PL_MAX_CONST.z - 13))
36 const vector FLAG_WAYPOINT_OFFSET = ('0 0 64');
37 const vector FLAG_FLOAT_OFFSET = ('0 0 32');
38 const vector FLAG_PASS_ARC_OFFSET = ('0 0 -10');
39
40 const vector VEHICLE_FLAG_OFFSET = ('0 0 96');
41 const float VEHICLE_FLAG_SCALE = 1.0;
42
43 // waypoint colors
44 #define WPCOLOR_ENEMYFC(t) ((t) ? colormapPaletteColor(t - 1, false) * 0.75 : '1 1 1')
45 #define WPCOLOR_FLAGCARRIER(t) (WP_FlagCarrier.m_color)
46 #define WPCOLOR_DROPPEDFLAG(t) ((t) ? ('0.25 0.25 0.25' + colormapPaletteColor(t - 1, false)) * 0.5 : '1 1 1')
47
48 // sounds
49 #define snd_flag_taken noise
50 #define snd_flag_returned noise1
51 #define snd_flag_capture noise2
52 #define snd_flag_respawn noise3
53 .string snd_flag_dropped;
54 .string snd_flag_touch;
55 .string snd_flag_pass;
56
57 // effects
58 .string toucheffect;
59 .string passeffect;
60 .string capeffect;
61
62 // list of flags on the map
63 entity ctf_worldflaglist;
64 .entity ctf_worldflagnext;
65 .entity ctf_staleflagnext;
66
67 // waypoint sprites
68 .entity bot_basewaypoint; // flag waypointsprite
69 .entity wps_helpme;
70 .entity wps_flagbase;
71 .entity wps_flagcarrier;
72 .entity wps_flagdropped;
73 .entity wps_enemyflagcarrier;
74 .float wps_helpme_time;
75 bool wpforenemy_announced;
76 float wpforenemy_nextthink;
77
78 // statuses
79 const int FLAG_BASE = 1;
80 const int FLAG_DROPPED = 2;
81 const int FLAG_CARRY = 3;
82 const int FLAG_PASSING = 4;
83
84 const int DROP_NORMAL = 1;
85 const int DROP_THROW = 2;
86 const int DROP_PASS = 3;
87 const int DROP_RESET = 4;
88
89 const int PICKUP_BASE = 1;
90 const int PICKUP_DROPPED = 2;
91
92 const int CAPTURE_NORMAL = 1;
93 const int CAPTURE_DROPPED = 2;
94
95 const int RETURN_TIMEOUT = 1;
96 const int RETURN_DROPPED = 2;
97 const int RETURN_DAMAGE = 3;
98 const int RETURN_SPEEDRUN = 4;
99 const int RETURN_NEEDKILL = 5;
100
101 void ctf_Handle_Throw(entity player, entity receiver, float droptype);
102
103 // flag properties
104 #define ctf_spawnorigin dropped_origin
105 bool ctf_stalemate; // indicates that a stalemate is active
106 float ctf_captimerecord; // record time for capturing the flag
107 .float ctf_pickuptime;
108 .float ctf_droptime;
109 .int ctf_status; // status of the flag (FLAG_BASE, FLAG_DROPPED, FLAG_CARRY declared globally)
110 .entity ctf_dropper; // don't allow spam of dropping the flag
111 .int max_flag_health;
112 .float next_take_time;
113 .bool ctf_flagdamaged;
114 int ctf_teams;
115
116 // passing/throwing properties
117 .float pass_distance;
118 .entity pass_sender;
119 .entity pass_target;
120 .float throw_antispam;
121 .float throw_prevtime;
122 .int throw_count;
123
124 // CaptureShield: If the player is too bad to be allowed to capture, shield them from taking the flag.
125 .bool ctf_captureshielded; // set to 1 if the player is too bad to be allowed to capture
126 float ctf_captureshield_min_negscore; // punish at -20 points
127 float ctf_captureshield_max_ratio; // punish at most 30% of each team
128 float ctf_captureshield_force; // push force of the shield
129
130 // 1 flag ctf
131 bool ctf_oneflag; // indicates whether or not a neutral flag has been found
132
133 // bot player logic
134 const int HAVOCBOT_CTF_ROLE_NONE = 0;
135 const int HAVOCBOT_CTF_ROLE_DEFENSE = 2;
136 const int HAVOCBOT_CTF_ROLE_MIDDLE = 4;
137 const int HAVOCBOT_CTF_ROLE_OFFENSE = 8;
138 const int HAVOCBOT_CTF_ROLE_CARRIER = 16;
139 const int HAVOCBOT_CTF_ROLE_RETRIEVER = 32;
140 const int HAVOCBOT_CTF_ROLE_ESCORT = 64;
141
142 .bool havocbot_cantfindflag;
143
144 vector havocbot_ctf_middlepoint;
145 float havocbot_ctf_middlepoint_radius;
146
147 void havocbot_role_ctf_setrole(entity bot, int role);
148
149 // team checking
150 #define CTF_SAMETEAM(a,b) ((autocvar_g_ctf_reverse || (ctf_oneflag && autocvar_g_ctf_oneflag_reverse)) ? DIFF_TEAM(a,b) : SAME_TEAM(a,b))
151 #define CTF_DIFFTEAM(a,b) ((autocvar_g_ctf_reverse || (ctf_oneflag && autocvar_g_ctf_oneflag_reverse)) ? SAME_TEAM(a,b) : DIFF_TEAM(a,b))
152
153 // networked flag statuses
154 .int ctf_flagstatus = _STAT(CTF_FLAGSTATUS);
155 #endif
156
157 const int CTF_RED_FLAG_TAKEN                    = 1;
158 const int CTF_RED_FLAG_LOST                             = 2;
159 const int CTF_RED_FLAG_CARRYING                 = 3;
160 const int CTF_BLUE_FLAG_TAKEN                   = 4;
161 const int CTF_BLUE_FLAG_LOST                    = 8;
162 const int CTF_BLUE_FLAG_CARRYING                = 12;
163 const int CTF_YELLOW_FLAG_TAKEN                 = 16;
164 const int CTF_YELLOW_FLAG_LOST                  = 32;
165 const int CTF_YELLOW_FLAG_CARRYING              = 48;
166 const int CTF_PINK_FLAG_TAKEN                   = 64;
167 const int CTF_PINK_FLAG_LOST                    = 128;
168 const int CTF_PINK_FLAG_CARRYING                = 192;
169 const int CTF_NEUTRAL_FLAG_TAKEN                = 256;
170 const int CTF_NEUTRAL_FLAG_LOST                 = 512;
171 const int CTF_NEUTRAL_FLAG_CARRYING             = 768;
172 const int CTF_FLAG_NEUTRAL                              = 2048;
173 const int CTF_SHIELDED                                  = 4096;