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 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 |
//============================================================================= // WeaponInvDispersion.uc // $Author: Mfox $ // $Date: 12/13/02 2:31a $ // $Revision: 52 $ //============================================================================= class WeaponInvDispersion extends U2Weapon; #exec OBJ LOAD File=..\Meshes\GlmWeaponsG.ugx #exec OBJ LOAD File=..\Textures\WeaponFXT.utx var() float AltChargeTime; var() float AltEnergyTimer; var() int MaxAltEnergy; var int AltEnergy; var() float RampUpRate; var float RampUp; enum EFireMode { FM_None, FM_Fire, FM_Charged, FM_AltFire, }; var EFireMode FireMode; function bool PreSetAimingParameters( bool bAltFire, bool bInstant, float FireSpread, class<projectile> ProjClass, bool bWarnTarget, bool bTrySplash ) { if( bAltFire ) { // so NPCs fire in the direction they are facing by default if( Instigator? && Instigator.Controller? && Instigator.Controller.Pawn? && !Instigator.Controller.Pawn.bIsRealPlayer ) { if( Instigator.Controller.Pawn? ) Instigator.Controller.SetRotation( Instigator.Controller.Pawn.Rotation ); Instigator.Controller.AimRotation = Instigator.Controller.Rotation; } return true; } else { return Super.PreSetAimingParameters( bAltFire, bInstant, FireSpread, ProjClass, bWarnTarget, bTrySplash ); } } function PostSetAimingParameters( bool bAltFire, bool bInstant, float FireSpread, class<projectile> ProjClass, bool bWarnTarget, bool bTrySplash ) { if( bAltFire ) { // NOTE: call to Super.*Pre*SetAimingParameters is intentional Super.PreSetAimingParameters( bAltFire, bInstant, FireSpread, ProjClass, bWarnTarget, bTrySplash ); } } simulated function HandleTargetDetails( Actor A, Canvas Canvas, vector ViewLoc, rotator ViewRot ) { switch(FireMode) { case FM_Fire: class'UIConsole'.static.SendEvent("DP_Fire"); break; case FM_Charged: class'UIConsole'.static.SendEvent("DP_Charged"); break; case FM_AltFire: class'UIConsole'.static.SendEvent("DP_AltFire"); break; } FireMode = FM_None; } simulated function NotifyPlaySoundSlot( string Slot ) { if (Slot == "AltFire") { if (AltEnergy < MaxAltEnergy) AltFireSound = sound'U2WeaponsA.Dispersion.DP_AltFire'; else AltFireSound = sound'U2WeaponsA.Dispersion.DP_PoweredUpFire'; } Super.NotifyPlaySoundSlot(Slot); } simulated function PlayFiring() { Super.PlayFiring(); FireMode = FM_Fire; } simulated function PlayAltFiring() { Super.PlayAltFiring(); MeshAgentSetInputCurValue('AltFire','Charged'); } function AuthorityAltFire(){} simulated function EverywhereAltFire() { GotoState('AltCharging'); } function Projectile ProjectileFire( class<projectile> ProjClass ) { local float Pct; local Projectile P; Pct = float(AltEnergy)/float(MaxAltEnergy); if( (Pct >= 1.0) && (ProjClass == class'projectileDispersionAlt') ) ProjClass = class'projectileDispersionAlt2'; P = Super.ProjectileFire(ProjClass); if( ProjClass == class'projectileDispersionAlt' ) projectileDispersionAlt(P).SetCharge(Pct); return P; } //undo weapon hack for DP only. event TravelPreAccept(){ Super(Inventory).TravelPreAccept(); } // AltFire ammo used during charge-up time. simulated function int GetAltFireAmmoUsed() { return 0; } // ui callbacks simulated function float GetAltEnergyPct(){ return 0; } simulated function bool IsAltCharging(){ return false; } simulated function IncAltEnergy(); simulated state AltCharging { ignores Fire, AltFire; // ui callbacks simulated function float GetAltEnergyPct(){ return float(AltEnergy)/float(MaxAltEnergy) * 255; } simulated function bool IsAltCharging(){ return true; } simulated function IncAltEnergy() { if( AltEnergy >= MaxAltEnergy ) return; if( U2Ammo(AmmoType)? && !U2Ammo(AmmoType).ReloadRequired(1) ) { AmmoType.UseAmmo(1); AltEnergy++; } if( AltEnergy==MaxAltEnergy ) { AmbientSound = sound'DP_PowerUpLoopWarning'; FireMode = FM_Charged; } } simulated event BeginState() { AltEnergyTimer = default.AltEnergyTimer; AltEnergy = 0; IncAltEnergy(); AmbientSound = sound'DP_PowerUpLoop'; RampUp = 0.0; Enable('Tick'); } simulated event EndState() { AmbientSound = None; Disable('Tick'); } simulated event Tick( float DeltaSeconds ) { //Global.Tick(DeltaSeconds); if( !Pawn(Owner).PressingAltFire() ) { if (Role == ROLE_Authority) Super.AuthorityAltFire(); Super.EverywhereAltFire(); FireMode = FM_AltFire; } AltEnergyTimer -= DeltaSeconds; while( AltEnergyTimer<=0 ) { AltEnergyTimer += default.AltEnergyTimer; IncAltEnergy(); } RampUp += RampUpRate * DeltaSeconds; RampUp = FMin( RampUp, 1.0 ); SoundVolume = FClamp( float(default.SoundVolume) * RampUp, 0.0, 255.0 ); SoundPitch = FClamp( float(default.SoundPitch) * RampUp, 32.0, 128.0 ); } Begin: PlayAnimEx('AltFireStart'); Sleep(AltChargeTime); MeshAgentSetInputCurValue('AltFire','Supercharged'); } // don't ever auto-switch from the dispersion pistol. simulated function SwitchAway() {} simulated state Idle { Begin: if( Pawn(Owner)? ) { PawnAgentEvent('Ambient'); if (Pawn(Owner).PressingFire() && bRepeatFire) Fire(); else if (Pawn(Owner).PressingAltFire() && bRepeatAltFire) AltFire(); } bPointing = false; //check again shortly. Sleep(0.1); goto 'Begin'; } defaultproperties { AltChargeTime=2.000000 AltEnergyTimer=0.250000 MaxAltEnergy=12 RampUpRate=0.400000 FireTime=0.250000 ReloadTime=0.000000 FlashSkin=Shader'WeaponFXT.Dispersion.DP_Skin2FX' GunButtSounds(0)=Sound'U2WeaponsA.GunButt.GunButt01' GunButtSounds(1)=Sound'U2WeaponsA.GunButt.GunButt02' GunButtSounds(2)=Sound'U2WeaponsA.GunButt.GunButt03' GunButtSounds(3)=Sound'U2WeaponsA.GunButt.GunButt04' FirstPersonOffset=(X=-12.000000,Y=7.000000,Z=-5.000000) bCrosshairGlows=true WeaponAnimationType=AT_Small ImpactHandlerClass=Class'U2Weapons.impactDispersion' AltShakeMag=1.000000 TargetableTypes(0)='Pawn' CrosshairName="DP_Cross" RangeMinFire=128.000000 RangeIdealFire=512.000000 RangeMaxFire=1536.000000 RangeLimitFire=32767.000000 RatingRangeMinFire=0.250000 RatingRangeIdealFire=0.450000 RatingRangeMaxFire=0.100000 RatingRangeLimitFire=0.001000 AIRatingFire=0.400000 RangeMinAltFire=0.000000 RangeIdealAltFire=384.000000 RangeMaxAltFire=1536.000000 RangeLimitAltFire=32767.000000 RatingRangeMinAltFire=0.100000 RatingRangeIdealAltFire=0.200000 RatingRangeMaxAltFire=0.100000 AIRatingAltFire=0.350000 AmmoName=Class'U2Weapons.ammoInvDispersion' PickupAmmoCount=8 PreferCrouchingMultiplier=2.000000 bCanThrow=false FireOffset=(X=60.000000,Y=9.000000,Z=-5.000000) ProjectileClass=Class'U2Weapons.projectileDispersion' AltProjectileClass=Class'U2Weapons.projectileDispersionAlt' ShakeMag=0.500000 bWarnTarget=true bAltWarnTarget=true AIRating=0.400000 RefireRate=0.200000 AltRefireRate=1.000000 FireSound=Sound'U2WeaponsA.Dispersion.DP_Fire' SelectSound=Sound'U2WeaponsA.Dispersion.DP_Select' InventoryGroup=4 GroupOffset=2 PickupClass=Class'U2Weapons.weaponDispersion' PlayerViewOffset=(X=0.000000,Z=0.000000) ThirdPersonMesh=LegendMesh'GlmWeaponsG.DP_TP' ItemName="DispersionPistol" ItemID="DP" IconIndex=1 Mesh=LegendMesh'GlmWeaponsG.DP_FP' SoundVolume=255 Mass=15.000000 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 |