2 CLASS(Fireball, Weapon)
3 /* ammotype */ //ATTRIB(Fireball, ammo_field, .int, ammo_none)
4 /* impulse */ ATTRIB(Fireball, impulse, int, 9)
5 /* flags */ ATTRIB(Fireball, spawnflags, int, WEP_FLAG_SUPERWEAPON | WEP_TYPE_SPLASH);
6 /* rating */ ATTRIB(Fireball, bot_pickupbasevalue, float, BOT_PICKUP_RATING_MID);
7 /* color */ ATTRIB(Fireball, wpcolor, vector, '1 0.5 0');
8 /* modelname */ ATTRIB(Fireball, mdl, string, "fireball");
10 /* model */ ATTRIB(Fireball, m_model, Model, MDL_FIREBALL_ITEM);
12 /* crosshair */ ATTRIB(Fireball, w_crosshair, string, "gfx/crosshairfireball");
13 /* crosshair */ //ATTRIB(Fireball, w_crosshair_size, float, 0.65);
14 /* wepimg */ ATTRIB(Fireball, model2, string, "weaponfireball");
15 /* refname */ ATTRIB(Fireball, netname, string, "fireball");
16 /* wepname */ ATTRIB(Fireball, message, string, _("Fireball"));
18 REGISTER_WEAPON(FIREBALL, NEW(Fireball));
20 #define FIREBALL_SETTINGS(w_cvar,w_prop) FIREBALL_SETTINGS_LIST(w_cvar, w_prop, FIREBALL, fireball)
21 #define FIREBALL_SETTINGS_LIST(w_cvar,w_prop,id,sn) \
22 w_cvar(id, sn, BOTH, animtime) \
23 w_cvar(id, sn, BOTH, refire) \
24 w_cvar(id, sn, BOTH, damage) \
25 w_cvar(id, sn, BOTH, damageforcescale) \
26 w_cvar(id, sn, BOTH, speed) \
27 w_cvar(id, sn, BOTH, spread) \
28 w_cvar(id, sn, BOTH, lifetime) \
29 w_cvar(id, sn, BOTH, laserburntime) \
30 w_cvar(id, sn, BOTH, laserdamage) \
31 w_cvar(id, sn, BOTH, laseredgedamage) \
32 w_cvar(id, sn, BOTH, laserradius) \
33 w_cvar(id, sn, PRI, edgedamage) \
34 w_cvar(id, sn, PRI, force) \
35 w_cvar(id, sn, PRI, radius) \
36 w_cvar(id, sn, PRI, health) \
37 w_cvar(id, sn, PRI, refire2) \
38 w_cvar(id, sn, PRI, bfgdamage) \
39 w_cvar(id, sn, PRI, bfgforce) \
40 w_cvar(id, sn, PRI, bfgradius) \
41 w_cvar(id, sn, SEC, damagetime) \
42 w_cvar(id, sn, SEC, speed_up) \
43 w_cvar(id, sn, SEC, speed_z) \
44 w_prop(id, sn, float, switchdelay_raise, switchdelay_raise) \
45 w_prop(id, sn, float, switchdelay_drop, switchdelay_drop) \
46 w_prop(id, sn, string, weaponreplace, weaponreplace) \
47 w_prop(id, sn, float, weaponstart, weaponstart) \
48 w_prop(id, sn, float, weaponstartoverride, weaponstartoverride) \
49 w_prop(id, sn, float, weaponthrowable, weaponthrowable)
52 FIREBALL_SETTINGS(WEP_ADD_CVAR, WEP_ADD_PROP)
53 .float bot_primary_fireballmooth; // whatever a mooth is
54 .vector fireball_impactvec;
55 .float fireball_primarytime;
60 void spawnfunc_weapon_fireball(void) { weapon_defaultspawnfunc(WEP_FIREBALL.m_id); }
62 void W_Fireball_Explode(void)
70 self.event_damage = func_null;
71 self.takedamage = DAMAGE_NO;
74 d = (self.realowner.health + self.realowner.armorvalue);
75 RadiusDamage(self, self.realowner, WEP_CVAR_PRI(fireball, damage), WEP_CVAR_PRI(fireball, edgedamage), WEP_CVAR_PRI(fireball, radius), world, world, WEP_CVAR_PRI(fireball, force), self.projectiledeathtype, other);
76 if(self.realowner.health + self.realowner.armorvalue >= d)
79 modeleffect_spawn("models/sphere/sphere.md3", 0, 0, self.origin, '0 0 0', '0 0 0', '0 0 0', 0, WEP_CVAR_PRI(fireball, bfgradius), 0.2, 0.05, 0.25);
82 // NOTE: this cannot be made warpzone aware by design. So, better intentionally ignore warpzones here.
83 for(e = findradius(self.origin, WEP_CVAR_PRI(fireball, bfgradius)); e; e = e.chain)
84 if(e != self.realowner) if(e.takedamage == DAMAGE_AIM) if(!IS_PLAYER(e) || !self.realowner || DIFF_TEAM(e, self))
86 // can we see fireball?
87 traceline(e.origin + e.view_ofs, self.origin, MOVE_NORMAL, e);
88 if(/* trace_startsolid || */ trace_fraction != 1) // startsolid should be never happening anyway
90 // can we see player who shot fireball?
91 traceline(e.origin + e.view_ofs, self.realowner.origin + self.realowner.view_ofs, MOVE_NORMAL, e);
92 if(trace_ent != self.realowner)
93 if(/* trace_startsolid || */ trace_fraction != 1)
95 dist = vlen(self.origin - e.origin - e.view_ofs);
96 points = (1 - sqrt(dist / WEP_CVAR_PRI(fireball, bfgradius)));
99 dir = normalize(e.origin + e.view_ofs - self.origin);
101 if(accuracy_isgooddamage(self.realowner, e))
102 accuracy_add(self.realowner, WEP_FIREBALL.m_id, 0, WEP_CVAR_PRI(fireball, bfgdamage) * points);
104 Damage(e, self, self.realowner, WEP_CVAR_PRI(fireball, bfgdamage) * points, self.projectiledeathtype | HITTYPE_BOUNCE | HITTYPE_SPLASH, e.origin + e.view_ofs, WEP_CVAR_PRI(fireball, bfgforce) * dir);
105 Send_Effect(EFFECT_FIREBALL_BFGDAMAGE, e.origin, -1 * dir, 1);
112 void W_Fireball_TouchExplode(void)
115 W_Fireball_Explode();
118 void W_Fireball_LaserPlay(float dt, float dist, float damage, float edgedamage, float burntime)
127 RandomSelection_Init();
128 for(e = WarpZone_FindRadius(self.origin, dist, true); e; e = e.chain)
129 if(e != self.realowner) if(e.takedamage == DAMAGE_AIM) if(!IS_PLAYER(e) || !self.realowner || DIFF_TEAM(e, self))
132 p.x += e.mins.x + random() * (e.maxs.x - e.mins.x);
133 p.y += e.mins.y + random() * (e.maxs.y - e.mins.y);
134 p.z += e.mins.z + random() * (e.maxs.z - e.mins.z);
135 d = vlen(WarpZone_UnTransformOrigin(e, self.origin) - p);
138 e.fireball_impactvec = p;
139 RandomSelection_Add(e, 0, string_null, 1 / (1 + d), !Fire_IsBurning(e));
142 if(RandomSelection_chosen_ent)
144 d = vlen(WarpZone_UnTransformOrigin(RandomSelection_chosen_ent, self.origin) - RandomSelection_chosen_ent.fireball_impactvec);
145 d = damage + (edgedamage - damage) * (d / dist);
146 Fire_AddDamage(RandomSelection_chosen_ent, self.realowner, d * burntime, burntime, self.projectiledeathtype | HITTYPE_BOUNCE);
147 //trailparticles(self, particleeffectnum(EFFECT_FIREBALL_LASER), self.origin, RandomSelection_chosen_ent.fireball_impactvec);
148 Send_Effect(EFFECT_FIREBALL_LASER, self.origin, RandomSelection_chosen_ent.fireball_impactvec - self.origin, 1);
152 void W_Fireball_Think(void)
154 if(time > self.pushltime)
157 self.projectiledeathtype |= HITTYPE_SPLASH;
158 W_Fireball_Explode();
162 W_Fireball_LaserPlay(0.1, WEP_CVAR_PRI(fireball, laserradius), WEP_CVAR_PRI(fireball, laserdamage), WEP_CVAR_PRI(fireball, laseredgedamage), WEP_CVAR_PRI(fireball, laserburntime));
164 self.nextthink = time + 0.1;
167 void W_Fireball_Damage(entity inflictor, entity attacker, float damage, int deathtype, vector hitloc, vector force)
172 if(!W_CheckProjectileDamage(inflictor.realowner, self.realowner, deathtype, -1)) // no exceptions
173 return; // g_projectiles_damage says to halt
175 self.health = self.health - damage;
179 W_PrepareExplosionByDamage(attacker, W_Fireball_Explode);
183 void W_Fireball_Attack1(void)
187 W_SetupShot_ProjectileSize(self, '-16 -16 -16', '16 16 16', false, 2, SND(FIREBALL_FIRE2), CH_WEAPON_A, WEP_CVAR_PRI(fireball, damage) + WEP_CVAR_PRI(fireball, bfgdamage));
189 Send_Effect(EFFECT_FIREBALL_MUZZLEFLASH, w_shotorg, w_shotdir * 1000, 1);
192 proj.classname = "plasma_prim";
193 proj.owner = proj.realowner = self;
194 proj.bot_dodge = true;
195 proj.bot_dodgerating = WEP_CVAR_PRI(fireball, damage);
196 proj.pushltime = time + WEP_CVAR_PRI(fireball, lifetime);
197 proj.use = W_Fireball_Explode;
198 proj.think = W_Fireball_Think;
199 proj.nextthink = time;
200 proj.health = WEP_CVAR_PRI(fireball, health);
201 proj.team = self.team;
202 proj.event_damage = W_Fireball_Damage;
203 proj.takedamage = DAMAGE_YES;
204 proj.damageforcescale = WEP_CVAR_PRI(fireball, damageforcescale);
205 PROJECTILE_MAKETRIGGER(proj);
206 proj.projectiledeathtype = WEP_FIREBALL.m_id;
207 setorigin(proj, w_shotorg);
209 proj.movetype = MOVETYPE_FLY;
210 W_SetupProjVelocity_PRI(proj, fireball);
211 proj.angles = vectoangles(proj.velocity);
212 proj.touch = W_Fireball_TouchExplode;
213 setsize(proj, '-16 -16 -16', '16 16 16');
214 proj.flags = FL_PROJECTILE;
215 proj.missile_flags = MIF_SPLASH | MIF_PROXY;
217 CSQCProjectile(proj, true, PROJECTILE_FIREBALL, true);
219 MUTATOR_CALLHOOK(EditProjectile, self, proj);
222 void W_Fireball_AttackEffect(float i, vector f_diff)
224 W_SetupShot_ProjectileSize(self, '-16 -16 -16', '16 16 16', false, 0, "", 0, 0);
225 w_shotorg += f_diff.x * v_up + f_diff.y * v_right;
226 Send_Effect(EFFECT_FIREBALL_PRE_MUZZLEFLASH, w_shotorg, w_shotdir * 1000, 1);
229 void W_Fireball_Attack1_Frame4(void)
231 W_Fireball_Attack1();
232 weapon_thinkf(WFRAME_FIRE1, WEP_CVAR_PRI(fireball, animtime), w_ready);
235 void W_Fireball_Attack1_Frame3(void)
237 W_Fireball_AttackEffect(0, '+1.25 +3.75 0');
238 weapon_thinkf(WFRAME_FIRE1, WEP_CVAR_PRI(fireball, animtime), W_Fireball_Attack1_Frame4);
241 void W_Fireball_Attack1_Frame2(void)
243 W_Fireball_AttackEffect(0, '-1.25 +3.75 0');
244 weapon_thinkf(WFRAME_FIRE1, WEP_CVAR_PRI(fireball, animtime), W_Fireball_Attack1_Frame3);
247 void W_Fireball_Attack1_Frame1(void)
249 W_Fireball_AttackEffect(1, '+1.25 -3.75 0');
250 weapon_thinkf(WFRAME_FIRE1, WEP_CVAR_PRI(fireball, animtime), W_Fireball_Attack1_Frame2);
253 void W_Fireball_Attack1_Frame0(void)
255 W_Fireball_AttackEffect(0, '-1.25 -3.75 0');
256 sound(self, CH_WEAPON_SINGLE, SND_FIREBALL_PREFIRE2, VOL_BASE, ATTEN_NORM);
257 weapon_thinkf(WFRAME_FIRE1, WEP_CVAR_PRI(fireball, animtime), W_Fireball_Attack1_Frame1);
260 void W_Fireball_Firemine_Think(void)
262 if(time > self.pushltime)
268 // make it "hot" once it leaves its owner
271 if(vlen(self.origin - self.owner.origin - self.owner.view_ofs) > WEP_CVAR_SEC(fireball, laserradius))
281 W_Fireball_LaserPlay(0.1, WEP_CVAR_SEC(fireball, laserradius), WEP_CVAR_SEC(fireball, laserdamage), WEP_CVAR_SEC(fireball, laseredgedamage), WEP_CVAR_SEC(fireball, laserburntime));
283 self.nextthink = time + 0.1;
286 void W_Fireball_Firemine_Touch(void)
289 if(other.takedamage == DAMAGE_AIM)
290 if(Fire_AddDamage(other, self.realowner, WEP_CVAR_SEC(fireball, damage), WEP_CVAR_SEC(fireball, damagetime), self.projectiledeathtype) >= 0)
295 self.projectiledeathtype |= HITTYPE_BOUNCE;
298 void W_Fireball_Attack2(void)
304 c = self.bulletcounter % 4;
308 f_diff = '-1.25 -3.75 0';
311 f_diff = '+1.25 -3.75 0';
314 f_diff = '-1.25 +3.75 0';
318 f_diff = '+1.25 +3.75 0';
321 W_SetupShot_ProjectileSize(self, '-4 -4 -4', '4 4 4', false, 2, SND(FIREBALL_FIRE), CH_WEAPON_A, WEP_CVAR_SEC(fireball, damage));
322 traceline(w_shotorg, w_shotorg + f_diff_x * v_up + f_diff_y * v_right, MOVE_NORMAL, self);
323 w_shotorg = trace_endpos;
325 Send_Effect(EFFECT_FIREBALL_MUZZLEFLASH, w_shotorg, w_shotdir * 1000, 1);
328 proj.owner = proj.realowner = self;
329 proj.classname = "grenade";
330 proj.bot_dodge = true;
331 proj.bot_dodgerating = WEP_CVAR_SEC(fireball, damage);
332 proj.movetype = MOVETYPE_BOUNCE;
333 proj.projectiledeathtype = WEP_FIREBALL.m_id | HITTYPE_SECONDARY;
334 proj.touch = W_Fireball_Firemine_Touch;
335 PROJECTILE_MAKETRIGGER(proj);
336 setsize(proj, '-4 -4 -4', '4 4 4');
337 setorigin(proj, w_shotorg);
338 proj.think = W_Fireball_Firemine_Think;
339 proj.nextthink = time;
340 proj.damageforcescale = WEP_CVAR_SEC(fireball, damageforcescale);
341 proj.pushltime = time + WEP_CVAR_SEC(fireball, lifetime);
342 W_SetupProjVelocity_UP_SEC(proj, fireball);
344 proj.angles = vectoangles(proj.velocity);
345 proj.flags = FL_PROJECTILE;
346 proj.missile_flags = MIF_SPLASH | MIF_PROXY | MIF_ARC;
348 CSQCProjectile(proj, true, PROJECTILE_FIREMINE, true);
350 MUTATOR_CALLHOOK(EditProjectile, self, proj);
353 METHOD(Fireball, wr_aim, bool(entity thiswep))
355 self.BUTTON_ATCK = false;
356 self.BUTTON_ATCK2 = false;
357 if(self.bot_primary_fireballmooth == 0)
359 if(bot_aim(WEP_CVAR_PRI(fireball, speed), 0, WEP_CVAR_PRI(fireball, lifetime), false))
361 self.BUTTON_ATCK = true;
362 if(random() < 0.02) self.bot_primary_fireballmooth = 0;
367 if(bot_aim(WEP_CVAR_SEC(fireball, speed), WEP_CVAR_SEC(fireball, speed_up), WEP_CVAR_SEC(fireball, lifetime), true))
369 self.BUTTON_ATCK2 = true;
370 if(random() < 0.01) self.bot_primary_fireballmooth = 1;
376 METHOD(Fireball, wr_think, bool(entity thiswep))
380 if(time >= self.fireball_primarytime)
381 if(weapon_prepareattack(0, WEP_CVAR_PRI(fireball, refire)))
383 W_Fireball_Attack1_Frame0();
384 self.fireball_primarytime = time + WEP_CVAR_PRI(fireball, refire2) * W_WeaponRateFactor();
387 else if(self.BUTTON_ATCK2)
389 if(weapon_prepareattack(1, WEP_CVAR_SEC(fireball, refire)))
391 W_Fireball_Attack2();
392 weapon_thinkf(WFRAME_FIRE2, WEP_CVAR_SEC(fireball, animtime), w_ready);
398 METHOD(Fireball, wr_init, bool(entity thiswep))
400 FIREBALL_SETTINGS(WEP_SKIP_CVAR, WEP_SET_PROP);
403 METHOD(Fireball, wr_setup, bool(entity thiswep))
405 self.ammo_field = ammo_none;
408 METHOD(Fireball, wr_checkammo1, bool(entity thiswep))
410 return true; // infinite ammo
412 METHOD(Fireball, wr_checkammo2, bool(entity thiswep))
414 return true; // fireball has infinite ammo
416 METHOD(Fireball, wr_config, bool(entity thiswep))
418 FIREBALL_SETTINGS(WEP_CONFIG_WRITE_CVARS, WEP_CONFIG_WRITE_PROPS);
421 METHOD(Fireball, wr_resetplayer, bool(entity thiswep))
423 self.fireball_primarytime = time;
426 METHOD(Fireball, wr_suicidemessage, bool(entity thiswep))
428 if(w_deathtype & HITTYPE_SECONDARY)
429 return WEAPON_FIREBALL_SUICIDE_FIREMINE;
431 return WEAPON_FIREBALL_SUICIDE_BLAST;
433 METHOD(Fireball, wr_killmessage, bool(entity thiswep))
435 if(w_deathtype & HITTYPE_SECONDARY)
436 return WEAPON_FIREBALL_MURDER_FIREMINE;
438 return WEAPON_FIREBALL_MURDER_BLAST;
444 METHOD(Fireball, wr_impacteffect, bool(entity thiswep))
447 if(w_deathtype & HITTYPE_SECONDARY)
449 // firemine goes out silently
453 org2 = w_org + w_backoff * 16;
454 pointparticles(particleeffectnum(EFFECT_FIREBALL_EXPLODE), org2, '0 0 0', 1);
456 sound(self, CH_SHOTS, SND_FIREBALL_IMPACT2, VOL_BASE, ATTEN_NORM * 0.25); // long range boom
461 METHOD(Fireball, wr_init, bool(entity thiswep))
465 METHOD(Fireball, wr_zoomreticle, bool(entity thiswep))
467 // no weapon specific image for this weapon