// Copyright (c) 2023 Dominic Masters // // This software is released under the MIT License. // https://opensource.org/licenses/MIT #pragma once #include "prefab/SceneItemPrefab.hpp" #include "scene/Scene.hpp" #include "scene/components/display/MeshRenderer.hpp" #include "scene/components/display/AnimationController.hpp" #include "scene/components/display/MeshHost.hpp" #include "scene/components/display/material/SimpleTexturedMaterial.hpp" #include "scene/components/audio/AudioSource.hpp" #include "visualnovel/components/VisualNovelCharacter.hpp" namespace Dawn { template class CharacterPrefab : public SceneItemPrefab { protected: /** * Character Prefab will request you to initialize your characters' * emotions here, including loading assets, * * @return struct VisualNovelCharacterEmotion */ virtual struct VisualNovelCharacterEmotion defineAndGetInitialEmotion( AssetManager *assMan ) = 0; public: static std::vector prefabAssets(AssetManager *assMan) { return std::vector{ assMan->get(O::getCharacterTexture()), assMan->get(O::getCharacterTileset()) }; } // Instance VisualNovelCharacter *vnCharacter; AnimationController *animation; TextureAsset *characterTexture; TilesetAsset *characterTileset; MeshRenderer *meshRenderer; MeshHost *meshHost; SimpleTexturedMaterial *material; TiledSprite *tiledSprite; AudioSource *audioSource; CharacterPrefab(Scene *s, sceneitemid_t i) : SceneItemPrefab(s, i) {} void prefabInit(AssetManager *man) override { characterTexture = man->get(O::getCharacterTexture()); characterTileset = man->get(O::getCharacterTileset()); // Emotions auto emotion = this->defineAndGetInitialEmotion(man); // Components meshRenderer = this->template addComponent(); meshHost = this->template addComponent(); material = this->template addComponent(); material->texture = &characterTexture->texture; vnCharacter = this->template addComponent(); vnCharacter->nameKey = O::getLanguagePrefix() + ".name"; animation = this->template addComponent(); tiledSprite = this->template addComponent(); tiledSprite->setTileset(&characterTileset->tileset); float_t ratio = characterTileset->tileset.getTileWidth() / characterTileset->tileset.getTileHeight(); tiledSprite->setSize(glm::vec2(ratio, 1.0f)); tiledSprite->setTile(emotion.tile); audioSource = this->template addComponent(); this->transform.setLocalPosition(glm::vec3(0, 0, 0)); } }; }