// Copyright (c) 2023 Dominic Masters // // This software is released under the MIT License. // https://opensource.org/licenses/MIT #include "SimpleTexturedMaterial.hpp" #include "util/JSON.hpp" #include "asset/loader/TextureLoader.hpp" using namespace Dawn; void SimpleTexturedMaterial::load(const SceneComponentLoadContext &ctx) { if(ctx.data.contains("color")) { this->setColor(JSON::color(ctx.data["color"])); } if(ctx.data.contains("texture")) { auto asset = ctx.getAsset( ctx.data["texture"].get() ); this->setTexture(asset->getTexture()); } } struct Color SimpleTexturedMaterial::getColor() { return this->data.color; } std::shared_ptr SimpleTexturedMaterial::getTexture() { return this->texture; } void SimpleTexturedMaterial::setTexture(std::shared_ptr texture) { this->texture = texture; } void SimpleTexturedMaterial::setColor(const struct Color color) { this->data.color = color; } std::vector> SimpleTexturedMaterial::getPasses( struct RenderPassContext &ctx ) { this->data.model = this->getItem()->getWorldTransform(); this->data.projection = ctx.camera->getProjection(); this->data.view = ctx.camera->getItem()->getWorldTransform(); auto textures = std::unordered_map< shadertexturebinding_t, std::shared_ptr >(); if(this->texture) { this->data.hasTexture = true; this->data.texture = 0; textures[this->data.texture] = this->texture; } else { this->data.hasTexture = false; } return { createRenderPass( *this, data, textures ) }; }