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

MobileGame.MobilePC


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
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143
00144
00145
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158
00159
00160
00161
00162
00163
00164
00165
00166
00167
00168
00169
00170
00171
00172
00173
00174
00175
00176
00177
00178
00179
00180
00181
00182
00183
00184
00185
00186
00187
00188
00189
00190
00191
00192
00193
00194
00195
00196
00197
00198
00199
00200
00201
00202
00203
00204
00205
00206
00207
00208
00209
00210
00211
00212
00213
00214
00215
00216
00217
00218
00219
00220
00221
00222
00223
00224
00225
00226
00227
00228
00229
00230
00231
00232
00233
00234
00235
00236
00237
00238
00239
00240
00241
00242
00243
00244
00245
00246
00247
00248
00249
00250
00251
00252
00253
00254
00255
00256
00257
00258
00259
00260
00261
00262
00263
00264
00265
00266
00267
00268
00269
00270
00271
00272
00273
00274
00275
00276
00277
00278
00279
00280
00281
00282
00283
00284
00285
00286
00287
00288
00289
00290
00291
00292
00293
00294
00295
00296
00297
00298
00299
00300
00301
00302
00303
00304
00305
00306
00307
00308
00309
00310
00311
00312
00313
00314
00315
00316
00317
00318
00319
00320
00321
00322
00323
00324
00325
00326
00327
00328
00329
00330
00331
00332
00333
00334
00335
00336
00337
00338
00339
00340
00341
00342
00343
00344
00345
00346
00347
00348
00349
00350
00351
00352
00353
00354
00355
00356
00357
00358
00359
00360
00361
00362
00363
00364
00365
00366
00367
00368
00369
00370
00371
00372
00373
00374
00375
00376
00377
00378
00379
00380
00381
00382
00383
00384
00385
00386
00387
00388
00389
00390
00391
00392
00393
00394
00395
00396
00397
00398
00399
00400
00401
00402
00403
00404
00405
00406
00407
00408
00409
00410
00411
00412
00413
00414
00415
00416
00417
00418
00419
00420
00421
00422
00423
00424
00425
00426
00427
00428
00429
00430
00431
00432
00433
00434
00435
00436
00437
00438
00439
00440
00441
00442
00443
00444
00445
00446
00447
00448
00449
00450
00451
00452
00453
00454
00455
00456
00457
00458
00459
00460
00461
00462
00463
00464
00465
00466
00467
00468
00469
00470
00471
00472
00473
00474
00475
00476
00477
00478
00479
00480
00481
00482
00483
00484
00485
00486
00487
00488
00489
00490
00491
00492
00493
00494
00495
00496
00497
00498
00499
00500
00501
00502
00503
00504
00505
00506
00507
00508
00509
00510
00511
00512
00513
00514
00515
00516
00517
00518
00519
00520
00521
00522
00523
00524
00525
00526
00527
00528
00529
00530
00531
00532
00533
00534
00535
00536
00537
00538
00539
00540
00541
00542
00543
00544
00545
00546
00547
00548
00549
00550
00551
00552
00553
00554
00555
00556
00557
00558
00559
00560
00561
00562
00563
00564
00565
00566
00567
00568
00569
00570
00571
00572
00573
00574
00575
00576
00577
00578
00579
00580
00581
00582
00583
00584
00585
00586
00587
00588
00589
00590
00591
00592
00593
00594
00595
00596
00597
00598
00599
00600
00601
00602
00603
00604
00605
00606
00607
00608
00609
00610
00611
00612
00613
00614
00615
00616
00617
00618
00619
00620
00621
00622
00623
00624
00625
00626
00627
00628
00629
00630
00631
00632
00633
00634
00635
00636
00637
00638
00639
00640
00641
00642
00643
00644
00645
00646
00647
00648
00649
00650
00651
00652
00653
00654
00655
00656
00657
00658
00659
00660
00661
00662
00663
00664
00665
00666
00667
00668
00669
00670
00671
00672
00673
00674
00675
00676
00677
00678
00679
00680
00681
00682
00683
00684
00685
00686
00687
00688
00689
00690
00691
00692
00693
00694
00695
00696
00697
00698
00699
00700
00701
00702
00703
00704
00705
00706
00707
00708
00709
00710
00711
00712
00713
00714
00715
00716
00717
00718
00719
00720
00721
00722
00723
00724
00725
00726
00727
00728
00729
00730
00731
00732
00733
00734
00735
00736
00737
00738
00739
00740
00741
00742
00743
00744
00745
00746
00747
00748
00749
00750
00751
00752
00753
00754
00755
00756
00757
00758
00759
00760
00761
00762
00763
00764
00765
00766
00767
00768
00769
00770
00771
00772
00773
00774
00775
00776
00777
00778
00779
00780
00781
00782
00783
00784
00785
00786
00787
00788
00789
00790
00791
00792
00793
00794
00795
00796
00797
00798
00799
00800
00801
00802
00803
00804
00805
00806
00807
00808
00809
00810
00811
00812
00813
00814
00815
00816
00817
00818
00819
00820
00821
00822
00823
00824
00825
00826
00827
00828
00829
00830
00831
00832
00833
00834
00835
00836
00837
00838
00839
00840
00841
00842
00843
00844
00845
00846
00847
00848
00849
00850
00851
00852
00853
00854
00855
00856
00857
00858
00859
00860
00861
00862
00863
00864
00865
00866
00867
00868
00869
00870
00871
00872
00873
00874
00875
00876
00877
00878
00879
00880
00881
00882
00883
00884
00885
00886
00887
00888
00889
00890
00891
00892
00893
00894
00895
00896
00897
/**
 * Copyright 1998-2011 Epic Games, Inc. All Rights Reserved.
 */

class MobilePC extends GamePlayerController;


/** How fast to increase the rate of rotation toward the target */
var float AutoRotationAccelRate;

/** How quickly to decelerate when no rotation is applied */
var float AutoRotationBrakeDecelRate;

/** Maximum auto rotation velocity */
var float MaxAutoRotationVelocity;

/** How fast to increase the rate of rotation toward the target */
var float BreathAutoRotationAccelRate;

/** How quickly to decelerate when no rotation is applied */
var float BreathAutoRotationBrakeDecelRate;

/** Maximum auto rotation velocity */
var float MaxBreathAutoRotationVelocity;

/** When rotating to a touch-to-move target, how much to increase yaw acceleration when the target is nearby */
var float RangeBasedYawAccelStrength;

/** Distance at which we start to change rotation acceleration rate based on distance to touch-to-move target */
var float RangeBasedAccelMaxDistance;

/** True if we should look at our click-to-move destination. */
var bool bLookAtDestination;

/** Holds the location we are looking at */
var vector LookAtDestination;

var float LookAtDestAutoPitchAmount;

/** Is camera breathing engaged yet*/
var bool bCameraBreathing;
/** The location that the camera was approximately looking at when breathing began*/
var vector CameraBreathCenterLocation;
/** Delta from the desired rotation*/
var Rotator CameraBreathRotator;
/** Last location where breathing began */
var vector CameraBreathSampleLocation;
/** Time of the last random breath rotator sampling */
var float LastCameraBreathDeltaSelectTime;
/** Time between direction changes*/
var float TimeBetweenCameraBreathChanges;

/** How fast we're currently rotating toward the target (yaw, pitch) */
var vector2d AutoRotationVelocity;

/** List of footstep sounds, chosen at random to play while the player is walking */
var array<SoundCue> FootstepSounds;

/** How far we should move before playing the next footstep sound */
var float DistanceUntilNextFootstepSound;

/** Commandline to run when being a server */
var config string ServerCommandline;

/** Used for turn smoothing */
var float OldTurn, OldLookup;

/** How much to smooth rotation. */ 
var config float RotationSmoothingFactor;

/** Whether to use rotation smoothing */
var config bool bSmoothRotation;

var config int DefaultInputGroup;

/** Cache a reference to the MobilePlayerInput */
var MobilePlayerInput MPI;

/** Cache a reference to various zones */
var MobileInputZone SliderZone;
var MobileInputZone StickMoveZone;
var MobileInputZone StickLookZone;
var MobileInputZone FreeLookZone;
var MobileInputZone FacebookZone;

/** Used for stats tracking */
var int NoTapToMoves;

/** Used for stats tracking */
var float LastEnteredTapToMove;

/** Used for stats tracking */
var float TotalTimeInTapToMove;

/** Holds the time of the last movement/look change */
var float TimeOfLastUserViewChange;


/** If true, apply an offset to the view target during a matinee */
var bool bApplyBackTouchToViewOffset;
var bool bFingerIsDown;

var Vector2D TouchCenter;
var Rotator LastOffset;
var Rotator MatineeOffset;

/**
 * When we init the input system, find the TapToMove zone and hook up the delegate                                                                      
 */
event InitInputSystem()
{
	Super.InitInputSystem();

	SetupZones();
}

/** 
 * Kismet hook to trigger console events 
 */
function OnConsoleCommand( SeqAct_ConsoleCommand inAction )
{
	local string Command;

	foreach inAction.Commands(Command)
	{
		// don't allow music before startmatch
		if ( WorldInfo.Game.bWaitingToStartMatch && (Left(Command,15) ~= "mobile playsong") )
		{
			continue;
		}
		// prevent "set" commands from ever working in Kismet as they are e.g. disabled in netplay
		if (!(Left(Command, 4) ~= "set ") && !(Left(Command, 9) ~= "setnopec "))
		{
			ConsoleCommand(Command);
		}
	}
}

/**
 * Zones have to be setup on both sides of the network pond.  This function is a good place to do that from.
 *
 * @param GameClass holds the class that's being setup.
 */
simulated function ReceivedGameClass(class<GameInfo> GameClass)
{
	Super.ReceivedGameClass(GameClass);
	
	// Setup the zones
	SetupZones();
}

/**
 * The main purpose of this function is to size and reset zones.  There's a lot of specific code in
 * here to reposition zones based on if it's an phone vs pad.
 */
function SetupZones()
{
	local FacebookIntegration FB;

	// Cache the MPI
	MPI = MobilePlayerInput(PlayerInput);

	StickMoveZone = MPI.FindZone("UberStickMoveZone");
	StickLookZone = MPI.FindZone("UberStickLookZone");
	FreeLookZone  = MPI.FindZone("UberLookZone");
	FacebookZone  = MPI.FindZone("FacebookZone");

	// do we have FB support?
	FB = class'Engine'.static.GetFacebookIntegration();
	if (FB == none)
	{
		FacebookZone.Caption = "FB: No Support";
		FacebookZone.State = ZoneState_Inactive;
	}
	else
	{
		// if we do, then are we already logged in?
		if (FB.IsAuthorized())
		{
			FacebookZone.Caption = "FB: " $ FB.Username;
		}
		else
		{
			FacebookZone.Caption = "FB: Authorize";
		}
	}
}

/**
 * Setup the in world indicator for Touch to move and some other subsystems
 */
simulated function PostBeginPlay()
{
	local FacebookIntegration FB;
	local InGameAdManager AdManager;

	Super.PostBeginPlay();

	// Time of the last target sampling
	LastCameraBreathDeltaSelectTime = 0;

	// Setup footstep sounds 
	SetNextFootstepDistance();

	AdManager = class'GameEngine'.static.GetAdManager();
	if (AdManager != none)
	{
		AdManager.AddClickedBannerDelegate(OnUserClickedAdvertisement);
		AdManager.AddClosedAdDelegate(OnUserClosedAdvertisement);
//		AdManager.ShowBanner(true);
	}

	FB = class'Engine'.static.GetFacebookIntegration();
	if (FB != none)
	{
 		FB.AddAuthorizationCompleteDelegate(OnFBAuthComplete);
 		FB.AddFacebookRequestCompleteDelegate(OnFBRequestComplete);
 		FB.AddWebRequestCompleteDelegate(OnWebRequestComplete);
	}
}

// Cleanup
event Destroyed()
{
	local FacebookIntegration FB;
	local InGameAdManager AdManager;

	super.Destroyed();

	AdManager = class'GameEngine'.static.GetAdManager();
	if (AdManager != none)
	{
		AdManager.ClearClickedBannerDelegate(OnUserClickedAdvertisement);
		AdManager.ClearClosedAdDelegate(OnUserClosedAdvertisement);
	}

	FB = class'Engine'.static.GetFacebookIntegration();
	if (FB != none)
	{
		FB.ClearAuthorizationCompleteDelegate(OnFBAuthComplete);
		FB.ClearFacebookRequestCompleteDelegate(OnFBRequestComplete);
		FB.ClearWebRequestCompleteDelegate(OnWebRequestComplete);
	}
}

/** 
 * Checks to see if we are moving via the virtual stick
 *
 * @returns true if the virtual stick is being used to move the player
 */
function bool IsStickMoveActive()
{
	return StickMoveZone.State != ZoneState_Inactive;
}


/** Sets the distance until the next footstep sound plays */
function SetNextFootstepDistance()
{
	// Determine how far to go until the next foot step (with a bit of randomness!)
	DistanceUntilNextFootstepSound = 200 + FRand() * 32;
}

/**
 * PlayerMove is called each frame to manage the input.  We will use it to hook in and
 * see if the player has changed their view.  If they do, then stop auto-rotating
 */
function PlayerMove( float DeltaTime )
{
	Super.PlayerMove(DeltaTime);

	// @todo: Is this needed?
	UpdateRotation( DeltaTime );
}

/** 
  * Optionally smooth rotation
  */
function UpdateRotation( float DeltaTime )
{
	local float Smooth;

	if ( bSmoothRotation )
	{
		Smooth = 1.0 - FMin(0.9, RotationSmoothingFactor*DeltaTime);

		OldTurn = PlayerInput.aTurn * (1.0 - Smooth) + OldTurn * Smooth;
		OldLookup = PlayerInput.aLookup * (1.0 - Smooth) + OldLookup * Smooth;

		PlayerInput.aLookup = OldLookup;
		PlayerInput.aTurn = OldTurn;
	}
	Super.UpdateRotation(DeltaTime);
}


/**
 * Called from PlayerMove, it's here that we adjust the viewport                                                                     
 */
function ProcessViewRotation( float DeltaTime, out Rotator out_ViewRotation, Rotator DeltaRot )
{
	// Accumulate a desired new rotation.
	local float DistToDestination;
	local Vector2D MaxVelocityScalar;
	local float YawRotationSign;
	local float PitchRotationSign;
	local float FinalYawAccelRate;
	local float FinalPitchAccelRate;
	local vector VectorToTarget;
	local vector TargetDirection;
	local Rotator NewRotation;
	local Rotator CameraRotationYawOnly;
	local Rotator CameraRotationPitchOnly;
	local Rotator TargetRotationYawOnly;
	local Rotator TargetRotationPitchOnly;

	//values to use during calculation
	local float RotationAccelRate;
	local float RotationBreakDecelRate;
	local float MaxRotationVelocity;

	//Using a fixed time delta to avoid stutters on device
	DeltaTime = FMin(DeltaTime, 1/25.0);

	Super.ProcessViewRotation(DeltaTime, out_ViewRotation, DeltaRot);

	if (PlayerInput.aTurn != 0.0 || PlayerInput.aLookUp != 0.0)
	{
		TimeOfLastUserViewChange = WorldInfo.RealTimeSeconds;
	}

	// If the player has moved the camera recently, then forcibly disable auto-rotation
	if ( WorldInfo.RealTimeSeconds - TimeOfLastUserViewChange < 0.1 )
	{
		bLookAtDestination = false;
		//reset camera breath
		bCameraBreathing = false;
		LastCameraBreathDeltaSelectTime = 0;
	}

	//Update camera breathing
	UpdateCameraBreathing();

	if (bLookAtDestination || !bCameraBreathing)
	{
		RotationAccelRate = AutoRotationAccelRate;
		RotationBreakDecelRate = AutoRotationBrakeDecelRate;
		MaxRotationVelocity = MaxAutoRotationVelocity;
	}
	else
	{
		RotationAccelRate = BreathAutoRotationAccelRate;
		RotationBreakDecelRate = BreathAutoRotationBrakeDecelRate;
		MaxRotationVelocity = MaxBreathAutoRotationVelocity;
	}


	MaxVelocityScalar.X = 1.0;
	MaxVelocityScalar.Y = 1.0;

	if( bLookAtDestination || bCameraBreathing)
	{
		CameraRotationYawOnly = out_ViewRotation;
		CameraRotationYawOnly.Pitch = 0;
		CameraRotationYawOnly.Roll = 0;
		CameraRotationPitchOnly = out_ViewRotation;
		CameraRotationPitchOnly.Yaw = 0;
		CameraRotationPitchOnly.Roll = 0;

		if( bLookAtDestination )
		{
			VectorToTarget = LookAtDestination; 
		}
		else	//breathing
		{
			VectorToTarget = CameraBreathCenterLocation - Pawn.Location;
		}
		TargetDirection = Normal( VectorToTarget );

		TargetRotationYawOnly = Rotator( TargetDirection ) + CameraBreathRotator;
		TargetRotationPitchOnly = TargetRotationYawOnly;
		TargetRotationYawOnly.Pitch = 0;
		TargetRotationYawOnly.Roll = 0;
		TargetRotationPitchOnly.Yaw = 0;
		TargetRotationPitchOnly.Roll = 0;

		if( bLookAtDestination )
		{
			// For click to move, we limit the amount of pitching the camera will do since usually the height
			// of the target isn't that interesting, however sometimes a bit of pitching helps with slope-alignment
			TargetRotationPitchOnly = RLerp( CameraRotationPitchOnly, TargetRotationPitchOnly, LookAtDestAutoPitchAmount, true /* Take shortest route? */ );
		}

		// How close is the current camera rotation to the target orientation?  We'll rotate more quickly if
		// we're further off course, and more slowly as we approach the desired angle.  This makes the rotation
		// appear to ease-out as we approach the desired orientation.
		if (!bCameraBreathing)
		{
			MaxVelocityScalar.x *= 1.0 - FMax( 0.0, Vector( CameraRotationYawOnly ) dot Vector( TargetRotationYawOnly ) );
			MaxVelocityScalar.y *= 1.0 - FMax( 0.0, Vector( CameraRotationPitchOnly ) dot Vector( TargetRotationPitchOnly ) );
		}

		DistToDestination = VSize2D( VectorToTarget );

		// For destination-look at, allow distance to affect speed. (Note, we take the 2D distance here)
		FinalYawAccelRate = RotationAccelRate;
		FinalPitchAccelRate = RotationAccelRate;
		if( bLookAtDestination )
		{
			// Increase the yaw rate as we get closer to the target (up to 1.0 + RangeBasedYawAccelStrength).
			// This is because the yaw angle relative to the target may still be very wide as we approach 
			// (especially if the user touched a location near the player) we want to get most of the horizontal
			// turning out of the way early so the player can see where they're going
			FinalYawAccelRate *= 1.0 + ( 1.0 - FMin( DistToDestination, RangeBasedAccelMaxDistance ) / RangeBasedAccelMaxDistance ) * RangeBasedYawAccelStrength;

			// Decrease the pitch rate as we get closed to the target.  This is because the pitch angle relative
			// to the target will usually become steeper as we approach the target and we won't want to pitch
			// up and down erratically as we're arriving
			FinalPitchAccelRate *= FMin( DistToDestination, RangeBasedAccelMaxDistance ) / RangeBasedAccelMaxDistance;
		}

		CheckDistanceToDestination(DistToDestination);

		// Accelerate yaw
		YawRotationSign = ( out_ViewRotation.Yaw ClockwiseFrom TargetRotationYawOnly.Yaw ) ? -1.0 : 1.0;
		AutoRotationVelocity.x += YawRotationSign * FinalYawAccelRate * DeltaTime;

		// Accelerate pitch
		PitchRotationSign = ( out_ViewRotation.Pitch ClockwiseFrom TargetRotationPitchOnly.Pitch ) ? -1.0 : 1.0;
		AutoRotationVelocity.y += PitchRotationSign * FinalPitchAccelRate * DeltaTime;
	}
	else
	{
		// Yaw brake
		if( AutoRotationVelocity.x > 0.01 )
		{
			AutoRotationVelocity.x = FMax( 0.0, AutoRotationVelocity.x - RotationBreakDecelRate * DeltaTime );
		}
		else if( AutoRotationVelocity.x < -0.01 )
		{
			AutoRotationVelocity.x = FMin( 0.0, AutoRotationVelocity.x + RotationBreakDecelRate * DeltaTime );
		}
		else
		{
			AutoRotationVelocity.x = 0.0;
		}

		// Pitch brake
		if( AutoRotationVelocity.y > 0.01 )
		{
			AutoRotationVelocity.y = FMax( 0.0, AutoRotationVelocity.y - RotationBreakDecelRate * DeltaTime );
		}
		else if( AutoRotationVelocity.y < -0.01 )
		{
			AutoRotationVelocity.y = FMin( 0.0, AutoRotationVelocity.y + RotationBreakDecelRate * DeltaTime );
		}
		else
		{
			AutoRotationVelocity.y = 0.0;
		}
	}


	// Clamp max velocity
	if( AutoRotationVelocity.x > MaxRotationVelocity * MaxVelocityScalar.x )
	{
		AutoRotationVelocity.x = MaxRotationVelocity * MaxVelocityScalar.x;
	}
	else if( AutoRotationVelocity.x < -MaxRotationVelocity * MaxVelocityScalar.x )
	{
		AutoRotationVelocity.x = -MaxRotationVelocity * MaxVelocityScalar.x;
	}

	if( AutoRotationVelocity.y > MaxRotationVelocity * MaxVelocityScalar.y )
	{
		AutoRotationVelocity.y = MaxRotationVelocity * MaxVelocityScalar.y;
	}
	else if( AutoRotationVelocity.y < -MaxRotationVelocity * MaxVelocityScalar.y )
	{
		AutoRotationVelocity.y = -MaxRotationVelocity * MaxVelocityScalar.y;
	}

	if( Abs( AutoRotationVelocity.X ) > 0.01 || Abs( AutoRotationVelocity.Y ) > 0.01 )
	{
		// Rotate!
		NewRotation.Yaw = fixedTurn(out_ViewRotation.Yaw, out_ViewRotation.Yaw + AutoRotationVelocity.x * DeltaTime, Abs( AutoRotationVelocity.x * DeltaTime ));
		NewRotation.Pitch = fixedTurn(out_ViewRotation.Pitch, out_ViewRotation.Pitch + AutoRotationVelocity.y * DeltaTime, Abs( AutoRotationVelocity.y * DeltaTime ));
		NewRotation.Roll = out_ViewRotation.Roll;

		// Set new rotation
		out_ViewRotation = NewRotation;
	}
}

/**
 * Stub Function.  It get's called by ProcessViewRotation and allows children to perform actions based on the
 * distance to a destination.
 */
simulated function CheckDistanceToDestination(float DistToDestination)
{
}

/**Function that selects a slightly offset direction to look and will trend the camera towards that*/
simulated function UpdateCameraBreathing()
{
	local Vector PawnX, PawnY, PawnZ;
	local float DegreeDelta;
	local float YawSign;
	local float PitchDegrees;
	local float YawDegrees;

	if ( Pawn == None )
	{
		bCameraBreathing = false;
		LastCameraBreathDeltaSelectTime = 0;
		return;
	}

	//if we've just moved
	if (IsInState('PlayerClickToMove') || (CameraBreathSampleLocation != Pawn.Location))
	{
		bCameraBreathing = false;
		LastCameraBreathDeltaSelectTime = 0;
		CameraBreathSampleLocation = Pawn.Location;
		return;
	}

	//if it's time to try to breath again
	if (WorldInfo.TimeSeconds - LastCameraBreathDeltaSelectTime >= TimeBetweenCameraBreathChanges)
	{
		DegreeDelta = 0.5;
		PitchDegrees = ((FRand() * 2.f) - 1.f);
		YawSign = (FRand() >= 0.5f) ? 1.0f : -1.0f;
		YawDegrees = YawSign * (Sqrt(1.0f - PitchDegrees*PitchDegrees));
		//+ or - DegreeDeltas

		CameraBreathRotator.Pitch = (PitchDegrees*DegreeDelta*65536/360);
		CameraBreathRotator.Yaw = (YawDegrees*DegreeDelta*65536/360);
		CameraBreathRotator.Roll = 0.0;


		//if we're not actively tracking something, set a new desired look location relative to where we are already looking
		if (!bLookAtDestination && !bCameraBreathing)
		{
			//`log("NOTE: Chosen a new look at dest"@CameraBreathRotator);
			GetAxes(Rotation, PawnX, PawnY, PawnZ);

			CameraBreathCenterLocation = Pawn.Location + PawnX*1000.0;
			bCameraBreathing = true;
		}

		LastCameraBreathDeltaSelectTime = WorldInfo.TimeSeconds;
	}
}

function ActivateControlGroup()
{
	MPI.ActivateInputGroup("UberGroup");
}

/** Offset matinee via back touch */
function OffsetMatineeTouch(int Handle, EZoneTouchEvent Type, Vector2D TouchLocation, float DeviceTimestamp, int TouchpadIndex)
{
	// only first finger on back panel
 	if (Handle != 0 || TouchpadIndex != 1)
 	{
 		return;
 	}

	if (Type == ZoneEvent_Touch)
	{
		TouchCenter = TouchLocation;
		bFingerIsDown = true;
	}
	else if (Type == ZoneEvent_UnTouch)
	{
		LastOffset = MatineeOffset;
		bFingerIsDown = false;
	}
	else if (bFingerIsDown)
	{
		MatineeOffset.Yaw = LastOffset.Yaw + 60 * (TouchLocation.X - TouchCenter.X);
		MatineeOffset.Pitch = LastOffset.Pitch + -60 * (TouchLocation.Y - TouchCenter.Y);
	}
}

event NotifyDirectorControl(bool bNowControlling)
{
	super.NotifyDirectorControl(bNowControlling);

	if (bNowControlling)
	{
		MPI.OnInputTouch = OffsetMatineeTouch;
	}
	else
	{
		MPI.OnInputTouch = none;
		LastOffset.Yaw = 0;
		LastOffset.Pitch = 0;
		MatineeOffset.Yaw = 0;
		MatineeOffset.Pitch = 0;
		bFingerIsDown = false;
	}

	// remember if we are controlling or not
	bApplyBackTouchToViewOffset = bNowControlling;
}

simulated event GetPlayerViewPoint( out vector out_Location, out Rotator out_Rotation )
{
	super.GetPlayerViewPoint(out_Location, out_Rotation);

	if (bApplyBackTouchToViewOffset)
	{
		out_Rotation += MatineeOffset;
	}
}


/**
 * Handle footsteps
 */
function PlayerTick(float DeltaTime)
{
	local float CurrentWalkSpeed;
	local int FootstepSoundIndex;
	local TraceHitInfo HitInfo;
	local Vector TraceStart;
	local Vector TraceEnd;
	local Vector TraceExtent;
	local Vector OutHitLocation, OutHitNormal;
	local Actor TraceActor;

	if (bApplyBackTouchToViewOffset && !bFingerIsDown)
	{
		MatineeOffset.Yaw *= 0.99;
		MatineeOffset.Pitch *= 0.99;
		LastOffset.Yaw *= 0.99;
		LastOffset.Pitch *= 0.99;
	}

	// Only play footsteps if we're actually walking at a decent speed
	if ( Pawn != None )
	{
		CurrentWalkSpeed = VSize2D( Pawn.Velocity );
	}
	if ( CurrentWalkSpeed > 32.0 )
	{
		// Update distance until the next foot step
		DistanceUntilNextFootstepSound -= CurrentWalkSpeed * DeltaTime;
		if( DistanceUntilNextFootstepSound < 0.0 )
		{
			TraceStart = Pawn.Location;

			// @todo probably need a better way to get the end location instead of a magic number
			TraceEnd = Pawn.Location;
			TraceEnd.Z -= 100.0f;

			// trace down and see what we are standing on.  
			TraceActor = Trace(OutHitLocation, OutHitNormal, TraceEnd, TraceStart, TRUE, TraceExtent, HitInfo, TRACEFLAG_Bullet|TRACEFLAG_Blocking|TRACEFLAG_SkipMovers);
			if( TraceActor != None && HitInfo.PhysMaterial != None && HitInfo.PhysMaterial.ImpactSound != None )
			{
				// Play the sound from the hit physical material if it exists
				PlaySound( HitInfo.PhysMaterial.ImpactSound );
			}
			else
			{
				// Play a random footstep sound if we couldnt find a physical material to get a sound from.
				FootstepSoundIndex = Rand( FootstepSounds.Length );
				PlaySound( FootstepSounds[ FootstepSoundIndex ] );
			}
			
			// Queue up the next footstep
			SetNextFootstepDistance();
		}
	}
	else
	{
		// We stopped walking so reset time until next footstep
		SetNextFootstepDistance();
	}

	Super.PlayerTick(DeltaTime);
}


exec function SetFootstepsToStone()
{
	FootstepSounds[0]=SoundCue'CastleAudio.Player.Footstep_Walk_01_Cue';
	FootstepSounds[1]=SoundCue'CastleAudio.Player.Footstep_Walk_02_Cue';
	FootstepSounds[2]=SoundCue'CastleAudio.Player.Footstep_Walk_03_Cue';
	FootstepSounds[3]=SoundCue'CastleAudio.Player.Footstep_Walk_04_Cue';
	FootstepSounds[4]=SoundCue'CastleAudio.Player.Footstep_Walk_05_Cue';
	FootstepSounds[5]=SoundCue'CastleAudio.Player.Footstep_Walk_06_Cue';
}

exec function SetFootstepsToSnow()
{
	FootstepSounds[0]=SoundCue'CastleAudio.Player.Footstep_Snow01_Cue';
	FootstepSounds[1]=SoundCue'CastleAudio.Player.Footstep_Snow02_Cue';
	FootstepSounds[2]=SoundCue'CastleAudio.Player.Footstep_Snow03_Cue';
	FootstepSounds[3]=SoundCue'CastleAudio.Player.Footstep_Snow04_Cue';
	FootstepSounds[4]=SoundCue'CastleAudio.Player.Footstep_Snow05_Cue';
	FootstepSounds[5]=SoundCue'CastleAudio.Player.Footstep_Snow06_Cue';
}


/**
 * Called on all player controllers when an in-game advertisement has been clicked
 * on by the user. Game will probably want to pause, etc, at this point
 */
function OnUserClickedAdvertisement()
{
	`log("MobilePC::OnUserClickedBanner");
}

/**
 * Called on all player controllers when an in-game advertisement has been closed 
 * down (usually when user clicks Done or similar). Game will want to unpause, etc here.
 */
event OnUserClosedAdvertisement()
{
	`log("MobilePC::OnUserClosedAd");
}

function OnFBAuthComplete(bool bSucceeded)
{
	local FacebookIntegration FB;
	FB = class'Engine'.static.GetFacebookIntegration();

	// if we do, then are we already logged in?
	if (bSucceeded)
	{
		FacebookZone.Caption = "FB: " $ FB.Username;
	}
	else
	{
		FacebookZone.Caption = "FB: Authorize";
	}
}

function OnFBRequestComplete(string JsonString)
{
`if( `notdefined(FINAL_RELEASE) )
	local JsonObject Root, FriendsArray, Friend;
	local int Index;

	if (JsonString != "")
	{
		Root = class'JsonObject'.static.DecodeJson(JsonString);

		// top level is "data" = [friend,friend]
		FriendsArray = Root.GetObject("data");

		`log("You have " $ FriendsArray.ObjectArray.length $ " friends:");
		// loop over the friends
		for (Index = 0; Index < FriendsArray.ObjectArray.length; Index++)
		{
			// get a friend object
			Friend = FriendsArray.ObjectArray[Index];

			// output friend info
			`log("Friend " $ Friend.GetStringValue("name") $ " has ID " $ Friend.GetStringValue("id"));
		}
	}
`endif
}

function OnWebRequestComplete(string Response)
{
	`log("Response = " $ Response);
}


exec function FacebookButtonClicked()
{
	local FacebookIntegration FB;
	local JsonObject PlayerStats, EquippedArray, InventoryArray, ItemData;
	local string JsonString;

	FB = class'Engine'.static.GetFacebookIntegration();

	if (FB == none)
	{
		return;
	}

	if (!FB.IsAuthorized())
	{
		FacebookZone.Caption = "FB: Authorizing...";
		FB.Authorize();
		//		FacebookZone.State = ZoneState_Inactive;

		return;
	}


	PlayerStats = new class'JsonObject';
	PlayerStats.SetStringValue("accesstoken", FB.AccessToken);
	PlayerStats.SetIntValue("level", 5);
	PlayerStats.SetIntValue("currentXP", 123123);
	PlayerStats.SetIntValue("nextLevelXP", 125000);
	PlayerStats.SetIntValue("statHealth", 84);
	PlayerStats.SetIntValue("statShield", 15);
	PlayerStats.SetIntValue("statDamage", 18);
	PlayerStats.SetIntValue("statMagic", 60);
	PlayerStats.SetIntValue("avaiableStatPoints", 5);
	PlayerStats.SetIntValue("rebalanceStatsCount", 3);
	PlayerStats.SetIntValue("currentBloodline", 2);
	PlayerStats.SetIntValue("currentPlaythrough", 1);
	PlayerStats.SetIntValue("godKingLevel", 99);
	PlayerStats.SetIntValue("currentGold", 45000);

	EquippedArray = new class'JsonObject';
	EquippedArray.ValueArray[0] = "\\#0";
	EquippedArray.ValueArray[1] = "\\#2";
	PlayerStats.SetObject("EquippedItems", EquippedArray);

	InventoryArray = new class'JsonObject';
		ItemData = new class'JsonObject';
		ItemData.SetStringValue("itemName", "CrapSword");
		ItemData.SetIntValue("xpGainedFromItem", 200);
		ItemData.SetIntValue("count", 1);
		ItemData.SetIntValue("numTimesMastered", 0);
		InventoryArray.ObjectArray[InventoryArray.ObjectArray.length] = ItemData;

		ItemData = new class'JsonObject';
		ItemData.SetStringValue("itemName", "Potion");
		ItemData.SetIntValue("xpGainedFromItem", 0);
		ItemData.SetIntValue("count", 10);
		ItemData.SetIntValue("numTimesMastered", 0);
		InventoryArray.ObjectArray[InventoryArray.ObjectArray.length] = ItemData;

		ItemData = new class'JsonObject';
		ItemData.SetStringValue("itemName", "HornOfPlenty");
		ItemData.SetIntValue("xpGainedFromItem", 100);
		ItemData.SetIntValue("count", 2);
		ItemData.SetIntValue("numTimesMastered", 1);
		InventoryArray.ObjectArray[InventoryArray.ObjectArray.length] = ItemData;
	PlayerStats.SetObject("PlayerInventory", InventoryArray);

	PlayerStats.SetIntValue("maxBloodline", 4);
	PlayerStats.SetIntValue("maxPlaythrough", 2);
	PlayerStats.SetIntValue("maxGodKingLevelDefeated", 15);
	PlayerStats.SetIntValue("fightFinishCount", 100);
	PlayerStats.SetIntValue("totalGoldAcquired", 10002030);
	PlayerStats.SetIntValue("totalGoldBoughtMicro", 20000);
	PlayerStats.SetIntValue("totalDodges", 513);
	PlayerStats.SetIntValue("totalBlocks", 290);
	PlayerStats.SetIntValue("totalHits", 1459);
	PlayerStats.SetIntValue("totalCombos", 672);
	PlayerStats.SetIntValue("totalParries", 101);
	PlayerStats.SetIntValue("totalSuperMoves", 23);
	PlayerStats.SetIntValue("totalMagicCasts", 48);

	// encode it to a string
	JsonString = class'JsonObject'.static.EncodeJson(PlayerStats);
	
	`log("Json = " $ JsonString);

	`log("Facebook!");

	// request friends list
	FB.FacebookRequest("me/friends");

	// upload fake stats
	FB.WebRequest("https://ibstats.cloudapp.net/Upload/", JsonString);
}



defaultproperties
{
	InputClass=class'GameFramework.MobilePlayerInput'

	AutoRotationAccelRate=10000.0
	AutoRotationBrakeDecelRate=10000.0
	MaxAutoRotationVelocity=300000
	
	BreathAutoRotationAccelRate=250.0
	BreathAutoRotationBrakeDecelRate=1.0
	MaxBreathAutoRotationVelocity=75

	TimeBetweenCameraBreathChanges = 2.0
	
	RangeBasedYawAccelStrength=8.0
	RangeBasedAccelMaxDistance=512.0


	FootstepSounds(0)=SoundCue'CastleAudio.Player.Footstep_Walk_01_Cue'
	FootstepSounds(1)=SoundCue'CastleAudio.Player.Footstep_Walk_02_Cue'
	FootstepSounds(2)=SoundCue'CastleAudio.Player.Footstep_Walk_03_Cue'
	FootstepSounds(3)=SoundCue'CastleAudio.Player.Footstep_Walk_04_Cue'
	FootstepSounds(4)=SoundCue'CastleAudio.Player.Footstep_Walk_05_Cue'
	FootstepSounds(5)=SoundCue'CastleAudio.Player.Footstep_Walk_06_Cue'

}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: ti 22-2-2011 20:40:26.000 - Creation time: ti 22-3-2011 19:57:08.233 - Created with UnCodeX