Tramway SDK v0.1.1
scene.h
Go to the documentation of this file.
1// Tramway Drifting and Dungeon Exploration Simulator SDK Runtime
2
3#ifndef TRAM_SDK_RENDER_SCENE_H
4#define TRAM_SDK_RENDER_SCENE_H
5
6#include <framework/math.h>
7#include <render/model.h>
8
9#include <functional>
10
11namespace tram {
12 class RenderComponent;
13}
14
15namespace tram::Render {
16 typedef void* aabbleaf_t;
17}
18
19namespace tram::Render::AABB {
20
21enum ReferenceType : uint32_t {
23};
24
27 void* data;
28
31};
32
33aabbleaf_t InsertLeaf(RenderComponent* component, vec3 position, quat rotation, vec3 scale);
34void RemoveLeaf(aabbleaf_t leaf);
35
36QueryResponse FindNearestFromRay(vec3 ray_pos, vec3 ray_dir, uint32_t mask);
37
39
40void DebugDrawTree();
41
42}
43
45
46void AddLight(light_t light, vec3 pos, float dist);
47void FindLights(vec3 position, light_t* dest);
48void RemoveLight(light_t light);
49
50}
51
52#endif // TRAM_SDK_RENDER_SCENE_H
Component base class.
Definition: entitycomponent.h:16
Renders a Model.
Definition: render.h:12
value_t(* function)(valuearray_t)
Definition: lua.cpp:156
Definition: scene.cpp:41
void RemoveLeaf(aabbleaf_t leaf_id)
Removes a leaf from.
Definition: scene.cpp:101
void FindAllIntersectionsFromAABB(vec3 min, vec3 max, std::function< void(ReferenceType, EntityComponent *)> callback)
Definition: scene.cpp:167
ReferenceType
Definition: scene.h:21
@ REFERENCE_RENDERCOMPONENT
Definition: scene.h:22
QueryResponse FindNearestFromRay(vec3 ray_pos, vec3 ray_dir, uint32_t mask)
Peforms a raycast and retrieves the nearest object.
Definition: scene.cpp:113
aabbleaf_t InsertLeaf(RenderComponent *component, vec3 position, quat rotation, vec3 scale)
Inserts a RenderComponent leaf into the scene tree.
Definition: scene.cpp:61
void DebugDrawTree()
Draws the scene tree for a single frame.
Definition: scene.cpp:193
Scene light tree.
void AddLight(light_t light, vec3 pos, float dist)
Adds a light to the light tree.
Definition: scene.cpp:212
void RemoveLight(light_t light)
Removes a light from the light tree.
Definition: scene.cpp:239
void FindLights(vec3 position, light_t *dest)
Finds the 4 nearest lights to a given position.
Definition: scene.cpp:225
High-level Render system API.
Definition: gui.h:8
void * aabbleaf_t
Definition: scene.h:16
Serialization, i.e.
glm::vec3 vec3
Definition: math.h:11
glm::quat quat
Definition: math.h:12
Definition: scene.h:25
vec3 intersection
Definition: scene.h:29
ReferenceType type
Definition: scene.h:26
AABBTriangle triangle
Definition: scene.h:30
void * data
Definition: scene.h:27
Definition: model.h:13
Definition: render.h:173