2 REGISTER_WEAPON(FIREBALL, w_fireball, 0, 9, WEP_FLAG_SUPERWEAPON | WEP_TYPE_SPLASH, BOT_PICKUP_RATING_MID, "fireball", "fireball", _("Fireball"));
5 .float bot_primary_fireballmooth; // whatever a mooth is
6 .vector fireball_impactvec;
7 .float fireball_primarytime;
9 void W_Fireball_Explode (void)
17 self.event_damage = func_null;
18 self.takedamage = DAMAGE_NO;
21 d = (self.realowner.health + self.realowner.armorvalue);
22 RadiusDamage (self, self.realowner, autocvar_g_balance_fireball_primary_damage, autocvar_g_balance_fireball_primary_edgedamage, autocvar_g_balance_fireball_primary_radius, world, autocvar_g_balance_fireball_primary_force, self.projectiledeathtype, other);
23 if(self.realowner.health + self.realowner.armorvalue >= d)
26 modeleffect_spawn("models/sphere/sphere.md3", 0, 0, self.origin, '0 0 0', '0 0 0', '0 0 0', 0, autocvar_g_balance_fireball_primary_bfgradius, 0.2, 0.05, 0.25);
29 // NOTE: this cannot be made warpzone aware by design. So, better intentionally ignore warpzones here.
30 for(e = findradius(self.origin, autocvar_g_balance_fireball_primary_bfgradius); e; e = e.chain)
31 if(e != self.realowner) if(e.takedamage == DAMAGE_AIM) if(e.classname != "player" || !self.realowner || IsDifferentTeam(e, self))
33 // can we see fireball?
34 traceline(e.origin + e.view_ofs, self.origin, MOVE_NORMAL, e);
35 if(/* trace_startsolid || */ trace_fraction != 1) // startsolid should be never happening anyway
37 // can we see player who shot fireball?
38 traceline(e.origin + e.view_ofs, self.realowner.origin + self.realowner.view_ofs, MOVE_NORMAL, e);
39 if(trace_ent != self.realowner)
40 if(/* trace_startsolid || */ trace_fraction != 1)
42 dist = vlen(self.origin - e.origin - e.view_ofs);
43 points = (1 - sqrt(dist / autocvar_g_balance_fireball_primary_bfgradius));
46 dir = normalize(e.origin + e.view_ofs - self.origin);
48 if(accuracy_isgooddamage(self.realowner, e))
49 accuracy_add(self.realowner, WEP_FIREBALL, 0, autocvar_g_balance_fireball_primary_bfgdamage * points);
51 Damage(e, self, self.realowner, autocvar_g_balance_fireball_primary_bfgdamage * points, self.projectiledeathtype | HITTYPE_BOUNCE | HITTYPE_SPLASH, e.origin + e.view_ofs, autocvar_g_balance_fireball_primary_bfgforce * dir);
52 pointparticles(particleeffectnum("fireball_bfgdamage"), e.origin, -1 * dir, 1);
59 void W_Fireball_TouchExplode (void)
62 W_Fireball_Explode ();
65 void W_Fireball_LaserPlay(float dt, float dist, float damage, float edgedamage, float burntime)
74 RandomSelection_Init();
75 for(e = WarpZone_FindRadius(self.origin, dist, TRUE); e; e = e.chain)
76 if(e != self.realowner) if(e.takedamage == DAMAGE_AIM) if(e.classname != "player" || !self.realowner || IsDifferentTeam(e, self))
79 p_x += e.mins_x + random() * (e.maxs_x - e.mins_x);
80 p_y += e.mins_y + random() * (e.maxs_y - e.mins_y);
81 p_z += e.mins_z + random() * (e.maxs_z - e.mins_z);
82 d = vlen(WarpZone_UnTransformOrigin(e, self.origin) - p);
85 e.fireball_impactvec = p;
86 RandomSelection_Add(e, 0, string_null, 1 / (1 + d), !Fire_IsBurning(e));
89 if(RandomSelection_chosen_ent)
91 d = vlen(WarpZone_UnTransformOrigin(RandomSelection_chosen_ent, self.origin) - RandomSelection_chosen_ent.fireball_impactvec);
92 d = damage + (edgedamage - damage) * (d / dist);
93 Fire_AddDamage(RandomSelection_chosen_ent, self.realowner, d * burntime, burntime, self.projectiledeathtype | HITTYPE_BOUNCE);
94 //trailparticles(self, particleeffectnum("fireball_laser"), self.origin, RandomSelection_chosen_ent.fireball_impactvec);
95 pointparticles(particleeffectnum("fireball_laser"), self.origin, RandomSelection_chosen_ent.fireball_impactvec - self.origin, 1);
99 void W_Fireball_Think()
101 if(time > self.pushltime)
104 self.projectiledeathtype |= HITTYPE_SPLASH;
105 W_Fireball_Explode();
109 W_Fireball_LaserPlay(0.1, autocvar_g_balance_fireball_primary_laserradius, autocvar_g_balance_fireball_primary_laserdamage, autocvar_g_balance_fireball_primary_laseredgedamage, autocvar_g_balance_fireball_primary_laserburntime);
111 self.nextthink = time + 0.1;
114 void W_Fireball_Damage (entity inflictor, entity attacker, float damage, float deathtype, vector hitloc, vector force)
119 if (!W_CheckProjectileDamage(inflictor.realowner, self.realowner, deathtype, -1)) // no exceptions
120 return; // g_projectiles_damage says to halt
122 self.health = self.health - damage;
123 if (self.health <= 0)
126 W_PrepareExplosionByDamage(attacker, W_Fireball_Explode);
130 void W_Fireball_Attack1()
134 W_SetupShot_ProjectileSize (self, '-16 -16 -16', '16 16 16', FALSE, 2, "weapons/fireball_fire2.wav", CH_WEAPON_A, autocvar_g_balance_fireball_primary_damage + autocvar_g_balance_fireball_primary_bfgdamage);
136 pointparticles(particleeffectnum("fireball_muzzleflash"), w_shotorg, w_shotdir * 1000, 1);
139 proj.classname = "plasma_prim";
140 proj.owner = proj.realowner = self;
141 proj.bot_dodge = TRUE;
142 proj.bot_dodgerating = autocvar_g_balance_fireball_primary_damage;
143 proj.pushltime = time + autocvar_g_balance_fireball_primary_lifetime;
144 proj.use = W_Fireball_Explode;
145 proj.think = W_Fireball_Think;
146 proj.nextthink = time;
147 proj.health = autocvar_g_balance_fireball_primary_health;
148 proj.team = self.team;
149 proj.event_damage = W_Fireball_Damage;
150 proj.takedamage = DAMAGE_YES;
151 proj.damageforcescale = autocvar_g_balance_fireball_primary_damageforcescale;
152 PROJECTILE_MAKETRIGGER(proj);
153 proj.projectiledeathtype = WEP_FIREBALL;
154 setorigin(proj, w_shotorg);
156 proj.movetype = MOVETYPE_FLY;
157 W_SETUPPROJECTILEVELOCITY(proj, g_balance_fireball_primary);
158 proj.angles = vectoangles(proj.velocity);
159 proj.touch = W_Fireball_TouchExplode;
160 setsize(proj, '-16 -16 -16', '16 16 16');
161 proj.flags = FL_PROJECTILE;
162 proj.missile_flags = MIF_SPLASH | MIF_PROXY;
164 CSQCProjectile(proj, TRUE, PROJECTILE_FIREBALL, TRUE);
166 other = proj; MUTATOR_CALLHOOK(EditProjectile);
169 void W_Fireball_AttackEffect(float i, vector f_diff)
171 W_SetupShot_ProjectileSize (self, '-16 -16 -16', '16 16 16', FALSE, 0, "", 0, 0);
172 w_shotorg += f_diff_x * v_up + f_diff_y * v_right;
173 pointparticles(particleeffectnum("fireball_preattack_muzzleflash"), w_shotorg, w_shotdir * 1000, 1);
176 void W_Fireball_Attack1_Frame4()
178 W_Fireball_Attack1();
179 weapon_thinkf(WFRAME_FIRE1, autocvar_g_balance_fireball_primary_animtime, w_ready);
182 void W_Fireball_Attack1_Frame3()
184 W_Fireball_AttackEffect(0, '+1.25 +3.75 0');
185 weapon_thinkf(WFRAME_FIRE1, autocvar_g_balance_fireball_primary_animtime, W_Fireball_Attack1_Frame4);
188 void W_Fireball_Attack1_Frame2()
190 W_Fireball_AttackEffect(0, '-1.25 +3.75 0');
191 weapon_thinkf(WFRAME_FIRE1, autocvar_g_balance_fireball_primary_animtime, W_Fireball_Attack1_Frame3);
194 void W_Fireball_Attack1_Frame1()
196 W_Fireball_AttackEffect(1, '+1.25 -3.75 0');
197 weapon_thinkf(WFRAME_FIRE1, autocvar_g_balance_fireball_primary_animtime, W_Fireball_Attack1_Frame2);
200 void W_Fireball_Attack1_Frame0()
202 W_Fireball_AttackEffect(0, '-1.25 -3.75 0');
203 sound (self, CH_WEAPON_SINGLE, "weapons/fireball_prefire2.wav", VOL_BASE, ATTN_NORM);
204 weapon_thinkf(WFRAME_FIRE1, autocvar_g_balance_fireball_primary_animtime, W_Fireball_Attack1_Frame1);
207 void W_Firemine_Think()
209 if(time > self.pushltime)
215 // make it "hot" once it leaves its owner
218 if(vlen(self.origin - self.owner.origin - self.owner.view_ofs) > autocvar_g_balance_fireball_secondary_laserradius)
228 W_Fireball_LaserPlay(0.1, autocvar_g_balance_fireball_secondary_laserradius, autocvar_g_balance_fireball_secondary_laserdamage, autocvar_g_balance_fireball_secondary_laseredgedamage, autocvar_g_balance_fireball_secondary_laserburntime);
230 self.nextthink = time + 0.1;
233 void W_Firemine_Touch (void)
236 if (other.takedamage == DAMAGE_AIM)
237 if(Fire_AddDamage(other, self.realowner, autocvar_g_balance_fireball_secondary_damage, autocvar_g_balance_fireball_secondary_damagetime, self.projectiledeathtype) >= 0)
242 self.projectiledeathtype |= HITTYPE_BOUNCE;
245 void W_Fireball_Attack2()
251 c = mod(self.bulletcounter, 4);
255 f_diff = '-1.25 -3.75 0';
258 f_diff = '+1.25 -3.75 0';
261 f_diff = '-1.25 +3.75 0';
265 f_diff = '+1.25 +3.75 0';
268 W_SetupShot_ProjectileSize(self, '-4 -4 -4', '4 4 4', FALSE, 2, "weapons/fireball_fire.wav", CH_WEAPON_A, autocvar_g_balance_fireball_secondary_damage);
269 traceline(w_shotorg, w_shotorg + f_diff_x * v_up + f_diff_y * v_right, MOVE_NORMAL, self);
270 w_shotorg = trace_endpos;
272 pointparticles(particleeffectnum("fireball_muzzleflash"), w_shotorg, w_shotdir * 1000, 1);
275 proj.owner = proj.realowner = self;
276 proj.classname = "grenade";
277 proj.bot_dodge = TRUE;
278 proj.bot_dodgerating = autocvar_g_balance_fireball_secondary_damage;
279 proj.movetype = MOVETYPE_BOUNCE;
280 proj.projectiledeathtype = WEP_FIREBALL | HITTYPE_SECONDARY;
281 proj.touch = W_Firemine_Touch;
282 PROJECTILE_MAKETRIGGER(proj);
283 setsize(proj, '-4 -4 -4', '4 4 4');
284 setorigin(proj, w_shotorg);
285 proj.think = W_Firemine_Think;
286 proj.nextthink = time;
287 proj.damageforcescale = autocvar_g_balance_fireball_secondary_damageforcescale;
288 proj.pushltime = time + autocvar_g_balance_fireball_secondary_lifetime;
289 W_SETUPPROJECTILEVELOCITY_UP(proj, g_balance_fireball_secondary);
291 proj.angles = vectoangles(proj.velocity);
292 proj.flags = FL_PROJECTILE;
293 proj.missile_flags = MIF_SPLASH | MIF_PROXY | MIF_ARC;
295 CSQCProjectile(proj, TRUE, PROJECTILE_FIREMINE, TRUE);
297 other = proj; MUTATOR_CALLHOOK(EditProjectile);
300 void spawnfunc_weapon_fireball (void)
302 weapon_defaultspawnfunc(WEP_FIREBALL);
305 float w_fireball(float req)
310 self.BUTTON_ATCK = FALSE;
311 self.BUTTON_ATCK2 = FALSE;
312 if (self.bot_primary_fireballmooth == 0)
314 if(bot_aim(autocvar_g_balance_fireball_primary_speed, 0, autocvar_g_balance_fireball_primary_lifetime, FALSE))
316 self.BUTTON_ATCK = TRUE;
317 if(random() < 0.02) self.bot_primary_fireballmooth = 0;
322 if(bot_aim(autocvar_g_balance_fireball_secondary_speed, autocvar_g_balance_fireball_secondary_speed_up, autocvar_g_balance_fireball_secondary_lifetime, TRUE))
324 self.BUTTON_ATCK2 = TRUE;
325 if(random() < 0.01) self.bot_primary_fireballmooth = 1;
329 else if (req == WR_THINK)
331 if (self.BUTTON_ATCK)
333 if (time >= self.fireball_primarytime)
334 if (weapon_prepareattack(0, autocvar_g_balance_fireball_primary_refire))
336 W_Fireball_Attack1_Frame0();
337 self.fireball_primarytime = time + autocvar_g_balance_fireball_primary_refire2 * W_WeaponRateFactor();
340 else if (self.BUTTON_ATCK2)
342 if (weapon_prepareattack(1, autocvar_g_balance_fireball_secondary_refire))
344 W_Fireball_Attack2();
345 weapon_thinkf(WFRAME_FIRE2, autocvar_g_balance_fireball_secondary_animtime, w_ready);
349 else if (req == WR_PRECACHE)
351 precache_model ("models/weapons/g_fireball.md3");
352 precache_model ("models/weapons/v_fireball.md3");
353 precache_model ("models/weapons/h_fireball.iqm");
354 precache_model ("models/sphere/sphere.md3");
355 precache_sound ("weapons/fireball_fire.wav");
356 precache_sound ("weapons/fireball_fire2.wav");
357 precache_sound ("weapons/fireball_prefire2.wav");
358 //precache_sound ("weapons/reload.wav"); // until weapons have individual reload sounds, precache the reload sound somewhere else
360 else if (req == WR_SETUP)
362 weapon_setup(WEP_FIREBALL);
363 self.current_ammo = ammo_none;
365 else if (req == WR_CHECKAMMO1)
369 else if (req == WR_CHECKAMMO2)
373 else if (req == WR_RESETPLAYER)
375 self.fireball_primarytime = time;
377 else if (req == WR_SUICIDEMESSAGE)
379 if(w_deathtype & HITTYPE_SECONDARY)
380 return WEAPON_FIREBALL_SUICIDE_FIREMINE;
382 return WEAPON_FIREBALL_SUICIDE_BLAST;
384 else if (req == WR_KILLMESSAGE)
386 if(w_deathtype & HITTYPE_SECONDARY)
388 return WEAPON_FIREBALL_MURDER_FIREMINE;
392 return WEAPON_FIREBALL_MURDER_BLAST;
399 float w_fireball(float req)
401 if(req == WR_IMPACTEFFECT)
404 if(w_deathtype & HITTYPE_SECONDARY)
406 // firemine goes out silently
410 org2 = w_org + w_backoff * 16;
411 pointparticles(particleeffectnum("fireball_explode"), org2, '0 0 0', 1);
413 sound(self, CH_SHOTS, "weapons/fireball_impact2.wav", VOL_BASE, ATTN_NORM * 0.25); // long range boom
416 else if(req == WR_PRECACHE)
418 precache_sound("weapons/fireball_impact2.wav");