]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/server/w_common.qc
make SG and MG also use that code if NOT using ballistic projectiles
[divverent/nexuiz.git] / data / qcsrc / server / w_common.qc
1
2 void W_GiveWeapon (entity e, float wep, string name)
3 {
4         entity oldself;
5
6         if (!wep)
7                 return;
8
9         e.weapons = e.weapons | W_WeaponBit(wep);
10
11         oldself = self;
12         self = e;
13
14         if (other.classname == "player")
15         {
16                 sprint (other, "You got the ^2");
17                 sprint (other, name);
18                 sprint (other, "\n");
19         }
20
21
22         self = oldself;
23 }
24
25 void FireRailgunBullet (vector start, vector end, float bdamage, float bforce, float deathtype)
26 {
27         local vector hitloc, force, endpoint, dir;
28         local entity ent, endent;
29         local float endq3surfaceflags;
30         //local entity explosion;
31         
32         railgun_start = start;
33         railgun_end = end;
34
35         dir = normalize(end - start);
36         force = dir * bforce;
37
38         // go a little bit into the wall because we need to hit this wall later
39         end = end + dir;
40
41         // trace multiple times until we hit a wall, each obstacle will be made
42         // non-solid so we can hit the next, while doing this we spawn effects and
43         // note down which entities were hit so we can damage them later
44         while (1)
45         {
46                 if(self.antilag_debug)
47                         traceline_antilag (self, start, end, FALSE, self, self.antilag_debug);
48                 else
49                         traceline_antilag (self, start, end, FALSE, self, ANTILAG_LATENCY(self));
50
51                 // if it is world we can't hurt it so stop now
52                 if (trace_ent == world || trace_fraction == 1)
53                         break;
54
55                 // make the entity non-solid so we can hit the next one
56                 trace_ent.railgunhit = TRUE;
57                 trace_ent.railgunhitloc = end;
58                 trace_ent.railgunhitsolidbackup = trace_ent.solid;
59
60                 // stop if this is a wall
61                 if (trace_ent.solid == SOLID_BSP)
62                         break;
63
64                 // make the entity non-solid
65                 trace_ent.solid = SOLID_NOT;
66         }
67
68         endpoint = trace_endpos;
69         endent = trace_ent;
70         endq3surfaceflags = trace_dphitq3surfaceflags;
71
72         // find all the entities the railgun hit and restore their solid state
73         ent = findfloat(world, railgunhit, TRUE);
74         while (ent)
75         {
76                 // restore their solid type
77                 ent.solid = ent.railgunhitsolidbackup;
78                 ent = findfloat(ent, railgunhit, TRUE);
79         }
80
81         // spawn a temporary explosion entity for RadiusDamage calls
82         //explosion = spawn();
83
84         // find all the entities the railgun hit and hurt them
85         ent = findfloat(world, railgunhit, TRUE);
86         while (ent)
87         {
88                 // get the details we need to call the damage function
89                 hitloc = ent.railgunhitloc;
90                 ent.railgunhitloc = '0 0 0';
91                 ent.railgunhitsolidbackup = SOLID_NOT;
92                 ent.railgunhit = FALSE;
93
94                 // apply the damage
95                 if (ent.takedamage || ent.classname == "case")
96                         Damage (ent, self, self, bdamage, deathtype, hitloc, force);
97
98                 // create a small explosion to throw gibs around (if applicable)
99                 //setorigin (explosion, hitloc);
100                 //RadiusDamage (explosion, self, 10, 0, 50, world, 300, deathtype);
101
102                 // advance to the next entity
103                 ent = findfloat(ent, railgunhit, TRUE);
104         }
105
106         // we're done with the explosion entity, remove it
107         //remove(explosion);
108
109         trace_endpos = endpoint;
110         trace_ent = endent;
111         trace_dphitq3surfaceflags = endq3surfaceflags;
112 }
113
114 .float dmg_edge;
115 .float dmg_force;
116 .float dmg_radius;
117 void W_BallisticBullet_Hit (void)
118 {
119         float f;
120
121         if (DEATH_ISWEAPON(self.projectiledeathtype, WEP_SHOTGUN))
122                 pointparticles(particleeffectnum("shotgun_impact"), self.origin, normalize(self.velocity) * 1000, 1);
123         else
124                 pointparticles(particleeffectnum("machinegun_impact"), self.origin, normalize(self.velocity) * 1000, 1);
125
126         if(other && other != self.enemy)
127         {
128                 self.enemy = other; // don't hit the same player twice with the same bullet
129
130                 f = pow(bound(0, vlen(self.velocity) / vlen(self.oldvelocity), 1), 2); // energy multiplier
131
132                 headshot = 0;
133                 yoda = 0;
134                 damage_headshotbonus = self.dmg_edge;
135                 railgun_start = self.origin - 2 * frametime * self.oldvelocity;
136                 railgun_end = self.origin + 2 * frametime * self.oldvelocity;
137                 Damage(other, self, self.owner, self.dmg * f, self.projectiledeathtype, self.origin, self.dmg_force * normalize(self.velocity) * f);
138                 damage_headshotbonus = 0;
139
140                 if(self.dmg_edge != 0)
141                 {
142                         if(headshot)
143                                 announce(self.owner, "announcer/male/headshot.wav");
144                         if(yoda)
145                                 announce(self.owner, "announcer/male/yoda.wav");
146                 }
147
148                 //sound (self, CHAN_PROJECTILE, "weapons/electro_impact.wav", VOL_BASE, ATTN_NORM);
149         }
150 }
151
152 .void(void) W_BallisticBullet_LeaveSolid_think_save;
153 .float W_BallisticBullet_LeaveSolid_nextthink_save;
154 .vector W_BallisticBullet_LeaveSolid_origin;
155 .vector W_BallisticBullet_LeaveSolid_velocity;
156
157 void W_BallisticBullet_LeaveSolid_think()
158 {
159         setorigin(self, self.W_BallisticBullet_LeaveSolid_origin);
160         self.velocity = self.W_BallisticBullet_LeaveSolid_velocity;
161
162         self.think = self.W_BallisticBullet_LeaveSolid_think_save;
163         self.nextthink = max(time, self.W_BallisticBullet_LeaveSolid_nextthink_save) + 1;
164         self.W_BallisticBullet_LeaveSolid_think_save = SUB_Null;
165
166         self.flags &~= FL_ONGROUND;
167         self.effects &~= EF_NODRAW;
168
169         if (DEATH_ISWEAPON(self.projectiledeathtype, WEP_SHOTGUN))
170                 pointparticles(particleeffectnum("shotgun_impact"), self.origin, normalize(self.velocity) * 1000, 1);
171         else
172                 pointparticles(particleeffectnum("machinegun_impact"), self.origin, normalize(self.velocity) * 1000, 1);
173         
174         UpdateCSQCProjectile(self);
175 }
176
177 // a fake logarithm function
178 float log(float x)
179 {
180         if(x < 0.0001)
181                 return 0;
182         if(x > 0.9 && x < 1.1)
183                 return x - 1;
184         return 2 * log(sqrt(x));
185 }
186
187 float W_BallisticBullet_LeaveSolid(entity e, vector vel, float constant)
188 {
189         // move the entity along its velocity until it's out of solid, then let it resume
190         
191         float dt, dst, velfactor, v0, vs;
192         float maxdist;
193         float E0_m, Es_m;
194
195         // E(s) = E0 - constant * s, constant = area of bullet circle * material constant / mass
196         v0 = vlen(vel);
197
198         E0_m = 0.5 * v0 * v0;
199         maxdist = E0_m / constant;
200         // maxdist = 0.5 * v0 * v0 / constant
201         // dprint("max dist = ", ftos(maxdist), "\n");
202
203         if(maxdist <= 0.5)
204                 return 0;
205
206         traceline_inverted (self.origin, self.origin + normalize(vel) * maxdist, MOVE_NORMAL, self);
207
208         if(trace_fraction == 1) // 1: we never got out of solid
209                 return 0;
210
211         self.W_BallisticBullet_LeaveSolid_origin = trace_endpos;
212
213         dst = vlen(trace_endpos - self.origin);
214         // E(s) = E0 - constant * s, constant = area of bullet circle * material constant / mass
215         Es_m = E0_m - constant * dst;
216         if(Es_m <= 0)
217         {
218                 // roundoff errors got us
219                 return 0;
220         }
221         vs = sqrt(2 * Es_m);
222         velfactor = vs / v0;
223
224         dt = dst / (0.5 * (v0 + vs));
225         // this is not correct, but the differential equations have no analytic
226         // solution - and these times are very small anyway
227         //print("dt = ", ftos(dt), "\n");
228
229         self.W_BallisticBullet_LeaveSolid_think_save = self.think;
230         self.W_BallisticBullet_LeaveSolid_nextthink_save = self.nextthink;
231         self.think = W_BallisticBullet_LeaveSolid_think;
232         self.nextthink = time + dt;
233
234         vel = vel * velfactor;
235
236         self.velocity = '0 0 0';
237         self.flags |= FL_ONGROUND; // prevent moving
238         self.effects |= EF_NODRAW;
239         self.W_BallisticBullet_LeaveSolid_velocity = vel;
240
241         return 1;
242 }
243
244 void W_BallisticBullet_Touch (void)
245 {
246         if(self.think == W_BallisticBullet_LeaveSolid_think) // skip this!
247                 return;
248
249         PROJECTILE_TOUCH;
250         W_BallisticBullet_Hit ();
251
252         // go through solid!
253         if(!W_BallisticBullet_LeaveSolid(self, self.velocity, self.dmg_radius))
254         {
255                 remove(self);
256                 return;
257         }
258
259         self.projectiledeathtype |= HITTYPE_BOUNCE;
260 }
261
262 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)
263 {
264         entity proj;
265         proj = spawn();
266         proj.classname = "bullet";
267         proj.owner = self;
268         proj.solid = SOLID_BBOX;
269         if(gravityfactor > 0)
270         {
271                 proj.movetype = MOVETYPE_TOSS;
272                 proj.gravity = gravityfactor;
273         }
274         else
275                 proj.movetype = MOVETYPE_FLY;
276         proj.think = SUB_Remove;
277         proj.nextthink = time + lifetime; // min(pLifetime, vlen(world.maxs - world.mins) / pSpeed);
278         proj.velocity = (dir + randomvec() * spread) * pSpeed;
279         W_SetupProjectileVelocity(proj);
280         proj.angles = vectoangles(proj.velocity);
281         proj.dmg_radius = cvar("g_ballistics_materialconstant") / bulletconstant;
282         // so: bulletconstant = bullet mass / area of bullet circle
283         setmodel(proj, "models/tracer.mdl");
284         setsize(proj, '0 0 0', '0 0 0');
285         setorigin(proj, start);
286         proj.effects = EF_LOWPRECISION | tracereffects;
287         proj.flags = FL_PROJECTILE;
288
289         proj.touch = W_BallisticBullet_Touch;
290         proj.dmg = damage;
291         proj.dmg_edge = headshotbonus;
292         proj.dmg_force = force;
293         proj.projectiledeathtype = dtype;
294
295         proj.oldvelocity = proj.velocity;
296
297         CSQCProjectile(proj, TRUE, PROJECTILE_BULLET);
298 }
299
300 void fireBullet (vector start, vector dir, float spread, float damage, float force, float dtype, float tracer)
301 {
302         vector  end;
303         local entity e;
304
305         if(cvar("g_ballistics_force"))
306         {
307                 if (DEATH_ISWEAPON(dtype, WEP_SHOTGUN))
308                         fireBallisticBullet(start, dir, spread, cvar("g_ballistics_force_shotgun_speed"), 5, damage, 0, force, dtype, 0, 1, cvar("g_ballistics_force_shotgun_bulletconstant"));
309                 else
310                         fireBallisticBullet(start, dir, spread, cvar("g_ballistics_force_uzi_speed"), 5, damage, 0, force, dtype, 0, 1, cvar("g_ballistics_force_shotgun_bulletconstant"));
311                 return;
312         }
313
314         dir = dir + randomvec() * spread;
315         end = start + dir * MAX_SHOT_DISTANCE;
316         if(self.antilag_debug)
317                 traceline_antilag (self, start, end, FALSE, self, self.antilag_debug);
318         else
319                 traceline_antilag (self, start, end, FALSE, self, ANTILAG_LATENCY(self));
320
321         if (tracer)
322         {
323                 e = spawn();
324                 e.owner = self;
325                 e.movetype = MOVETYPE_FLY;
326                 e.solid = SOLID_NOT;
327                 e.think = SUB_Remove;
328                 e.nextthink = time + vlen(trace_endpos - start) / 6000;
329                 e.velocity = dir * 6000;
330                 e.angles = vectoangles(e.velocity);
331                 setmodel (e, "models/tracer.mdl"); // precision set below
332                 setsize (e, '0 0 0', '0 0 0');
333                 setorigin (e, start);
334                 e.effects = EF_LOWPRECISION;
335                 e.flags = FL_PROJECTILE;
336
337                 CSQCProjectile(e, TRUE, PROJECTILE_BULLET);
338         }
339
340         if ((trace_fraction != 1.0) && (pointcontents (trace_endpos) != CONTENT_SKY))
341         {
342                 if (trace_ent.solid == SOLID_BSP && !(trace_dphitq3surfaceflags & Q3SURFACEFLAG_NOIMPACT))
343                 {
344                         if (DEATH_ISWEAPON(dtype, WEP_SHOTGUN))
345                                 pointparticles(particleeffectnum("shotgun_impact"), trace_endpos, trace_plane_normal * 1000, 1);
346                         else
347                                 pointparticles(particleeffectnum("machinegun_impact"), trace_endpos, trace_plane_normal * 1000, 1);
348                 }
349                 Damage (trace_ent, self, self, damage, dtype, trace_endpos, dir * force);
350         }
351 }
352
353 void W_PrepareExplosionByDamage(entity attacker, void() explode)
354 {
355         self.takedamage = DAMAGE_NO;
356         self.event_damage = SUB_Null;
357         self.owner = attacker;
358
359         // do not explode NOW but in the NEXT FRAME!
360         // because recursive calls to RadiusDamage are not allowed
361         self.nextthink = time;
362         self.think = explode;
363 }