3 /* ammotype */ ATTRIB(Hook, ammo_field, .int, ammo_fuel)
4 /* impulse */ ATTRIB(Hook, impulse, int, 0)
5 /* flags */ ATTRIB(Hook, spawnflags, int, WEP_FLAG_CANCLIMB | WEP_TYPE_SPLASH);
6 /* rating */ ATTRIB(Hook, bot_pickupbasevalue, float, 0);
7 /* color */ ATTRIB(Hook, wpcolor, vector, '0 0.5 0');
8 /* modelname */ ATTRIB(Hook, mdl, string, "hookgun");
10 /* model */ ATTRIB(Hook, m_model, Model, MDL_HOOK_ITEM);
12 /* crosshair */ ATTRIB(Hook, w_crosshair, string, "gfx/crosshairhook");
13 /* crosshair */ ATTRIB(Hook, w_crosshair_size, float, 0.5);
14 /* wepimg */ ATTRIB(Hook, model2, string, "weaponhook");
15 /* refname */ ATTRIB(Hook, netname, string, "hook");
16 /* wepname */ ATTRIB(Hook, m_name, string, _("Grappling Hook"));
17 ATTRIB(Hook, ammo_factor, float, 1)
19 REGISTER_WEAPON(HOOK, NEW(Hook));
21 CLASS(OffhandHook, OffhandWeapon)
23 METHOD(OffhandHook, offhand_think, void(OffhandHook this, entity actor, bool key_pressed))
25 Weapon wep = WEP_HOOK;
26 .entity weaponentity = weaponentities[1];
27 wep.wr_think(wep, actor, weaponentity, key_pressed ? 1 : 0);
31 OffhandHook OFFHAND_HOOK; STATIC_INIT(OFFHAND_HOOK) { OFFHAND_HOOK = NEW(OffhandHook); }
33 #define HOOK_SETTINGS(w_cvar,w_prop) HOOK_SETTINGS_LIST(w_cvar, w_prop, HOOK, hook)
34 #define HOOK_SETTINGS_LIST(w_cvar,w_prop,id,sn) \
35 w_cvar(id, sn, BOTH, animtime) \
36 w_cvar(id, sn, BOTH, refire) \
37 w_cvar(id, sn, PRI, ammo) \
38 w_cvar(id, sn, PRI, hooked_ammo) \
39 w_cvar(id, sn, PRI, hooked_time_free) \
40 w_cvar(id, sn, PRI, hooked_time_max) \
41 w_cvar(id, sn, SEC, damage) \
42 w_cvar(id, sn, SEC, duration) \
43 w_cvar(id, sn, SEC, edgedamage) \
44 w_cvar(id, sn, SEC, force) \
45 w_cvar(id, sn, SEC, gravity) \
46 w_cvar(id, sn, SEC, lifetime) \
47 w_cvar(id, sn, SEC, power) \
48 w_cvar(id, sn, SEC, radius) \
49 w_cvar(id, sn, SEC, speed) \
50 w_cvar(id, sn, SEC, health) \
51 w_cvar(id, sn, SEC, damageforcescale) \
52 w_prop(id, sn, float, switchdelay_raise, switchdelay_raise) \
53 w_prop(id, sn, float, switchdelay_drop, switchdelay_drop) \
54 w_prop(id, sn, string, weaponreplace, weaponreplace) \
55 w_prop(id, sn, float, weaponstart, weaponstart) \
56 w_prop(id, sn, float, weaponstartoverride, weaponstartoverride) \
57 w_prop(id, sn, float, weaponthrowable, weaponthrowable)
60 HOOK_SETTINGS(WEP_ADD_CVAR, WEP_ADD_PROP)
70 .float hook_time_hooked;
71 .float hook_time_fueldecrease;
77 spawnfunc(weapon_hook) { weapon_defaultspawnfunc(this, WEP_HOOK); }
79 void W_Hook_ExplodeThink()
81 float dt, dmg_remaining_next, f;
83 dt = time - self.teleport_time;
84 dmg_remaining_next = pow(bound(0, 1 - dt / self.dmg_duration, 1), self.dmg_power);
86 f = self.dmg_last - dmg_remaining_next;
87 self.dmg_last = dmg_remaining_next;
89 RadiusDamage(self, self.realowner, self.dmg * f, self.dmg_edge * f, self.dmg_radius, self.realowner, world, self.dmg_force * f, self.projectiledeathtype, world);
90 self.projectiledeathtype |= HITTYPE_BOUNCE;
91 //RadiusDamage(self, world, self.dmg * f, self.dmg_edge * f, self.dmg_radius, world, world, self.dmg_force * f, self.projectiledeathtype, world);
93 if(dt < self.dmg_duration)
94 self.nextthink = time + 0.05; // soon
99 void W_Hook_Explode2()
101 self.event_damage = func_null;
102 self.touch = func_null;
103 self.effects |= EF_NODRAW;
105 self.think = W_Hook_ExplodeThink;
106 self.nextthink = time;
107 self.dmg = WEP_CVAR_SEC(hook, damage);
108 self.dmg_edge = WEP_CVAR_SEC(hook, edgedamage);
109 self.dmg_radius = WEP_CVAR_SEC(hook, radius);
110 self.dmg_force = WEP_CVAR_SEC(hook, force);
111 self.dmg_power = WEP_CVAR_SEC(hook, power);
112 self.dmg_duration = WEP_CVAR_SEC(hook, duration);
113 self.teleport_time = time;
115 self.movetype = MOVETYPE_NONE;
118 void W_Hook_Damage(entity inflictor, entity attacker, float damage, int deathtype, vector hitloc, vector force)
123 if(!W_CheckProjectileDamage(inflictor.realowner, self.realowner, deathtype, -1)) // no exceptions
124 return; // g_projectiles_damage says to halt
126 self.health = self.health - damage;
129 W_PrepareExplosionByDamage(self.realowner, W_Hook_Explode2);
138 void W_Hook_Attack2(Weapon thiswep, entity actor)
140 //W_DecreaseAmmo(thiswep, actor, WEP_CVAR_SEC(hook, ammo)); // WEAPONTODO: Figure out how to handle ammo with hook secondary (gravitybomb)
141 W_SetupShot(actor, false, 4, SND(HOOKBOMB_FIRE), CH_WEAPON_A, WEP_CVAR_SEC(hook, damage));
143 entity gren = new(hookbomb);
144 gren.owner = gren.realowner = actor;
145 gren.bot_dodge = true;
146 gren.bot_dodgerating = WEP_CVAR_SEC(hook, damage);
147 gren.movetype = MOVETYPE_TOSS;
148 PROJECTILE_MAKETRIGGER(gren);
149 gren.projectiledeathtype = WEP_HOOK.m_id | HITTYPE_SECONDARY;
150 setorigin(gren, w_shotorg);
151 setsize(gren, '0 0 0', '0 0 0');
153 gren.nextthink = time + WEP_CVAR_SEC(hook, lifetime);
154 gren.think = adaptor_think2use_hittype_splash;
155 gren.use = W_Hook_Explode2;
156 gren.touch = W_Hook_Touch2;
158 gren.takedamage = DAMAGE_YES;
159 gren.health = WEP_CVAR_SEC(hook, health);
160 gren.damageforcescale = WEP_CVAR_SEC(hook, damageforcescale);
161 gren.event_damage = W_Hook_Damage;
162 gren.damagedbycontents = true;
163 gren.missile_flags = MIF_SPLASH | MIF_ARC;
165 gren.velocity = '0 0 1' * WEP_CVAR_SEC(hook, speed);
166 if (autocvar_g_projectiles_newton_style)
167 gren.velocity = gren.velocity + actor.velocity;
169 gren.gravity = WEP_CVAR_SEC(hook, gravity);
170 //W_SetupProjVelocity_Basic(gren); // just falling down!
172 gren.angles = '0 0 0';
173 gren.flags = FL_PROJECTILE;
175 CSQCProjectile(gren, true, PROJECTILE_HOOKBOMB, true);
177 MUTATOR_CALLHOOK(EditProjectile, actor, gren);
180 METHOD(Hook, wr_think, void(entity thiswep, entity actor, .entity weaponentity, int fire))
184 if(!(actor.hook_state & HOOK_WAITING_FOR_RELEASE))
185 if(time > actor.hook_refire)
186 if(weapon_prepareattack(thiswep, actor, weaponentity, false, -1))
188 W_DecreaseAmmo(thiswep, actor, thiswep.ammo_factor * WEP_CVAR_PRI(hook, ammo));
189 actor.hook_state |= HOOK_FIRING;
190 actor.hook_state |= HOOK_WAITING_FOR_RELEASE;
191 weapon_thinkf(actor, weaponentity, WFRAME_FIRE1, WEP_CVAR_PRI(hook, animtime), w_ready);
194 actor.hook_state |= HOOK_REMOVING;
195 actor.hook_state &= ~HOOK_WAITING_FOR_RELEASE;
200 if(weapon_prepareattack(thiswep, actor, weaponentity, true, WEP_CVAR_SEC(hook, refire)))
202 W_Hook_Attack2(thiswep, actor);
203 weapon_thinkf(actor, weaponentity, WFRAME_FIRE2, WEP_CVAR_SEC(hook, animtime), w_ready);
209 // if hooked, no bombs, and increase the timer
210 actor.hook_refire = max(actor.hook_refire, time + WEP_CVAR_PRI(hook, refire) * W_WeaponRateFactor());
212 // hook also inhibits health regeneration, but only for 1 second
213 if(!(actor.items & IT_UNLIMITED_WEAPON_AMMO))
214 actor.pauseregen_finished = max(actor.pauseregen_finished, time + autocvar_g_balance_pause_fuel_regen);
217 if(actor.hook && actor.hook.state == 1)
219 float hooked_time_max = WEP_CVAR_PRI(hook, hooked_time_max);
220 if(hooked_time_max > 0)
222 if( time > actor.hook_time_hooked + hooked_time_max )
223 actor.hook_state |= HOOK_REMOVING;
226 float hooked_fuel = thiswep.ammo_factor * WEP_CVAR_PRI(hook, hooked_ammo);
229 if( time > actor.hook_time_fueldecrease )
231 if(!(actor.items & IT_UNLIMITED_WEAPON_AMMO))
233 if( actor.ammo_fuel >= (time - actor.hook_time_fueldecrease) * hooked_fuel )
235 W_DecreaseAmmo(thiswep, actor, (time - actor.hook_time_fueldecrease) * hooked_fuel);
236 actor.hook_time_fueldecrease = time;
237 // decrease next frame again
242 actor.hook_state |= HOOK_REMOVING;
243 W_SwitchWeapon_Force(actor, w_getbestweapon(actor));
251 actor.hook_time_hooked = time;
252 actor.hook_time_fueldecrease = time + WEP_CVAR_PRI(hook, hooked_time_free);
255 actor.hook_state = BITSET(actor.hook_state, HOOK_PULLING, (!actor.BUTTON_CROUCH || !autocvar_g_balance_grapplehook_crouchslide));
257 if (actor.hook_state & HOOK_FIRING)
260 RemoveGrapplingHook(actor);
261 WITH(entity, self, actor, FireGrapplingHook());
262 actor.hook_state &= ~HOOK_FIRING;
263 actor.hook_refire = max(actor.hook_refire, time + autocvar_g_balance_grapplehook_refire * W_WeaponRateFactor());
265 else if (actor.hook_state & HOOK_REMOVING)
268 RemoveGrapplingHook(actor);
269 actor.hook_state &= ~HOOK_REMOVING;
272 METHOD(Hook, wr_init, void(entity thiswep))
274 HOOK_SETTINGS(WEP_SKIP_CVAR, WEP_SET_PROP);
276 METHOD(Hook, wr_setup, void(entity thiswep))
278 self.hook_state &= ~HOOK_WAITING_FOR_RELEASE;
280 METHOD(Hook, wr_checkammo1, bool(Hook thiswep))
282 if (!thiswep.ammo_factor) return true;
284 return self.ammo_fuel > 0;
286 return self.ammo_fuel >= WEP_CVAR_PRI(hook, ammo);
288 METHOD(Hook, wr_checkammo2, bool(Hook thiswep))
290 // infinite ammo for now
291 return true; // self.ammo_cells >= WEP_CVAR_SEC(hook, ammo); // WEAPONTODO: see above
293 METHOD(Hook, wr_config, void(entity thiswep))
295 HOOK_SETTINGS(WEP_CONFIG_WRITE_CVARS, WEP_CONFIG_WRITE_PROPS);
297 METHOD(Hook, wr_resetplayer, void(entity thiswep))
299 RemoveGrapplingHook(self);
301 self.hook_refire = time;
303 METHOD(Hook, wr_suicidemessage, int(entity thiswep))
307 METHOD(Hook, wr_killmessage, int(entity thiswep))
309 return WEAPON_HOOK_MURDER;
315 METHOD(Hook, wr_impacteffect, void(entity thiswep))
318 org2 = w_org + w_backoff * 2;
319 pointparticles(EFFECT_HOOK_EXPLODE, org2, '0 0 0', 1);
321 sound(self, CH_SHOTS, SND_HOOKBOMB_IMPACT, VOL_BASE, ATTN_NORM);