-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenderer.hpp
36 lines (26 loc) · 1.01 KB
/
renderer.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#pragma once
#include "game/component.hpp"
#include "graphics/material.hpp"
#include "graphics/mesh.hpp"
#include "interpolatedTransform.hpp"
struct CustomRenderProperties {
std::unordered_map<std::string, float> floatProperties;
std::unordered_map<std::string, glm::vec3> vec3Properties;
};
class Renderer final : public Component {
public:
std::shared_ptr<Mesh> mesh;
std::shared_ptr<Material> material;
std::shared_ptr<InterpolatedTransform> interpolatedTransform;
Renderer(const std::shared_ptr<Mesh> &mesh, const std::shared_ptr<Material> &material, float offset = 0.0f,
glm::vec4 *offsetOrientation = nullptr);
void initialize() override;
void update(float alpha) override;
void applyCustomProperties();
void setCustomFloatProperty(const std::string &name, float value);
void setCustomVec3Property(const std::string &name, const glm::vec3 &value);
private:
float offset;
glm::vec4 *offsetOrientation;
CustomRenderProperties customProperties;
};