Tramway SDK v0.1.1
drawlist.h
Go to the documentation of this file.
1// Tramway Drifting and Dungeon Exploration Simulator SDK Runtime
2
3#ifndef TRAM_SDK_RENDER_OPENGL_DRAWLIST_H
4#define TRAM_SDK_RENDER_OPENGL_DRAWLIST_H
5
6#include <render/render.h>
7#include <render/renderer.h>
8
10
11namespace tram::Render::API {
12
14 uint32_t flags = 0;
15
16 Pose* pose = nullptr;
17
18 mat4 matrix = mat4(1.0f);
19
20 uint32_t lights[4] = {0};
21
22 uint32_t layer = 0;
23 uint32_t lightmap = 0;
24 uint32_t environmentmap = 0;
25 uint32_t vao = 0;
26 uint32_t eboLen = 0; // in primitive count
27 uint32_t eboOff = 0; // in primitive count
28 uint32_t shader = 0;
29 uint32_t texCount = 0;
33
34 vec3 aabb_min = {0.0f, 0.0f, 0.0f};
35 vec3 aabb_max = {0.0f, 0.0f, 0.0f};
36
37 float fade_near = 0.0f;
38 float fade_far = INFINITY;
39
41
43 for (int i = 0; i < 15; i++) {
44 materials[i] = nullptr;
45 colors[i] = {1.0f, 1.0f, 1.0f, 1.0f};
46 texture_transforms[i] = {0.0f, 0.0f, 0.0f, 0.0f};
47 }
48
49 harmonic = {{0, 0, 0}, {0, 0, 0}, {0, 0, 0}, {0, 0, 0}, {0, 0, 0}, {0, 0, 0}, {0, 0, 0}, {0, 0, 0}, {0, 0, 0}};
50 }
51
53 uint64_t CalcSortKey (const vec3& cameraPosition) {
54 vec3 location = matrix * vec4(0.0f, 0.0f, 0.0f, 1.0f);
55 uint64_t sortkey = 0;
56 sortkey = flags & FLAG_TRANSPARENT ? 1 : 0;
57 sortkey = sortkey << 60;
58 sortkey = sortkey | (((uint64_t)layer) << 61); // 3 bits for the layer number
59 sortkey = sortkey | (((uint64_t)shader) << 48); // 12 bits for the shader
60 sortkey = sortkey | (((uint64_t)vao) << 32); // 16 bits or the vertex array number
61 // TODO: reverse the distance if FLAG_REVERSE_SORT is set
62 // also i think that the bitmask for the distance thing is incorrect
63 sortkey = sortkey | (((uint64_t)(glm::distance(cameraPosition, location) * 3000000.0f)) & 0x00000000FFFFFFFF); // 32 bits for the distance
64 return sortkey;
65 }
66};
67
68}
69
70#endif // TRAM_SDK_RENDER_OPENGL_DRAWLIST_H
Rendering backend API.
@ FLAG_TRANSPARENT
Definition: renderer.h:17
glm::vec4 vec4
Definition: math.h:15
glm::vec3 vec3
Definition: math.h:11
glm::mat4 mat4
Definition: math.h:14
Definition: drawlist.h:13
uint32_t texCount
Definition: drawlist.h:29
vec3 aabb_min
Definition: drawlist.h:34
uint32_t eboLen
Definition: drawlist.h:26
uint64_t CalcSortKey(const vec3 &cameraPosition)
Assembles a key for sorting.
Definition: drawlist.h:53
uint32_t lights[4]
Definition: drawlist.h:20
uint32_t flags
Definition: drawlist.h:14
vec3 aabb_max
Definition: drawlist.h:35
mat4 matrix
Definition: drawlist.h:18
uint32_t lightmap
Definition: drawlist.h:23
vec4 texture_transforms[15]
Definition: drawlist.h:31
sphericalharmonic_t harmonic
Definition: drawlist.h:40
float fade_near
Definition: drawlist.h:37
uint32_t eboOff
Definition: drawlist.h:27
uint32_t layer
Definition: drawlist.h:22
uint32_t environmentmap
Definition: drawlist.h:24
GLMaterial * materials[15]
Definition: drawlist.h:32
vec4 colors[15]
Definition: drawlist.h:30
uint32_t vao
Definition: drawlist.h:25
Pose * pose
Definition: drawlist.h:16
uint32_t shader
Definition: drawlist.h:28
float fade_far
Definition: drawlist.h:38
GLDrawListEntry()
Definition: drawlist.h:42
Definition: material.h:11
Definition: animation.h:35
Definition: render.h:92