class Enlighten::IPrecompInputSystem
└>Geo::IGeoSerialisable
└>Geo::IGeoReleasable
Handle to the InputSystem.
Functions
Name | Description |
---|---|
AddInstances(const PrecompInputInstance *, const PrecompInputInstance *) | Copy instances between [begin, end) into this object. |
ClearAllMaterialInfo() | Clears all existing material properties for this system. |
Create() | Create a new IPrecompInputSystem. |
GetBuildParameters() | Get the build parameters for this system. |
GetBuildParameters() | Get the build parameters for this system. |
GetId() | Returns the globally unique ID of this system. |
GetInstanceArray() | Access to the array of input instances. |
GetInstanceCount() | Retrieves the number of object instances in the system. |
GetMaterialInfo(Geo::GeoGuid, Geo::GeoGuid, Geo::GeoGuid, PrecompMaterialInfo &) | Retrieves the material properties that will be used for the given combination of instance, mesh and material GUID. |
GetName() | Returns the globally unique name of this system. |
GetUnlit() | Return the value of the Unlit property of this system. |
Load(IGeoInputStream &, Geo::u32) | Load an instance of this class from an IGeoInputStream. |
NonCopyable(NonCopyable &&) | Defaulted to allow move. |
operator=(NonCopyable &&) | Defaulted to allow move. |
Release() | Free this object that was created within the Enlighten libraries. |
Save(IGeoStream &, Geo::u32) | Save an instance of this class to an IGeoStream. |
SetId(Geo::GeoGuid) | Sets the globally unique ID of this system. |
SetMaterialInfo(Geo::GeoGuid, Geo::GeoGuid, Geo::GeoGuid, const PrecompMaterialInfo &) | Sets material properties for the given combination of instance, mesh and material GUIDs. |
SetName(const char *) | Sets the globally unique name of this system. |
SetUnlit(bool) | Set the value of the Unlit property of this system. Unlit systems do not reflect light. |
Anchor | ||||
---|---|---|---|---|
|
virtual bool Enlighten::IPrecompInputSystem::AddInstances
...
public: bool AddInstances
(
const PrecompInputInstance * begin,
const PrecompInputInstance * end
)
...
Copy instances between [begin, end) into this object.
Parameters
[in] | begin | A pointer to the first element to be added |
[in] | end | A pointer to an element one past the last entity (as standard STL syntax) |
Returns
True if operation succeeded, false if there was not enough memory to satisfy request
Anchor | ||||
---|---|---|---|---|
|
virtual void Enlighten::IPrecompInputSystem::ClearAllMaterialInfo
...
public: void ClearAllMaterialInfo()
...
Clears all existing material properties for this system.
Anchor | ||||
---|---|---|---|---|
|
static IPrecompInputSystem* Enlighten::IPrecompInputSystem::Create
...
public: IPrecompInputSystem * Create()
...
Create a new IPrecompInputSystem.
Anchor | ||||
---|---|---|---|---|
|
virtual IPrecompBuildParameters* Enlighten::IPrecompInputSystem::GetBuildParameters
...
public: IPrecompBuildParameters * GetBuildParameters()
...
Get the build parameters for this system.
Anchor | ||||
---|---|---|---|---|
|
virtual const IPrecompBuildParameters* Enlighten::IPrecompInputSystem::GetBuildParameters
...
public: const IPrecompBuildParameters * GetBuildParameters() const
...
Get the build parameters for this system.
Anchor | ||||
---|---|---|---|---|
|
virtual Geo::GeoGuid Enlighten::IPrecompInputSystem::GetId
...
public: Geo::GeoGuid GetId() const
...
Returns the globally unique ID of this system.
Anchor | ||||
---|---|---|---|---|
|
virtual const PrecompInputInstance* Enlighten::IPrecompInputSystem::GetInstanceArray
...
public: const PrecompInputInstance * GetInstanceArray() const
...
Access to the array of input instances.
Anchor | ||||
---|---|---|---|---|
|
virtual Geo::s32 Enlighten::IPrecompInputSystem::GetInstanceCount
...
public: Geo::s32 GetInstanceCount() const
...
Retrieves the number of object instances in the system.
Anchor | ||||
---|---|---|---|---|
|
virtual void Enlighten::IPrecompInputSystem::GetMaterialInfo
...
public: void GetMaterialInfo
(
Geo::GeoGuid instanceGuid,
Geo::GeoGuid meshGuid,
Geo::GeoGuid materialGuid,
PrecompMaterialInfo & outMatInfo
) const
...
Retrieves the material properties that will be used for the given combination of instance, mesh and material GUID.
If a GUID parameter is passed as GeoGuid::Invalid then the resulting material info will be that for any material use which doesn't have that GUID specified. For example, passing GeoGuid::Invalid for the instanceGuid parameter will return the material used for any instances which don't have a GUID specified.
Anchor | ||||
---|---|---|---|---|
|
virtual const char* Enlighten::IPrecompInputSystem::GetName
...
public: const char * GetName() const
...
Returns the globally unique name of this system.
Anchor | ||||
---|---|---|---|---|
|
virtual bool Enlighten::IPrecompInputSystem::GetUnlit
...
public: bool GetUnlit() const
...
Return the value of the Unlit property of this system.
Anchor | ||||
---|---|---|---|---|
|
virtual bool Geo::IGeoSerialisable::Load
...
public: bool Load
(
IGeoInputStream & stream,
Geo::u32 section
)
...
Load an instance of this class from an IGeoInputStream.
The stream must be ready to read from. You can load sections of an object by passing a bitmask representing the desired sections rather than Iff::AllSectionsMask, which will load all sections. It is also safe to call this method on an object multiple times with different section arguments to load multiple parts.
Anchor | ||||
---|---|---|---|---|
|
Geo::NonCopyable::NonCopyable
...
public: NonCopyable
(
NonCopyable &&
)
...
Defaulted to allow move.
Anchor | ||||
---|---|---|---|---|
|
NonCopyable& Geo::NonCopyable::operator=
...
public: NonCopyable & operator=
(
NonCopyable &&
)
...
Defaulted to allow move.
Anchor | ||||
---|---|---|---|---|
|
virtual void Geo::IGeoReleasable::Release
...
public: void Release()
...
Free this object that was created within the Enlighten libraries.
Expect this to behave in a similar way to calling 'delete(this)'
Anchor | ||||
---|---|---|---|---|
|
virtual bool Geo::IGeoSerialisable::Save
...
public: bool Save
(
IGeoStream & stream,
Geo::u32 section
) const
...
Save an instance of this class to an IGeoStream.
The stream must be ready to write to. You can save sections of an object by passing a bitmask representing the desired sections rather than Iff::AllSectionsMask, which will save all sections that are available.
Anchor | ||||
---|---|---|---|---|
|
virtual void Enlighten::IPrecompInputSystem::SetId
...
public: void SetId
(
Geo::GeoGuid systemId
)
...
Sets the globally unique ID of this system.
Anchor | ||||
---|---|---|---|---|
|
virtual bool Enlighten::IPrecompInputSystem::SetMaterialInfo
...
public: bool SetMaterialInfo
(
Geo::GeoGuid instanceGuid,
Geo::GeoGuid meshGuid,
Geo::GeoGuid materialGuid,
const PrecompMaterialInfo & matInfo
)
...
Sets material properties for the given combination of instance, mesh and material GUIDs.
Passing GeoGuid::Invalid to any of the GUID parameters will result in the material properties being set for all material uses of that type. For example passing a specific instance GUID and GeoGuid::Invalid for the the mesh and material GUIDs will set all the materials uses on that instance, regardless of mesh or material. Subsequent calls to SetMaterialInfo will override (wholly or partially) material properties set by previous calls. For example, setting all materials in the entire system (by passing GeoGuid::Invalid for all three GUID params) and then setting a specific material on a specific mesh on a specific instance.
Anchor | ||||
---|---|---|---|---|
|
virtual void Enlighten::IPrecompInputSystem::SetName
...
public: void SetName
(
const char * name
)
...
Sets the globally unique name of this system.
Anchor | ||||
---|---|---|---|---|
|
virtual void Enlighten::IPrecompInputSystem::SetUnlit
...
public: void SetUnlit
(
bool unlit
)
...
Set the value of the Unlit property of this system. Unlit systems do not reflect light.