Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
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 |
//============================================================================= // $Workfile: U2TutorialGameInfo.uc $ // Created By: Matthias Worch // Created On: 8/3/2002 // $Author: Mbaldwin $ // $Date: 12/15/02 3:27a $ // $Revision: 20 $ //============================================================================= class U2TutorialGameInfo extends U2GameInfo; //----------------------------------------------------------------------------- const PlayerName = "Marshal"; const OpponentName = "Raff"; //game events const TutorialPlayerWonEvent='TutorialPlayerWon'; const TutorialPlayerLostEvent='TutorialPlayerLost'; //ui events const TutorialScoreboardOnEvent="TutorialScoreboardOn"; const TutorialScoreboardOffEvent="TutorialScoreboardOff"; const OpponentKillTauntTimer = 'OpponentKillTaunt'; //----------------------------------------------------------------------------- var bool bRunning; // whether the match is underway var int NumKillsToWin; // score needed to win the match var int PlayerScore; // number of times the player's opponent has died var int OpponentScore; // number of times the player has died var name OpponentClassName; // pawn class of player's opponent var float OpponentKillTauntDelay; // seoncds to wait before trash-talking the player //----------------------------------------------------------------------------- function AdjustPawnClass( out string InClass ) { InClass = "U2Pawns.U2PlayerTutorial"; } //----------------------------------------------------------------------------- function bool ShouldRespawn( Pickup Other ) { return Other.ReSpawnTime != 0.0; } //----------------------------------------------------------------------------- // Tutorial Death Match function Killed( Controller Killer, Controller Killed, Pawn KilledPawn, class<DamageType> damageType ) { if( Killed == Level.PlayerControllerList ) NotifyPlayerDied( KilledPawn, Killer.Pawn ); else NotifyOpponentDied( KilledPawn, Killer.Pawn ); // drop gun if( KilledPawn.bCanDiscardInventory ) DiscardInventory(KilledPawn); } //----------------------------------------------------------------------------- function NotifyPlayerDied( Pawn KilledPawn, Pawn Instigator ) { if( bRunning ) { class'UIConsole'.static.SendEvent("WhiteFlash"); HandleKilledSounds( KilledPawn, Instigator ); OpponentScore++; if( OpponentScore == NumKillsToWin ) EndTutorialDeathMatch( false ); ResetPlayerHealth(); } } //----------------------------------------------------------------------------- function NotifyOpponentDied( Pawn KilledPawn, Pawn Instigator ) { if( bRunning ) { HandleKilledSounds( KilledPawn, Instigator ); PlayerScore++; if( PlayerScore == NumKillsToWin ) EndTutorialDeathMatch( true ); RemoveTimer( OpponentKillTauntTimer ); } } //----------------------------------------------------------------------------- function HandleKilledSounds( Pawn Victim, Pawn Killer ) { local U2Pawn U2PK, U2PV; // someone killed themself, make the taunter the other npc if( Victim == Killer ) { if( Victim == Level.PlayerControllerList.Pawn ) Killer = GetOpponentPawn(); else Killer = Level.PlayerControllerList.Pawn; } U2PK = U2Pawn(Killer); U2PV = U2Pawn(Victim); if( U2PV != None ) U2PV.AssetsHelperClass.static.HandleDyingSound( U2PV ); // delay the kill taunt so that it doesn't overlap the death scream AddTimer( OpponentKillTauntTimer, OpponentKillTauntDelay ); } //----------------------------------------------------------------------------- function OpponentKillTaunt() { local U2Pawn U2P; U2P = U2Pawn( GetOpponentPawn() ); if( U2P? ) U2P.AssetsHelperClass.static.HandleKilledEnemy( U2P ); } //----------------------------------------------------------------------------- function Pawn GetOpponentPawn() { local Pawn P; local Controller C; for( C=Level.ControllerList; C!=None; C=C.NextController ) { if( C.ValidPawn(C.Pawn) && C.Pawn.IsA( OpponentClassName ) ) { P = C.Pawn; break; } } return P; } //----------------------------------------------------------------------------- function Trigger( Actor Other, Pawn EventInstigator, optional name EventName ) { if( !bRunning ) StartTutorialDeathMatch(); else HideScores(); } //----------------------------------------------------------------------------- function StartTutorialDeathMatch() { ResetScores(); ResetPlayerHealth(); ShowScores(); bRunning = true; } //----------------------------------------------------------------------------- function EndTutorialDeathMatch( bool bPlayerWon ) { if( bPlayerWon ) TriggerEvent( TutorialPlayerWonEvent, Self, None ); else TriggerEvent( TutorialPlayerLostEvent, Self, None ); HideScores(); bRunning = false; } //----------------------------------------------------------------------------- function ShowScores() { class'UIConsole'.static.SendEvent( TutorialScoreboardOnEvent ); } //----------------------------------------------------------------------------- function HideScores() { class'UIConsole'.static.SendEvent( TutorialScoreboardOffEvent ); } //----------------------------------------------------------------------------- function ResetScores() { PlayerScore = 0; OpponentScore = 0; } //----------------------------------------------------------------------------- function ResetPlayerHealth() { local Inventory Inv; local Pawn PlayerPawn; PlayerPawn = Level.PlayerControllerList.Pawn; if( PlayerPawn != None ) { for( Inv=PlayerPawn.Inventory; Inv!=None; Inv=Inv.Inventory ) if( PowerSuitPhoenix(Inv) != None ) { PowerSuitPhoenix(Inv).RestoreHealthAndArmor(); break; } } } //----------------------------------------------------------------------------- // ui accessors function string GetPlayerName() { return PlayerName; } function string GetOpponentName() { return OpponentName; } function string GetPlayerScoreStr() { return string(PlayerScore); } function string GetOpponentScoreStr() { return string(OpponentScore); } //----------------------------------------------------------------------------- event NotifyLevelChange() { Super.NotifyLevelChange(); HideScores(); } //----------------------------------------------------------------------------- event Destroyed() { HideScores(); RemoveAllTimers(); Super.Destroyed(); } //----------------------------------------------------------------------------- defaultproperties { NumKillsToWin=5 OpponentClassName='RaffTrainingBot' OpponentKillTauntDelay=1.200000 bGiveDefaultWeapon=false bDisplayHud=false UseReticleOnEvents(0)="UseReticleText" UseReticleOnEvents(1)="UseReticleCorners" UseReticleOnEvents(2)="UseReticleTopBars" ProximityReticleOnEvents(0)="ProximityReticleCorners" ProximityReticleOnEvents(1)="ProximityReticleTopBars" } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |