]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/w_hagar.qc
Also apply a loading brake after the last rocket has been loaded, rather than firing...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / w_hagar.qc
1 #ifdef REGISTER_WEAPON
2 REGISTER_WEAPON(HAGAR, w_hagar, IT_ROCKETS, 8, WEP_FLAG_NORMAL | WEP_FLAG_RELOADABLE | WEP_FLAG_CANCLIMB | WEP_TYPE_SPLASH, BOT_PICKUP_RATING_MID, "hagar", "hagar", _("Hagar"))
3 #else
4 #ifdef SVQC
5 // NO bounce protection, as bounces are limited!
6
7 void W_Hagar_Explode (void)
8 {
9         self.event_damage = SUB_Null;
10         RadiusDamage (self, self.realowner, autocvar_g_balance_hagar_primary_damage, autocvar_g_balance_hagar_primary_edgedamage, autocvar_g_balance_hagar_primary_radius, world, autocvar_g_balance_hagar_primary_force, self.projectiledeathtype, other);
11
12         remove (self);
13 }
14
15 void W_Hagar_Explode2 (void)
16 {
17         self.event_damage = SUB_Null;
18         RadiusDamage (self, self.realowner, autocvar_g_balance_hagar_secondary_damage, autocvar_g_balance_hagar_secondary_edgedamage, autocvar_g_balance_hagar_secondary_radius, world, autocvar_g_balance_hagar_secondary_force, self.projectiledeathtype, other);
19
20         remove (self);
21 }
22
23 void W_Hagar_Touch (void)
24 {
25         PROJECTILE_TOUCH;
26         self.use ();
27 }
28
29 void W_Hagar_Touch2 (void)
30 {
31         PROJECTILE_TOUCH;
32
33         if(self.cnt > 0 || other.takedamage == DAMAGE_AIM) {
34                 self.use();
35         } else {
36                 self.cnt++;
37                 pointparticles(particleeffectnum("hagar_bounce"), self.origin, self.velocity, 1);
38                 self.angles = vectoangles (self.velocity);
39                 self.owner = world;
40                 self.projectiledeathtype |= HITTYPE_BOUNCE;
41         }
42 }
43
44 void W_Hagar_Attack (void)
45 {
46         local entity missile;
47
48         W_DecreaseAmmo(ammo_rockets, autocvar_g_balance_hagar_primary_ammo, autocvar_g_balance_hagar_reload_ammo);
49
50         W_SetupShot (self, FALSE, 2, "weapons/hagar_fire.wav", CHAN_WEAPON, autocvar_g_balance_hagar_primary_damage);
51
52         pointparticles(particleeffectnum("hagar_muzzleflash"), w_shotorg, w_shotdir * 1000, 1);
53
54         missile = spawn ();
55         missile.owner = missile.realowner = self;
56         missile.classname = "missile";
57         missile.bot_dodge = TRUE;
58         missile.bot_dodgerating = autocvar_g_balance_hagar_primary_damage;
59         missile.touch = W_Hagar_Touch;
60         missile.use = W_Hagar_Explode;
61         missile.think = adaptor_think2use_hittype_splash;
62         missile.nextthink = time + autocvar_g_balance_hagar_primary_lifetime;
63         PROJECTILE_MAKETRIGGER(missile);
64         missile.projectiledeathtype = WEP_HAGAR;
65         setorigin (missile, w_shotorg);
66         setsize(missile, '0 0 0', '0 0 0');
67
68         missile.movetype = MOVETYPE_FLY;
69         W_SETUPPROJECTILEVELOCITY(missile, g_balance_hagar_primary);
70
71         missile.angles = vectoangles (missile.velocity);
72         missile.flags = FL_PROJECTILE;
73
74         CSQCProjectile(missile, TRUE, PROJECTILE_HAGAR, TRUE);
75
76         other = missile; MUTATOR_CALLHOOK(EditProjectile);
77 }
78
79 void W_Hagar_Attack2 (void)
80 {
81         local entity missile;
82
83         W_DecreaseAmmo(ammo_rockets, autocvar_g_balance_hagar_secondary_ammo, autocvar_g_balance_hagar_reload_ammo);
84
85         W_SetupShot (self, FALSE, 2, "weapons/hagar_fire.wav", CHAN_WEAPON, autocvar_g_balance_hagar_secondary_damage);
86
87         pointparticles(particleeffectnum("hagar_muzzleflash"), w_shotorg, w_shotdir * 1000, 1);
88
89         missile = spawn ();
90         missile.owner = missile.realowner = self;
91         missile.classname = "missile";
92         missile.bot_dodge = TRUE;
93         missile.bot_dodgerating = autocvar_g_balance_hagar_secondary_damage;
94         missile.touch = W_Hagar_Touch2;
95         missile.cnt = 0;
96         missile.use = W_Hagar_Explode2;
97         missile.think = adaptor_think2use_hittype_splash;
98         missile.nextthink = time + autocvar_g_balance_hagar_secondary_lifetime_min + random() * autocvar_g_balance_hagar_secondary_lifetime_rand;
99         PROJECTILE_MAKETRIGGER(missile);
100         missile.projectiledeathtype = WEP_HAGAR | HITTYPE_SECONDARY;
101         setorigin (missile, w_shotorg);
102         setsize(missile, '0 0 0', '0 0 0');
103
104         missile.movetype = MOVETYPE_BOUNCEMISSILE;
105         W_SETUPPROJECTILEVELOCITY(missile, g_balance_hagar_secondary);
106
107         missile.angles = vectoangles (missile.velocity);
108         missile.flags = FL_PROJECTILE;
109
110         CSQCProjectile(missile, TRUE, PROJECTILE_HAGAR_BOUNCING, TRUE);
111
112         other = missile; MUTATOR_CALLHOOK(EditProjectile);
113 }
114
115 .float hagar_loadtime;
116 void W_Hagar_Attack2_Load (void)
117 {
118         if not(weapon_action(self.weapon, WR_CHECKAMMO2))
119         {
120                 W_SwitchToOtherWeapon(self);
121                 return;
122         }
123
124         local entity missile;
125         local float counter, shots, loaded;
126         local float used_ammo, enough_ammo;
127         local vector s;
128         vector forward, right, up;
129
130         loaded = self.hagar_load >= autocvar_g_balance_hagar_secondary_load_max;
131
132         // check if we have enough ammo for another rocket
133         used_ammo = autocvar_g_balance_hagar_secondary_ammo;
134         if(autocvar_g_balance_hagar_reload_ammo)
135                 enough_ammo = self.weapon_load[WEP_HAGAR] >= used_ammo + (used_ammo * self.hagar_load);
136         else
137                 enough_ammo = self.ammo_rockets >= used_ammo + (used_ammo * self.hagar_load);
138
139         if(self.BUTTON_ATCK2 && !loaded && enough_ammo)
140         {
141                 // we can attempt to load another rocket
142                 if(self.hagar_loadtime < time)
143                 {
144                         self.hagar_load += 1;
145                         sound(self, CHAN_WEAPON2, "weapons/hagar_load.wav", VOL_BASE, ATTN_NORM);
146
147                         self.hagar_loadtime = time + autocvar_g_balance_hagar_secondary_load_speed;
148                 }
149         }
150
151         if(self.hagar_load)
152         if(!self.BUTTON_ATCK2 || ((loaded || !enough_ammo) && self.hagar_loadtime < time && !autocvar_g_balance_hagar_secondary_load_hold))
153         if(weapon_prepareattack(0, autocvar_g_balance_hagar_secondary_refire))
154         {
155                 // time to release the rockets we've loaded
156
157                 W_DecreaseAmmo(ammo_rockets, autocvar_g_balance_hagar_secondary_ammo * self.hagar_load, autocvar_g_balance_hagar_reload_ammo);
158
159                 W_SetupShot (self, FALSE, 2, "weapons/hagar_fire.wav", CHAN_WEAPON, autocvar_g_balance_hagar_secondary_damage);
160                 pointparticles(particleeffectnum("hagar_muzzleflash"), w_shotorg, w_shotdir * 1000, 1);
161
162                 forward = v_forward;
163                 right = v_right;
164                 up = v_up;
165
166                 shots = self.hagar_load;
167                 missile = world;
168                 while (counter < shots)
169                 {
170                         missile = spawn ();
171                         missile.owner = missile.realowner = self;
172                         missile.classname = "missile";
173                         missile.bot_dodge = TRUE;
174                         missile.bot_dodgerating = autocvar_g_balance_hagar_secondary_damage;
175
176                         missile.touch = W_Hagar_Touch; // not bouncy
177                         missile.use = W_Hagar_Explode2;
178                         missile.think = adaptor_think2use_hittype_splash;
179                         missile.nextthink = time + autocvar_g_balance_hagar_secondary_lifetime_min + random() * autocvar_g_balance_hagar_secondary_lifetime_rand;
180                         PROJECTILE_MAKETRIGGER(missile);
181                         missile.projectiledeathtype = WEP_HAGAR;
182                         setorigin (missile, w_shotorg);
183                         setsize(missile, '0 0 0', '0 0 0');
184                         missile.movetype = MOVETYPE_FLY;
185
186                         s = '0 0 0';
187                         if (counter == 0)
188                                 s = '0 0 0';
189                         else
190                         {
191                                 makevectors('0 360 0' * (0.75 + (counter - 0.5) / (shots - 1)));
192                                 s_y = v_forward_x;
193                                 s_z = v_forward_y;
194                         }
195                         s = s * cvar("g_balance_hagar_secondary_spread") * g_weaponspreadfactor;
196                         W_SetupProjectileVelocityEx(missile, w_shotdir + right * s_y + up * s_z, v_up, cvar("g_balance_hagar_secondary_speed"), 0, 0, 0, FALSE);
197
198                         missile.angles = vectoangles (missile.velocity);
199                         missile.flags = FL_PROJECTILE;
200
201                         CSQCProjectile(missile, TRUE, PROJECTILE_HAGAR, TRUE);
202
203                         other = missile; MUTATOR_CALLHOOK(EditProjectile);
204
205                         counter = counter + 1;
206                 }
207
208                 weapon_thinkf(WFRAME_FIRE2, autocvar_g_balance_hagar_secondary_refire, w_ready);
209                 self.hagar_loadtime = time + autocvar_g_balance_hagar_secondary_refire;
210                 self.hagar_load = 0;
211         }
212 }
213
214 void spawnfunc_weapon_hagar (void)
215 {
216         weapon_defaultspawnfunc(WEP_HAGAR);
217 }
218
219 float w_hagar(float req)
220 {
221         float ammo_amount;
222         if (req == WR_AIM)
223                 if (random()>0.15)
224                         self.BUTTON_ATCK = bot_aim(autocvar_g_balance_hagar_primary_speed, 0, autocvar_g_balance_hagar_primary_lifetime, FALSE);
225                 else
226                 {
227                         // not using secondary_speed since these are only 15% and should cause some ricochets without re-aiming
228                         self.BUTTON_ATCK2 = bot_aim(autocvar_g_balance_hagar_primary_speed, 0, autocvar_g_balance_hagar_primary_lifetime, FALSE);
229                 }
230         else if (req == WR_THINK)
231         {
232                 if(autocvar_g_balance_hagar_reload_ammo && self.clip_load < min(autocvar_g_balance_hagar_primary_ammo, autocvar_g_balance_hagar_secondary_ammo)) // forced reload
233                         weapon_action(self.weapon, WR_RELOAD);
234                 else if (self.BUTTON_ATCK && !self.hagar_load) // not while loading the secondary fire
235                 {
236                         if (weapon_prepareattack(0, autocvar_g_balance_hagar_primary_refire))
237                         {
238                                 W_Hagar_Attack();
239                                 weapon_thinkf(WFRAME_FIRE1, autocvar_g_balance_hagar_primary_refire, w_ready);
240                         }
241                 }
242                 else if(autocvar_g_balance_hagar_secondary_load && autocvar_g_balance_hagar_secondary)
243                         W_Hagar_Attack2_Load(); // must run each frame
244                 else if (self.BUTTON_ATCK2 && autocvar_g_balance_hagar_secondary)
245                 {
246                         if (weapon_prepareattack(1, autocvar_g_balance_hagar_secondary_refire))
247                         {
248                                 W_Hagar_Attack2();
249                                 weapon_thinkf(WFRAME_FIRE2, autocvar_g_balance_hagar_secondary_refire, w_ready);
250                         }
251                 }
252         }
253         else if (req == WR_PRECACHE)
254         {
255                 precache_model ("models/weapons/g_hagar.md3");
256                 precache_model ("models/weapons/v_hagar.md3");
257                 precache_model ("models/weapons/h_hagar.iqm");
258                 precache_sound ("weapons/hagar_fire.wav");
259                 precache_sound ("weapons/hagar_load.wav");
260                 //precache_sound ("weapons/reload.wav"); // until weapons have individual reload sounds, precache the reload sound somewhere else
261         }
262         else if (req == WR_SETUP)
263         {
264                 weapon_setup(WEP_HAGAR);
265                 self.current_ammo = ammo_rockets;
266
267                 self.hagar_load = 0;
268         }
269         else if (req == WR_CHECKAMMO1)
270         {
271                 ammo_amount = self.ammo_rockets >= autocvar_g_balance_hagar_primary_ammo;
272                 ammo_amount += self.weapon_load[WEP_HAGAR] >= autocvar_g_balance_hagar_primary_ammo;
273                 return ammo_amount;
274         }
275         else if (req == WR_CHECKAMMO2)
276         {
277                 ammo_amount = self.ammo_rockets >= autocvar_g_balance_hagar_secondary_ammo;
278                 ammo_amount += self.weapon_load[WEP_HAGAR] >= autocvar_g_balance_hagar_secondary_ammo;
279                 return ammo_amount;
280         }
281         else if (req == WR_RELOAD)
282         {
283                 W_Reload(min(autocvar_g_balance_hagar_primary_ammo, autocvar_g_balance_hagar_secondary_ammo), autocvar_g_balance_hagar_reload_ammo, autocvar_g_balance_hagar_reload_time, "weapons/reload.wav");
284         }
285         return TRUE;
286 };
287 #endif
288 #ifdef CSQC
289 float w_hagar(float req)
290 {
291         if(req == WR_IMPACTEFFECT)
292         {
293                 vector org2;
294                 org2 = w_org + w_backoff * 6;
295                 pointparticles(particleeffectnum("hagar_explode"), org2, '0 0 0', 1);
296                 if(!w_issilent)
297                 {
298                         if (w_random<0.15)
299                                 sound(self, CHAN_PROJECTILE, "weapons/hagexp1.wav", VOL_BASE, ATTN_NORM);
300                         else if (w_random<0.7)
301                                 sound(self, CHAN_PROJECTILE, "weapons/hagexp2.wav", VOL_BASE, ATTN_NORM);
302                         else
303                                 sound(self, CHAN_PROJECTILE, "weapons/hagexp3.wav", VOL_BASE, ATTN_NORM);
304                 }
305         }
306         else if(req == WR_PRECACHE)
307         {
308                 precache_sound("weapons/hagexp1.wav");
309                 precache_sound("weapons/hagexp2.wav");
310                 precache_sound("weapons/hagexp3.wav");
311         }
312         else if (req == WR_SUICIDEMESSAGE)
313                 w_deathtypestring = _("%s played with tiny rockets");
314         else if (req == WR_KILLMESSAGE)
315         {
316                 if(w_deathtype & HITTYPE_BOUNCE) // must be secondary; unchecked: SPLASH
317                         w_deathtypestring = _("%s hoped %s's missiles wouldn't bounce");
318                 else // unchecked: SPLASH, SECONDARY
319                         w_deathtypestring = _("%s was pummeled by %s");
320         }
321         return TRUE;
322 }
323 #endif
324 #endif