8 string species_prefix(float specnum)
12 case SPECIES_HUMAN: return "";
13 case SPECIES_ALIEN: return "alien_";
14 case SPECIES_ROBOT_SHINY: return "robot_";
15 case SPECIES_ROBOT_RUSTY: return "robot_"; // use the same effects, only different gibs
16 case SPECIES_ROBOT_SOLID: return "robot_"; // use the same effects, only different gibs
17 case SPECIES_ANIMAL: return "animal_";
18 case SPECIES_RESERVED: return "reserved_";
23 void Gib_setmodel(entity gib, string mdlname, float specnum)
27 case SPECIES_ROBOT_RUSTY:
28 case SPECIES_ROBOT_SHINY:
29 case SPECIES_ROBOT_SOLID:
30 if(specnum != SPECIES_ROBOT_SOLID || mdlname == "models/gibs/chunk.mdl")
32 if(mdlname == "models/gibs/bloodyskull.md3")
33 setmodel(gib, "models/gibs/robo.md3");
35 setmodel(gib, strcat("models/gibs/robo", ftos(floor(random() * 8) + 1), ".md3"));
36 if(specnum == SPECIES_ROBOT_SHINY)
39 gib.colormod = '2 2 2';
45 setmodel(gib, mdlname);
51 void new_te_bloodshower (float ef, vector org, float explosionspeed, float howmany)
54 pmod = autocvar_cl_particles_quality;
55 for (i = 0; i < 250 * pmod; ++i)
56 pointparticles(ef, org, randomvec() * explosionspeed, howmany / 250);
59 void SUB_RemoveOnNoImpact()
61 if(trace_dphitq3surfaceflags & Q3SURFACEFLAG_NOIMPACT)
67 // TODO maybe bounce of walls, make more gibs, etc.
69 if(trace_dphitq3surfaceflags & Q3SURFACEFLAG_NOIMPACT)
76 sound(self, CHAN_PAIN, strcat("misc/gib_splat0", ftos(floor(prandom() * 4 + 1)), ".wav"), VOL_BASE, ATTN_NORM);
77 pointparticles(particleeffectnum(strcat(species_prefix(self.cnt), "blood")), self.origin + '0 0 1', '0 0 30', 10);
87 Movetype_Physics_MatchTicrate(autocvar_cl_gibs_ticrate, autocvar_cl_gibs_sloppy);
91 if(self.touch == Gib_Touch) // don't do this for the "chunk" thingie...
92 trailparticles(self, particleeffectnum(strcat(species_prefix(self.cnt), "TR_SLIGHTBLOOD")), oldorg, self.origin);
94 trailparticles(self, particleeffectnum(strcat(species_prefix(self.cnt), "TR_BLOOD")), oldorg, self.origin);
97 self.alpha = bound(0, self.nextthink - time, 1);
99 if(self.alpha < ALPHA_MIN_VISIBLE)
106 void TossGib (string mdlname, vector org, vector vconst, vector vrand, float specnum, float destroyontouch, float issilent)
110 // TODO remove some gibs according to cl_nogibs
111 gib = RubbleNew("gib");
112 gib.move_movetype = MOVETYPE_BOUNCE;
114 gib.solid = SOLID_CORPSE;
116 gib.silent = issilent;
117 Gib_setmodel(gib, mdlname, specnum);
119 setsize (gib, '-8 -8 -8', '8 8 8');
123 gib.move_touch = Gib_Touch;
125 gib.move_touch = SUB_RemoveOnNoImpact;
127 gib.move_origin = gib.origin = org;
128 gib.move_velocity = vconst * autocvar_cl_gibs_velocity_scale + vrand * autocvar_cl_gibs_velocity_random + '0 0 1' * autocvar_cl_gibs_velocity_up;
129 gib.move_avelocity = prandomvec() * vlen(gib.move_velocity);
130 gib.move_time = time;
131 gib.damageforcescale = autocvar_cl_gibs_damageforcescale;
133 gib.nextthink = time + autocvar_cl_gibs_lifetime * (1 + prandom() * 0.15);
134 gib.drawmask = MASK_NORMAL;
136 RubbleLimit("gib", autocvar_cl_gibs_maxcount, Gib_Delete);
139 void Ent_GibSplash(float isNew)
141 float amount, type, specnum;
145 string gentle_prefix;
147 float c, randomvalue;
149 type = ReadByte(); // gibbage type
150 amount = ReadByte() / 16.0; // gibbage amount
151 org_x = ReadShort() * 4 + 2;
152 org_y = ReadShort() * 4 + 2;
153 org_z = ReadShort() * 4 + 2;
154 vel = decompressShortVector(ReadShort());
156 float cl_gentle_gibs = autocvar_cl_gentle_gibs;
157 if(cl_gentle_gibs || autocvar_cl_gentle)
158 type |= 0x80; // set gentle bit
162 if(cl_gentle_gibs == 2)
164 else if(cl_gentle_gibs == 3)
165 gentle_prefix = "happy_";
167 gentle_prefix = "morphed_";
169 else if(autocvar_cl_particlegibs)
172 gentle_prefix = "particlegibs_";
175 if not(cl_gentle_gibs || autocvar_cl_gentle)
176 amount *= 1 - autocvar_cl_nogibs;
181 if(amount <= 0 || !isNew)
184 self.origin = org; // for the sounds
186 specnum = (type & 0x78) / 8; // blood/gibmodel type: using four bits (0..7, bit indexes 3,4,5)
187 issilent = (type & 0x40);
188 type = type & 0x87; // remove the species bits: bit 7 = gentle, bit 0,1,2 = kind of gib
189 specstr = species_prefix(specnum);
195 sound (self, CHAN_PAIN, "misc/gib.wav", VOL_BASE, ATTN_NORM);
197 if(prandom() < amount)
198 TossGib ("models/gibs/eye.md3", org, vel, prandomvec() * 150, specnum, 0, issilent);
199 new_te_bloodshower(particleeffectnum(strcat(specstr, "bloodshower")), org, 1200, amount);
200 if(prandom() < amount)
201 TossGib ("models/gibs/bloodyskull.md3", org + 16 * prandomvec(), vel, prandomvec() * 100, specnum, 0, issilent);
203 for(c = 0; c < amount; ++c)
205 randomvalue = amount - c;
207 if(prandom() < randomvalue)
208 TossGib ("models/gibs/arm.md3", org + 16 * prandomvec() + '0 0 8', vel, prandomvec() * (prandom() * 120 + 90), specnum,0, issilent);
209 if(prandom() < randomvalue)
210 TossGib ("models/gibs/arm.md3", org + 16 * prandomvec() + '0 0 8', vel, prandomvec() * (prandom() * 120 + 90), specnum,0, issilent);
211 if(prandom() < randomvalue)
212 TossGib ("models/gibs/chest.md3", org + 16 * prandomvec(), vel, prandomvec() * (prandom() * 120 + 80), specnum,0, issilent);
213 if(prandom() < randomvalue)
214 TossGib ("models/gibs/smallchest.md3", org + 16 * prandomvec(), vel, prandomvec() * (prandom() * 120 + 80), specnum,0, issilent);
215 if(prandom() < randomvalue)
216 TossGib ("models/gibs/leg1.md3", org + 16 * prandomvec() + '0 0 -5', vel, prandomvec() * (prandom() * 120 + 85), specnum,0, issilent);
217 if(prandom() < randomvalue)
218 TossGib ("models/gibs/leg2.md3", org + 16 * prandomvec() + '0 0 -5', vel, prandomvec() * (prandom() * 120 + 85), specnum,0, issilent);
220 // these splat on impact
221 if(prandom() < randomvalue)
222 TossGib ("models/gibs/chunk.mdl", org + 16 * prandomvec(), vel, prandomvec() * 450, specnum,1, issilent);
223 if(prandom() < randomvalue)
224 TossGib ("models/gibs/chunk.mdl", org + 16 * prandomvec(), vel, prandomvec() * 450, specnum,1, issilent);
225 if(prandom() < randomvalue)
226 TossGib ("models/gibs/chunk.mdl", org + 16 * prandomvec(), vel, prandomvec() * 450, specnum,1, issilent);
227 if(prandom() < randomvalue)
228 TossGib ("models/gibs/chunk.mdl", org + 16 * prandomvec(), vel, prandomvec() * 450, specnum,1, issilent);
232 pointparticles(particleeffectnum(strcat(specstr, "blood")), org, vel, amount * 16);
235 if(prandom() < amount)
236 TossGib ("models/gibs/chunk.mdl", org, vel, prandomvec() * (prandom() * 30 + 20), specnum, 1, issilent); // TODO maybe adjust to more randomization?
239 pointparticles(particleeffectnum(strcat(gentle_prefix, "damage_dissolve")), org, vel, amount);
242 pointparticles(particleeffectnum(strcat(gentle_prefix, "damage_hit")), org, vel, amount * 16);
245 // no gibs in gentle mode, sorry
250 void GibSplash_Precache()
252 precache_model("models/gibs/chunk.mdl");
253 precache_model("models/gibs/leg1.md3");
254 precache_model("models/gibs/leg2.md3");
255 precache_model("models/gibs/chest.md3");
256 precache_model("models/gibs/smallchest.md3");
257 precache_model("models/gibs/arm.md3");
258 precache_model("models/gibs/bloodyskull.md3");
259 precache_model("models/gibs/eye.md3");
261 precache_model("models/gibs/robo.md3");
262 precache_model("models/gibs/robo1.md3");
263 precache_model("models/gibs/robo2.md3");
264 precache_model("models/gibs/robo3.md3");
265 precache_model("models/gibs/robo4.md3");
266 precache_model("models/gibs/robo5.md3");
267 precache_model("models/gibs/robo6.md3");
268 precache_model("models/gibs/robo7.md3");
269 precache_model("models/gibs/robo8.md3");
271 precache_sound ("misc/gib.wav");
272 precache_sound ("misc/gib_splat01.wav");
273 precache_sound ("misc/gib_splat02.wav");
274 precache_sound ("misc/gib_splat03.wav");
275 precache_sound ("misc/gib_splat04.wav");