|
| | WsfCompositeOpticalSignature () |
| | WsfCompositeOpticalSignature (const WsfCompositeOpticalSignature &aSrc) |
| | ~WsfCompositeOpticalSignature () override |
| WsfCompositeOpticalSignature & | operator= (const WsfCompositeOpticalSignature &)=delete |
| WsfOpticalSignature * | Clone () const override |
| bool | Initialize (double aSimTime, WsfPlatform *aPlatformPtr) override |
| bool | InitializeType () override |
| std::vector< WsfStringId > | GetStateNames () const override |
| | get the list of all valid states belonging to the signature
|
| bool | ProcessInput (UtInput &aInput) override |
| float | GetSignature (double aSimTime, WsfStringId aStateId, double aAzimuth, double aElevation) override |
| bool | GetProjectedArea (double aSimTime, WsfStringId aStateId, double aAzimuth, double aElevation, double &aProjectedArea) override |
| bool | GetRadiantIntensity (double aSimTime, WsfStringId aStateId, const BandList &aBands, double aAzimuth, double aElevation, double &aRadiantIntensity) override |
| | WsfOpticalSignature () |
| bool | UsesInherentContrast () const |
| | WsfSignature () |
| | WsfSignature (const WsfSignature &aSrc) |
| WsfSignature & | operator= (const WsfSignature &)=delete |
| | ~WsfSignature () override=default |
| virtual bool | IsA_ValidState (WsfStringId aId) const |
| bool | ProcessInput (UtInput &aInput) override |
| bool | RequiresPlatform () const |
| | indicates that a signature can be queried without a valid mPlatform
|
| | WsfObject () |
| | This is the constructor for the WsfObject class.
|
| | ~WsfObject () override |
| | This is the destructor for the WsfObject class.
|
| const char * | GetScriptClassName () const override |
| const std::string & | GetType () const |
| WsfStringId | GetTypeId () const |
| | Get the string ID of the 'type' of the object.
|
| void | SetType (WsfStringId aType) |
| const std::string & | GetBaseType () const |
| WsfStringId | GetBaseTypeId () const |
| const TypeList & | GetTypeList () const |
| bool | IsA_TypeOf (WsfStringId aType) const |
| WsfObject & | operator= (const WsfObject &aRhs) |
| | Assignment operator.
|
| template<typename T> |
| void | Serialize (T &aBuff) |
| | For XIO (de)serialization.
|
| const std::string & | GetName () const |
| WsfStringId | GetNameId () const |
| void | SetName (WsfStringId aName) |
|
| static WsfOpticalSignature * | ObjectFactory (const std::string &aTypeName) |
| | Factory method called by WsfOpticalSignatureTypes.
|
| static Surface * | SurfaceFactory (const std::string &aType, const Surface &aDefaultData) |
| static WsfStringId | GetInputType (WsfPlatform *aPlatformPtr) |
| static WsfStringId | GetState (WsfPlatform *aPlatformPtr) |
| static bool | SetState (WsfPlatform *aPlatformPtr, WsfStringId aState) |
| static float | GetScaleFactor (WsfPlatform *aPlatformPtr) |
| static bool | SetScaleFactor (WsfPlatform *aPlatformPtr, float aScaleFactor) |
| static float | GetValue (double aSimTime, WsfPlatform *aPlatformPtr, double aAzimuth, double aElevation) |
| static bool | GetProjectedArea (double aSimTime, WsfPlatform *aPlatformPtr, double aAzimuth, double aElevation, double &aProjectedArea) |
| static bool | GetRadiantIntensity (double aSimTime, WsfPlatform *aPlatformPtr, const BandList &aBands, double aAzimuth, double aElevation, double &aRadiantIntensity) |
| static bool | UsesInherentContrast (WsfPlatform *aPlatformPtr) |
| static void | RegisterScriptMethods (UtScriptTypes &aScriptTypes) |
| static void | RegisterInterface (WsfScenario &aScenario) |
| | Register the platform interface object on the prototype signature list in the specified scenario.
|
WsfCompositeOpticalSignature provides a dynamic, radiometric calculation of a platform's composite visual and infrared signatures. The basic shape of the platform is user-defined in terms of radiative surfaces (box, cone, cylinder, hemisphere) that are placed relative to each other. This geometry allows for projected area calculations that are used in the signature computations.
| bool WsfCompositeOpticalSignature::ProcessInput |
( |
UtInput & | aInput | ) |
|
|
overridevirtual |
Process input from a generic source.
Examine the current input command. If it is NOT one of the commands recognized by this class then it simply returns 'false'. If it is one of the commands recognized by this class then it processes the command and returns 'true'.
- Parameters
-
| aInput | a reference to a UtInput object. |
- Returns
- 'true' if the command was one recognized by the class or 'false' if not.
- Exceptions
-
| UtInput::ExceptionBase | (or an object derived from it) if the command was recognized but contains some sort of error. |
- Note
- If a derived class does not recognize the command (i.e.: the return value is false) then it should call the base class ProcessInput method. This chain should continue until either the command is recognized or the top-level base class is encountered.
Reimplemented from WsfObject.
References WsfObject::ProcessInput(), and SurfaceFactory().