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

XInterface.SpinnyWeap


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
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
// Used for weapons page

class SpinnyWeap extends Actor;

var() int SpinRate;

var()	bool			bPlayRandomAnims;
var()   bool            bPlayCrouches;
var()	float			AnimChangeInterval;
var()	array<name>		AnimNames;

var		float			CurrentTime;
var		float			NextAnimTime;

simulated event PostBeginPlay()
{
	local int i;

	if ( !bPlayCrouches )
	{
		for ( i = AnimNames.Length - 1; i >= 0; i++ )
		{
			if ( AnimNames[i] == 'Crouch' )
				AnimNames.Remove(i,1);
		}
	}
}

function Tick(float Delta)
{
	local rotator NewRot;

	NewRot = Rotation;
	NewRot.Yaw += Delta * SpinRate/Level.TimeDilation;
	SetRotation(NewRot);

	CurrentTime += Delta/Level.TimeDilation;

	// If desired, play some random animations
	if(bPlayRandomAnims && CurrentTime >= NextAnimTime)
	{
		PlayNextAnim();
	}
}

event AnimEnd( int Channel )
{
	Super.AnimEnd(Channel);
	PlayAnim(AnimNames[0], 1.0/Level.TimeDilation, 0.25/Level.TimeDilation);
}

function PlayNextAnim()
{
	local name NewAnimName;

	if(Mesh == None || AnimNames.Length == 0)
		return;

	NewAnimName = AnimNames[Rand(AnimNames.Length)];
	while ( NewAnimName == 'Crouch' && !bPlayCrouches )
		NewAnimName = AnimNames[Rand(AnimNames.Length)];

	PlayAnim(NewAnimName, 1.0/Level.TimeDilation, 0.25/Level.TimeDilation);

	NextAnimTime = CurrentTime + AnimChangeInterval;
}

defaultproperties
{
	RemoteRole=ROLE_None
	bUnlit=true
	bPlayCrouches=True
	SpinRate=20000
	DrawType=DT_StaticMesh
	//DrawType=DT_Mesh
	bAlwaysTick=true
	DrawScale=0.5
	LODBias=100000

	AnimNames(0)=Idle_Rest
	AnimNames(1)=Crouch
	AnimNames(2)=asssmack
	AnimNames(3)=pthrust
	AnimNames(4)=throatcut
	AnimNames(5)=gesture_halt
	AnimNames(6)=gesture_point
	AnimNames(7)=gesture_beckon
	AnimChangeInterval=3.0;
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: Di 5.9.2006 22:36:28.000 - Creation time: Do 14.8.2014 09:58:50.249 - Created with UnCodeX