Pyrogenesis
13997
|
#include <ICmpTerrain.h>
Public Member Functions | |
virtual bool | IsLoaded ()=0 |
virtual CFixedVector3D | CalcNormal (entity_pos_t x, entity_pos_t z)=0 |
virtual CVector3D | CalcExactNormal (float x, float z)=0 |
virtual entity_pos_t | GetGroundLevel (entity_pos_t x, entity_pos_t z)=0 |
virtual float | GetExactGroundLevel (float x, float z)=0 |
virtual u16 | GetTilesPerSide ()=0 |
Returns number of tiles per side on the terrain. More... | |
virtual u16 | GetVerticesPerSide ()=0 |
Returns number of vertices per side on the terrain. More... | |
virtual CTerrain * | GetCTerrain ()=0 |
virtual void | ReloadTerrain ()=0 |
Call when the underlying CTerrain has been modified behind our backs. More... | |
virtual void | MakeDirty (i32 i0, i32 j0, i32 i1, i32 j1)=0 |
Indicate that terrain tiles within the given region (inclusive lower bound, exclusive upper bound) have been changed. More... | |
![]() | |
virtual | ~IComponent () |
virtual void | Init (const CParamNode ¶mNode)=0 |
virtual void | Deinit ()=0 |
virtual void | HandleMessage (const CMessage &msg, bool global) |
CEntityHandle | GetEntityHandle () const |
void | SetEntityHandle (CEntityHandle ent) |
entity_id_t | GetEntityId () const |
CEntityHandle | GetSystemEntity () const |
const CSimContext & | GetSimContext () const |
void | SetSimContext (const CSimContext &context) |
virtual void | Serialize (ISerializer &serialize)=0 |
virtual void | Deserialize (const CParamNode ¶mNode, IDeserializer &deserialize)=0 |
virtual JSClass * | GetJSClass () const |
virtual jsval | GetJSInstance () const |
Additional Inherited Members | |
![]() | |
static std::string | GetSchema () |
static u8 | GetSerializationVersion () |
Definition at line 30 of file ICmpTerrain.h.
|
pure virtual |
Implemented in MockTerrain, and CCmpTerrain.
|
pure virtual |
Implemented in MockTerrain, and CCmpTerrain.
|
pure virtual |
Implemented in MockTerrain, and CCmpTerrain.
|
pure virtual |
Implemented in MockTerrain, and CCmpTerrain.
|
pure virtual |
Implemented in MockTerrain, and CCmpTerrain.
|
pure virtual |
Returns number of tiles per side on the terrain.
Return value is always non-zero.
Implemented in MockTerrain, and CCmpTerrain.
|
pure virtual |
Returns number of vertices per side on the terrain.
Return value is always non-zero.
Implemented in MockTerrain, and CCmpTerrain.
|
pure virtual |
Implemented in MockTerrain, and CCmpTerrain.
Indicate that terrain tiles within the given region (inclusive lower bound, exclusive upper bound) have been changed.
CMessageTerrainChanged will be sent to any components that care about terrain changes.
Implemented in MockTerrain, and CCmpTerrain.
|
pure virtual |
Call when the underlying CTerrain has been modified behind our backs.
(TODO: eventually we should manage the CTerrain in this class so nobody can modify it behind our backs).
Implemented in MockTerrain, and CCmpTerrain.