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 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 |
/** * Copyright 1998-2011 Epic Games, Inc. All Rights Reserved. */ class ParticleModule extends Object native(Particle) editinlinenew hidecategories(Object) abstract; /** If TRUE, the module performs operations on particles during Spawning */ var bool bSpawnModule; /** If TRUE, the module performs operations on particles during Updating */ var bool bUpdateModule; /** If TRUE, the module performs operations on particles during final update */ var bool bFinalUpdateModule; /** If TRUE, the module displays vector curves as colors */ var bool bCurvesAsColor; /** If TRUE, the module should render its 3D visualization helper */ var(Cascade) bool b3DDrawMode; /** If TRUE, the module supports rendering a 3D visualization helper */ var bool bSupported3DDrawMode; /** If TRUE, the module is enabled */ var bool bEnabled; /** If TRUE, the module has had editing enabled on it */ var bool bEditable; /** * If TRUE, this flag indicates that auto-generation for LOD will result in * an exact duplicate of the module, regardless of the percentage. * If FALSE, it will result in a module with different settings. */ var bool LODDuplicate; /** If TRUE, the module supports RandomSeed setting */ var bool bSupportsRandomSeed; /** If TRUE, the module should be told when looping */ var bool bRequiresLoopingNotification; /** * The LOD levels this module is present in. * Bit-flags are used to indicate validity for a given LOD level. * For example, if * ((1 << Level) & LODValidity) != 0 * then the module is used in that LOD. */ var const byte LODValidity; /** The color to draw the modules curves in the curve editor. * If bCurvesAsColor is TRUE, it overrides this value. */ var(Cascade) color ModuleEditorColor; struct native transient ParticleCurvePair { var string CurveName; var object CurveObject; }; /** ModuleType * Indicates the kind of emitter the module can be applied to. * ie, EPMT_Beam - only applies to beam emitters. * * The TypeData field is present to speed up finding the TypeData module. */ enum EModuleType { /** General - all emitter types can use it */ EPMT_General, /** TypeData - TypeData modules */ EPMT_TypeData, /** Beam - only applied to beam emitters */ EPMT_Beam, /** Trail - only applied to trail emitters */ EPMT_Trail, /** Spawn - all emitter types REQUIRE it */ EPMT_Spawn, /** Required - all emitter types REQUIRE it */ EPMT_Required, /** Event - event related modules */ EPMT_Event }; /** * Particle Selection Method, for any emitters that utilize particles * as the source points. */ enum EParticleSourceSelectionMethod { /** Random - select a particle at random */ EPSSM_Random, /** Sequential - select a particle in order */ EPSSM_Sequential }; struct native ParticleRandomSeedInfo { /** The name to expose to the placed instances for setting this seed */ var() name ParameterName; /** * If TRUE, the module will attempt to get the seed from the owner * instance. If that fails, it will fall back to getting it from * the RandomSeeds array. */ var() bool bGetSeedFromInstance; /** * If TRUE, the seed value retrieved from teh instance will be an * index into the array of seeds. */ var() bool bInstanceSeedIsIndex; /** * If TRUE, then reset the seed upon the emitter looping. */ var() bool bResetSeedOnEmitterLooping; /** * The random seed values to utilize for the module. * More than 1 means the instance will randomly select one. */ var() array<int> RandomSeeds; structcpptext { FORCEINLINE INT GetInstancePayloadSize() const { return ((RandomSeeds.Num() > 0) ? sizeof(FParticleRandomSeedInstancePayload) : 0); } } }; cpptext { virtual void PostLoad(); /** * Called on a particle that is freshly spawned by the emitter. * * @param Owner The FParticleEmitterInstance that spawned the particle. * @param Offset The modules offset into the data payload of the particle. * @param SpawnTime The time of the spawn. */ virtual void Spawn(FParticleEmitterInstance* Owner, INT Offset, FLOAT SpawnTime); /** * Called on a particle that is being updated by its emitter. * * @param Owner The FParticleEmitterInstance that 'owns' the particle. * @param Offset The modules offset into the data payload of the particle. * @param DeltaTime The time since the last update. */ virtual void Update(FParticleEmitterInstance* Owner, INT Offset, FLOAT DeltaTime); /** * Called on an emitter when all other update operations have taken place * INCLUDING bounding box cacluations! * * @param Owner The FParticleEmitterInstance that 'owns' the particle. * @param Offset The modules offset into the data payload of the particle. * @param DeltaTime The time since the last update. */ virtual void FinalUpdate(FParticleEmitterInstance* Owner, INT Offset, FLOAT DeltaTime); /** * Returns the number of bytes that the module requires in the particle payload block. * * @param Owner The FParticleEmitterInstance that 'owns' the particle. * * @return UINT The number of bytes the module needs per particle. */ virtual UINT RequiredBytes(FParticleEmitterInstance* Owner = NULL); /** * Returns the number of bytes the module requires in the emitters 'per-instance' data block. * * @param Owner The FParticleEmitterInstance that 'owns' the particle. * * @return UINT The number of bytes the module needs per emitter instance. */ virtual UINT RequiredBytesPerInstance(FParticleEmitterInstance* Owner = NULL); /** * Allows the module to prep its 'per-instance' data block. * * @param Owner The FParticleEmitterInstance that 'owns' the particle. * @param InstData Pointer to the data block for this module. */ virtual UINT PrepPerInstanceBlock(FParticleEmitterInstance* Owner, void* InstData); // For Cascade /** * Called when the module is created, this function allows for setting values that make * sense for the type of emitter they are being used in. * * @param Owner The UParticleEmitter that the module is being added to. */ virtual void SetToSensibleDefaults(UParticleEmitter* Owner); /** * Fill an array with each Object property that fulfills the FCurveEdInterface interface. * * @param OutCurve The array that should be filled in. */ virtual void GetCurveObjects(TArray<FParticleCurvePair>& OutCurves); /** * Add all curve-editable Objects within this module to the curve editor. * * @param EdSetup The CurveEd setup to use for adding curved. */ virtual void AddModuleCurvesToEditor(UInterpCurveEdSetup* EdSetup); /** * Remove all curve-editable Objects within this module from the curve editor. * * @param EdSetup The CurveEd setup to remove the curve from. */ void RemoveModuleCurvesFromEditor(UInterpCurveEdSetup* EdSetup); /** * Does the module contain curves? * * @return UBOOL TRUE if it does, FALSE if not. */ UBOOL ModuleHasCurves(); /** * Are the modules curves displayed in the curve editor? * * @param EdSetup The CurveEd setup to check. * * @return UBOOL TRUE if they are, FALSE if not. */ UBOOL IsDisplayedInCurveEd(UInterpCurveEdSetup* EdSetup); /** * Helper function for updating the curve editor when the module editor color changes. * * @param Color The new color the module is using. * @param EdSetup The CurveEd setup for the module. */ void ChangeEditorColor(FColor& Color, UInterpCurveEdSetup* EdSetup); /** * Render the modules 3D visualization helper primitive. * * @param Owner The FParticleEmitterInstance that 'owns' the module. * @param View The scene view that is being rendered. * @param PDI The FPrimitiveDrawInterface to use for rendering. */ virtual void Render3DPreview(FParticleEmitterInstance* Owner, const FSceneView* View,FPrimitiveDrawInterface* PDI) {}; /** * Retrieve the ModuleType of this module. * * @return EModuleType The type of module this is. */ virtual EModuleType GetModuleType() const { return EPMT_General; } /** * Helper function used by the editor to auto-populate a placed AEmitter with any * instance parameters that are utilized. * * @param PSysComp The particle system component to be populated. */ virtual void AutoPopulateInstanceProperties(UParticleSystemComponent* PSysComp); /** * Helper function used by the editor to auto-generate LOD values from a source module * and a percentage value used to scale its values. * * @param SourceModule The ParticleModule to utilize as the template. * @param Percentage The value to use when scaling the source values. */ virtual UBOOL GenerateLODModuleValues(UParticleModule* SourceModule, FLOAT Percentage, UParticleLODLevel* LODLevel); /** * Conversion functions for distributions. * Used to setup new distributions to a percentage value of the source. */ /** * Store the given percentage of the SourceFloat distribution in the FloatDist * * @param FloatDist The distribution to put the result into. * @param SourceFloatDist The distribution of use as the source. * @param Percentage The percentage of the source value to use [0..100] * * @return UBOOL TRUE if successful, FALSE if not. */ virtual UBOOL ConvertFloatDistribution(UDistributionFloat* FloatDist, UDistributionFloat* SourceFloatDist, FLOAT Percentage); /** * Store the given percentage of the SourceVector distribution in the VectorDist * * @param VectorDist The distribution to put the result into. * @param SourceVectorDist The distribution of use as the source. * @param Percentage The percentage of the source value to use [0..100] * * @return UBOOL TRUE if successful, FALSE if not. */ virtual UBOOL ConvertVectorDistribution(UDistributionVector* VectorDist, UDistributionVector* SourceVectorDist, FLOAT Percentage); /** * Returns whether the module is SizeMultipleLife or not. * * @return UBOOL TRUE if the module is a UParticleModuleSizeMultipleLife * FALSE if not */ virtual UBOOL IsSizeMultiplyLife() { return FALSE; }; /** * Returns whether the module supports the RandomSeed functionality * * @return UBOOL TRUE if it supports it; FALSE if not */ UBOOL SupportsRandomSeed() const { return bSupportsRandomSeed; } /** * Returns whether the module requires notification when an emitter loops. * * @return UBOOL TRUE if the module required looping notification */ UBOOL RequiresLoopingNotification() const { return bRequiresLoopingNotification; } /** * Called when an emitter instance is looping... * * @param Owner The emitter instance that owns this module */ virtual void EmitterLoopingNotify(FParticleEmitterInstance* Owner) { } /** * Comparison routine... * Intended for editor-use only, this function will return TRUE if the given * particle module settings are identical to the one the function is called on. * * @param InModule The module to compare against. * * @return TRUE If the modules have all the relevant settings the same. * FALSE If they don't. */ virtual UBOOL IsIdentical_Deprecated(const UParticleModule* InModule) const; /** * Used by the comparison routine to check for properties that are irrelevant. * * @param InPropName The name of the property being checked. * * @return TRUE If the property is relevant. * FALSE If it isn't. */ virtual UBOOL PropertyIsRelevantForIsIdentical_Deprecated(const FName& InPropName) const; /** * Generates a new module for LOD levels, setting the values appropriately. * Note that the module returned could simply be the module it was called on. * * @param SourceLODLevel The source LODLevel * @param DestLODLevel The destination LODLevel * @param Percentage The percentage value that should be used when setting values * * @return UParticleModule* The generated module, or this if percentage == 100. */ virtual UParticleModule* GenerateLODModule(UParticleLODLevel* SourceLODLevel, UParticleLODLevel* DestLODLevel, FLOAT Percentage, UBOOL bGenerateModuleData, UBOOL bForceModuleConstruction = FALSE); /** * Returns TRUE if the results of LOD generation for the given percentage will result in a * duplicate of the module. * * @param SourceLODLevel The source LODLevel * @param DestLODLevel The destination LODLevel * @param Percentage The percentage value that should be used when setting values * * @return UBOOL TRUE if the generated module will be a duplicate. * FALSE if not. */ virtual UBOOL WillGeneratedModuleBeIdentical(UParticleLODLevel* SourceLODLevel, UParticleLODLevel* DestLODLevel, FLOAT Percentage) { // The assumption is that at 100%, ANY module will be identical... // (Although this is virtual to allow over-riding that assumption on a case-by-case basis!) if (Percentage != 100.0f) { return LODDuplicate; } return TRUE; } /** * Returns TRUE if the module validiy flags indicate this module is used in the given LOD level. * * @param SourceLODIndex The index of the source LODLevel * * @return UBOOL TRUE if the generated module is used, FALSE if not. */ virtual UBOOL IsUsedInLODLevel(INT SourceLODIndex) const; /** * Retrieve the ParticleSysParams associated with this module. * * @param ParticleSysParamList The list of FParticleSysParams to add to */ virtual void GetParticleSysParamsUtilized(TArray<FString>& ParticleSysParamList); /** * Retrieve the distributions that use ParticleParameters in this module. * * @param ParticleParameterList The list of ParticleParameter distributions to add to */ virtual void GetParticleParametersUtilized(TArray<FString>& ParticleParameterList); /** * Refresh the module... */ virtual void RefreshModule(UInterpCurveEdSetup* EdSetup, UParticleEmitter* InEmitter, INT InLODLevel) {} /** * Return TRUE if this module impacts rotation of Mesh emitters * @return UBOOL TRUE if the module impacts mesh emitter rotation */ virtual UBOOL TouchesMeshRotation() const { return FALSE; } /** * Prepare a random seed instance payload... * * @param Owner The emitter instance that owns this module * @param InRandSeedPayload The random seed instance payload to initialize * @param InRandSeedInfo The random seed info of the module * * @return UINT 0xffffffff is failed */ virtual UINT PrepRandomSeedInstancePayload(FParticleEmitterInstance* Owner, FParticleRandomSeedInstancePayload* InRandSeedPayload, const FParticleRandomSeedInfo& InRandSeedInfo); /** * Retrieve the random seed info for this module. * * @return FParticleRandomSeedInfo* The random seed info; NULL if not supported */ virtual FParticleRandomSeedInfo* GetRandomSeedInfo() { return NULL; } /** * Set the random seed info entry at the given index to the given seed * * @param InIndex The index of the entry to set * @param InRandomSeed The seed to set the entry to * * @return UBOOL TRUE if successful; FALSE if not (not found, etc.) */ virtual UBOOL SetRandomSeedEntry(INT InIndex, INT InRandomSeed); #if WITH_EDITOR /** * Custom Cascade module menu entries support */ /** * Get the number of custom entries this module has. Maximum of 3. * * @return INT The number of custom menu entries */ virtual INT GetNumberOfCustomMenuOptions() const { return 0; } /** * Get the display name of the custom menu entry. * * @param InEntryIndex The custom entry index (0-2) * @param OutDisplayString The string to display for the menu * * @return UBOOL TRUE if successful, FALSE if not */ virtual UBOOL GetCustomMenuEntryDisplayString(INT InEntryIndex, FString& OutDisplayString) const { return FALSE; } /** * Perform the custom menu entry option. * * @param InEntryIndex The custom entry index (0-2) to perform * * @return UBOOL TRUE if successful, FALSE if not */ virtual UBOOL PerformCustomMenuEntry(INT InEntryIndex) { return FALSE; } #endif } defaultproperties { bSupported3DDrawMode=false b3DDrawMode=false bEnabled=true bEditable=true LODDuplicate=true bSupportsRandomSeed=false bRequiresLoopingNotification=false } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |