Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames

U2Pawns.U2RammerController


00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
//=============================================================================
// U2RammerController.uc
// Created By: Mike Fox
// Created On: 8/01/00
// $Author: Mfox $
// $Date: 10/04/02 3:26p $
// $Revision: 12 $
//=============================================================================

class U2RammerController extends U2NPCControllerBasic;

//-----------------------------------------------------------------------------

state @ AttackCloseChargeState
{
    ignores SeeEnemy, SeeFriend, SeeOther, SeeAlertFriend, HearNoise;

	//-------------------------------------------------------------------------
	// May want to move this check to a Tick function -- very dependent on rate
	// at which MoveToXXX return currently.

	/*
	I dont think this is going to work well as a standing melee attack unless
	the head can reach a lot further...
	*/

	function EDestinationResult SetChargeDestination()
	{
		local EDestinationResult Result;
		local float EnemyDistance;
		local vector EnemyVector2D;
		local vector PawnVector2D;

		Result = Super.SetChargeDestination();

		// temp hack: if within X units of Enemy play headbutt anim
		if( !U2P.AnimationController.CheckAnimationGroup( AG_AttackMelee ) )
		{
			EnemyVector2D = ControllerEnemy.Location - Pawn.Location;
			EnemyVector2D.Z = 0;
			PawnVector2D = vector(Pawn.Rotation);
			PawnVector2D.Z = 0;
			EnemyDistance = VSize(EnemyVector2D) - Pawn.CollisionRadius - ControllerEnemy.CollisionRadius;
			#debug DMAIA( "EnemyDistance: " $ EnemyDistance );
			#debug DMAIA( "cos: " $ ( Normal( EnemyVector2D ) dot vector(Pawn.Rotation) ) );
			if( EnemyDistance >= 75 && 
				EnemyDistance <= 125 && 
				(Normal( ControllerEnemy.Location - Pawn.Location ) dot Normal( PawnVector2D )) > 0.866 )
			{	
				//Result = DR_Wait; // tell caller to delay for a bit?
				U2P.AnimationController.SpecialAnimationMeleeAttack();
			}
		}

		#debug DMAIA( "UsePredictedChargeLocation returning " $ Result );
		return Result;
	}
}

//-----------------------------------------------------------------------------

defaultproperties
{
     UseReticleOnEvents(0)="UseReticleText"
     UseReticleOnEvents(1)="UseReticleCorners"
     UseReticleOnEvents(2)="UseReticleTopBars"
     ProximityReticleOnEvents(0)="ProximityReticleCorners"
     ProximityReticleOnEvents(1)="ProximityReticleTopBars"
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: sk 3-1-2016 10:38:44.000 - Creation time: sk 3-1-2016 10:48:43.419 - Created with UnCodeX