// 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 "asset/AssetManager.hpp" #include "poker/PokerPlayer.hpp" #include "scene/components/Components.hpp" #include "visualnovel/components/VisualNovelCharacter.hpp" #include "display/animation/TiledSpriteAnimation.hpp" #include "scene/components/display/material/SimpleTexturedMaterial.hpp" namespace Dawn { class PennyPrefab : public SceneItemPrefab { public: VisualNovelCharacter *vnCharacter; PokerPlayer *pokerPlayer; SimpleTexturedMaterial *material; struct VisualNovelCharacterEmotion emotionHappy; struct VisualNovelCharacterEmotion emotionSurprised; struct VisualNovelCharacterEmotion emotionConcerned; static std::vector prefabAssets(AssetManager *assMan) { return std::vector{ assMan->get("texture_penny"), assMan->get("tileset_penny") }; } PennyPrefab(Scene *scene, sceneitemid_t id) : SceneItemPrefab(scene, id){} void prefabInit(AssetManager *man) override { // Assets auto textureAsset = man->get("texture_penny"); auto tilesetAsset = man->get("tileset_penny"); // Emotions this->emotionHappy.tile = 0; this->emotionSurprised.tile = 1; this->emotionConcerned.tile = 2; // Components auto meshRenderer = this->addComponent(); auto meshHost = this->addComponent(); material = this->addComponent(); material->texture = &textureAsset->texture; auto animation = this->addComponent(); pokerPlayer = this->addComponent(); vnCharacter = this->addComponent(); vnCharacter->nameKey = "character.penny.name"; auto tiledSprite = this->addComponent(); tiledSprite->setTilesetAndSize(&tilesetAsset->tileset); tiledSprite->setTile(0); this->transform.setLocalPosition(glm::vec3(0, 0, 0)); } }; }