]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/server/w_common.qc
now bullets support warpzones too
[divverent/nexuiz.git] / data / qcsrc / server / w_common.qc
1 void W_GiveWeapon (entity e, float wep, string name)
2 {
3         entity oldself;
4
5         if (!wep)
6                 return;
7
8         e.weapons = e.weapons | W_WeaponBit(wep);
9
10         oldself = self;
11         self = e;
12
13         if not(g_minstagib)
14         if (other.classname == "player")
15         {
16                 sprint (other, "You got the ^2");
17                 sprint (other, name);
18                 sprint (other, "\n");
19         }
20
21         self = oldself;
22 }
23
24 .float railgundistance;
25 void FireRailgunBullet (vector start, vector end, float bdamage, float bforce, float mindist, float maxdist, float halflifedist, float forcehalflifedist, float deathtype)
26 {
27         local vector hitloc, force, endpoint, dir;
28         local entity ent, endent;
29         local float endq3surfaceflags;
30
31         float length;
32         vector beampos;
33         string snd;
34         entity pseudoprojectile;
35         float f, ffs;
36
37         float hit;
38
39         railgun_start = start;
40         railgun_end = end;
41
42         dir = normalize(end - start);
43         length = vlen(end - start);
44         force = dir * bforce;
45
46         // go a little bit into the wall because we need to hit this wall later
47         end = end + dir;
48
49         // trace multiple times until we hit a wall, each obstacle will be made
50         // non-solid so we can hit the next, while doing this we spawn effects and
51         // note down which entities were hit so we can damage them later
52         while (1)
53         {
54                 if(self.antilag_debug)
55                         WarpZone_traceline_antilag (self, start, end, FALSE, self, self.antilag_debug);
56                 else
57                         WarpZone_traceline_antilag (self, start, end, FALSE, self, ANTILAG_LATENCY(self));
58
59                 // if it is world we can't hurt it so stop now
60                 if (trace_ent == world || trace_fraction == 1)
61                         break;
62
63                 // make the entity non-solid so we can hit the next one
64                 trace_ent.railgunhit = TRUE;
65                 trace_ent.railgunhitloc = end;
66                 trace_ent.railgunhitsolidbackup = trace_ent.solid;
67                 trace_ent.railgundistance = vlen(WarpZone_trace_endpos - start);
68
69                 // stop if this is a wall
70                 if (trace_ent.solid == SOLID_BSP)
71                         break;
72
73                 // make the entity non-solid
74                 trace_ent.solid = SOLID_NOT;
75         }
76
77         endpoint = trace_endpos;
78         endent = trace_ent;
79         endq3surfaceflags = trace_dphitq3surfaceflags;
80
81         // find all the entities the railgun hit and restore their solid state
82         ent = findfloat(world, railgunhit, TRUE);
83         while (ent)
84         {
85                 // restore their solid type
86                 ent.solid = ent.railgunhitsolidbackup;
87                 ent = findfloat(ent, railgunhit, TRUE);
88         }
89
90         // spawn a temporary explosion entity for RadiusDamage calls
91         //explosion = spawn();
92
93         // Find all non-hit players the beam passed close by
94         if(deathtype == WEP_MINSTANEX || deathtype == WEP_NEX)
95         {
96                 FOR_EACH_REALCLIENT(msg_entity) if(msg_entity != self) if(!msg_entity.railgunhit) if not(msg_entity.classname == "spectator" && msg_entity.enemy == self) // we use realclient, so spectators can hear the whoosh too
97                 {
98                         // nearest point on the beam
99                         beampos = start + dir * bound(0, (msg_entity.origin - start) * dir, length);
100
101                         f = bound(0, 1 - vlen(beampos - msg_entity.origin) / 512, 1);
102                         if(f <= 0)
103                                 continue;
104
105                         snd = strcat("weapons/nexwhoosh", ftos(floor(random() * 3) + 1), ".wav");
106
107                         if(!pseudoprojectile)
108                                 pseudoprojectile = spawn(); // we need this so the sound uses the "entchannel4" volume
109                         soundtoat(MSG_ONE, pseudoprojectile, beampos, CHAN_PROJECTILE, snd, VOL_BASE * f, ATTN_NONE);
110                 }
111
112                 if(pseudoprojectile)
113                         remove(pseudoprojectile);
114         }
115
116         // find all the entities the railgun hit and hurt them
117         ent = findfloat(world, railgunhit, TRUE);
118         while (ent)
119         {
120                 // get the details we need to call the damage function
121                 hitloc = ent.railgunhitloc;
122
123                 //for stats so that team hit will count as a miss
124                 if(ent.flags & FL_CLIENT)
125                 if(ent.deadflag == DEAD_NO)
126                         hit = 1;
127
128                 if(teams_matter)
129                 if(ent.team == self.team)
130                         hit = 0;
131
132                 f = ExponentialFalloff(mindist, maxdist, halflifedist, ent.railgundistance);
133                 ffs = ExponentialFalloff(mindist, maxdist, forcehalflifedist, ent.railgundistance);
134
135                 // apply the damage
136                 if (ent.takedamage)
137                         Damage (ent, self, self, bdamage * f, deathtype, hitloc, force * ffs);
138
139                 // create a small explosion to throw gibs around (if applicable)
140                 //setorigin (explosion, hitloc);
141                 //RadiusDamage (explosion, self, 10, 0, 50, world, 300, deathtype);
142
143                 ent.railgunhitloc = '0 0 0';
144                 ent.railgunhitsolidbackup = SOLID_NOT;
145                 ent.railgunhit = FALSE;
146                 ent.railgundistance = 0;
147
148                 // advance to the next entity
149                 ent = findfloat(ent, railgunhit, TRUE);
150         }
151
152         // calculate hits and fired shots for hitscan
153         if not(inWarmupStage)
154         {
155                 self.stats_fired[self.weapon - 1] += 1;
156                 self.stat_fired = self.weapon + 64 * floor(self.stats_fired[self.weapon - 1]);
157
158                 if(hit) {
159                         self.stats_hit[self.weapon - 1] += 1;
160                         self.stat_hit = self.weapon + 64 * floor(self.stats_hit[self.weapon - 1]);
161                 }
162         }
163
164         trace_endpos = endpoint;
165         trace_ent = endent;
166         trace_dphitq3surfaceflags = endq3surfaceflags;
167 }
168
169 .float dmg_edge;
170 .float dmg_force;
171 .float dmg_radius;
172 void W_BallisticBullet_Hit (void)
173 {
174         float f;
175
176         f = pow(bound(0, vlen(self.velocity) / vlen(self.oldvelocity), 1), 2); // energy multiplier
177
178         if(other.solid == SOLID_BSP)
179                 Damage_DamageInfo(self.origin, self.dmg * f, 0, 0, max(1, self.dmg_force) * normalize(self.velocity) * f, self.projectiledeathtype, self);
180
181         if(other && other != self.enemy)
182         {
183                 endzcurveparticles();
184
185                 headshot = 0;
186                 yoda = 0;
187                 damage_headshotbonus = self.dmg_edge;
188                 railgun_start = self.origin - 2 * frametime * self.velocity;
189                 railgun_end = self.origin + 2 * frametime * self.velocity;
190
191                 Damage(other, self, self.owner, self.dmg * f, self.projectiledeathtype, self.origin, self.dmg_force * normalize(self.velocity) * f);
192                 damage_headshotbonus = 0;
193
194                 if(self.dmg_edge != 0)
195                 {
196                         if(headshot)
197                                 AnnounceTo(self.owner, "headshot");
198                         if(yoda)
199                                 AnnounceTo(self.owner, "awesome");
200                 }
201
202                 // calculate hits for ballistic weapons
203                 if (other.flags & FL_CLIENT)  // is the player a client
204                 if (other.deadflag == DEAD_NO)  // is the victim a corpse
205                 if ((!(teamplay)) | (other.team != self.owner.team))  // not teamplay (ctf, kh, tdm etc) or the victim is in the same team
206                 if not(inWarmupStage)  // not in warm up stage
207                 {
208                         self.owner.stats_hit[self.owner.weapon - 1] += 1;
209                         self.owner.stat_hit = self.owner.weapon + 64 * floor(self.owner.stats_hit[self.owner.weapon - 1]);
210                 }
211         }
212
213         self.enemy = other; // don't hit the same player twice with the same bullet
214 }
215
216 .void(void) W_BallisticBullet_LeaveSolid_think_save;
217 .float W_BallisticBullet_LeaveSolid_nextthink_save;
218 .vector W_BallisticBullet_LeaveSolid_origin;
219 .vector W_BallisticBullet_LeaveSolid_velocity;
220
221 void W_BallisticBullet_LeaveSolid_think()
222 {
223         setorigin(self, self.W_BallisticBullet_LeaveSolid_origin);
224         self.velocity = self.W_BallisticBullet_LeaveSolid_velocity;
225
226         self.think = self.W_BallisticBullet_LeaveSolid_think_save;
227         self.nextthink = max(time, self.W_BallisticBullet_LeaveSolid_nextthink_save);
228         self.W_BallisticBullet_LeaveSolid_think_save = SUB_Null;
229
230         self.flags &~= FL_ONGROUND;
231
232         if(self.enemy.solid == SOLID_BSP)
233         {
234                 float f;
235                 f = pow(bound(0, vlen(self.velocity) / vlen(self.oldvelocity), 1), 2); // energy multiplier
236                 Damage_DamageInfo(self.origin, 0, 0, 0, max(1, self.dmg_force) * normalize(self.velocity) * -f, self.projectiledeathtype, self);
237         }
238
239         UpdateCSQCProjectile(self);
240 }
241
242 float W_BallisticBullet_LeaveSolid(entity e, vector vel, float constant)
243 {
244         // move the entity along its velocity until it's out of solid, then let it resume
245
246         float dt, dst, velfactor, v0, vs;
247         float maxdist;
248         float E0_m, Es_m;
249
250         // outside the world? forget it
251         if(self.origin_x > world.maxs_x || self.origin_y > world.maxs_y || self.origin_z > world.maxs_z || self.origin_x < world.mins_x || self.origin_y < world.mins_y || self.origin_z < world.mins_z)
252                 return 0;
253
254         // E(s) = E0 - constant * s, constant = area of bullet circle * material constant / mass
255         v0 = vlen(vel);
256
257         E0_m = 0.5 * v0 * v0;
258         maxdist = E0_m / constant;
259         // maxdist = 0.5 * v0 * v0 / constant
260         // dprint("max dist = ", ftos(maxdist), "\n");
261
262         if(maxdist <= cvar("g_ballistics_mindistance"))
263                 return 0;
264
265         traceline_inverted (self.origin, self.origin + normalize(vel) * maxdist, MOVE_NORMAL, self);
266
267         if(trace_fraction == 1) // 1: we never got out of solid
268                 return 0;
269
270         self.W_BallisticBullet_LeaveSolid_origin = trace_endpos;
271
272         dst = vlen(trace_endpos - self.origin);
273         // E(s) = E0 - constant * s, constant = area of bullet circle * material constant / mass
274         Es_m = E0_m - constant * dst;
275         if(Es_m <= 0)
276         {
277                 // roundoff errors got us
278                 return 0;
279         }
280         vs = sqrt(2 * Es_m);
281         velfactor = vs / v0;
282
283         dt = dst / (0.5 * (v0 + vs));
284         // this is not correct, but the differential equations have no analytic
285         // solution - and these times are very small anyway
286         //print("dt = ", ftos(dt), "\n");
287
288         self.W_BallisticBullet_LeaveSolid_think_save = self.think;
289         self.W_BallisticBullet_LeaveSolid_nextthink_save = self.nextthink;
290         self.think = W_BallisticBullet_LeaveSolid_think;
291         self.nextthink = time + dt;
292
293         vel = vel * velfactor;
294
295         self.velocity = '0 0 0';
296         self.flags |= FL_ONGROUND; // prevent moving
297         self.W_BallisticBullet_LeaveSolid_velocity = vel;
298
299         return 1;
300 }
301
302 void W_BallisticBullet_Touch (void)
303 {
304         if(self.think == W_BallisticBullet_LeaveSolid_think) // skip this!
305                 return;
306
307         PROJECTILE_TOUCH;
308         W_BallisticBullet_Hit ();
309
310         // go through solid!
311         if(!W_BallisticBullet_LeaveSolid(self, self.velocity, self.dmg_radius))
312         {
313                 remove(self);
314                 return;
315         }
316
317         self.projectiledeathtype |= HITTYPE_BOUNCE;
318 }
319
320 void endFireBallisticBullet()
321 {
322         endzcurveparticles();
323 }
324
325 entity fireBallisticBullet_trace_callback_ent;
326 float fireBallisticBullet_trace_callback_eff;
327 void fireBallisticBullet_trace_callback()
328 {
329         if(vlen(trace_endpos - fireBallisticBullet_trace_callback_ent.origin) > 16)
330                 zcurveparticles_from_tracetoss(fireBallisticBullet_trace_callback_eff, fireBallisticBullet_trace_callback_ent.origin, trace_endpos, fireBallisticBullet_trace_callback_ent.velocity);
331 }
332
333 void fireBallisticBullet(vector start, vector dir, float spread, float pSpeed, float lifetime, float damage, float headshotbonus, float force, float dtype, float tracereffects, float gravityfactor, float bulletconstant)
334 {
335         float lag, dt, savetime;
336         entity pl, oldself;
337
338         entity proj;
339         proj = spawn();
340         proj.classname = "bullet";
341         proj.owner = self;
342         PROJECTILE_MAKETRIGGER(proj);
343         if(gravityfactor > 0)
344         {
345                 proj.movetype = MOVETYPE_TOSS;
346                 proj.gravity = gravityfactor;
347         }
348         else
349                 proj.movetype = MOVETYPE_FLY;
350         proj.think = SUB_Remove;
351         proj.nextthink = time + lifetime; // min(pLifetime, vlen(world.maxs - world.mins) / pSpeed);
352         W_SetupProjectileVelocityEx(proj, dir, v_up, pSpeed, 0, spread);
353         proj.angles = vectoangles(proj.velocity);
354         proj.dmg_radius = cvar("g_ballistics_materialconstant") / bulletconstant;
355         // so: bulletconstant = bullet mass / area of bullet circle
356         setorigin(proj, start);
357         proj.flags = FL_PROJECTILE;
358
359         proj.touch = W_BallisticBullet_Touch;
360         proj.dmg = damage;
361         proj.dmg_edge = headshotbonus;
362         proj.dmg_force = force;
363         proj.projectiledeathtype = dtype;
364
365         proj.oldvelocity = proj.velocity;
366
367         if(cvar("g_antilag_bullets"))
368         if(pSpeed >= cvar("g_antilag_bullets"))
369         {
370                 float eff;
371
372                 if(tracereffects & EF_RED)
373                         eff = particleeffectnum("tr_rifle");
374                 else
375                         eff = particleeffectnum("tr_bullet");
376
377                 // NOTE: this may severely throw off weapon balance
378                 lag = ANTILAG_LATENCY(self);
379                 if(lag < 0.001)
380                         lag = 0;
381                 if(clienttype(self) != CLIENTTYPE_REAL)
382                         lag = 0;
383                 if(cvar("g_antilag") == 0 || self.cvar_cl_noantilag)
384                         lag = 0; // only do hitscan, but no antilag
385
386                 if(lag)
387                         FOR_EACH_PLAYER(pl)
388                                 antilag_takeback(pl, time - lag);
389
390                 oldself = self;
391                 self = proj;
392
393                 savetime = frametime;
394                 frametime = 0.05;
395
396                 // update the accuracy stats - increase shots fired by 1
397                 if not(inWarmupStage)
398                 {
399                         oldself.stats_fired[oldself.weapon - 1] += 1;
400                         oldself.stat_fired = oldself.weapon + 64 * floor(oldself.stats_fired[oldself.weapon - 1]);
401                 }
402
403                 for(;;)
404                 {
405                         // DP tracetoss is stupid and always traces in 0.05s
406                         // ticks. This makes it trace in 0.05*0.125s ticks
407                         // instead.
408                         vector v0;
409                         float g0;
410                         v0 = self.velocity;
411                         g0 = self.gravity;
412                         self.velocity = self.velocity * 0.125;
413                         self.gravity *= 0.125 * 0.125;
414                         trace_fraction = 0;
415                         fireBallisticBullet_trace_callback_ent = self;
416                         fireBallisticBullet_trace_callback_eff = eff;
417                         WarpZone_trace_callback = fireBallisticBullet_trace_callback;
418                         WarpZone_TraceToss(self, oldself);
419                         WarpZone_trace_callback = func_null;
420                         self.velocity = v0;
421                         self.gravity = g0;
422
423                         if(trace_fraction == 1)
424                                 break;
425                                 // won't hit anything anytime soon (DP's
426                                 // tracetoss does 200 tics of, here,
427                                 // 0.05*0.125s, that is, 1.25 seconds
428
429                         other = trace_ent;
430                         dt = WarpZone_tracetoss_time * 0.125; // this is only approximate!
431                         setorigin(self, trace_endpos);
432                         self.velocity = WarpZone_tracetoss_velocity * (1 / 0.125);
433
434                         if(!SUB_OwnerCheck())
435                         {
436                                 if(SUB_NoImpactCheck())
437                                         break;
438
439                                 // hit the player
440                                 W_BallisticBullet_Hit();
441                         }
442
443                         // go through solid!
444                         if(!W_BallisticBullet_LeaveSolid(self, self.velocity, self.dmg_radius))
445                                 break;
446
447                         W_BallisticBullet_LeaveSolid_think();
448                 }
449                 frametime = savetime;
450                 self = oldself;
451
452                 if(lag)
453                         FOR_EACH_PLAYER(pl)
454                                 antilag_restore(pl);
455
456                 remove(proj);
457
458                 return;
459         }
460
461         // update the accuracy stats
462         if not(inWarmupStage)
463         {
464                 self.stats_fired[self.weapon - 1] += 1;
465                 self.stat_fired = self.weapon + 64 * floor(self.stats_fired[self.weapon - 1]);
466         }
467
468         if(tracereffects & EF_RED)
469                 CSQCProjectile(proj, TRUE, PROJECTILE_BULLET_GLOWING_TRACER, TRUE);
470         else if(tracereffects & EF_BLUE)
471                 CSQCProjectile(proj, TRUE, PROJECTILE_BULLET_GLOWING, TRUE);
472         else
473                 CSQCProjectile(proj, TRUE, PROJECTILE_BULLET, TRUE);
474 }
475
476 void fireBullet (vector start, vector dir, float spread, float damage, float force, float dtype, float tracer)
477 {
478         vector  end;
479
480         dir = normalize(dir + randomvec() * spread);
481         end = start + dir * MAX_SHOT_DISTANCE;
482         if(self.antilag_debug)
483                 traceline_antilag (self, start, end, FALSE, self, self.antilag_debug);
484         else
485                 traceline_antilag (self, start, end, FALSE, self, ANTILAG_LATENCY(self));
486
487         end = trace_endpos;
488
489         if ((trace_fraction != 1.0) && (pointcontents (trace_endpos) != CONTENT_SKY))
490         {
491                 pointparticles(particleeffectnum("TE_KNIGHTSPIKE"),end,trace_plane_normal * 2500,1);
492                 if (trace_ent.solid == SOLID_BSP && !(trace_dphitq3surfaceflags & Q3SURFACEFLAG_NOIMPACT))
493                         Damage_DamageInfo(trace_endpos, damage, 0, 0, dir * max(1, force), dtype, self);
494                 Damage (trace_ent, self, self, damage, dtype, trace_endpos, dir * force);
495                 //void(float effectnum, vector org, vector vel, float howmany) pointparticles = #337; // same as in CSQC
496         }
497         trace_endpos = end;
498 }
499
500 void W_PrepareExplosionByDamage(entity attacker, void() explode)
501 {
502         self.takedamage = DAMAGE_NO;
503         self.event_damage = SUB_Null;
504         self.owner = attacker;
505
506         // do not explode NOW but in the NEXT FRAME!
507         // because recursive calls to RadiusDamage are not allowed
508         self.nextthink = time;
509         self.think = explode;
510 }