1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025
|
/*
===========================================================================
Return to Castle Wolfenstein multiplayer GPL Source Code
Copyright (C) 1999-2010 id Software LLC, a ZeniMax Media company.
This file is part of the Return to Castle Wolfenstein multiplayer GPL Source Code (RTCW MP Source Code).
RTCW MP Source Code is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
RTCW MP Source Code is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with RTCW MP Source Code. If not, see <http://www.gnu.org/licenses/>.
In addition, the RTCW MP Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the RTCW MP Source Code. If not, please request a copy in writing from id Software at the address below.
If you have questions concerning this license or the applicable additional terms, you may contact in writing id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.
===========================================================================
*/
#include "g_local.h"
void InitTrigger( gentity_t *self ) {
if ( !VectorCompare( self->s.angles, vec3_origin ) ) {
G_SetMovedir( self->s.angles, self->movedir );
}
trap_SetBrushModel( self, self->model );
self->r.contents = CONTENTS_TRIGGER; // replaces the -1 from trap_SetBrushModel
self->r.svFlags = SVF_NOCLIENT;
}
// the wait time has passed, so set back up for another activation
void multi_wait( gentity_t *ent ) {
ent->nextthink = 0;
}
// the trigger was just activated
// ent->activator should be set to the activator so it can be held through a delay
// so wait for the delay time before firing
void multi_trigger( gentity_t *ent, gentity_t *activator ) {
ent->activator = activator;
if ( ent->nextthink ) {
return; // can't retrigger until the wait is over
}
G_UseTargets( ent, ent->activator );
if ( ent->wait > 0 ) {
ent->think = multi_wait;
ent->nextthink = level.time + ( ent->wait + ent->random * crandom() ) * 1000;
} else {
// we can't just remove (self) here, because this is a touch function
// called while looping through area links...
ent->touch = 0;
ent->nextthink = level.time + FRAMETIME;
ent->think = G_FreeEntity;
}
}
void Use_Multi( gentity_t *ent, gentity_t *other, gentity_t *activator ) {
multi_trigger( ent, activator );
}
void Touch_Multi( gentity_t *self, gentity_t *other, trace_t *trace ) {
if ( !other->client ) {
return;
}
if ( !( self->spawnflags & 1 ) ) { // denotes AI_Touch flag
if ( other->aiCharacter ) {
return;
}
}
multi_trigger( self, other );
}
void Enable_Trigger_Touch( gentity_t *ent ) {
gentity_t *targ;
gentity_t *daent;
trace_t tr;
int mask = MASK_SHOT;
int targTemp1, targTemp2;
int entTemp1, entTemp2;
vec3_t dir, forward, kvel;
float angle;
qboolean thisone = qfalse;
// ent->touch = Touch_Multi;
// find the client number that uses this entity
targ = AICast_FindEntityForName( ent->aiName );
if ( !targ ) {
return;
} else
{
// bail if GIBFLAG and targ has been jibbed
if ( targ->health <= GIB_HEALTH && ( ent->spawnflags & 2 ) ) {
return;
}
// need to make the ent solid since it is a trigger
entTemp1 = ent->clipmask;
entTemp2 = ent->r.contents;
ent->clipmask = CONTENTS_SOLID;
ent->r.contents = CONTENTS_SOLID;
trap_LinkEntity( ent );
// same with targ cause targ is dead
targTemp1 = targ->clipmask;
targTemp2 = targ->r.contents;
targ->clipmask = CONTENTS_SOLID;
targ->r.contents = CONTENTS_SOLID;
trap_LinkEntity( targ );
trap_Trace( &tr, targ->client->ps.origin, targ->r.mins, targ->r.maxs, targ->client->ps.origin, targ->s.number, mask );
if ( tr.startsolid ) {
daent = &g_entities[ tr.entityNum ];
if ( daent == ent ) { // wooo hooo
multi_trigger( ent, targ );
thisone = qtrue;
}
}
// ok were done set it contents back
ent->clipmask = entTemp1;
ent->r.contents = entTemp2;
trap_LinkEntity( ent );
targ->clipmask = targTemp1;
targ->r.contents = targTemp2;
trap_LinkEntity( targ );
if ( ent->s.angles2[YAW] && thisone ) {
angle = ent->s.angles2[YAW];
VectorClear( dir );
VectorClear( targ->client->ps.velocity );
dir[YAW] = angle;
AngleVectors( dir, forward, NULL, NULL );
VectorScale( forward, 32, kvel );
VectorAdd( targ->client->ps.velocity, kvel, targ->client->ps.velocity );
}
}
}
/*QUAKED trigger_multiple (.5 .5 .5) ? AI_Touch
"wait" : Seconds between triggerings, 0.5 default, -1 = one time only.
"random" wait variance, default is 0
Variable sized repeatable trigger. Must be targeted at one or more entities.
so, the basic time between firing is a random time between
(wait - random) and (wait + random)
*/
void SP_trigger_multiple( gentity_t *ent ) {
G_SpawnFloat( "wait", "0.5", &ent->wait );
G_SpawnFloat( "random", "0", &ent->random );
if ( ent->random >= ent->wait && ent->wait >= 0 ) {
ent->random = ent->wait - FRAMETIME;
G_Printf( "trigger_multiple has random >= wait\n" );
}
ent->touch = Touch_Multi;
ent->use = Use_Multi;
InitTrigger( ent );
trap_LinkEntity( ent );
}
/*
==============================================================================
trigger_always
==============================================================================
*/
void trigger_always_think( gentity_t *ent ) {
G_UseTargets( ent, ent );
G_FreeEntity( ent );
}
/*QUAKED trigger_always (.5 .5 .5) (-8 -8 -8) (8 8 8)
This trigger will always fire. It is activated by the world.
*/
void SP_trigger_always( gentity_t *ent ) {
// we must have some delay to make sure our use targets are present
ent->nextthink = level.time + 300;
ent->think = trigger_always_think;
}
/*
==============================================================================
trigger_push
==============================================================================
*/
void trigger_push_touch( gentity_t *self, gentity_t *other, trace_t *trace ) {
if ( ( self->spawnflags & 4 ) && other->r.svFlags & SVF_CASTAI ) {
return;
}
if ( !other->client ) {
return;
}
if ( other->client->ps.pm_type != PM_NORMAL ) {
return;
}
if ( other->client->ps.powerups[PW_FLIGHT] ) {
return;
}
//----(SA) commented out as we have no hook
// if (other->client && other->client->hook)
// Weapon_HookFree(other->client->hook);
if ( other->client->ps.velocity[2] < 100 ) {
// don't play the event sound again if we are in a fat trigger
G_AddPredictableEvent( other, EV_JUMP_PAD, 0 );
}
VectorCopy( self->s.origin2, other->client->ps.velocity );
if ( self->spawnflags & 2 ) {
G_FreeEntity( self );
}
}
/*
=================
AimAtTarget
Calculate origin2 so the target apogee will be hit
=================
*/
void AimAtTarget( gentity_t *self ) {
gentity_t *ent;
vec3_t origin;
float height, gravity, time, forward;
float dist;
VectorAdd( self->r.absmin, self->r.absmax, origin );
VectorScale( origin, 0.5, origin );
ent = G_PickTarget( self->target );
if ( !ent ) {
G_FreeEntity( self );
return;
}
height = ent->s.origin[2] - origin[2];
gravity = g_gravity.value;
time = sqrt( fabs( height / ( 0.5f * gravity ) ) );
if ( !time ) {
G_FreeEntity( self );
return;
}
// set s.origin2 to the push velocity
VectorSubtract( ent->s.origin, origin, self->s.origin2 );
self->s.origin2[2] = 0;
dist = VectorNormalize( self->s.origin2 );
forward = dist / time;
VectorScale( self->s.origin2, forward, self->s.origin2 );
self->s.origin2[2] = time * gravity;
}
void trigger_push_use( gentity_t *self, gentity_t *other, gentity_t *activator ) {
self->touch = trigger_push_touch;
trap_LinkEntity( self );
}
/*QUAKED trigger_push (.5 .5 .5) ? TOGGLE REMOVEAFTERTOUCH PUSHPLAYERONLY
Must point at a target_position, which will be the apex of the leap.
This will be client side predicted, unlike target_push
*/
void SP_trigger_push( gentity_t *self ) {
InitTrigger( self );
// unlike other triggers, we need to send this one to the client
self->r.svFlags &= ~SVF_NOCLIENT;
// make sure the client precaches this sound
G_SoundIndex( "sound/world/jumppad.wav" );
if ( !( self->spawnflags & 1 ) ) { // toggle
self->s.eType = ET_PUSH_TRIGGER;
}
self->touch = trigger_push_touch;
self->think = AimAtTarget;
if ( self->spawnflags & 1 ) { // toggle
self->use = trigger_push_use;
self->touch = 0;
trap_UnlinkEntity( self );
} else {
trap_LinkEntity( self );
}
self->nextthink = level.time + FRAMETIME;
// trap_LinkEntity (self);
}
void Use_target_push( gentity_t *self, gentity_t *other, gentity_t *activator ) {
if ( !activator->client ) {
return;
}
if ( activator->client->ps.pm_type != PM_NORMAL ) {
return;
}
if ( activator->client->ps.powerups[PW_FLIGHT] ) {
return;
}
VectorCopy( self->s.origin2, activator->client->ps.velocity );
// play fly sound every 1.5 seconds
if ( activator->fly_sound_debounce_time < level.time ) {
activator->fly_sound_debounce_time = level.time + 1500;
G_Sound( activator, self->noise_index );
}
}
/*QUAKED target_push (.5 .5 .5) (-8 -8 -8) (8 8 8) bouncepad
Pushes the activator in the direction.of angle, or towards a target apex.
"speed" defaults to 1000
if "bouncepad", play bounce noise instead of windfly
*/
void SP_target_push( gentity_t *self ) {
if ( !self->speed ) {
self->speed = 1000;
}
G_SetMovedir( self->s.angles, self->s.origin2 );
VectorScale( self->s.origin2, self->speed, self->s.origin2 );
if ( self->spawnflags & 1 ) {
self->noise_index = G_SoundIndex( "sound/world/jumppad.wav" );
} else {
self->noise_index = G_SoundIndex( "sound/misc/windfly.wav" );
}
if ( self->target ) {
VectorCopy( self->s.origin, self->r.absmin );
VectorCopy( self->s.origin, self->r.absmax );
self->think = AimAtTarget;
self->nextthink = level.time + FRAMETIME;
}
self->use = Use_target_push;
}
/*
==============================================================================
trigger_teleport
==============================================================================
*/
void trigger_teleporter_touch( gentity_t *self, gentity_t *other, trace_t *trace ) {
gentity_t *dest;
if ( !other->client ) {
return;
}
if ( other->client->ps.pm_type == PM_DEAD ) {
return;
}
dest = G_PickTarget( self->target );
if ( !dest ) {
G_Printf( "Couldn't find teleporter destination\n" );
return;
}
TeleportPlayer( other, dest->s.origin, dest->s.angles );
}
/*QUAKED trigger_teleport (.5 .5 .5) ?
Allows client side prediction of teleportation events.
Must point at a target_position, which will be the teleport destination.
*/
void SP_trigger_teleport( gentity_t *self ) {
InitTrigger( self );
// unlike other triggers, we need to send this one to the client
self->r.svFlags &= ~SVF_NOCLIENT;
// make sure the client precaches this sound
G_SoundIndex( "sound/world/jumppad.wav" );
self->s.eType = ET_TELEPORT_TRIGGER;
self->touch = trigger_teleporter_touch;
trap_LinkEntity( self );
}
/*
==============================================================================
trigger_hurt
==============================================================================
*/
/*QUAKED trigger_hurt (.5 .5 .5) ? START_OFF - SILENT NO_PROTECTION SLOW ONCE
Any entity that touches this will be hurt.
It does dmg points of damage each server frame
Targeting the trigger will toggle its on / off state.
SILENT supresses playing the sound
SLOW changes the damage rate to once per second
NO_PROTECTION *nothing* stops the damage
"dmg" default 5 (whole numbers only)
"life" time this brush will exist if value is zero will live for ever ei 0.5 sec 2.sec
default is zero
the entity must be used first before it will count down its life
*/
void hurt_touch( gentity_t *self, gentity_t *other, trace_t *trace ) {
int dflags;
if ( !other->takedamage ) {
return;
}
if ( self->timestamp > level.time ) {
return;
}
if ( self->spawnflags & 16 ) {
self->timestamp = level.time + 1000;
} else {
self->timestamp = level.time + FRAMETIME;
}
// play sound
if ( !( self->spawnflags & 4 ) ) {
G_Sound( other, self->noise_index );
}
if ( self->spawnflags & 8 ) {
dflags = DAMAGE_NO_PROTECTION;
} else {
dflags = 0;
}
G_Damage( other, self, self, NULL, NULL, self->damage, dflags, MOD_TRIGGER_HURT );
if ( self->spawnflags & 32 ) {
self->touch = 0;
}
}
void hurt_think( gentity_t *ent ) {
ent->nextthink = level.time + FRAMETIME;
if ( ent->wait < level.time ) {
G_FreeEntity( ent );
}
}
void hurt_use( gentity_t *self, gentity_t *other, gentity_t *activator ) {
if ( self->touch ) {
self->touch = 0;
} else {
self->touch = hurt_touch;
}
if ( self->delay ) {
self->nextthink = level.time + 50;
self->think = hurt_think;
self->wait = level.time + ( self->delay * 1000 );
}
}
/*
==============
SP_trigger_hurt
==============
*/
void SP_trigger_hurt( gentity_t *self ) {
char *life, *sound; // JPW NERVE
float dalife;
InitTrigger( self );
G_SpawnString( "sound", "sound/world/electro.wav", &sound );
self->noise_index = G_SoundIndex( sound );
if ( !self->damage ) {
self->damage = 5;
}
self->r.contents = CONTENTS_TRIGGER;
//----(SA)
// if ( self->spawnflags & 2 ) {
// self->use = hurt_use;
// }
self->use = hurt_use;
// link in to the world if starting active
if ( !( self->spawnflags & 1 ) ) {
//----(SA) any reason this needs to be linked? (predicted?)
// trap_LinkEntity (self);
self->touch = hurt_touch;
}
G_SpawnString( "life", "0", &life );
dalife = atof( life );
self->delay = dalife;
}
/*
==============================================================================
timer
==============================================================================
*/
/*QUAKED func_timer (0.3 0.1 0.6) (-8 -8 -8) (8 8 8) START_ON
This should be renamed trigger_timer...
Repeatedly fires its targets.
Can be turned on or off by using.
"wait" base time between triggering all targets, default is 1
"random" wait variance, default is 0
so, the basic time between firing is a random time between
(wait - random) and (wait + random)
*/
void func_timer_think( gentity_t *self ) {
G_UseTargets( self, self->activator );
// set time before next firing
self->nextthink = level.time + 1000 * ( self->wait + crandom() * self->random );
}
void func_timer_use( gentity_t *self, gentity_t *other, gentity_t *activator ) {
self->activator = activator;
// if on, turn it off
if ( self->nextthink ) {
self->nextthink = 0;
return;
}
// turn it on
func_timer_think( self );
}
void SP_func_timer( gentity_t *self ) {
G_SpawnFloat( "random", "1", &self->random );
G_SpawnFloat( "wait", "1", &self->wait );
self->use = func_timer_use;
self->think = func_timer_think;
if ( self->random >= self->wait ) {
self->random = self->wait - FRAMETIME;
G_Printf( "func_timer at %s has random >= wait\n", vtos( self->s.origin ) );
}
if ( self->spawnflags & 1 ) {
self->nextthink = level.time + FRAMETIME;
self->activator = self;
}
self->r.svFlags = SVF_NOCLIENT;
}
//---- (SA) Wolf triggers
/*QUAKED trigger_once (.5 .5 .5) ? AI_Touch
Must be targeted at one or more entities.
Once triggered, this entity is destroyed
(you can actually do the same thing with trigger_multiple with a wait of -1)
*/
void SP_trigger_once( gentity_t *ent ) {
ent->wait = -1; // this will remove itself after one use
ent->touch = Touch_Multi;
ent->use = Use_Multi;
InitTrigger( ent );
trap_LinkEntity( ent );
}
//---- end
/*QUAKED trigger_deathCheck (.5 .5 .5) ? - GIBFLAG
GIBFLAG entity will never fire its target(s) if aiName entity was gibbed
aiName entity making alertentity call
this entity will test if aiName is in its volume
Must be targeted at one or more entities.
Once triggered, this entity is destroyed
*/
void SP_trigger_deathCheck( gentity_t *ent ) {
VectorCopy( ent->s.angles, ent->s.angles2 );
if ( !( ent->aiName ) ) {
G_Error( "trigger_once_enabledeath does not have an aiName \n" );
}
ent->wait = -1; // this will remove itself after one use
ent->AIScript_AlertEntity = Enable_Trigger_Touch;
ent->use = Use_Multi;
InitTrigger( ent );
trap_LinkEntity( ent );
}
/*QUAKED trigger_aidoor (.5 .5 .5) ?
These entities must be placed on all doors one for each side of the door
this will enable ai's to operate the door and help in preventing ai's and
the player from getting stuck when the door is deciding which way to open
*/
void trigger_aidoor_stayopen( gentity_t * ent, gentity_t * other, trace_t * trace ) {
gentity_t *door;
// FIXME: port this code over to moving doors (use MOVER_POSx instead of MOVER_POSxROTATE)
if ( other->client && other->health > 0 ) {
if ( !ent->target || !( strlen( ent->target ) ) ) {
// ent->target of "" will crash game in Q_stricmp()
// FIXME: commented out so it can be fixed
// G_Printf( "trigger_aidoor at loc %s does not have a target door\n", vtos (ent->s.origin) );
return;
}
door = G_Find( NULL, FOFS( targetname ), ent->target );
if ( !door ) {
// FIXME: commented out so it can be fixed
// G_Printf( "trigger_aidoor at loc %s does not have a target door\n", vtos (ent->s.origin) );
return;
}
if ( door->moverState == MOVER_POS2ROTATE ) { // door is in open state waiting to close keep it open
door->nextthink = level.time + door->wait + 3000;
}
// Ridah, door isn't ready, find a free ai_marker, and wait there until it's open
if ( other->r.svFlags & SVF_CASTAI ) {
if ( door->key ) { // we dont have keys, so assume we are not trying to get through this door
return;
}
G_Activate( door, other );
// if the door isn't currently opening for us, we should move out the way
// Ridah, had to change this, since it was causing AI to wait at door when the door is open, and won't close because they are sitting on the aidoor brush
//if (!(door->activator == other && (door->moverState == MOVER_1TO2ROTATE || door->moverState == MOVER_POS2ROTATE))) {
// NOTE TTimo: SP has a slightly different test? (this is prolly outdated)
if (
!(
( door->activator == other )
&& ( door->moverState != MOVER_POS1 )
&& ( door->moverState != MOVER_POS1ROTATE )
)
&& ( door->moverState != MOVER_POS2ROTATE )
&& ( door->moverState != MOVER_POS2 ) ) {
// if we aren't already heading for an ai_marker, look for one we can go to
AICast_AIDoor_Touch( other, ent, door );
}
}
}
}
void SP_trigger_aidoor( gentity_t *ent ) {
if ( !ent->targetname ) {
G_Printf( "trigger_aidoor at loc %s does not have a targetname for ai_marker assignments\n", vtos( ent->s.origin ) );
}
ent->touch = trigger_aidoor_stayopen;
InitTrigger( ent );
trap_LinkEntity( ent );
}
void gas_touch( gentity_t *ent, gentity_t *other, trace_t *trace ) {
gentity_t *traceEnt;
trace_t tr;
vec3_t dir;
int damage = 1;
if ( !other->client ) {
return;
}
if ( ent->s.density == 5 ) {
ent->touch = 0;
damage = 5;
}
trap_Trace( &tr, ent->r.currentOrigin, NULL, NULL, other->r.currentOrigin, ent->s.number, MASK_SHOT );
if ( tr.surfaceFlags & SURF_NOIMPACT ) {
return;
}
traceEnt = &g_entities[ tr.entityNum ];
if ( traceEnt->aiSkin && strstr( traceEnt->aiSkin, "venom" ) ) {
return;
}
if ( traceEnt->takedamage ) {
VectorClear( dir );
G_Damage( traceEnt, ent, ent, dir, tr.endpos,
damage, 0, MOD_POISONGAS );
}
}
void gas_think( gentity_t *ent ) {
gentity_t *tent;
ent->count++;
if ( ent->health < ent->count ) {
ent->think = G_FreeEntity;
if ( ent->s.density == 5 ) {
ent->nextthink = level.time + FRAMETIME;
} else {
ent->nextthink = level.time + 3000;
}
return;
}
ent->r.maxs[0] = ent->r.maxs[1] = ent->r.maxs[2]++;
ent->r.mins[0] = ent->r.mins[1] = ent->r.mins[2]--;
ent->nextthink = level.time + FRAMETIME;
tent = G_TempEntity( ent->r.currentOrigin, EV_SMOKE );
VectorCopy( ent->r.currentOrigin, tent->s.origin );
if ( ent->s.density == 5 ) {
tent->s.time = 500;
tent->s.time2 = 100;
tent->s.density = 5;
tent->s.angles2[0] = 8;
tent->s.angles2[1] = 32;
} else
{
tent->s.time = 5000;
tent->s.time2 = 3000;
tent->s.density = 5;
tent->s.angles2[0] = 24;
tent->s.angles2[1] = 96;
}
trap_LinkEntity( ent );
}
/*QUAKED test_gas (0 0.5 0) (-4 -4 -4) (4 4 4)
*/
void SP_gas( gentity_t *self ) {
self->think = gas_think;
self->nextthink = level.time + FRAMETIME;
self->r.contents = CONTENTS_TRIGGER;
self->touch = gas_touch;
trap_LinkEntity( self );
if ( !self->health ) {
self->health = 100;
}
}
// DHM - Nerve :: Multiplayer triggers
#define RED_FLAG 1
#define BLUE_FLAG 2
/*QUAKED trigger_flagonly (.5 .5 .5) ? RED_FLAG BLUE_FLAG
Player must be carrying the proper flag for it to trigger.
It will call the "death" function in the object's script.
"scriptName" The object name in the script file
"score" score given to player for dropping flag in this field
(default 20)
RED_FLAG -- only trigger if player is carrying red flag
BLUE_FLAG -- only trigger if player is carrying blue flag
*/
void Touch_flagonly( gentity_t *ent, gentity_t *other, trace_t *trace ) {
if ( !other->client ) {
return;
}
if ( ent->spawnflags & RED_FLAG && other->client->ps.powerups[ PW_REDFLAG ] ) {
AddScore( other, ent->accuracy ); // JPW NERVE set from map, defaults to 20
G_Script_ScriptEvent( ent, "death", "" );
// Removes itself
ent->touch = 0;
ent->nextthink = level.time + FRAMETIME;
ent->think = G_FreeEntity;
} else if ( ent->spawnflags & BLUE_FLAG && other->client->ps.powerups[ PW_BLUEFLAG ] ) {
AddScore( other, ent->accuracy ); // JPW NERVE set from map, defaults to 20
G_Script_ScriptEvent( ent, "death", "" );
// Removes itself
ent->touch = 0;
ent->nextthink = level.time + FRAMETIME;
ent->think = G_FreeEntity;
}
}
void SP_trigger_flagonly( gentity_t *ent ) {
char *scorestring; // JPW NERVE
ent->touch = Touch_flagonly;
InitTrigger( ent );
// JPW NERVE -- if this trigger has a "score" field set, then completing an objective
// inside of this field will add "score" to the right player team. storing this
// in ent->accuracy since that's unused.
G_SpawnString( "score", "20", &scorestring );
ent->accuracy = atof( scorestring );
// jpw
trap_LinkEntity( ent );
}
// NERVE - SMF - spawn an explosive indicator
void explosive_indicator_think( gentity_t *ent ) {
gentity_t *parent;
parent = &g_entities[ent->r.ownerNum];
if ( !parent->inuse || Q_stricmp( "trigger_objective_info", parent->classname ) ) {
ent->think = G_FreeEntity;
ent->nextthink = level.time + FRAMETIME;
return;
}
ent->nextthink = level.time + FRAMETIME;
}
/*QUAKED trigger_objective_info (.5 .5 .5) ? AXIS_OBJECTIVE ALLIED_OBJECTIVE
Players in this field will see a message saying that they are near an objective.
"track" Mandatory, this is the text that is appended to "You are near "
*/
#define AXIS_OBJECTIVE 1
#define ALLIED_OBJECTIVE 2
void SP_trigger_objective_info( gentity_t *ent ) {
char *scorestring;
if ( !ent->track ) {
G_Error( "'trigger_objective_info' does not have a 'track' \n" );
}
if ( level.numOidTriggers >= MAX_OID_TRIGGERS ) {
G_Error( "Exceeded maximum number of 'trigger_objective_info' entities\n" );
}
// JPW NERVE -- if this trigger has a "score" field set, then blowing up an objective
// inside of this field will add "score" to the right player team. storing this
// in ent->accuracy since that's unused.
G_SpawnString( "score", "0", &scorestring );
ent->accuracy = atof( scorestring );
// jpw
// Arnout: HACK HACK - someone at nerve forgot to add the score field to sub - have to
// hardcode it cause we don't want people to download the map again
{
char mapName[MAX_QPATH];
trap_Cvar_VariableStringBuffer( "mapname", mapName, sizeof( mapName ) );
if ( !Q_stricmp( mapName, "mp_sub" ) && !Q_stricmp( ent->track, "the Axis Submarine" ) ) {
ent->accuracy = 15;
}
}
trap_SetConfigstring( CS_OID_TRIGGERS + level.numOidTriggers, ent->track );
ent->s.teamNum = level.numOidTriggers;
level.numOidTriggers++;
InitTrigger( ent );
// unlike other triggers, we need to send this one to the client
ent->r.svFlags &= ~SVF_NOCLIENT;
ent->s.eType = ET_OID_TRIGGER;
trap_LinkEntity( ent );
// NERVE - SMF - spawn an explosive indicator
if ( ( ent->spawnflags & AXIS_OBJECTIVE ) || ( ent->spawnflags & ALLIED_OBJECTIVE ) ) {
gentity_t *e;
e = G_Spawn();
e->r.svFlags = SVF_BROADCAST;
e->classname = "explosive_indicator";
e->s.eType = ET_EXPLOSIVE_INDICATOR;
e->s.pos.trType = TR_STATIONARY;
if ( ent->spawnflags & AXIS_OBJECTIVE ) {
e->s.teamNum = 1;
} else if ( ent->spawnflags & ALLIED_OBJECTIVE ) {
e->s.teamNum = 2;
}
e->r.ownerNum = ent->s.number;
e->think = explosive_indicator_think;
e->nextthink = level.time + FRAMETIME;
VectorCopy( ent->r.mins, e->s.pos.trBase );
VectorAdd( ent->r.maxs, e->s.pos.trBase, e->s.pos.trBase );
VectorScale( e->s.pos.trBase, 0.5, e->s.pos.trBase );
SnapVector( e->s.pos.trBase );
trap_LinkEntity( e );
}
// -NERVE - SMF
}
// dhm - end
// JPW NERVE -- field which is acted upon (cgame side) by screenshakes to drop dust particles
void trigger_concussive_touch( gentity_t *ent, gentity_t *other, trace_t *trace ) {
#if 0 // FIXME this should be NULLed out in SP_trigger_concussive_dust after everything works
G_Printf( "hit concussive ent %p mins=%f,%f,%f maxs=%f,%f,%f\n",ent,
ent->r.mins[0],
ent->r.mins[1],
ent->r.mins[2],
ent->r.maxs[0],
ent->r.maxs[1],
ent->r.maxs[2] );
#endif
}
/*QUAKED trigger_concussive_dust (.5 .5 .5) ?
Allows client side prediction of teleportation events.
Must point at a target_position, which will be the teleport destination.
*/
void SP_trigger_concussive_dust( gentity_t *self ) {
InitTrigger( self );
// unlike other triggers, we need to send this one to the client
// self->r.svFlags &= ~SVF_NOCLIENT;
// self->r.svFlags |= SVF_BROADCAST;
self->s.eType = ET_CONCUSSIVE_TRIGGER;
self->touch = trigger_concussive_touch;
trap_LinkEntity( self );
}
// jpw
|