]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/g_hook.qc
2bc542ef70c45438668105b3cc1437e5910ae0ef
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / g_hook.qc
1 /*============================================
2
3       Wazat's Xonotic Grappling Hook
4
5         Contact: Wazat1@gmail.com
6
7
8 Installation instructions:
9 --------------------------
10
11 1. Place hook.c in your gamec source directory with the other source files.
12
13 2. Add this line to the bottom of progs.src:
14
15 gamec/hook.c
16
17 3. Open defs.h and add these lines to the very bottom:
18
19 // Wazat's grappling hook
20 .entity         hook;
21 void GrapplingHookFrame();
22 void RemoveGrapplingHook(entity pl);
23 void SetGrappleHookBindings();
24 // hook impulses
25 float GRAPHOOK_FIRE             = 20;
26 float GRAPHOOK_RELEASE          = 21;
27 // (note: you can change the hook impulse #'s to whatever you please)
28
29 4. Open client.c and add this to the top of PutClientInServer():
30
31         RemoveGrapplingHook(self); // Wazat's Grappling Hook
32
33 5. Find ClientConnect() (in client.c) and add these lines to the bottom:
34
35         // Wazat's grappling hook
36         SetGrappleHookBindings();
37
38 6. Still in client.c, find PlayerPreThink and add this line just above the call to W_WeaponFrame:
39
40         GrapplingHookFrame();
41
42 7. Build and test the mod.  You'll want to bind a key to "+hook" like this:
43 bind ctrl "+hook"
44
45 And you should be done!
46
47
48 ============================================*/
49
50 .string aiment_classname;
51 .float aiment_deadflag;
52 void SetMovetypeFollow(entity ent, entity e)
53 {
54         // FIXME this may not be warpzone aware
55         ent.movetype = MOVETYPE_FOLLOW; // make the hole follow
56         ent.solid = SOLID_NOT; // MOVETYPE_FOLLOW is always non-solid - this means this cannot be teleported by warpzones any more! Instead, we must notice when our owner gets teleported.
57         ent.aiment = e; // make the hole follow bmodel
58         ent.punchangle = e.angles; // the original angles of bmodel
59         ent.view_ofs = ent.origin - e.origin; // relative origin
60         ent.v_angle = ent.angles - e.angles; // relative angles
61         ent.aiment_classname = strzone(e.classname);
62         ent.aiment_deadflag = e.deadflag;
63 }
64 void UnsetMovetypeFollow(entity ent)
65 {
66         ent.movetype = MOVETYPE_FLY;
67         PROJECTILE_MAKETRIGGER(ent);
68         ent.aiment = world;
69 }
70 float LostMovetypeFollow(entity ent)
71 {
72 /*
73         if(ent.movetype != MOVETYPE_FOLLOW)
74                 if(ent.aiment)
75                         error("???");
76 */
77         if(ent.aiment)
78         {
79                 if(ent.aiment.classname != ent.aiment_classname)
80                         return 1;
81                 if(ent.aiment.deadflag != ent.aiment_deadflag)
82                         return 1;
83         }
84         return 0;
85 }
86
87 .float hook_length;
88 .float hook_switchweapon;
89
90 void RemoveGrapplingHook(entity pl)
91 {
92         if(pl.hook == world)
93                 return;
94         remove(pl.hook);
95         pl.hook = world;
96         if(pl.movetype == MOVETYPE_FLY)
97                 pl.movetype = MOVETYPE_WALK;
98
99         //pl.disableclientprediction = FALSE;
100 }
101
102 void GrapplingHookThink();
103 void GrapplingHook_Stop()
104 {
105         pointparticles(particleeffectnum("grapple_impact"), self.origin, '0 0 0', 1);
106         sound (self, CHAN_PROJECTILE, "weapons/hook_impact.wav", VOL_BASE, ATTN_NORM);
107
108         self.state = 1;
109         self.think = GrapplingHookThink;
110         self.nextthink = time;
111         self.touch = SUB_Null;
112         self.velocity = '0 0 0';
113         self.movetype = MOVETYPE_NONE;
114         self.hook_length = -1;
115 }
116
117 void GrapplingHookThink()
118 {
119         float spd, dist, minlength, pullspeed, ropestretch, ropeairfriction, rubberforce, newlength, rubberforce_overstretch;
120         vector dir, org, end, v0, dv, v, myorg;
121         if(self.owner.health <= 0 || self.owner.hook != self)   // how did that happen?
122         {                                                                                                               // well, better fix it anyway
123                 remove(self);
124                 return;
125         }
126         if(LostMovetypeFollow(self))
127         {
128                 RemoveGrapplingHook(self.owner);
129                 return;
130         }
131         if(self.aiment)
132                 WarpZone_RefSys_AddIncrementally(self, self.aiment);
133
134         self.nextthink = time;
135
136         makevectors(self.owner.v_angle);
137         org = self.owner.origin + self.owner.view_ofs + v_forward * hook_shotorigin_x + v_right * hook_shotorigin_y + v_up * hook_shotorigin_z;
138         myorg = WarpZone_RefSys_TransformOrigin(self.owner, self, org);
139
140         if(self.hook_length < 0)
141                 self.hook_length = vlen(myorg - self.origin);
142
143         if(self.state == 1)
144         {
145                 pullspeed = cvar("g_balance_grapplehook_speed_pull");//2000;
146                 // speed the rope is pulled with
147
148                 rubberforce = cvar("g_balance_grapplehook_force_rubber");//2000;
149                 // force the rope will use if it is stretched
150
151                 rubberforce_overstretch = cvar("g_balance_grapplehook_force_rubber_overstretch");//1000;
152                 // force the rope will use if it is stretched
153
154                 minlength = cvar("g_balance_grapplehook_length_min");//100;
155                 // minimal rope length
156                 // if the rope goes below this length, it isn't pulled any more
157
158                 ropestretch = cvar("g_balance_grapplehook_stretch");//400;
159                 // if the rope is stretched by more than this amount, more rope is
160                 // given to you again
161
162                 ropeairfriction = cvar("g_balance_grapplehook_airfriction");//0.2
163                 // while hanging on the rope, this friction component will help you a
164                 // bit to control the rope
165
166                 dir = self.origin - myorg;
167                 dist = vlen(dir);
168                 dir = normalize(dir);
169
170                 if(cvar("g_grappling_hook_tarzan"))
171                 {
172                         v = v0 = WarpZone_RefSys_TransformVelocity(self.owner, self, self.owner.velocity);
173
174                         // first pull the rope...
175                         if(self.owner.hook_state & HOOK_PULLING)
176                         {
177                                 newlength = self.hook_length;
178                                 newlength = max(newlength - pullspeed * frametime, minlength);
179
180                                 if(newlength < dist - ropestretch) // overstretched?
181                                 {
182                                         newlength = dist - ropestretch;
183                                         if(v * dir < 0) // only if not already moving in hook direction
184                                                 v = v + frametime * dir * rubberforce_overstretch;
185                                 }
186
187                                 self.hook_length = newlength;
188                         }
189
190                         if(self.owner.hook_state & HOOK_RELEASING)
191                         {
192                                 newlength = dist;
193                                 self.hook_length = newlength;
194                         }
195                         else
196                         {
197                                 // then pull the player
198                                 spd = bound(0, (dist - self.hook_length) / ropestretch, 1);
199                                 v = v * (1 - frametime * ropeairfriction);
200                                 v = v + frametime * dir * spd * rubberforce;
201
202                                 dv = ((v - v0) * dir) * dir;
203                                 if(cvar("g_grappling_hook_tarzan") >= 2)
204                                 {
205                                         if(self.aiment.movetype == MOVETYPE_WALK)
206                                         {
207                                                 v = v - dv * 0.5;
208                                                 self.aiment.velocity = self.aiment.velocity - dv * 0.5;
209                                                 self.aiment.flags &~= FL_ONGROUND;
210                                                 self.aiment.pusher = self.owner;
211                                                 self.aiment.pushltime = time + cvar("g_maxpushtime");
212                                         }
213                                 }
214
215                                 self.owner.flags &~= FL_ONGROUND;
216                         }
217
218                         self.owner.velocity = WarpZone_RefSys_TransformVelocity(self, self.owner, v);
219                 }
220                 else
221                 {
222                         end = self.origin - dir*50;
223                         dist = vlen(end - myorg);
224                         if(dist < 200)
225                                 spd = dist * (pullspeed / 200);
226                         else
227                                 spd = pullspeed;
228                         if(spd < 50)
229                                 spd = 0;
230                         self.owner.velocity = dir*spd;
231                         self.owner.movetype = MOVETYPE_FLY;
232
233                         self.owner.flags &~= FL_ONGROUND;
234                 }
235         }
236
237         makevectors(self.angles_x * '-1 0 0' + self.angles_y * '0 1 0');
238         myorg = WarpZone_RefSys_TransformOrigin(self, self.owner, self.origin) + v_forward * (-9);
239
240         // TODO turn into a csqc entity
241         WriteByte(MSG_BROADCAST, SVC_TEMPENTITY);
242         WriteByte(MSG_BROADCAST, TE_CSQC_BEAM);
243         WriteByte(MSG_BROADCAST, num_for_edict(self.owner));
244         WriteByte(MSG_BROADCAST, 0);
245         WriteCoord(MSG_BROADCAST, myorg_x);
246         WriteCoord(MSG_BROADCAST, myorg_y);
247         WriteCoord(MSG_BROADCAST, myorg_z);
248         WriteCoord(MSG_BROADCAST, org_x);
249         WriteCoord(MSG_BROADCAST, org_y);
250         WriteCoord(MSG_BROADCAST, org_z);
251 }
252
253 void GrapplingHookTouch (void)
254 {
255         if(SUB_OwnerCheck())
256                 return;
257         if(SUB_NoImpactCheck())
258         {
259                 RemoveGrapplingHook(self.owner);
260                 return;
261         }
262         PROJECTILE_TOUCH;
263
264         GrapplingHook_Stop();
265
266         if(other)
267                 if(other.movetype != MOVETYPE_NONE)
268                 {
269                         SetMovetypeFollow(self, other);
270                         WarpZone_RefSys_BeginAddingIncrementally(self, self.aiment);
271                 }
272
273         //self.owner.disableclientprediction = TRUE;
274 }
275
276 void GrapplingHook_Damage (entity inflictor, entity attacker, float damage, float deathtype, vector hitloc, vector force)
277 {
278         if(self.health > 0)
279         {
280                 self.health = self.health - damage;
281                 if (self.health <= 0)
282                 {
283                         if(attacker != self.owner)
284                         {
285                                 self.owner.pusher = attacker;
286                                 self.owner.pushltime = time + cvar("g_maxpushtime");
287                         }
288                         RemoveGrapplingHook(self.owner);
289                 }
290         }
291 }
292
293 void FireGrapplingHook (void)
294 {
295         local entity missile;
296         local vector org;
297
298         if((arena_roundbased && time < warmup) || (time < game_starttime))
299                 return;
300
301         makevectors(self.v_angle);
302
303         // UGLY WORKAROUND: play this on CHAN_WEAPON2 so it can't cut off fire sounds
304         sound (self, CHAN_WEAPON2, "weapons/hook_fire.wav", VOL_BASE, ATTN_NORM);
305         org = self.origin + self.view_ofs + v_forward * hook_shotorigin_x + v_right * hook_shotorigin_y + v_up * hook_shotorigin_z;
306         pointparticles(particleeffectnum("grapple_muzzleflash"), org, '0 0 0', 1);
307
308         missile = WarpZone_RefSys_SpawnSameRefSys(self);
309         missile.owner = self;
310         self.hook = missile;
311         missile.classname = "grapplinghook";
312
313         missile.movetype = MOVETYPE_FLY;
314         PROJECTILE_MAKETRIGGER(missile);
315
316         setmodel (missile, "models/hook.md3"); // precision set below
317         setsize (missile, '-3 -3 -3', '3 3 3');
318         setorigin (missile, org);
319
320         missile.state = 0; // not latched onto anything
321
322         W_SetupProjectileVelocityEx(missile, v_forward, v_up, cvar("g_balance_grapplehook_speed_fly"), 0, 0, 0);
323
324         missile.angles = vectoangles (missile.velocity);
325         //missile.glow_color = 250; // 244, 250
326         //missile.glow_size = 120;
327         missile.touch = GrapplingHookTouch;
328         missile.think = GrapplingHookThink;
329         missile.nextthink = time + 0.1;
330
331         missile.effects = /*EF_FULLBRIGHT | EF_ADDITIVE |*/ EF_LOWPRECISION;
332
333         missile.health = cvar("g_balance_grapplehook_health");//120
334         missile.event_damage = GrapplingHook_Damage;
335         missile.takedamage = DAMAGE_AIM;
336         missile.damageforcescale = 0;
337 }
338
339 //  void GrapplingHookFrame()
340 //  {
341 //         // this function has been modified for Xonotic
342 // -       if (self.BUTTON_HOOK && g_grappling_hook)
343 //         {
344 // -               if (!self.hook && self.hook_time <= time && !self.button6_pressed_before)
345 // -                       if (timeoutStatus != 2) //only allow the player to fire the grappling hook if the game is not paused (timeout)
346 // -                               FireGrapplingHook();
347 //         }
348 // -       else
349 //         {
350 //                 if (self.hook)
351 //                         RemoveGrapplingHook(self);
352 //         }
353 // -       self.button6_pressed_before = self.BUTTON_HOOK;
354 //         /*
355 //         // if I have no hook or it's not pulling yet, make sure I'm not flying!
356 //         if((self.hook == world || !self.hook.state) && self.movetype == MOVETYPE_FLY)
357
358 void GrapplingHookFrame()
359 {
360         if(g_grappling_hook && timeoutStatus != 2 && self.weapon != WEP_HOOK)
361         {
362                 // offhand hook controls
363                 if(self.BUTTON_HOOK)
364                 {
365                         if not(self.hook || (self.hook_state & HOOK_WAITING_FOR_RELEASE))
366                         {
367                                 self.hook_state |= HOOK_FIRING;
368                                 self.hook_state |= HOOK_WAITING_FOR_RELEASE;
369                         }
370                 }
371                 else
372                 {
373                         self.hook_state |= HOOK_REMOVING;
374                         self.hook_state &~= HOOK_WAITING_FOR_RELEASE;
375                 }
376
377                 self.hook_state &~= HOOK_RELEASING;
378                 if(self.BUTTON_CROUCH)
379                 {
380                         self.hook_state &~= HOOK_PULLING;
381                         //self.hook_state |= HOOK_RELEASING;
382                 }
383                 else
384                 {
385                         self.hook_state |= HOOK_PULLING;
386                         //self.hook_state &~= HOOK_RELEASING;
387                 }
388         }
389         else if(!(self.items & IT_JETPACK) && !g_grappling_hook && self.switchweapon != WEP_HOOK)
390         {
391                 if(self.BUTTON_HOOK && !self.hook_switchweapon)
392                         W_SwitchWeapon(WEP_HOOK);
393         }
394         self.hook_switchweapon = self.BUTTON_HOOK;
395
396         if(!g_grappling_hook && self.weapon != WEP_HOOK)
397         {
398                 self.hook_state &~= HOOK_FIRING;
399                 self.hook_state |= HOOK_REMOVING;
400         }
401
402         if (self.hook_state & HOOK_FIRING)
403         {
404                 if (self.hook)
405                         RemoveGrapplingHook(self);
406                 FireGrapplingHook();
407                 self.hook_state &~= HOOK_FIRING;
408         }
409         else if(self.hook_state & HOOK_REMOVING)
410         {
411                 if (self.hook)
412                         RemoveGrapplingHook(self);
413                 self.hook_state &~= HOOK_REMOVING;
414         }
415
416         /*
417         // if I have no hook or it's not pulling yet, make sure I'm not flying!
418         if((self.hook == world || !self.hook.state) && self.movetype == MOVETYPE_FLY)
419         {
420                 self.movetype = MOVETYPE_WALK;
421         }
422         if(self.impulse == GRAPHOOK_FIRE && self.hook_time <= time && g_grappling_hook)
423         {
424                 // fire hook
425                 FireGrapplingHook();
426                 return;
427         }
428         else if(self.hookimpulse == GRAPHOOK_RELEASE)
429         {
430                 // remove hook, reset movement type
431                 RemoveGrapplingHook(self);
432                 return;
433         }
434         */
435         /*else // make sure the player's movetype is correct
436         {
437                 //if(self.hook == world && self.movetype == MOVETYPE_FLY)
438                 if((self.hook == world || !self.hook.state) && self.movetype == MOVETYPE_FLY)
439                 {
440                         self.movetype = MOVETYPE_WALK;
441                 }
442         }*/
443         // note: The hook entity does the actual pulling
444 }
445
446 void GrappleHookInit()
447 {
448         if(g_grappling_hook)
449                 hook_shotorigin = '8 -8 -12';
450         else
451         {
452                 weapon_action(WEP_HOOK, WR_PRECACHE);
453                 hook_shotorigin = shotorg_adjust(CL_Weapon_GetShotOrg(WEP_HOOK), TRUE, FALSE);
454         }
455 }
456
457 void SetGrappleHookBindings()
458 {
459         // this function has been modified for Xonotic
460         // don't remove these lines! old server or demos coud overwrite the new aliases
461         stuffcmd(self, "alias +hook +button6\n");
462         stuffcmd(self, "alias -hook -button6\n");
463 }