From 96709be82c5b2aae6d234ad98f45c889fa8acec4 Mon Sep 17 00:00:00 2001 From: puzl Date: Sat, 29 Apr 2006 12:13:41 +0000 Subject: [PATCH] o Aliens can now trigger 'the enemy approaches' by attacking it. friendly fire does not change behaviour. Leap does not trigger it at all. git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@435 67975925-1194-0748-b3d5-c16f83f1a3a1 --- releases/3.2.0/source/mod/AvHConstants.h | 3 ++- releases/3.2.0/source/mod/AvHGamerules.cpp | 16 +++++++++++++++- releases/3.2.0/source/mod/AvHServerUtil.cpp | 2 ++ 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/releases/3.2.0/source/mod/AvHConstants.h b/releases/3.2.0/source/mod/AvHConstants.h index e3ad442e..23d1e996 100644 --- a/releases/3.2.0/source/mod/AvHConstants.h +++ b/releases/3.2.0/source/mod/AvHConstants.h @@ -252,7 +252,8 @@ typedef enum ALERT_NEW_TRAIT = 13, ALERT_ORDER_NEEDED = 14, ALERT_ORDER_COMPLETE = 15, - ALERT_MAX_ALERTS = 16 + ALERT_HIVE_DEFEND = 16, + ALERT_MAX_ALERTS = 17 } AvHAlertType; typedef enum diff --git a/releases/3.2.0/source/mod/AvHGamerules.cpp b/releases/3.2.0/source/mod/AvHGamerules.cpp index 46fc3d86..06bd362f 100644 --- a/releases/3.2.0/source/mod/AvHGamerules.cpp +++ b/releases/3.2.0/source/mod/AvHGamerules.cpp @@ -1071,6 +1071,16 @@ bool AvHGamerules::CanEntityDoDamageTo(const CBaseEntity* inAttacker, const CBas { *outScalar = theScalar; } + + if(!theTeamsAreDifferent && !AvHSUGetIsExternalClassName(STRING(inReceiver->pev->classname))) + { + AvHHive *theHive=(AvHHive *)dynamic_cast(inReceiver); + if ( theHive != NULL && !this->GetIsEntityUnderAttack(theHive->entindex()) ) { + theCanDoDamage=false; + GetGameRules()->TriggerAlert((AvHTeamNumber)inAttacker->pev->team, ALERT_HIVE_DEFEND, theHive->entindex()); + } + } + } return theCanDoDamage; } @@ -3597,6 +3607,10 @@ void AvHGamerules::TriggerAlert(AvHTeamNumber inTeamNumber, AvHAlertType inAlert { theSound = HUD_SOUND_ALIEN_NEW_TRAIT; } + else if(inAlertType == ALERT_HIVE_DEFEND) + { + theSound = HUD_SOUND_ALIEN_ENEMY_APPROACHES; + } if(theSound != HUD_SOUND_INVALID) { @@ -3619,7 +3633,7 @@ void AvHGamerules::TriggerAlert(AvHTeamNumber inTeamNumber, AvHAlertType inAlert } // Add entity to our list of entities that are under attack - if(((inAlertType == ALERT_UNDER_ATTACK) || (inAlertType == ALERT_PLAYER_ENGAGE) || (inAlertType == ALERT_HIVE_DYING)) && (inEntIndex > 0)) + if(((inAlertType == ALERT_UNDER_ATTACK) || (inAlertType == ALERT_PLAYER_ENGAGE) || (inAlertType == ALERT_HIVE_DYING)|| (inAlertType == ALERT_HIVE_DEFEND) ) && (inEntIndex > 0)) { // This will update current time longer if continually attacked const float kUnderAttackDuration = 5.0f; diff --git a/releases/3.2.0/source/mod/AvHServerUtil.cpp b/releases/3.2.0/source/mod/AvHServerUtil.cpp index 4252adb9..4043d446 100644 --- a/releases/3.2.0/source/mod/AvHServerUtil.cpp +++ b/releases/3.2.0/source/mod/AvHServerUtil.cpp @@ -697,6 +697,7 @@ bool AvHSUGetIsOftRepeatedAlert(AvHAlertType inAlertType) { case ALERT_UNDER_ATTACK: case ALERT_HIVE_DYING: + case ALERT_HIVE_DEFEND: case ALERT_PLAYER_ENGAGE: case ALERT_SENTRY_FIRING: case ALERT_SENTRY_DAMAGED: @@ -722,6 +723,7 @@ bool AvHSUGetIsUrgentAlert(AvHAlertType inAlertType) case ALERT_LOW_RESOURCES: case ALERT_UNDER_ATTACK: case ALERT_HIVE_DYING: + case ALERT_HIVE_DEFEND: // These must always be played because they don't have any notification on the commander UI case ALERT_RESEARCH_COMPLETE: