OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
geometry_port.hpp
1#pragma once
2#include <ossia/detail/config.hpp>
3
4#include <ossia/detail/small_vector.hpp>
5
6#include <memory>
7#include <string>
8
9namespace ossia
10{
11struct geometry
12{
13 struct buffer
14 {
15 std::shared_ptr<void> data{};
16 int64_t size{};
17 bool dirty{};
18 };
19
20 struct binding
21 {
22 uint32_t stride{};
23 enum
24 {
25 per_vertex,
26 per_instance
27 } classification{};
28 int step_rate{};
29 };
30
31 struct attribute
32 {
33 int binding = 0;
34 int location = 0;
35
36 enum
37 {
38 fp4,
39 fp3,
40 fp2,
41 fp1,
42 unsigned4,
43 unsigned2,
44 unsigned1
45 } format
46 = fp4;
47
48 uint32_t offset = 0;
49 };
50
51 struct input
52 {
53 int buffer{};
54 int64_t offset{};
55 };
56
57 ossia::small_vector<buffer, 2> buffers;
58 ossia::small_vector<binding, 2> bindings;
59 ossia::small_vector<attribute, 2> attributes;
60 ossia::small_vector<input, 2> input;
61
62 int vertices{}, indices{};
63 enum
64 {
65 triangles,
66 triangle_strip,
67 triangle_fan,
68 lines,
69 line_strip,
70 points
71 } topology;
72 enum
73 {
74 none,
75 front,
76 back
77 } cull_mode;
78 enum
79 {
80 counter_clockwise,
81 clockwise
82 } front_face;
83
84 struct
85 {
86 int buffer{-1};
87 int64_t offset{};
88 enum
89 {
90 uint16,
91 uint32
92 } format{};
93 } index;
94};
95
96struct mesh_list
97{
98 std::vector<geometry> meshes;
99 int64_t dirty_index{};
100};
101using mesh_list_ptr = std::shared_ptr<mesh_list>;
102struct transform3d
103{
104 float matrix[16]{
105 1., 0., 0., 0., 0., 1., 0., 0., 0., 0., 1., 0., 0., 0., 0., 1.,
106 };
107};
108
109struct geometry_filter
110{
111 int64_t node_id{}; // which node is responsible for initalizing the UBO
112 int64_t filter_id{}; // unique index for this filter instance
126 std::string shader;
127 int64_t dirty_index{};
128};
129
130struct geometry_filter_list
131{
132 std::vector<geometry_filter> filters;
133 int64_t dirty_index{};
134};
135using geometry_filter_list_ptr = std::shared_ptr<geometry_filter_list>;
136
137struct geometry_spec
138{
139 mesh_list_ptr meshes;
140 geometry_filter_list_ptr filters;
141
142 operator bool() const noexcept { return meshes && filters; }
143 bool operator==(const geometry_spec&) const noexcept = default;
144 bool operator<(const geometry_spec& rhs) const noexcept
145 {
146 return (meshes < rhs.meshes) || (meshes == rhs.meshes && filters < rhs.filters);
147 }
148};
149
150struct OSSIA_EXPORT geometry_port
151{
152 static const constexpr int which = 4;
153 enum dirt_flags
154 {
155 dirty_transform = 0x1,
156 dirty_meshes = 0x2
157 };
158
159 void clear();
160
161 geometry_spec geometry;
162 transform3d transform;
163 uint8_t flags{};
164};
165
166struct geometry_delay_line
167{
168 std::vector<geometry_spec> geometries;
169};
170
171}
Definition git_info.h:7