1 .float regurgitate_prepare;
\r
2 .float stomachkick_delay, system_delay, action_delay, digest_button_delay_time, regurgitate_button_delay_time;
\r
3 .float complain_vore;
\r
4 .float vore_oldmovetype, vore_oldsolid;
\r
6 const float system_delay_time = 0.1;
\r
7 const float complain_delay_time = 1;
\r
8 const float button_delay_time = 0.5;
\r
9 const float steptime = 0.1;
\r
11 entity Swallow_player_check()
\r
13 // check if we can swallow a player instead of firing our weapon
\r
15 float swallow_range;
\r
16 vector vore_w_shotorg, vore_w_shotdir;
\r
18 swallow_range = cvar("g_balance_vore_swallow_range");
\r
19 if(cvar("g_healthsize")) // we can swallow from further or closer based on our size
\r
20 swallow_range *= self.scale;
\r
21 makevectors(self.angles);
\r
22 vore_w_shotorg = self.origin;
\r
23 vore_w_shotdir = v_forward;
\r
25 if(self.antilag_debug)
\r
26 WarpZone_traceline_antilag(self, vore_w_shotorg, vore_w_shotorg + vore_w_shotdir * swallow_range, FALSE, self, self.antilag_debug);
\r
28 WarpZone_traceline_antilag(self, vore_w_shotorg, vore_w_shotorg + vore_w_shotdir * swallow_range, FALSE, self, ANTILAG_LATENCY(self));
\r
29 if(trace_fraction < 1)
\r
30 if(trace_ent.classname == "player")
\r
35 float Swallow_condition_check(entity prey)
\r
37 // checks the necessary conditions for swallowing a player
\r
40 if(prey.classname == "player" && !prey.stat_eaten && prey.deadflag == DEAD_NO) // we can't swallow someone who's already in someone else's stomach
\r
41 if(self.classname == "player" && !self.stat_eaten && self.deadflag == DEAD_NO) // we can't swallow players while inside someone's stomach ourselves
\r
42 if(!self.BUTTON_REGURGITATE && time > self.action_delay)
\r
45 prey_mass = cvar("g_balance_vore_load_prey_mass");
\r
46 if(cvar("g_healthsize"))
\r
47 prey_mass *= prey.scale;
\r
49 string swallow_complain;
\r
50 if(teams_matter && prey.team == self.team && !cvar("g_vore_teamvore"))
\r
51 swallow_complain = "You cannot swallow your team mates\n";
\r
52 else if(!cvar("g_vore_spawnshield") && prey.spawnshieldtime > time)
\r
53 swallow_complain = "You cannot swallow someone protected by the spawn shield\n";
\r
54 else if(self.stomach_load + prey_mass > self.stomach_maxload)
\r
55 swallow_complain = strcat("You don't have any room to swallow this player. Their mass is ^3", ftos(prey_mass), "^7 and your remaining capacity is ^3", ftos(self.stomach_maxload - self.stomach_load), "\n");
\r
56 else if(cvar("g_vore_biggergut") && prey.stomach_load > self.stomach_load)
\r
57 swallow_complain = "You cannot swallow someone with a bigger stomach than yours\n";
\r
58 else if(cvar("g_vore_biggersize") && prey.scale > self.scale)
\r
59 swallow_complain = "You cannot swallow someone larger than you\n";
\r
61 if(swallow_complain != "")
\r
63 if(time > self.complain_vore && self.BUTTON_ATCK)
\r
65 play2(self, "misc/forbidden.wav");
\r
66 sprint(self, swallow_complain);
\r
67 self.complain_vore = time + complain_delay_time;
\r
76 float Stomach_TeamMates_check(entity pred)
\r
78 // checks if a player's stomach contains any team mates
\r
83 FOR_EACH_PLAYER(head)
\r
85 if(head.predator == pred && head.team == pred.team)
\r
92 float Stomach_HasLivePrey(entity pred)
\r
95 FOR_EACH_PLAYER(head)
\r
97 if(head.predator == pred)
\r
98 if(head.deadflag == DEAD_NO)
\r
104 float Vore_CanLeave()
\r
106 if(self.stat_eaten)
\r
108 if(!cvar("g_vore_kick")) // you are defenseless in the stomach if you can't kick, so allow leaving
\r
110 if(teams_matter && self.team == self.predator.team)
\r
112 if(g_rpg && cvar("g_rpg_canleave"))
\r
118 // position the camera properly for prey
\r
119 void Vore_SetPreyPositions(entity pred)
\r
121 // pred is the predator and head is the prey
\r
125 // In order to allow prey to see each other in the stomach, we must position each occupant differently,
\r
126 // else all players overlap in the center. To do this, we use a random origin on all players in the same stomach.
\r
127 FOR_EACH_PLAYER(head)
\r
129 if(head.predator == pred)
\r
131 // since prey have their predators set as an aiment, view_ofs will specify the real origin of prey, not just the view offset
\r
132 head.view_ofs_x = PL_PREY_VIEW_OFS_x + crandom() * cvar("g_vore_neighborprey_distance");
\r
133 head.view_ofs_y = PL_PREY_VIEW_OFS_y + crandom() * cvar("g_vore_neighborprey_distance");
\r
134 head.view_ofs_z = PL_PREY_VIEW_OFS_z;
\r
139 .float gurgle_oldstomachload;
\r
140 void Vore_GurgleSound()
\r
142 if(time > self.gurglesound_finished || self.gurgle_oldstomachload != self.stomach_load)
\r
144 GlobalSound(self.playersound_gurgle, CHAN_TRIGGER, VOICETYPE_GURGLE);
\r
146 self.gurglesound_finished = time + 11; // yes, hard coded sound length. I know it's bad but what can I do?
\r
147 self.gurgle_oldstomachload = self.stomach_load;
\r
151 void Vore_StomachLoad_Apply()
\r
153 // apply stomach weight that makes you heavier and larger the more you eat
\r
154 // slowing the player is done in cl_physics.qc
\r
155 if(self.classname != "player")
\r
161 // apply the stomach capacity of the predator
\r
162 self.stomach_maxload = cvar("g_balance_vore_load_pred_capacity");
\r
163 if(cvar("g_healthsize"))
\r
164 self.stomach_maxload *= self.scale;
\r
165 self.stomach_maxload = floor(self.stomach_maxload);
\r
167 self.stomach_load = 0; // start from zero
\r
170 if(e.predator == self)
\r
172 prey_mass = cvar("g_balance_vore_load_prey_mass");
\r
173 if(cvar("g_healthsize"))
\r
174 prey_mass *= e.scale;
\r
175 self.stomach_load += floor(prey_mass);
\r
178 for(e = world; (e = find(e, classname, "consumable")); )
\r
180 if(e.predator == self)
\r
181 self.stomach_load += floor(e.dmg);
\r
185 self.gravity = 1 + (self.stomach_load / self.stomach_maxload) * cvar("g_balance_vore_load_pred_weight");
\r
186 if(!self.gravity && self.stomach_load)
\r
187 self.gravity = 0.00001; // 0 becomes 1 for gravity, so do this to allow 0 gravity
\r
190 void Vore_AutoDigest(entity e)
\r
192 // if the predator has the autodigest preference enabled, begin digesting new prey automatically
\r
194 if(!cvar("g_vore_digestion") || e.digesting)
\r
196 if(!e.cvar_cl_vore_autodigest || clienttype(e) != CLIENTTYPE_REAL)
\r
197 return; // this feature is only for players, not bots
\r
199 return; // don't start digestion if we already ate someone, as that means we manually disabled it after the first prey and want it off
\r
200 if(Stomach_TeamMates_check(e))
\r
201 return; // never begin automatic digestion if we've swallowed a team mate
\r
203 e.digesting = TRUE;
\r
206 .entity swallow_model;
\r
207 float Vore_SwallowModel_CustomizeEntityForClient()
\r
209 // use the same system as the weapon model
\r
211 self.viewmodelforclient = self.owner;
\r
212 self.alpha = self.owner.cvar_cl_vore_swallowmodel;
\r
214 if(other.classname == "spectator")
\r
215 if(other.enemy == self.owner)
\r
217 self.viewmodelforclient = other;
\r
218 self.alpha = other.cvar_cl_vore_swallowmodel;
\r
224 void Vore_SwallowModel_Think()
\r
226 // update the position of the swallow model to match our swallow progress
\r
228 dist = (-0.5 + self.owner.swallow_progress_prey) * cvar("g_vore_swallowmodel_range"); // the model is centered at 0.5 progress
\r
229 if(cvar("g_healthsize"))
\r
230 dist *= self.scale;
\r
231 self.view_ofs = '1 0 0' * dist;
\r
233 // if our swallow progress is gone or we are dead, the swallow model also goes away
\r
234 if(!self.owner.swallow_progress_prey || self.owner.deadflag != DEAD_NO || self.owner.classname != "player")
\r
236 remove(self.owner.swallow_model);
\r
237 self.owner.swallow_model = world;
\r
241 // properties that should update whenever possible, but when the predator is not available
\r
242 self.nextthink = time;
\r
245 void Vore_SwallowModel_Update(entity prey, entity pred)
\r
247 // if we don't have a swallow model already, spawn one
\r
248 if(!prey.swallow_model)
\r
250 prey.swallow_model = spawn();
\r
251 prey.swallow_model.movetype = MOVETYPE_FOLLOW;
\r
252 prey.swallow_model.solid = SOLID_NOT;
\r
253 //prey.swallow_model.effects |= EF_NOGUNBOB; // let it bob
\r
254 prey.swallow_model.effects |= EF_NODEPTHTEST; // don't hide behind walls
\r
255 prey.swallow_model.owner = prey;
\r
256 prey.swallow_model.customizeentityforclient = Vore_SwallowModel_CustomizeEntityForClient;
\r
257 prey.swallow_model.think = Vore_SwallowModel_Think;
\r
258 prey.swallow_model.nextthink = time;
\r
261 // properties that should update whenever possible, but when the predator is available
\r
262 string player_swallowmodel;
\r
263 player_swallowmodel = strcat(substring(pred.playermodel, 0, strlen(pred.playermodel) - 4), "_swallow.md3"); // 4 is the extension length
\r
264 if(prey.swallow_model.model != player_swallowmodel) // player model can be changed while the predator is active
\r
265 setmodel(prey.swallow_model, player_swallowmodel);
\r
266 if(prey.swallow_model.skin != pred.skin) // player skin can be changed while the predator is active
\r
267 prey.swallow_model.skin = pred.skin;
\r
268 if(cvar("g_healthsize"))
\r
269 prey.swallow_model.scale = pred.scale / prey.scale; // player size difference
\r
270 if(prey.swallow_model.enemy != pred)
\r
271 prey.swallow_model.enemy = pred; // enemy is the predator
\r
272 if(prey.swallow_model.colormap != pred.colormap)
\r
273 prey.swallow_model.colormap = pred.colormap; // pants and shirt color
\r
274 if(prey.swallow_model.glowmod != pred.glowmod)
\r
275 prey.swallow_model.glowmod = pred.glowmod; // glow color
\r
280 void Vore_Swallow(entity e)
\r
282 // this player is being swallowed by another player, apply the proper changes
\r
284 e.vore_oldmovetype = e.movetype;
\r
285 e.vore_oldsolid = e.solid;
\r
286 e.punchvector_z = cvar("g_balance_vore_swallow_prey_punchvector");
\r
289 setorigin(e, e.predator.origin);
\r
290 e.velocity = '0 0 0';
\r
291 e.movetype = MOVETYPE_FOLLOW;
\r
292 e.solid = SOLID_NOT;
\r
293 e.aiment = e.predator; // follow the predator, automatically unset when regurgitated
\r
295 // drop keys (KH) and flags (CTF) when we get swallowed
\r
296 kh_Key_DropAll(e, FALSE);
\r
298 DropFlag(e.flagcarried, world, e.predator);
\r
300 if(stov(cvar_string("g_vore_regurgitatecolor_color_normal")))
\r
301 e.colormod = stov(cvar_string("g_vore_regurgitatecolor_color_normal"));
\r
303 if(teams_matter && e.team == e.predator.team)
\r
305 if(cvar("g_vore_kick"))
\r
306 centerprint(e, "^3You have been swallowed by a team mate, don't kick!");
\r
307 if(cvar("g_vore_digestion"))
\r
308 centerprint(e.predator, "^3You have swallowed a team mate, don't digest!");
\r
311 PlayerSound(e.predator, playersound_swallow, CHAN_VOICE, VOICETYPE_PLAYERSOUND);
\r
312 setanim(e.predator, e.predator.anim_pain1, FALSE, TRUE, TRUE); // looks good for swallowing / regurgitating
\r
313 e.predator.punchangle_x -= cvar("g_balance_vore_swallow_predator_punchangle");
\r
314 e.predator.regurgitate_prepare = 0;
\r
315 e.predator.spawnshieldtime = 0; // lose spawn shield when we vore
\r
316 e.predator.hitsound += 1; // play this for team mates too, as we could be swallowing them to heal them
\r
317 Vore_AutoDigest(e.predator);
\r
318 Vore_SetPreyPositions(e.predator);
\r
320 // block firing for a small amount of time, or we'll be firing the next frame after we swallow
\r
321 e.predator.weapon_delay = time + button_delay_time;
\r
322 e.predator.action_delay = time + cvar("g_balance_vore_action_delay");
\r
323 e.system_delay = e.predator.system_delay = time + system_delay_time;
\r
324 e.stomachkick_delay = time + cvar("g_balance_vore_kick_delay"); // don't kick immediately after being swallowed
\r
327 void Vore_SwallowStep(entity e)
\r
329 if(!cvar("g_balance_vore_swallow_speed_fill"))
\r
335 Vore_SwallowModel_Update(e, self);
\r
337 // increase the progress value until it reaches 1, then swallow the player
\r
338 if(e.swallow_progress_prey < 1)
\r
341 fill = cvar("g_balance_vore_swallow_speed_fill") * frametime;
\r
342 if(cvar("g_healthsize") && cvar("g_balance_vore_swallow_speed_fill_scalediff")) // fill rate depends on predator size compared to prey size
\r
343 fill *= pow(self.scale / e.scale, cvar("g_balance_vore_swallow_speed_fill_scalediff"));
\r
344 if(cvar("g_balance_vore_swallow_speed_fill_stomachload") && e.stomach_load) // fill rate is influenced by the prey's stomach load
\r
345 fill /= e.stomach_load;
\r
347 e.swallow_progress_prey += fill;
\r
352 e.swallow_progress_prey = 0;
\r
355 // the predator's progress is how much the prey got swallowed
\r
356 self.swallow_progress_pred = e.swallow_progress_prey;
\r
359 void Vore_Regurgitate(entity e)
\r
361 // this player is being regurgitated by their predator, apply the proper changes
\r
363 e.movetype = e.vore_oldmovetype;
\r
364 if(e.health > 0) // leave SOLID_NOT for dead bodies
\r
365 e.solid = e.vore_oldsolid;
\r
366 e.view_ofs_z = PL_VIEW_OFS_z;
\r
367 e.punchvector_z = -cvar("g_balance_vore_regurgitate_prey_punchvector");
\r
369 // if the prey has been fully digested, silently detach them
\r
370 if(e.deadflag != DEAD_NO && e.health <= cvar("g_balance_vore_digestion_limit"))
\r
372 e.predator = world;
\r
373 e.modelindex = 0; // hide the dead body
\r
377 // apply velocities
\r
378 local vector oldforward, oldright, oldup;
\r
379 oldforward = v_forward;
\r
380 oldright = v_right;
\r
382 makevectors(e.predator.v_angle);
\r
383 e.velocity = v_forward * cvar("g_balance_vore_regurgitate_force");
\r
384 e.predator.velocity += -v_forward * cvar("g_balance_vore_regurgitate_predatorforce");
\r
385 v_forward = oldforward;
\r
386 v_right = oldright;
\r
389 e.pusher = e.predator; // allows us to frag players by regurgitating them in deadly pits
\r
390 e.pushltime = time + cvar("g_maxpushtime");
\r
392 // if the dead body of the prey is below gibbing health, gib it
\r
393 e.stat_eaten = 0; // necessary for gibs to show
\r
394 PlayerGib(e, e.predator);
\r
396 // regurgitated prey is given this amount of swallow progress, to simulate being more vulnerable
\r
397 if(cvar("g_balance_vore_swallow_speed_fill") && cvar("g_balance_vore_regurgitate_swallowprogress"))
\r
399 e.swallow_progress_prey = cvar("g_balance_vore_regurgitate_swallowprogress");
\r
400 Vore_SwallowModel_Update(e, e.predator);
\r
403 // apply regurgitation damage to the predator
\r
404 if(cvar("g_balance_vore_regurgitate_damage"))
\r
406 float regurgitate_dmg;
\r
407 regurgitate_dmg = cvar("g_balance_vore_regurgitate_damage");
\r
408 if(cvar("g_healthsize"))
\r
409 regurgitate_dmg *= e.scale / e.predator.scale;
\r
410 Damage(e.predator, e, e, regurgitate_dmg, DEATH_REGURGITATION, e.predator.origin, '0 0 0');
\r
413 PlayerSound(e.predator, playersound_regurgitate, CHAN_VOICE, VOICETYPE_PLAYERSOUND);
\r
414 setanim(e.predator, e.predator.anim_pain1, FALSE, TRUE, TRUE); // looks good for swallowing / regurgitating
\r
415 pointparticles(particleeffectnum("vore_regurgitate"), e.predator.origin, '0 0 0', 1);
\r
416 e.predator.punchangle_x += cvar("g_balance_vore_regurgitate_predator_punchangle");
\r
417 e.predator.regurgitate_prepare = 0;
\r
418 e.predator.action_delay = time + cvar("g_balance_vore_action_delay");
\r
419 Vore_SetPreyPositions(e.predator);
\r
421 // block firing for a small amount of time, or we'll be firing the next frame
\r
422 e.weapon_delay = time + button_delay_time;
\r
423 e.system_delay = e.predator.system_delay = time + system_delay_time;
\r
424 e.predator = world;
\r
427 void Vore_Disconnect()
\r
429 // frees prey from their predators when someone disconnects or goes spectating, or in other circumstances
\r
431 // prey disconnects or goes spectating while inside someone's belly
\r
432 if(self.stat_eaten)
\r
433 Vore_Regurgitate(self);
\r
435 // pred disconnects or goes spectating with players in their belly
\r
437 FOR_EACH_PLAYER(head)
\r
439 if(head.predator == self)
\r
440 Vore_Regurgitate(head);
\r
442 Vore_GurgleSound(); // stop the gurgling sound
\r
444 self.stomach_load = self.gravity = 0; // prevents a bug
\r
447 .float digestion_step;
\r
450 // apply digestion to prey
\r
452 if(self.predator.deadflag != DEAD_NO) // dead predators don't digest
\r
454 self.predator.digesting = FALSE;
\r
457 if(self.health <= cvar("g_balance_vore_digestion_limit")) // don't digest below this amount of health
\r
460 if(time > self.digestion_step)
\r
462 // if distributed digestion is enabled, reduce digestion strength by the amount of prey in our stomach
\r
463 float damage, damage_offset;
\r
466 if(cvar("g_balance_vore_digestion_distribute")) // apply distributed digestion damage
\r
467 damage_offset *= self.predator.stomach_load / self.predator.stomach_maxload;
\r
468 if(cvar("g_healthsize") && cvar("g_balance_vore_digestion_scalediff")) // apply player scale to digestion damage
\r
469 damage_offset *= pow(self.scale / self.predator.scale, cvar("g_balance_vore_digestion_scalediff"));
\r
470 damage_offset = ceil(damage_offset);
\r
472 damage = cvar("g_balance_vore_digestion_damage") / damage_offset;
\r
473 if(cvar("g_balance_vore_digestion_damage_death") && self.deadflag != DEAD_NO) // amplify digestion damage for dead prey
\r
474 damage *= cvar("g_balance_vore_digestion_damage_death");
\r
476 Damage(self, self.predator, self.predator, damage, DEATH_DIGESTION, self.origin, '0 0 0');
\r
477 if(cvar("g_balance_vore_digestion_vampire") && self.predator.health < cvar("g_balance_vore_digestion_vampire_stable"))
\r
478 self.predator.health += damage * cvar("g_balance_vore_digestion_vampire");
\r
480 if (self.predator.digestsound_finished < time)
\r
482 PlayerSound (self.predator, playersound_digest, CHAN_PLAYER, VOICETYPE_PLAYERSOUND);
\r
483 self.predator.digestsound_finished = time + 0.5;
\r
485 self.digestion_step = time + steptime;
\r
488 if(stov(cvar_string("g_vore_regurgitatecolor_color_digest")))
\r
489 self.colormod = stov(cvar_string("g_vore_regurgitatecolor_color_digest"));
\r
492 .float teamheal_step;
\r
493 void Vore_Teamheal()
\r
497 if(self.deadflag != DEAD_NO)
\r
500 if(cvar("g_balance_vore_teamheal") && self.health < cvar("g_balance_vore_teamheal_stable"))
\r
501 if(time > self.teamheal_step)
\r
503 self.health += cvar("g_balance_vore_teamheal");
\r
504 self.teamheal_step = time + steptime;
\r
506 // play beep sound when a team mate was healed to the maximum amount, to both the prey and the predator
\r
507 if(self.health >= cvar("g_balance_vore_teamheal_stable"))
\r
509 play2(self, "misc/beep.wav");
\r
510 play2(self.predator, "misc/beep.wav");
\r
515 .float kick_pressed;
\r
516 void Vore_StomachKick()
\r
518 // allows prey to kick the predator's stomach and do some damage or attempt to escape
\r
520 if(self.deadflag != DEAD_NO)
\r
523 if(time > self.stomachkick_delay && !self.kick_pressed)
\r
527 damage = cvar("g_balance_vore_kick_damage");
\r
528 force = v_forward * cvar("g_balance_vore_kick_force");
\r
531 // apply player scale to the damage / force of the kick
\r
532 if(cvar("g_healthsize") && cvar("g_balance_vore_kick_scalediff"))
\r
534 damage *= pow(self.scale / self.predator.scale, cvar("g_balance_vore_kick_scalediff"));
\r
535 force *= pow(self.scale / self.predator.scale, cvar("g_balance_vore_kick_scalediff"));
\r
536 vol *= pow(self.scale / self.predator.scale, cvar("g_balance_vore_kick_scalediff")); // kick sound volume based on the same scale
\r
538 vol = bound(0, vol, 1);
\r
540 Damage(self.predator, self, self, damage, DEATH_STOMACHKICK, self.predator.origin, force);
\r
541 sound(self.predator, CHAN_PROJECTILE, strcat("weapons/hit", ftos(floor(random() * 8)), ".wav"), vol, ATTN_NORM);
\r
542 self.predator.punchangle_x -= cvar("g_balance_vore_kick_predator_punchangle");
\r
543 self.punchangle_x += cvar("g_balance_vore_kick_prey_punchangle");
\r
545 // abort the predator's scheduled regurgitation
\r
546 if(random() < cvar("g_balance_vore_kick_cutregurgitate"))
\r
547 self.predator.regurgitate_prepare = 0;
\r
549 self.stomachkick_delay = time + cvar("g_balance_vore_kick_delay");
\r
550 if(cvar("g_balance_vore_kick_repress"))
\r
551 if not(clienttype(self) == CLIENTTYPE_BOT) // not for bots, to prevent an issue
\r
552 self.kick_pressed = TRUE;
\r
556 void Vore_StomachLeave()
\r
558 // allows players to get out of their predator at will in some circumstances, such as team mates
\r
560 if(self.deadflag != DEAD_NO)
\r
563 if(Vore_CanLeave())
\r
564 Vore_Regurgitate(self);
\r
565 else if(time > self.complain_vore)
\r
567 play2(self, "misc/forbidden.wav");
\r
568 sprint(self, strcat("You cannot get out of ", self.predator.netname, "\n"));
\r
569 self.complain_vore = time + complain_delay_time;
\r
573 void Vore_AutoTaunt()
\r
575 // triggers ambient vore taunts, for both pred and prey
\r
580 if((self.swallow_progress_pred || (self.stomach_load && Stomach_HasLivePrey(self))) && !Stomach_TeamMates_check(self))
\r
582 if(!self.taunt_soundtime) // taunt_soundtime becomes 0 once the taunt has played
\r
584 taunt_time = random() * (cvar("sv_vore_autotaunt_repeat_max") - cvar("sv_vore_autotaunt_repeat_min")) + cvar("sv_vore_autotaunt_repeat_min");
\r
585 SetAutoTaunt(self, time + taunt_time, TAUNTTYPE_VOREPRED);
\r
588 else if(self.taunt_soundtype == TAUNTTYPE_VOREPRED)
\r
590 // we have a predator taunt scheduled, but are no longer a (suitable) predator, so remove it
\r
591 SetAutoTaunt(self, 0, 0);
\r
595 if((self.swallow_progress_prey || (self.stat_eaten && !(teams_matter && self.team == self.predator.team))) && self.deadflag == DEAD_NO)
\r
597 if(!self.taunt_soundtime) // taunt_soundtime becomes 0 once the taunt has played
\r
599 taunt_time = random() * (cvar("sv_vore_autotaunt_repeat_max") - cvar("sv_vore_autotaunt_repeat_min")) + cvar("sv_vore_autotaunt_repeat_min");
\r
600 SetAutoTaunt(self, time + taunt_time, TAUNTTYPE_VOREPREY);
\r
603 else if(self.taunt_soundtype == TAUNTTYPE_VOREPREY)
\r
605 // we have a prey taunt scheduled, but are no longer a (suitable) prey, so remove it
\r
606 SetAutoTaunt(self, 0, 0);
\r
610 void Vore_SetSbarRings()
\r
612 // first clear the ring stats, then configure them if needed
\r
613 self.stat_sbring1_type = self.stat_sbring1_clip = 0;
\r
614 self.stat_sbring2_type = self.stat_sbring2_clip = 0;
\r
616 if(self.stat_eaten)
\r
618 if(time <= self.stomachkick_delay)
\r
620 self.stat_sbring1_type = 3; // ring shows stomach kick delay, empties with progress
\r
621 self.stat_sbring1_clip = bound(0, (time / self.stomachkick_delay - 1) / ((self.stomachkick_delay - cvar("g_balance_vore_kick_delay")) / self.stomachkick_delay - 1), 1);
\r
626 if(self.swallow_progress_pred)
\r
628 self.stat_sbring1_type = 1; // ring shows predator swallow progress, fills with progress
\r
629 self.stat_sbring1_clip = bound(0, self.swallow_progress_pred, 1);
\r
631 else if(time <= self.action_delay)
\r
633 self.stat_sbring1_type = 2; // ring shows vore action delay, empties with progress
\r
634 self.stat_sbring1_clip = bound(0, (time / self.action_delay - 1) / ((self.action_delay - cvar("g_balance_vore_action_delay")) / self.action_delay - 1), 1);
\r
637 if(self.swallow_progress_prey)
\r
639 self.stat_sbring2_type = 1; // ring shows prey swallow progress, fills with progress
\r
640 self.stat_sbring2_clip = bound(0, self.swallow_progress_prey, 1);
\r
642 else if(time <= self.regurgitate_prepare)
\r
644 self.stat_sbring2_type = 2; // ring shows regurgitation preparing, fills with progress
\r
645 self.stat_sbring2_clip = 1 - bound(0, (time / self.regurgitate_prepare - 1) / ((self.regurgitate_prepare - cvar("g_balance_vore_regurgitate_delay")) / self.regurgitate_prepare - 1), 1);
\r
650 .float regurgitatecolor_particles_tick;
\r
653 // main vore code, this is where it all happens
\r
657 if(!self.stat_eaten)
\r
658 if(self.modelindex) // not if we're a gibbed dead body or not visible any more
\r
660 if(self.colormod != '1 1 1')
\r
662 // slowly wash stomach fluids off players once they're out of the stomach
\r
663 if(cvar("g_vore_regurgitatecolor_fade"))
\r
664 if(self.deadflag == DEAD_NO) // not for dead bodies
\r
667 goo_fade = cvar("g_vore_regurgitatecolor_fade") * frametime;
\r
668 goo_fade *= 1 + self.waterlevel; // fade faster when underwater
\r
670 self.colormod_x += goo_fade;
\r
671 if(self.colormod_x > 1)
\r
672 self.colormod_x = 1;
\r
673 self.colormod_y += goo_fade;
\r
674 if(self.colormod_y > 1)
\r
675 self.colormod_y = 1;
\r
676 self.colormod_z += goo_fade;
\r
677 if(self.colormod_z > 1)
\r
678 self.colormod_z = 1;
\r
681 // constant particles falling off dirty players
\r
682 if(cvar("g_vore_regurgitatecolor_particles"))
\r
683 if(self.regurgitatecolor_particles_tick < time)
\r
685 pointparticles(particleeffectnum("vore_regurgitate_constant"), self.origin, '0 0 0', 1);
\r
686 self.regurgitatecolor_particles_tick = time + cvar("g_vore_regurgitatecolor_particles") * vlen(self.colormod); // particle time depends on how dirty the player is
\r
690 // set all vore stats
\r
691 Vore_SetSbarRings();
\r
692 if(self.predator.classname == "player")
\r
694 self.stat_stomachload = self.predator.stomach_load; // necessary for the stomach board
\r
695 self.stat_stomachmaxload = self.predator.stomach_maxload; // necessary for the stomach board
\r
696 self.stat_digesting = self.predator.digesting; // necessary for the stomach board
\r
697 self.stat_eaten = num_for_edict(self.predator);
\r
701 self.stat_stomachload = self.stomach_load;
\r
702 self.stat_stomachmaxload = self.stomach_maxload;
\r
703 self.stat_digesting = self.digesting;
\r
704 self.stat_eaten = 0;
\r
706 self.stat_canleave = Vore_CanLeave();
\r
708 // don't allow a player inside a player inside another player :)
\r
709 // prevent this by checking if such has happened, and taking the proper measures
\r
710 // this code has a high priority and must not be stopped by any delay, so run it here
\r
711 if(self.predator.stat_eaten)
\r
713 entity target_predator, target_predator_predator, oldself;
\r
714 target_predator = self.predator;
\r
715 target_predator_predator = self.predator.predator;
\r
717 Vore_Regurgitate(self);
\r
719 // now steal our prey's prey if this probability applies
\r
720 if(random() < cvar("g_balance_vore_swallow_stealprey"))
\r
723 self = target_predator_predator;
\r
724 if(Swallow_condition_check(oldself))
\r
725 if not(teams_matter && self.team == target_predator.team) // don't steal a team mate's prey
\r
726 if not(teams_matter && self.team == oldself.team) // if the prey we would be stealing is a team mate, don't do it
\r
727 Vore_Swallow(oldself);
\r
732 // the swallow progress of prey and preds idly decrease by this amount
\r
733 if(cvar("g_balance_vore_swallow_speed_decrease"))
\r
735 if(self.swallow_progress_pred)
\r
737 self.swallow_progress_pred -= cvar("g_balance_vore_swallow_speed_decrease") * frametime;
\r
738 if(self.swallow_progress_pred < 0)
\r
739 self.swallow_progress_pred = 0;
\r
741 if(self.swallow_progress_prey)
\r
743 self.swallow_progress_prey -= cvar("g_balance_vore_swallow_speed_decrease") * frametime;
\r
744 if(self.swallow_progress_prey < 0)
\r
745 self.swallow_progress_prey = 0;
\r
749 // set the predator's stomach load and capacity
\r
750 Vore_StomachLoad_Apply();
\r
752 // apply delays and skip the vore system under some circumstances
\r
753 if(!cvar("g_vore")) // the vore system is disabled
\r
758 if(time < game_starttime || (time < warmup && !inWarmupStage)) // don't allow vore before a round begins
\r
763 if(self.spectatee_status)
\r
765 if(time < self.system_delay)
\r
768 // --------------------------------
\r
769 // Code that addresses predators:
\r
770 // --------------------------------
\r
773 prey = Swallow_player_check();
\r
775 // attempt to swallow our new prey if we pressed the attack button, and there's any in range
\r
776 self.stat_canswallow = 0;
\r
777 if(Swallow_condition_check(prey))
\r
779 // canswallow stat, used by the HUD
\r
780 if(teams_matter && prey.team == self.team)
\r
781 self.stat_canswallow = 2;
\r
783 self.stat_canswallow = 1;
\r
785 if(self.BUTTON_ATCK)
\r
786 Vore_SwallowStep(prey);
\r
788 else if(prey != world)
\r
789 self.stat_canswallow = -1;
\r
791 // toggle digestion, if the player has someone in their stomach
\r
792 if(self.BUTTON_DIGEST && cvar("g_vore_digestion"))
\r
794 if(self.stomach_load)
\r
796 if(time > self.digest_button_delay_time)
\r
798 self.digesting = !self.digesting;
\r
799 self.digest_button_delay_time = time + button_delay_time;
\r
802 else if(time > self.complain_vore)
\r
804 play2(self, "misc/forbidden.wav");
\r
805 sprint(self, "There is nothing to digest\n");
\r
806 self.complain_vore = time + complain_delay_time;
\r
809 if(!self.stomach_load || !cvar("g_vore_digestion"))
\r
810 self.digesting = FALSE;
\r
812 // predator wishes to regurgitate his prey
\r
813 if(self.BUTTON_REGURGITATE && time > self.action_delay)
\r
815 if(self.stomach_load)
\r
817 if(time > self.regurgitate_button_delay_time)
\r
819 self.regurgitate_prepare = time + cvar("g_balance_vore_regurgitate_delay");
\r
820 PlayerSound(self, playersound_regurgitate_prepare, CHAN_VOICE, VOICETYPE_PLAYERSOUND);
\r
821 setanim(self, self.anim_pain2, FALSE, TRUE, TRUE); // looks good for preparing regurgitation
\r
822 self.regurgitate_button_delay_time = time + button_delay_time;
\r
825 else if(time > self.complain_vore)
\r
827 play2(self, "misc/forbidden.wav");
\r
828 sprint(self, "There is nothing to regurgitate\n");
\r
829 self.complain_vore = time + complain_delay_time;
\r
833 if(cvar("g_vore_gurglesound"))
\r
834 Vore_GurgleSound();
\r
836 // --------------------------------
\r
837 // Code that addresses the prey:
\r
838 // --------------------------------
\r
840 if(!self.stat_eaten)
\r
843 if(self.deadflag != DEAD_NO && self.health < cvar("g_balance_vore_digestion_limit")) // make sure health doesn't go below the limit
\r
844 self.health = cvar("g_balance_vore_digestion_limit");
\r
846 // automatically regurgitate prey that has reached their digestion limit
\r
847 if(cvar("g_balance_vore_digestion_limit_regurgitate"))
\r
848 if(self.health <= cvar("g_balance_vore_digestion_limit"))
\r
850 Vore_Regurgitate(self);
\r
854 // do we stick around inside dead furries? x_x
\r
855 if(self.predator.deadflag != DEAD_NO)
\r
857 if(!cvar("g_balance_vore_deadpredator") || !self.predator.modelindex) // if the predator is gibbed, we are out
\r
859 Vore_Regurgitate(self);
\r
862 if(self.predator.regurgitate_prepare) // abort scheduled regurgitation
\r
863 self.predator.regurgitate_prepare = 0;
\r
866 if(self.predator.stomach_load > self.predator.stomach_maxload) // the predator got beyond his capacity after eating, so some prey must pop out
\r
868 Vore_Regurgitate(self);
\r
871 if(cvar("g_balance_vore_load_pred_speedcap") && vlen(self.predator.velocity) >= cvar("g_balance_vore_load_pred_speedcap") / (self.predator.stomach_load / self.predator.stomach_maxload)) // predator's going too fast, gets sick and throws up
\r
873 Vore_Regurgitate(self);
\r
877 // apply delayed regurgitating if it was scheduled
\r
878 if(self.predator.regurgitate_prepare && time > self.predator.regurgitate_prepare)
\r
880 self.predator.regurgitate_prepare = 0;
\r
881 self.predator.complain_vore = time + complain_delay_time; // prevent complaining the next frame if this empties our stomach
\r
882 Vore_Regurgitate(self);
\r
885 // execute digesting and team healing
\r
886 if(self.predator.digesting == TRUE)
\r
888 if(teams_matter && self.team == self.predator.team)
\r
889 if(cvar("g_balance_vore_teamheal") && cvar("g_vore_teamvore"))
\r
892 // execute prey commands
\r
893 if(self.BUTTON_ATCK)
\r
895 if(cvar("g_vore_kick"))
\r
896 Vore_StomachKick();
\r
899 self.kick_pressed = FALSE;
\r
900 if(self.BUTTON_JUMP)
\r
901 Vore_StomachLeave();
\r
903 // Ugly workaround for a Keyhunt issue. Your team's key can still be given to you while in the stomach
\r
904 // (at round start), which is pretty ugly and wrong. So attempt to drop keys each frame for prey
\r
905 kh_Key_DropAll(self, FALSE);
\r
907 // always position camera at the center of the stomach, to reduce probability of the view poking out
\r
908 self.view_ofs_z = PL_PREY_VIEW_OFS_z * self.predator.scale;
\r