Fixed more *nix compile issues
This commit is contained in:
@ -26,6 +26,6 @@ target_include_directories(stb INTERFACE stb)
|
|||||||
set(LIBTYPE "STATIC")
|
set(LIBTYPE "STATIC")
|
||||||
add_subdirectory(openal-soft)
|
add_subdirectory(openal-soft)
|
||||||
|
|
||||||
set(BUILD_TESTS OFF CACHE BOOL "Build tests")
|
set(BUILD_TESTS OFF CACHE BOOL "Build tests" FORCE)
|
||||||
set(BUILD_EXAMPLES OFF CACHE BOOL "Build examples")
|
set(BUILD_EXAMPLES OFF CACHE BOOL "Build examples" FORCE)
|
||||||
add_subdirectory(AudioFile)
|
add_subdirectory(AudioFile)
|
@ -23,7 +23,7 @@ namespace Dawn {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void onValueModified() override {
|
void onValueModified() override {
|
||||||
SimpleAnimation::onValueModified();
|
SimpleAnimation<T>::onValueModified();
|
||||||
this->invoke();
|
this->invoke();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -32,7 +32,7 @@ namespace Dawn {
|
|||||||
* Construct a new Simple Function Animation object
|
* Construct a new Simple Function Animation object
|
||||||
*/
|
*/
|
||||||
SimpleCallbackAnimation() :
|
SimpleCallbackAnimation() :
|
||||||
SimpleAnimation(&value)
|
SimpleAnimation<T>(&value)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include "Prefab.hpp"
|
#include "Prefab.hpp"
|
||||||
#include "scene/SceneItem.hpp"
|
#include "scene/SceneItem.hpp"
|
||||||
|
#include "game/DawnGame.hpp"
|
||||||
|
|
||||||
namespace Dawn {
|
namespace Dawn {
|
||||||
template<class T>
|
template<class T>
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
#include "visualnovel/events/VisualNovelTextboxEvent.hpp"
|
#include "visualnovel/events/VisualNovelTextboxEvent.hpp"
|
||||||
#include "visualnovel/events/timing/VisualNovelPauseEvent.hpp"
|
#include "visualnovel/events/timing/VisualNovelPauseEvent.hpp"
|
||||||
#include "visualnovel/events/VisualNovelFadeEvent.hpp"
|
#include "visualnovel/events/VisualNovelFadeEvent.hpp"
|
||||||
#include "visualnovel/events/VisualNovelCAllbackEvent.hpp"
|
#include "visualnovel/events/VisualNovelCallbackEvent.hpp"
|
||||||
#include "visualnovel/events/VisualNovelChangeSimpleBackgroundEvent.hpp"
|
#include "visualnovel/events/VisualNovelChangeSimpleBackgroundEvent.hpp"
|
||||||
|
|
||||||
namespace Dawn {
|
namespace Dawn {
|
||||||
|
@ -47,7 +47,7 @@ namespace Dawn {
|
|||||||
TiledSprite *tiledSprite;
|
TiledSprite *tiledSprite;
|
||||||
AudioSource *audioSource;
|
AudioSource *audioSource;
|
||||||
|
|
||||||
CharacterPrefab(Scene *s, sceneitemid_t i) : SceneItemPrefab(s, i) {}
|
CharacterPrefab(Scene *s, sceneitemid_t i) : SceneItemPrefab<T>(s, i) {}
|
||||||
|
|
||||||
void prefabInit(AssetManager *man) override {
|
void prefabInit(AssetManager *man) override {
|
||||||
characterTexture = man->get<TextureAsset>(T::getCharacterTexture());
|
characterTexture = man->get<TextureAsset>(T::getCharacterTexture());
|
||||||
@ -57,24 +57,24 @@ namespace Dawn {
|
|||||||
auto emotion = this->defineAndGetInitialEmotion(man);
|
auto emotion = this->defineAndGetInitialEmotion(man);
|
||||||
|
|
||||||
// Components
|
// Components
|
||||||
meshRenderer = this->addComponent<MeshRenderer>();
|
meshRenderer = SceneItem::addComponent<MeshRenderer>();
|
||||||
meshHost = this->addComponent<MeshHost>();
|
meshHost = SceneItem::addComponent<MeshHost>();
|
||||||
|
|
||||||
material = this->addComponent<SimpleTexturedMaterial>();
|
material = SceneItem::addComponent<SimpleTexturedMaterial>();
|
||||||
material->texture = &characterTexture->texture;
|
material->texture = &characterTexture->texture;
|
||||||
|
|
||||||
vnCharacter = this->addComponent<VisualNovelCharacter>();
|
vnCharacter = SceneItem::addComponent<VisualNovelCharacter>();
|
||||||
vnCharacter->nameKey = T::getLanguagePrefix() + ".name";
|
vnCharacter->nameKey = T::getLanguagePrefix() + ".name";
|
||||||
|
|
||||||
animation = this->addComponent<AnimationController>();
|
animation = SceneItem::addComponent<AnimationController>();
|
||||||
|
|
||||||
tiledSprite = this->addComponent<TiledSprite>();
|
tiledSprite = SceneItem::addComponent<TiledSprite>();
|
||||||
tiledSprite->setTileset(&characterTileset->tileset);
|
tiledSprite->setTileset(&characterTileset->tileset);
|
||||||
float_t ratio = characterTileset->tileset.getTileWidth() / characterTileset->tileset.getTileHeight();
|
float_t ratio = characterTileset->tileset.getTileWidth() / characterTileset->tileset.getTileHeight();
|
||||||
tiledSprite->setSize(glm::vec2(ratio, 1.0f));
|
tiledSprite->setSize(glm::vec2(ratio, 1.0f));
|
||||||
tiledSprite->setTile(emotion.tile);
|
tiledSprite->setTile(emotion.tile);
|
||||||
|
|
||||||
audioSource = this->addComponent<AudioSource>();
|
audioSource = SceneItem::addComponent<AudioSource>();
|
||||||
|
|
||||||
this->transform.setLocalPosition(glm::vec3(0, 0, 0));
|
this->transform.setLocalPosition(glm::vec3(0, 0, 0));
|
||||||
}
|
}
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
#include "scenes/Scene_2.hpp"
|
#include "scenes/Scene_2.hpp"
|
||||||
#include "prefabs/characters/DeathPrefab.hpp"
|
#include "prefabs/characters/DeathPrefab.hpp"
|
||||||
#include "visualnovel/events/characters/VisualNovelFadeCharacterEvent.hpp"
|
#include "visualnovel/events/characters/VisualNovelFadeCharacterEvent.hpp"
|
||||||
#include "visualnovel/events/characters/VIsualNovelTransformItemEvent.hpp"
|
#include "visualnovel/events/characters/VisualNovelTransformItemEvent.hpp"
|
||||||
#include "visualnovel/events/timing/VisualNovelBatchEvent.hpp"
|
#include "visualnovel/events/timing/VisualNovelBatchEvent.hpp"
|
||||||
|
|
||||||
namespace Dawn {
|
namespace Dawn {
|
||||||
|
Reference in New Issue
Block a user