From 2950bc9184bf146a72d887d96571582a5d6ff4bb Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Tue, 17 Jan 2023 00:11:22 -0800 Subject: [PATCH] First attempt to play audio --- .gitignore | 5 +- .gitmodules | 6 ++ cmake/targets/CMakeLists.txt | 2 +- lib/AudioFile | 1 + lib/CMakeLists.txt | 24 +++-- lib/openal-soft | 1 + src/dawn/poker/PokerPlayer.cpp | 2 - .../components/display/ShaderInterface.hpp | 60 +++++++++++++ .../components/VisualNovelCharacter.cpp | 2 +- .../components/VisualNovelCharacter.hpp | 2 + src/dawnglfw/CMakeLists.txt | 2 + src/dawnglfw/host/DawnGLFWHost.cpp | 90 +++++++++++++++++++ src/dawnopengl/CMakeLists.txt | 3 +- src/dawnopengl/display/Texture.cpp | 6 +- src/dawnopengl/scene/CMakeLists.txt | 7 ++ .../scene/components/CMakeLists.txt | 7 ++ .../scene/components/display/CMakeLists.txt | 7 ++ .../components/display/shader/CMakeLists.txt | 10 +++ .../shader/SimpleTexturedShaderInterface.cpp | 22 +++++ .../shader/SimpleTexturedShaderInterface.hpp | 36 ++++++++ src/dawnpokergame/CMakeLists.txt | 37 +++----- src/dawnpokergame/game/DawnGame.cpp | 5 +- .../prefabs/characters/DeathPrefab.hpp | 52 +++++++++++ .../prefabs/characters/PennyPrefab.hpp | 8 +- .../prefabs/ui/VisualNovelTextboxPrefab.hpp | 7 +- src/dawnpokergame/scenes/PixelVNScene.cpp | 2 +- src/dawnpokergame/scenes/Scene_1.hpp | 15 +++- src/dawnpokergame/scenes/Scene_10.hpp | 5 +- src/dawnpokergame/scenes/Scene_11.hpp | 5 +- src/dawnpokergame/scenes/Scene_12.hpp | 14 +-- src/dawnpokergame/scenes/Scene_13.hpp | 47 ++++++++++ src/dawnpokergame/scenes/Scene_14.hpp | 47 ++++++++++ src/dawnpokergame/scenes/Scene_15.hpp | 47 ++++++++++ src/dawnpokergame/scenes/Scene_16.hpp | 47 ++++++++++ src/dawnpokergame/scenes/Scene_17.hpp | 68 ++++++++++++++ src/dawnpokergame/scenes/Scene_18.hpp | 39 ++++++++ src/dawnpokergame/scenes/Scene_2.hpp | 5 +- src/dawnpokergame/scenes/Scene_3.hpp | 5 +- src/dawnpokergame/scenes/Scene_4.hpp | 5 +- src/dawnpokergame/scenes/Scene_5.hpp | 5 +- src/dawnpokergame/scenes/Scene_6.hpp | 5 +- src/dawnpokergame/scenes/Scene_7.hpp | 5 +- src/dawnpokergame/scenes/Scene_8.hpp | 5 +- src/dawnpokergame/scenes/Scene_9.hpp | 5 +- 44 files changed, 698 insertions(+), 82 deletions(-) create mode 160000 lib/AudioFile create mode 160000 lib/openal-soft create mode 100644 src/dawn/scene/components/display/ShaderInterface.hpp create mode 100644 src/dawnopengl/scene/CMakeLists.txt create mode 100644 src/dawnopengl/scene/components/CMakeLists.txt create mode 100644 src/dawnopengl/scene/components/display/CMakeLists.txt create mode 100644 src/dawnopengl/scene/components/display/shader/CMakeLists.txt create mode 100644 src/dawnopengl/scene/components/display/shader/SimpleTexturedShaderInterface.cpp create mode 100644 src/dawnopengl/scene/components/display/shader/SimpleTexturedShaderInterface.hpp create mode 100644 src/dawnpokergame/prefabs/characters/DeathPrefab.hpp create mode 100644 src/dawnpokergame/scenes/Scene_13.hpp create mode 100644 src/dawnpokergame/scenes/Scene_14.hpp create mode 100644 src/dawnpokergame/scenes/Scene_15.hpp create mode 100644 src/dawnpokergame/scenes/Scene_16.hpp create mode 100644 src/dawnpokergame/scenes/Scene_17.hpp create mode 100644 src/dawnpokergame/scenes/Scene_18.hpp diff --git a/.gitignore b/.gitignore index a0b7b544..ed32b460 100644 --- a/.gitignore +++ b/.gitignore @@ -77,4 +77,7 @@ yarn.lock *.log assets/borrowed -.~lock* \ No newline at end of file +.~lock* + +.vscode* +.VSCode* \ No newline at end of file diff --git a/.gitmodules b/.gitmodules index 260720f2..442ca0ff 100644 --- a/.gitmodules +++ b/.gitmodules @@ -10,3 +10,9 @@ [submodule "lib/SDL"] path = lib/SDL url = https://github.com/libsdl-org/SDL.git +[submodule "lib/openal-soft"] + path = lib/openal-soft + url = https://github.com/kcat/openal-soft +[submodule "lib/AudioFile"] + path = lib/AudioFile + url = https://github.com/adamstark/AudioFile.git diff --git a/cmake/targets/CMakeLists.txt b/cmake/targets/CMakeLists.txt index 3a55e85a..3210e1a8 100644 --- a/cmake/targets/CMakeLists.txt +++ b/cmake/targets/CMakeLists.txt @@ -6,7 +6,7 @@ # Check for build target, or default if(NOT DEFINED DAWN_BUILD_TARGET) if(WIN32) - set(DAWN_BUILD_TARGET "target-pokergame-win32-sdl2") + set(DAWN_BUILD_TARGET "target-pokergame-win32-glfw") elseif(UNIX AND NOT APPLE) set(DAWN_BUILD_TARGET "target-pokergame-linux64-glfw") endif() diff --git a/lib/AudioFile b/lib/AudioFile new file mode 160000 index 00000000..004065d0 --- /dev/null +++ b/lib/AudioFile @@ -0,0 +1 @@ +Subproject commit 004065d01e9b7338580390d4fdbfbaa46adede4e diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index bf340d7f..6d710cee 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -3,18 +3,26 @@ # This software is released under the MIT License. # https://opensource.org/licenses/MIT -# GLAD -add_subdirectory(glad) - # GLFW -add_subdirectory(glfw) +if(DAWN_TARGET_GLFW) + add_subdirectory(glad) + add_subdirectory(glfw) +endif() + +# SDL +if(DAWN_TARGET_SDL2) + add_subdirectory(glad) + add_subdirectory(SDL) +endif() # GLM add_subdirectory(glm) -# SDL -add_subdirectory(SDL) - # STB add_library(stb INTERFACE) -target_include_directories(stb INTERFACE stb) \ No newline at end of file +target_include_directories(stb INTERFACE stb) + +# OpenAL +set(LIBTYPE "STATIC") +add_subdirectory(openal-soft) +add_subdirectory(AudioFile) \ No newline at end of file diff --git a/lib/openal-soft b/lib/openal-soft new file mode 160000 index 00000000..c0cbe602 --- /dev/null +++ b/lib/openal-soft @@ -0,0 +1 @@ +Subproject commit c0cbe602ce66481a822ba16856052a47154f5cc5 diff --git a/src/dawn/poker/PokerPlayer.cpp b/src/dawn/poker/PokerPlayer.cpp index f884d09e..bb3f0956 100644 --- a/src/dawn/poker/PokerPlayer.cpp +++ b/src/dawn/poker/PokerPlayer.cpp @@ -14,9 +14,7 @@ PokerPlayer::PokerPlayer(SceneItem *item) : SceneItemComponent(item) { void PokerPlayer::onStart() { SceneItemComponent::onStart(); - this->pokerGame = this->getScene()->findComponent(); - assertNotNull(this->pokerGame); } void PokerPlayer::addChips(int32_t chips) { diff --git a/src/dawn/scene/components/display/ShaderInterface.hpp b/src/dawn/scene/components/display/ShaderInterface.hpp new file mode 100644 index 00000000..304a903f --- /dev/null +++ b/src/dawn/scene/components/display/ShaderInterface.hpp @@ -0,0 +1,60 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "scene/components/display/Material.hpp" +#include "scene/SceneItem.hpp" + +namespace Dawn { + template + class ShaderInterface : public SceneItemComponent { + public: + /** + * ShaderInterface to provide a common interface language for all shaders + * that can be referenced by scene components. + * + * @param i SceneItem this Shader interface belongs to. + */ + ShaderInterface(SceneItem *i) : SceneItemComponent(i) {} + + /** + * Sets the shader for this shader interface to use. Will also update the + * underlying material for you. + * + * @param shader Shader to use for this interface. + */ + void setShader(T *shader) { + assertNotNull(shader); + this->getMaterial()->setShader(shader); + } + + /** + * Returns the shader, assuming that the material has the correct shader. + * + * @return Pointer to the shader. + */ + T * getShader() { + auto material = dynamic_cast(this->getMaterial()->getShader()); + return material; + } + + /** + * Returns the material attached to this scene item. + * + * @return The attached material. + */ + Material * getMaterial() { + auto mat = this->item->getComponent(); + assertNotNull(mat); + return mat; + } + + std::vector getDependencies() override { + return std::vector{ + this->item->getComponent() + }; + } + }; +} \ No newline at end of file diff --git a/src/dawn/visualnovel/components/VisualNovelCharacter.cpp b/src/dawn/visualnovel/components/VisualNovelCharacter.cpp index c71a17c2..5ab7a711 100644 --- a/src/dawn/visualnovel/components/VisualNovelCharacter.cpp +++ b/src/dawn/visualnovel/components/VisualNovelCharacter.cpp @@ -10,5 +10,5 @@ using namespace Dawn; VisualNovelCharacter::VisualNovelCharacter(SceneItem *item) : SceneItemComponent(item) { - + } \ No newline at end of file diff --git a/src/dawn/visualnovel/components/VisualNovelCharacter.hpp b/src/dawn/visualnovel/components/VisualNovelCharacter.hpp index abbd8e3e..e5f7b3cd 100644 --- a/src/dawn/visualnovel/components/VisualNovelCharacter.hpp +++ b/src/dawn/visualnovel/components/VisualNovelCharacter.hpp @@ -8,6 +8,8 @@ namespace Dawn { class VisualNovelCharacter : public SceneItemComponent { + protected: + public: std::string nameKey = "character.unknown"; diff --git a/src/dawnglfw/CMakeLists.txt b/src/dawnglfw/CMakeLists.txt index 6185b931..cc096ea3 100644 --- a/src/dawnglfw/CMakeLists.txt +++ b/src/dawnglfw/CMakeLists.txt @@ -8,6 +8,8 @@ target_link_libraries(${DAWN_TARGET_NAME} PUBLIC glfw glad + OpenAL + AudioFile ) # Includes diff --git a/src/dawnglfw/host/DawnGLFWHost.cpp b/src/dawnglfw/host/DawnGLFWHost.cpp index ba56bf36..d066b276 100644 --- a/src/dawnglfw/host/DawnGLFWHost.cpp +++ b/src/dawnglfw/host/DawnGLFWHost.cpp @@ -10,6 +10,10 @@ #include "dawnopengl.hpp" #include "display/BackBufferRenderTarget.hpp" +#include +#include +#include "AudioFile.h" + using namespace Dawn; // Static declaration of the host, needed due to GLFW events being C-like @@ -22,6 +26,92 @@ DawnHost::DawnHost() { } int32_t DawnHost::init(DawnGame *game) { + AudioFile audioFile; + audioFile.load ("C:\\sample.wav"); + audioFile.printSummary(); + + ALCdevice* device = alcOpenDevice(nullptr); + if(!device) assertUnreachable(); + + ALCcontext *context; + context = alcCreateContext(device, NULL); + if(!alcMakeContextCurrent(context)) assertUnreachable(); + + ALfloat listenerOri[] = { 0.0f, 0.0f, 1.0f, 0.0f, 1.0f, 0.0f }; + alListener3f(AL_POSITION, 0, 0, 1.0f); + alListener3f(AL_VELOCITY, 0, 0, 0); + alListenerfv(AL_ORIENTATION, listenerOri); + + ALuint source; + alGenSources((ALuint)1, &source); + alSourcef(source, AL_PITCH, 1); + alSourcef(source, AL_GAIN, 1); + alSource3f(source, AL_POSITION, 0, 0, 0); + alSource3f(source, AL_VELOCITY, 0, 0, 0); + alSourcei(source, AL_LOOPING, AL_FALSE); + + ALuint buffer; + alGenBuffers((ALuint)1, &buffer); + + ALenum format; + switch(audioFile.getBitDepth()) { + case 16: + switch(audioFile.getNumChannels()) { + case 2: + format = AL_FORMAT_STEREO16; + break; + case 1: + format = AL_FORMAT_MONO16; + break; + default: + assertUnreachable(); + } + break; + + case 8: + switch(audioFile.getNumChannels()) { + case 2: + format = AL_FORMAT_STEREO8; + break; + case 1: + format = AL_FORMAT_MONO8; + break; + default: + assertUnreachable(); + } + break; + + default: + assertUnreachable(); + } + + std::vector data; + for (int i = 0; i < audioFile.getNumSamplesPerChannel(); i++) { + for(int y = 0; y < audioFile.getNumChannels(); y++) { + double sample = audioFile.samples[y][i]; + sample = mathClamp(sample, -1., 1.); + auto q = static_cast (sample * 32767.); + + uint8_t bytes[2]; + bytes[0] = (q >> 8) & 0xFF; + bytes[1] = q & 0xFF; + data.push_back(bytes[1]); + data.push_back(bytes[0]); + } + } + alBufferData(buffer, format, &data[0], data.size(), audioFile.getSampleRate()); + + ALint source_state; + alSourcei(source, AL_BUFFER, buffer); + alSourcePlay(source); + alGetSourcei(source, AL_SOURCE_STATE, &source_state); + while (source_state == AL_PLAYING) { + alGetSourcei(source, AL_SOURCE_STATE, &source_state); + } + + return DAWN_HOST_INIT_RESULT_SUCCESS; + + // Update values this->game = game; DAWN_HOST = this; diff --git a/src/dawnopengl/CMakeLists.txt b/src/dawnopengl/CMakeLists.txt index b2b03109..2e9101a4 100644 --- a/src/dawnopengl/CMakeLists.txt +++ b/src/dawnopengl/CMakeLists.txt @@ -23,4 +23,5 @@ target_include_directories(${DAWN_TARGET_NAME} ) # Subdirs -add_subdirectory(display) \ No newline at end of file +add_subdirectory(display) +add_subdirectory(scene) \ No newline at end of file diff --git a/src/dawnopengl/display/Texture.cpp b/src/dawnopengl/display/Texture.cpp index c905b445..1d936e65 100644 --- a/src/dawnopengl/display/Texture.cpp +++ b/src/dawnopengl/display/Texture.cpp @@ -36,8 +36,10 @@ void Texture::setSize(int32_t width, int32_t height) { // Setup our preferred texture params, later this will be configurable. glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT); - glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); - glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST); + // glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); + // glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); // Initialize the texture to blank glTexImage2D( diff --git a/src/dawnopengl/scene/CMakeLists.txt b/src/dawnopengl/scene/CMakeLists.txt new file mode 100644 index 00000000..f91cf661 --- /dev/null +++ b/src/dawnopengl/scene/CMakeLists.txt @@ -0,0 +1,7 @@ +# Copyright (c) 2023 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Subdirs +add_subdirectory(components) \ No newline at end of file diff --git a/src/dawnopengl/scene/components/CMakeLists.txt b/src/dawnopengl/scene/components/CMakeLists.txt new file mode 100644 index 00000000..67d71750 --- /dev/null +++ b/src/dawnopengl/scene/components/CMakeLists.txt @@ -0,0 +1,7 @@ +# Copyright (c) 2023 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Subdirs +add_subdirectory(display) \ No newline at end of file diff --git a/src/dawnopengl/scene/components/display/CMakeLists.txt b/src/dawnopengl/scene/components/display/CMakeLists.txt new file mode 100644 index 00000000..82ceb310 --- /dev/null +++ b/src/dawnopengl/scene/components/display/CMakeLists.txt @@ -0,0 +1,7 @@ +# Copyright (c) 2023 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Subdirs +add_subdirectory(shader) \ No newline at end of file diff --git a/src/dawnopengl/scene/components/display/shader/CMakeLists.txt b/src/dawnopengl/scene/components/display/shader/CMakeLists.txt new file mode 100644 index 00000000..738c9005 --- /dev/null +++ b/src/dawnopengl/scene/components/display/shader/CMakeLists.txt @@ -0,0 +1,10 @@ +# Copyright (c) 2023 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Sources +target_sources(${DAWN_TARGET_NAME} + PRIVATE + SimpleTexturedShaderInterface.cpp +) \ No newline at end of file diff --git a/src/dawnopengl/scene/components/display/shader/SimpleTexturedShaderInterface.cpp b/src/dawnopengl/scene/components/display/shader/SimpleTexturedShaderInterface.cpp new file mode 100644 index 00000000..e000ecb2 --- /dev/null +++ b/src/dawnopengl/scene/components/display/shader/SimpleTexturedShaderInterface.cpp @@ -0,0 +1,22 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "SimpleTexturedShaderInterface.hpp" + +using namespace Dawn; + +SimpleTexturedShaderInterface::SimpleTexturedShaderInterface(SceneItem *i) : + ShaderInterface(i) +{ +} + + +void SimpleTexturedShaderInterface::setTexture(Texture *texture) { + this->getMaterial()->textureValues[this->getShader()->paramTexture] = texture; +} + +void SimpleTexturedShaderInterface::setColor(struct Color color) { + this->getMaterial()->colorValues[this->getShader()->paramColor] = color; +} \ No newline at end of file diff --git a/src/dawnopengl/scene/components/display/shader/SimpleTexturedShaderInterface.hpp b/src/dawnopengl/scene/components/display/shader/SimpleTexturedShaderInterface.hpp new file mode 100644 index 00000000..3cc62532 --- /dev/null +++ b/src/dawnopengl/scene/components/display/shader/SimpleTexturedShaderInterface.hpp @@ -0,0 +1,36 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "scene/components/display/ShaderInterface.hpp" +#include "display/shader/SimpleTexturedShader.hpp" + +namespace Dawn { + class SimpleTexturedShaderInterface : + public ShaderInterface + { + public: + /** + * SimpleTexturedShader scene item component interface. + * + * @param i Scene Item this interface belongs to. + */ + SimpleTexturedShaderInterface(SceneItem *i); + + /** + * Sets the primary colour texture to be used by the shader. + * + * @param texture Texture to use. + */ + void setTexture(Texture *texture); + + /** + * Sets the multiplicitive color to be used by the shader. + * + * @param color Color to be used. + */ + void setColor(struct Color color); + }; +} \ No newline at end of file diff --git a/src/dawnpokergame/CMakeLists.txt b/src/dawnpokergame/CMakeLists.txt index 2d2fc384..c23205df 100644 --- a/src/dawnpokergame/CMakeLists.txt +++ b/src/dawnpokergame/CMakeLists.txt @@ -27,35 +27,22 @@ add_subdirectory(scenes) # Assets set(DIR_GAME_ASSETS games/pokergame) -tool_language(language_en ${DIR_GAME_ASSETS}/locale/en.csv) tool_texture(texture_test texture_test.png) -tool_texture(texture_city_day borrowed/city_day.png) -tool_texture(texture_city_night borrowed/city_night.png) -tool_texture(texture_tavern_day borrowed/tavern_day.png) -tool_texture(texture_tavern_morning borrowed/tavern_morning.png) -tool_texture(texture_tavern_night borrowed/tavern_night.png) -tool_texture(texture_village_day borrowed/village_day.png) -tool_tileset(tileset_penny texture_penny characters/penny/penny-blink.png 1 22) -tool_tileset(tileset_cards texture_cards ${DIR_GAME_ASSETS}/cards.png 14 4) -tool_truetype(truetype_ark - ark-pixel.ttf - truetype_ark - 2048 - 2048 - 60 -) + +tool_language(language_en ${DIR_GAME_ASSETS}/locale/en.csv) +tool_language(language_jp ${DIR_GAME_ASSETS}/locale/jp.csv) + +tool_tileset(tileset_death texture_death ${DIR_GAME_ASSETS}/characters/death/sheet.png 1 2) + +tool_truetype(truetype_alice ${DIR_GAME_ASSETS}/font/Alice-Regular.ttf truetype_alice 2048 2048 120) add_dependencies(${DAWN_TARGET_NAME} language_en - tileset_penny - tileset_cards + language_jp + + tileset_death + + truetype_alice texture_test - truetype_ark - texture_city_day - texture_city_night - texture_tavern_day - texture_tavern_morning - texture_tavern_night - texture_village_day ) \ No newline at end of file diff --git a/src/dawnpokergame/game/DawnGame.cpp b/src/dawnpokergame/game/DawnGame.cpp index 738f3251..2ccdba99 100644 --- a/src/dawnpokergame/game/DawnGame.cpp +++ b/src/dawnpokergame/game/DawnGame.cpp @@ -7,9 +7,6 @@ #include "scenes/SubSceneRendererScene.hpp" #include "scenes/Scene_1.hpp" -#include -#include - using namespace Dawn; DawnGame::DawnGame(DawnHost *host) : @@ -26,7 +23,7 @@ int32_t DawnGame::init() { this->localeManager.init(); this->renderManager.init(); - this->scene = new SubSceneRendererScene(this); + this->scene = new SubSceneRendererScene(this); return DAWN_GAME_INIT_RESULT_SUCCESS; } diff --git a/src/dawnpokergame/prefabs/characters/DeathPrefab.hpp b/src/dawnpokergame/prefabs/characters/DeathPrefab.hpp new file mode 100644 index 00000000..5767a8fe --- /dev/null +++ b/src/dawnpokergame/prefabs/characters/DeathPrefab.hpp @@ -0,0 +1,52 @@ +// 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/shader/SimpleTexturedShaderInterface.hpp" + +namespace Dawn { + class DeathPrefab : public SceneItemPrefab { + public: + VisualNovelCharacter *vnCharacter; + SimpleTexturedShaderInterface *shaderInterface; + + static std::vector prefabAssets(AssetManager *assMan) { + return std::vector{ + assMan->get("texture_death"), + assMan->get("tileset_death") + }; + } + + DeathPrefab(Scene *scene, sceneitemid_t id) : SceneItemPrefab(scene, id){} + + void prefabInit(AssetManager *man) override { + auto textureAsset = man->get("texture_death"); + auto tilesetAsset = man->get("tileset_death"); + + auto meshRenderer = this->addComponent(); + auto material = this->addComponent(); + auto meshHost = this->addComponent(); + auto animation = this->addComponent(); + + auto tiledSprite = this->addComponent(); + tiledSprite->setTilesetAndSize(&tilesetAsset->tileset); + tiledSprite->setTile(0); + + vnCharacter = this->addComponent(); + vnCharacter->nameKey = "character.death.name"; + + shaderInterface = this->addComponent(); + shaderInterface->setTexture(&textureAsset->texture); + + this->transform.setLocalPosition(glm::vec3(0, 0, 0)); + } + }; +} \ No newline at end of file diff --git a/src/dawnpokergame/prefabs/characters/PennyPrefab.hpp b/src/dawnpokergame/prefabs/characters/PennyPrefab.hpp index ce1fe4c3..ee9745bf 100644 --- a/src/dawnpokergame/prefabs/characters/PennyPrefab.hpp +++ b/src/dawnpokergame/prefabs/characters/PennyPrefab.hpp @@ -46,10 +46,10 @@ namespace Dawn { tiledSprite->setTile(0); this->transform.setLocalPosition(glm::vec3(0, 0, 0)); - auto anim = new TiledSpriteAnimation(tiledSprite); - anim->addSequentialKeyframes(0.1f, 0, 22); - anim->loop = true; - animation->animation = anim; + // auto anim = new TiledSpriteAnimation(tiledSprite); + // anim->addSequentialKeyframes(0.1f, 0, 22); + // anim->loop = true; + // animation->animation = anim; } }; } \ No newline at end of file diff --git a/src/dawnpokergame/prefabs/ui/VisualNovelTextboxPrefab.hpp b/src/dawnpokergame/prefabs/ui/VisualNovelTextboxPrefab.hpp index b5158035..3655a139 100644 --- a/src/dawnpokergame/prefabs/ui/VisualNovelTextboxPrefab.hpp +++ b/src/dawnpokergame/prefabs/ui/VisualNovelTextboxPrefab.hpp @@ -14,17 +14,18 @@ namespace Dawn { public: static std::vector prefabAssets(AssetManager *man) { std::vector assets; - assets.push_back(man->get("truetype_ark")); + assets.push_back(man->get("truetype_alice")); vectorAppend(&assets, UIBorderPrefab::getRequiredAssets(man)); return assets; } static void prefabApply(AssetManager *man, VisualNovelTextbox *textbox) { - auto assetFont = man->get("truetype_ark"); + auto assetFont = man->get("truetype_alice"); UIBorderPrefab::apply(&textbox->border); textbox->setFont(&assetFont->font); - textbox->setFontSize(10.0f); + textbox->setFontSize(48.0f); textbox->setLabelPadding(glm::vec2(2, 2)); + textbox->label.textColor = COLOR_WHITE; textbox->setTransform( UI_COMPONENT_ALIGN_STRETCH, UI_COMPONENT_ALIGN_END, diff --git a/src/dawnpokergame/scenes/PixelVNScene.cpp b/src/dawnpokergame/scenes/PixelVNScene.cpp index 0a97d05e..6a1d6c54 100644 --- a/src/dawnpokergame/scenes/PixelVNScene.cpp +++ b/src/dawnpokergame/scenes/PixelVNScene.cpp @@ -9,7 +9,7 @@ using namespace Dawn; PixelVNScene::PixelVNScene(DawnGame *game) : SimpleVNScene(game), - renderTarget(320, 180) + renderTarget(1280, 720) { } diff --git a/src/dawnpokergame/scenes/Scene_1.hpp b/src/dawnpokergame/scenes/Scene_1.hpp index 264ac684..e50af8ea 100644 --- a/src/dawnpokergame/scenes/Scene_1.hpp +++ b/src/dawnpokergame/scenes/Scene_1.hpp @@ -6,25 +6,32 @@ #pragma once #include "scenes/PixelVNScene.hpp" #include "scenes/Scene_2.hpp" +#include "prefabs/characters/DeathPrefab.hpp" namespace Dawn { class Scene_1 : public PixelVNScene { protected: + DeathPrefab *death; + void vnStage() override { PixelVNScene::vnStage(); + + this->death = DeathPrefab::create(this); + // this->death->vnCharacter.setOpacity(0); } void onSceneEnded() { auto scene = new SubSceneRendererScene(this->game); - auto assets = game->scene->getRequiredAssets(); - game->assetManager.queueSwap(assets, this->getRequiredAssets()); + game->assetManager.queueSwap( + scene->getRequiredAssets(), this->getRequiredAssets() + ); game->assetManager.syncLoad(); scene->stage(); this->game->sceneCutover(scene); } IVisualNovelEvent * getVNEvent() override { - auto start = new VisualNovelPauseEvent(vnManager, 0.1f); + auto start = new VisualNovelPauseEvent(vnManager, 1.0f); start ->then(new VisualNovelTextboxEvent(vnManager, nullptr, "scene.1.1")) @@ -40,7 +47,9 @@ namespace Dawn { } std::vector getRequiredAssets() override { + auto man = &this->game->assetManager; std::vector assets = PixelVNScene::getRequiredAssets(); + vectorAppend(&assets, DeathPrefab::getRequiredAssets(man)); return assets; } }; diff --git a/src/dawnpokergame/scenes/Scene_10.hpp b/src/dawnpokergame/scenes/Scene_10.hpp index 143f2143..595e79f2 100644 --- a/src/dawnpokergame/scenes/Scene_10.hpp +++ b/src/dawnpokergame/scenes/Scene_10.hpp @@ -16,8 +16,9 @@ namespace Dawn { void onSceneEnded() { auto scene = new SubSceneRendererScene(this->game); - auto assets = game->scene->getRequiredAssets(); - game->assetManager.queueSwap(assets, this->getRequiredAssets()); + game->assetManager.queueSwap( + scene->getRequiredAssets(), this->getRequiredAssets() + ); game->assetManager.syncLoad(); scene->stage(); this->game->sceneCutover(scene); diff --git a/src/dawnpokergame/scenes/Scene_11.hpp b/src/dawnpokergame/scenes/Scene_11.hpp index 0c0494a8..3565a421 100644 --- a/src/dawnpokergame/scenes/Scene_11.hpp +++ b/src/dawnpokergame/scenes/Scene_11.hpp @@ -16,8 +16,9 @@ namespace Dawn { void onSceneEnded() { auto scene = new SubSceneRendererScene(this->game); - auto assets = game->scene->getRequiredAssets(); - game->assetManager.queueSwap(assets, this->getRequiredAssets()); + game->assetManager.queueSwap( + scene->getRequiredAssets(), this->getRequiredAssets() + ); game->assetManager.syncLoad(); scene->stage(); this->game->sceneCutover(scene); diff --git a/src/dawnpokergame/scenes/Scene_12.hpp b/src/dawnpokergame/scenes/Scene_12.hpp index aa41628c..a96cbec2 100644 --- a/src/dawnpokergame/scenes/Scene_12.hpp +++ b/src/dawnpokergame/scenes/Scene_12.hpp @@ -6,6 +6,7 @@ #pragma once #include "PokerVNScene.hpp" #include "prefabs/characters/PennyPrefab.hpp" +#include "scenes/Scene_13.hpp" namespace Dawn { class Scene_12 : public PokerVNScene { @@ -25,12 +26,13 @@ namespace Dawn { } void onSceneEnded() { - // auto scene = new SubSceneRendererScene(this->game); - // auto assets = game->scene->getRequiredAssets(); - // game->assetManager.queueSwap(assets, this->getRequiredAssets()); - // game->assetManager.syncLoad(); - // scene->stage(); - // this->game->sceneCutover(scene); + auto scene = new SubSceneRendererScene(this->game); + game->assetManager.queueSwap( + scene->getRequiredAssets(), this->getRequiredAssets() + ); + game->assetManager.syncLoad(); + scene->stage(); + this->game->sceneCutover(scene); } std::vector getPokerPlayers() override { diff --git a/src/dawnpokergame/scenes/Scene_13.hpp b/src/dawnpokergame/scenes/Scene_13.hpp new file mode 100644 index 00000000..04080c80 --- /dev/null +++ b/src/dawnpokergame/scenes/Scene_13.hpp @@ -0,0 +1,47 @@ +// Copyright (c) 2022 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "scenes/PixelVNScene.hpp" +#include "scenes/Scene_14.hpp" + +namespace Dawn { + class Scene_13 : public PixelVNScene { + protected: + void vnStage() override { + PixelVNScene::vnStage(); + } + + void onSceneEnded() { + auto scene = new SubSceneRendererScene(this->game); + game->assetManager.queueSwap( + scene->getRequiredAssets(), this->getRequiredAssets() + ); + game->assetManager.syncLoad(); + scene->stage(); + this->game->sceneCutover(scene); + } + + IVisualNovelEvent * getVNEvent() override { + auto start = new VisualNovelPauseEvent(vnManager, 0.1f); + + start + ->then(new VisualNovelTextboxEvent(vnManager, nullptr, "scene.13.1")) + ->then(new VisualNovelCallbackEvent(vnManager, this, &Scene_13::onSceneEnded)) + ; + + return start; + } + + public: + Scene_13(DawnGame *game) : PixelVNScene(game) { + } + + std::vector getRequiredAssets() override { + std::vector assets = PixelVNScene::getRequiredAssets(); + return assets; + } + }; +} \ No newline at end of file diff --git a/src/dawnpokergame/scenes/Scene_14.hpp b/src/dawnpokergame/scenes/Scene_14.hpp new file mode 100644 index 00000000..01ae0952 --- /dev/null +++ b/src/dawnpokergame/scenes/Scene_14.hpp @@ -0,0 +1,47 @@ +// Copyright (c) 2022 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "scenes/PixelVNScene.hpp" +#include "scenes/Scene_15.hpp" + +namespace Dawn { + class Scene_14 : public PixelVNScene { + protected: + void vnStage() override { + PixelVNScene::vnStage(); + } + + void onSceneEnded() { + auto scene = new SubSceneRendererScene(this->game); + game->assetManager.queueSwap( + scene->getRequiredAssets(), this->getRequiredAssets() + ); + game->assetManager.syncLoad(); + scene->stage(); + this->game->sceneCutover(scene); + } + + IVisualNovelEvent * getVNEvent() override { + auto start = new VisualNovelPauseEvent(vnManager, 0.1f); + + start + ->then(new VisualNovelTextboxEvent(vnManager, nullptr, "scene.14.1")) + ->then(new VisualNovelCallbackEvent(vnManager, this, &Scene_14::onSceneEnded)) + ; + + return start; + } + + public: + Scene_14(DawnGame *game) : PixelVNScene(game) { + } + + std::vector getRequiredAssets() override { + std::vector assets = PixelVNScene::getRequiredAssets(); + return assets; + } + }; +} \ No newline at end of file diff --git a/src/dawnpokergame/scenes/Scene_15.hpp b/src/dawnpokergame/scenes/Scene_15.hpp new file mode 100644 index 00000000..cd5fa031 --- /dev/null +++ b/src/dawnpokergame/scenes/Scene_15.hpp @@ -0,0 +1,47 @@ +// Copyright (c) 2022 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "scenes/PixelVNScene.hpp" +#include "scenes/Scene_16.hpp" + +namespace Dawn { + class Scene_15 : public PixelVNScene { + protected: + void vnStage() override { + PixelVNScene::vnStage(); + } + + void onSceneEnded() { + auto scene = new SubSceneRendererScene(this->game); + game->assetManager.queueSwap( + scene->getRequiredAssets(), this->getRequiredAssets() + ); + game->assetManager.syncLoad(); + scene->stage(); + this->game->sceneCutover(scene); + } + + IVisualNovelEvent * getVNEvent() override { + auto start = new VisualNovelPauseEvent(vnManager, 0.1f); + + start + ->then(new VisualNovelTextboxEvent(vnManager, nullptr, "scene.15.1")) + ->then(new VisualNovelCallbackEvent(vnManager, this, &Scene_15::onSceneEnded)) + ; + + return start; + } + + public: + Scene_15(DawnGame *game) : PixelVNScene(game) { + } + + std::vector getRequiredAssets() override { + std::vector assets = PixelVNScene::getRequiredAssets(); + return assets; + } + }; +} \ No newline at end of file diff --git a/src/dawnpokergame/scenes/Scene_16.hpp b/src/dawnpokergame/scenes/Scene_16.hpp new file mode 100644 index 00000000..ebc044c0 --- /dev/null +++ b/src/dawnpokergame/scenes/Scene_16.hpp @@ -0,0 +1,47 @@ +// Copyright (c) 2022 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "scenes/PixelVNScene.hpp" +#include "scenes/Scene_17.hpp" + +namespace Dawn { + class Scene_16 : public PixelVNScene { + protected: + void vnStage() override { + PixelVNScene::vnStage(); + } + + void onSceneEnded() { + auto scene = new SubSceneRendererScene(this->game); + game->assetManager.queueSwap( + scene->getRequiredAssets(), this->getRequiredAssets() + ); + game->assetManager.syncLoad(); + scene->stage(); + this->game->sceneCutover(scene); + } + + IVisualNovelEvent * getVNEvent() override { + auto start = new VisualNovelPauseEvent(vnManager, 0.1f); + + start + ->then(new VisualNovelTextboxEvent(vnManager, nullptr, "scene.16.1")) + ->then(new VisualNovelCallbackEvent(vnManager, this, &Scene_16::onSceneEnded)) + ; + + return start; + } + + public: + Scene_16(DawnGame *game) : PixelVNScene(game) { + } + + std::vector getRequiredAssets() override { + std::vector assets = PixelVNScene::getRequiredAssets(); + return assets; + } + }; +} \ No newline at end of file diff --git a/src/dawnpokergame/scenes/Scene_17.hpp b/src/dawnpokergame/scenes/Scene_17.hpp new file mode 100644 index 00000000..65c2fb06 --- /dev/null +++ b/src/dawnpokergame/scenes/Scene_17.hpp @@ -0,0 +1,68 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "PokerVNScene.hpp" +#include "prefabs/characters/PennyPrefab.hpp" +#include "scenes/Scene_18.hpp" + +namespace Dawn { + class Scene_17 : public PokerVNScene { + protected: + PennyPrefab *penny; + PennyPrefab *julie; + PennyPrefab *sammy; + PennyPrefab *lucy; + + void vnStage() override { + penny = PennyPrefab::create(this); + julie = PennyPrefab::create(this); + sammy = PennyPrefab::create(this); + lucy = PennyPrefab::create(this); + + PokerVNScene::vnStage(); + } + + void onSceneEnded() { + auto scene = new SubSceneRendererScene(this->game); + game->assetManager.queueSwap( + scene->getRequiredAssets(), this->getRequiredAssets() + ); + game->assetManager.syncLoad(); + scene->stage(); + this->game->sceneCutover(scene); + } + + std::vector getPokerPlayers() override { + return std::vector{ + this->penny->getComponent(), + this->julie->getComponent(), + this->sammy->getComponent(), + this->lucy->getComponent() + }; + } + + IVisualNovelEvent * getVNEvent() override { + auto start = new VisualNovelTextboxEvent(vnManager, penny->vnCharacter, "scene.17.1"); + + start + ->then(new VisualNovelCallbackEvent(vnManager, this, &Scene_17::onSceneEnded)) + ; + + return start; + } + + public: + Scene_17(DawnGame *game) : PokerVNScene(game) {} + + std::vector getRequiredAssets() override { + auto assMan = &this->game->assetManager; + std::vector assets; + vectorAppend(&assets, PokerVNScene::getRequiredAssets()); + vectorAppend(&assets, PennyPrefab::getRequiredAssets(assMan)); + return assets; + } + }; +} \ No newline at end of file diff --git a/src/dawnpokergame/scenes/Scene_18.hpp b/src/dawnpokergame/scenes/Scene_18.hpp new file mode 100644 index 00000000..17c41e2c --- /dev/null +++ b/src/dawnpokergame/scenes/Scene_18.hpp @@ -0,0 +1,39 @@ +// Copyright (c) 2022 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "scenes/PixelVNScene.hpp" + +namespace Dawn { + class Scene_18 : public PixelVNScene { + protected: + void vnStage() override { + PixelVNScene::vnStage(); + } + + void onSceneEnded() { + } + + IVisualNovelEvent * getVNEvent() override { + auto start = new VisualNovelPauseEvent(vnManager, 0.1f); + + start + ->then(new VisualNovelTextboxEvent(vnManager, nullptr, "scene.18.1")) + ->then(new VisualNovelCallbackEvent(vnManager, this, &Scene_18::onSceneEnded)) + ; + + return start; + } + + public: + Scene_18(DawnGame *game) : PixelVNScene(game) { + } + + std::vector getRequiredAssets() override { + std::vector assets = PixelVNScene::getRequiredAssets(); + return assets; + } + }; +} \ No newline at end of file diff --git a/src/dawnpokergame/scenes/Scene_2.hpp b/src/dawnpokergame/scenes/Scene_2.hpp index 292ca808..e00c8c47 100644 --- a/src/dawnpokergame/scenes/Scene_2.hpp +++ b/src/dawnpokergame/scenes/Scene_2.hpp @@ -16,8 +16,9 @@ namespace Dawn { void onSceneEnded() { auto scene = new SubSceneRendererScene(this->game); - auto assets = game->scene->getRequiredAssets(); - game->assetManager.queueSwap(assets, this->getRequiredAssets()); + game->assetManager.queueSwap( + scene->getRequiredAssets(), this->getRequiredAssets() + ); game->assetManager.syncLoad(); scene->stage(); this->game->sceneCutover(scene); diff --git a/src/dawnpokergame/scenes/Scene_3.hpp b/src/dawnpokergame/scenes/Scene_3.hpp index 8af934c4..f5131e69 100644 --- a/src/dawnpokergame/scenes/Scene_3.hpp +++ b/src/dawnpokergame/scenes/Scene_3.hpp @@ -16,8 +16,9 @@ namespace Dawn { void onSceneEnded() { auto scene = new SubSceneRendererScene(this->game); - auto assets = game->scene->getRequiredAssets(); - game->assetManager.queueSwap(assets, this->getRequiredAssets()); + game->assetManager.queueSwap( + scene->getRequiredAssets(), this->getRequiredAssets() + ); game->assetManager.syncLoad(); scene->stage(); this->game->sceneCutover(scene); diff --git a/src/dawnpokergame/scenes/Scene_4.hpp b/src/dawnpokergame/scenes/Scene_4.hpp index 8a21dc65..bb2e09c6 100644 --- a/src/dawnpokergame/scenes/Scene_4.hpp +++ b/src/dawnpokergame/scenes/Scene_4.hpp @@ -27,8 +27,9 @@ namespace Dawn { void onSceneEnded() { auto scene = new SubSceneRendererScene(this->game); - auto assets = game->scene->getRequiredAssets(); - game->assetManager.queueSwap(assets, this->getRequiredAssets()); + game->assetManager.queueSwap( + scene->getRequiredAssets(), this->getRequiredAssets() + ); game->assetManager.syncLoad(); scene->stage(); this->game->sceneCutover(scene); diff --git a/src/dawnpokergame/scenes/Scene_5.hpp b/src/dawnpokergame/scenes/Scene_5.hpp index 3cba6555..1a905d7b 100644 --- a/src/dawnpokergame/scenes/Scene_5.hpp +++ b/src/dawnpokergame/scenes/Scene_5.hpp @@ -16,8 +16,9 @@ namespace Dawn { void onSceneEnded() { auto scene = new SubSceneRendererScene(this->game); - auto assets = game->scene->getRequiredAssets(); - game->assetManager.queueSwap(assets, this->getRequiredAssets()); + game->assetManager.queueSwap( + scene->getRequiredAssets(), this->getRequiredAssets() + ); game->assetManager.syncLoad(); scene->stage(); this->game->sceneCutover(scene); diff --git a/src/dawnpokergame/scenes/Scene_6.hpp b/src/dawnpokergame/scenes/Scene_6.hpp index dca05c74..d2d52b3e 100644 --- a/src/dawnpokergame/scenes/Scene_6.hpp +++ b/src/dawnpokergame/scenes/Scene_6.hpp @@ -16,8 +16,9 @@ namespace Dawn { void onSceneEnded() { auto scene = new SubSceneRendererScene(this->game); - auto assets = game->scene->getRequiredAssets(); - game->assetManager.queueSwap(assets, this->getRequiredAssets()); + game->assetManager.queueSwap( + scene->getRequiredAssets(), this->getRequiredAssets() + ); game->assetManager.syncLoad(); scene->stage(); this->game->sceneCutover(scene); diff --git a/src/dawnpokergame/scenes/Scene_7.hpp b/src/dawnpokergame/scenes/Scene_7.hpp index 8feaf23a..66dda540 100644 --- a/src/dawnpokergame/scenes/Scene_7.hpp +++ b/src/dawnpokergame/scenes/Scene_7.hpp @@ -16,8 +16,9 @@ namespace Dawn { void onSceneEnded() { auto scene = new SubSceneRendererScene(this->game); - auto assets = game->scene->getRequiredAssets(); - game->assetManager.queueSwap(assets, this->getRequiredAssets()); + game->assetManager.queueSwap( + scene->getRequiredAssets(), this->getRequiredAssets() + ); game->assetManager.syncLoad(); scene->stage(); this->game->sceneCutover(scene); diff --git a/src/dawnpokergame/scenes/Scene_8.hpp b/src/dawnpokergame/scenes/Scene_8.hpp index 546cd796..98d5bd43 100644 --- a/src/dawnpokergame/scenes/Scene_8.hpp +++ b/src/dawnpokergame/scenes/Scene_8.hpp @@ -27,8 +27,9 @@ namespace Dawn { void onSceneEnded() { auto scene = new SubSceneRendererScene(this->game); - auto assets = game->scene->getRequiredAssets(); - game->assetManager.queueSwap(assets, this->getRequiredAssets()); + game->assetManager.queueSwap( + scene->getRequiredAssets(), this->getRequiredAssets() + ); game->assetManager.syncLoad(); scene->stage(); this->game->sceneCutover(scene); diff --git a/src/dawnpokergame/scenes/Scene_9.hpp b/src/dawnpokergame/scenes/Scene_9.hpp index 58f5c026..c25ddd74 100644 --- a/src/dawnpokergame/scenes/Scene_9.hpp +++ b/src/dawnpokergame/scenes/Scene_9.hpp @@ -16,8 +16,9 @@ namespace Dawn { void onSceneEnded() { auto scene = new SubSceneRendererScene(this->game); - auto assets = game->scene->getRequiredAssets(); - game->assetManager.queueSwap(assets, this->getRequiredAssets()); + game->assetManager.queueSwap( + scene->getRequiredAssets(), this->getRequiredAssets() + ); game->assetManager.syncLoad(); scene->stage(); this->game->sceneCutover(scene);