Tramway SDK v0.1.1
render.h
Go to the documentation of this file.
1// Tramway Drifting and Dungeon Exploration Simulator SDK Runtime
2
3#ifndef TRAM_SDK_COMPONENTS_RENDERCOMPONENT_H
4#define TRAM_SDK_COMPONENTS_RENDERCOMPONENT_H
5
6#include <render/model.h>
7
8namespace tram {
9
10class AnimationComponent;
11
13public:
16 inline Render::Model* GetModel() { return model.get(); }
17
18 inline name_t GetLightmap() { return (lightmap.get() == nullptr) ? 0 : lightmap->GetName();};
19
20 void SetModel(name_t name);
21 void SetLightmap(name_t name);
22 void SetEnvironmentMap(Render::Material* material);
23 void SetArmature(AnimationComponent* armature);
24
25 void Start();
26
27 vec3 GetLocation() const { return location; }
28 quat GetRotation() const { return rotation; }
29 vec3 GetScale() const { return scale; }
30
31 void SetLocation(vec3 nlocation);
32 void SetRotation(quat nrotation);
33 void SetScale(vec3 scale);
34 void SetColor(vec3 color);
35 void SetLayer(uint32_t layer);
36 void SetTextureOffset(name_t material, vec4 offset);
37
38 void SetDirectionaLight(bool enabled);
39 void SetRenderDebug(bool enabled);
40
41 void EventHandler(Event &event) { return; }
42protected:
44 void RefreshAABB();
45
49
50 std::vector<Render::drawlistentry_t> draw_list_entries;
51
52 Render::Pose* pose = nullptr;
53
54 vec3 location = {0.0f, 0.0f, 0.0f};
55 quat rotation = {1.0f, 0.0f, 0.0f, 0.0f};
56 vec3 scale = {1.0f, 1.0f, 1.0f};
57 vec3 color = {1.0f, 1.0f, 1.0f};
58 uint32_t layer = 0;
59
60 void* aabb_tree_leaf = 0;
61
62 uint32_t render_flags = 0;
63};
64
65}
66
67#endif // TRAM_SDK_COMPONENTS_RENDERCOMPONENT_H
Plays back Animations.
Definition: animation.h:13
Component base class.
Definition: entitycomponent.h:16
Material resource.
Definition: material.h:31
Definition: model.h:27
Renders a Model.
Definition: render.h:12
void EventHandler(Event &event)
Definition: render.h:41
vec3 color
Definition: render.h:57
void SetLightmap(name_t name)
Sets the lightmap for the model.
Definition: render.cpp:53
ResourceProxy< Render::Model > model
Definition: render.h:46
vec3 location
Definition: render.h:54
uint32_t render_flags
Definition: render.h:62
void RefreshAABB()
Definition: render.cpp:277
std::vector< Render::drawlistentry_t > draw_list_entries
Definition: render.h:50
void SetRenderDebug(bool enabled)
Sets render debugging.
Definition: render.cpp:142
name_t GetLightmap()
Definition: render.h:18
void SetDirectionaLight(bool enabled)
Sets the world parameters for model rendering.
Definition: render.cpp:123
Render::Model * GetModel()
Definition: render.h:16
ResourceProxy< Render::Material > lightmap
Definition: render.h:47
void SetEnvironmentMap(Render::Material *material)
Sets the environment map for the model.
Definition: render.cpp:66
void SetLocation(vec3 nlocation)
Sets the location of the model.
Definition: render.cpp:159
vec3 GetScale() const
Definition: render.h:29
~RenderComponent()
Definition: render.cpp:108
void Start()
Definition: render.cpp:260
uint32_t layer
Definition: render.h:58
RenderComponent()
Definition: render.cpp:104
void InsertDrawListEntries()
Definition: render.cpp:285
void SetModel(name_t name)
Set the model that the component will render.
Definition: render.cpp:33
quat rotation
Definition: render.h:55
void SetArmature(AnimationComponent *armature)
Links an AnimationComponent.
Definition: render.cpp:88
quat GetRotation() const
Definition: render.h:28
vec3 GetLocation() const
Definition: render.h:27
void SetRotation(quat nrotation)
Sets the rotation of the model.
Definition: render.cpp:180
void SetTextureOffset(name_t material, vec4 offset)
Definition: render.cpp:221
void SetScale(vec3 scale)
Sets the scale of the model.
Definition: render.cpp:195
void SetLayer(uint32_t layer)
Definition: render.cpp:209
void * aabb_tree_leaf
Definition: render.h:60
ResourceProxy< Render::Material > environmentmap
Definition: render.h:48
vec3 scale
Definition: render.h:56
void SetColor(vec3 color)
Sets the scale of the model.
Definition: render.cpp:242
Render::Pose * pose
Definition: render.h:52
Definition: resource.h:46
Serialization, i.e.
glm::vec4 vec4
Definition: math.h:15
glm::vec3 vec3
Definition: math.h:11
glm::quat quat
Definition: math.h:12
Event data.
Definition: event.h:24
Definition: animation.h:35
Interned string type.
Definition: uid.h:10