6 #include "../core/log.h" 9 Material::Material() { _alive =
true; }
11 Material::Material(
float r,
float g,
float b,
float a) {
19 Material::~Material() { _alive =
false; }
21 MaterialOverride::MaterialOverride() { _alive =
true; }
23 MaterialOverride::~MaterialOverride() { _alive =
false; }
25 static void syncTexture(std::shared_ptr<Texture> &texture,
26 const std::string &url, TextureType type) {
28 if (!texture || texture->url() != url) {
29 texture = Texture::manager().load(url, type);
39 std::vector<uint32_t> _free;
43 std::lock_guard<std::mutex> lock(_mutex);
47 auto id = _free.back();
52 void release(uint32_t
id) {
53 std::lock_guard<std::mutex> lock(_mutex);
56 static std::shared_ptr<MaterialIDFactory> instance() {
57 static auto instance = std::make_shared<MaterialIDFactory>();
62 MaterialRenderer::MaterialRenderer(
63 std::shared_ptr<const Material> material,
64 std::shared_ptr<const MaterialOverride> material_override) {
66 throw std::invalid_argument(
"material");
69 _material_override = material_override;
70 _block.id = MaterialIDFactory::instance()->allocate();
73 MaterialRenderer::~MaterialRenderer() {
74 MaterialIDFactory::instance()->release(_block.id);
77 void MaterialRenderer::updateSync(
const Material &material) {
78 if (!material._alive) {
79 throw std::runtime_error(
"material already destroyed");
81 _block.color = material.color().toLinearVector4f();
82 _block.color.w() = (float)material.opacity();
83 _block.roughness = (float)material.roughness();
84 _block.metallic = (float)material.metallic();
85 _color_texture_url = material.texture();
86 _normal_texture_url = material.normals();
87 if (!material._alive) {
88 throw std::runtime_error(
"material already destroyed");
92 void MaterialRenderer::updateSync(
const MaterialOverride &material_override) {
93 if (!material_override._alive) {
94 throw std::runtime_error(
"material override already destroyed");
96 if (material_override.color()) {
97 _block.color = material_override.material()->color().toLinearVector4f();
99 if (material_override.parameters()) {
100 _block.roughness = (float)material_override.material()->roughness();
101 _block.metallic = (float)material_override.material()->metallic();
103 _block.color.w() = (float)material_override.material()->opacity();
104 if (material_override.texture()) {
105 _color_texture_url = material_override.material()->texture();
107 if (material_override.normals()) {
108 _normal_texture_url = material_override.material()->normals();
110 if (!material_override._alive) {
111 throw std::runtime_error(
"material override already destroyed");
116 syncTexture(_color_texture, _color_texture_url, TextureType::Color);
117 syncTexture(_normal_texture, _normal_texture_url, TextureType::Normal);
118 _block.color_texture = _color_texture ? _color_texture->update() : 0;
119 _block.normal_texture = _normal_texture ? _normal_texture->update() : 0;
120 _block.transparent = ((_block.color.w() < 1.0) ||
121 (_color_texture && _color_texture->transparent()));
126 updateSync(*_material);
127 if (_material_override) {
128 updateSync(*_material_override);