Fixed XML Parser not parsing empty XML sheets 100% correctly.
This commit is contained in:
@ -24,7 +24,7 @@ tool_texture(texture_eth ${LIMINAL_ASSETS_DIR}/textures/eth.png)
|
|||||||
tool_texture(texture_border ${LIMINAL_ASSETS_DIR}/textures/texture_test.png)
|
tool_texture(texture_border ${LIMINAL_ASSETS_DIR}/textures/texture_test.png)
|
||||||
|
|
||||||
tool_scene(${LIMINAL_ASSETS_DIR}/scenes/SceneBase.xml)
|
tool_scene(${LIMINAL_ASSETS_DIR}/scenes/SceneBase.xml)
|
||||||
tool_vnscene(${LIMINAL_ASSETS_DIR}/scenes/VNSceneTest.xml)
|
tool_vnscene(${LIMINAL_ASSETS_DIR}/scenes/Scene1Prologue.xml)
|
||||||
|
|
||||||
tool_prefab(${LIMINAL_ASSETS_DIR}/prefabs/EthPrefab.xml)
|
tool_prefab(${LIMINAL_ASSETS_DIR}/prefabs/EthPrefab.xml)
|
||||||
tool_prefab(${LIMINAL_ASSETS_DIR}/prefabs/VNTextbox.xml)
|
tool_prefab(${LIMINAL_ASSETS_DIR}/prefabs/VNTextbox.xml)
|
@ -4,12 +4,10 @@
|
|||||||
// https://opensource.org/licenses/MIT
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
#include "game/DawnGame.hpp"
|
#include "game/DawnGame.hpp"
|
||||||
#include "scenes/HelloWorldScene.hpp"
|
#include "vnscenes/Scene1Prologue.hpp"
|
||||||
#include "vnscenes/VNSceneTest.hpp"
|
|
||||||
|
|
||||||
using namespace Dawn;
|
using namespace Dawn;
|
||||||
|
|
||||||
Scene * Dawn::dawnGameGetInitialScene(DawnGame *game) {
|
Scene * Dawn::dawnGameGetInitialScene(DawnGame *game) {
|
||||||
// return new HelloWorldScene(game);
|
return new Scene1Prologue(game);
|
||||||
return new VNSceneTest(game);
|
|
||||||
}
|
}
|
@ -1,82 +0,0 @@
|
|||||||
// Copyright (c) 2023 Dominic Masters
|
|
||||||
//
|
|
||||||
// This software is released under the MIT License.
|
|
||||||
// https://opensource.org/licenses/MIT
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
#include "scene/Scene.hpp"
|
|
||||||
#include "scene/components/display/CameraTexture.hpp"
|
|
||||||
#include "prefabs/SimpleSpinningCubePrefab.hpp"
|
|
||||||
#include "prefabs/VNTextbox.hpp"
|
|
||||||
#include "display/TextureRenderTarget.hpp"
|
|
||||||
#include "scene/components/ui/UIImage.hpp"
|
|
||||||
#include "prefabs/EthPrefab.hpp"
|
|
||||||
|
|
||||||
namespace Dawn {
|
|
||||||
class HelloWorldScene : public Scene {
|
|
||||||
protected:
|
|
||||||
Camera *camera;
|
|
||||||
Camera *camNew;
|
|
||||||
UICanvas *canvas;
|
|
||||||
TextureRenderTarget *renderTarget;
|
|
||||||
Texture text;
|
|
||||||
TilesetGrid grid;
|
|
||||||
CameraTexture *camTexture;
|
|
||||||
UIImage *image;
|
|
||||||
|
|
||||||
int32_t test = 0;
|
|
||||||
|
|
||||||
void stage() override {
|
|
||||||
canvas = UICanvas::create(this);
|
|
||||||
|
|
||||||
camera = Camera::create(this);
|
|
||||||
glm::vec3 off = glm::vec3(0, 0, 0);
|
|
||||||
camera->transform->lookAt(glm::vec3(10, 10, 10) + off, glm::vec3(0, 0, 0) + off);
|
|
||||||
|
|
||||||
auto textbox = VNTextbox::create(this);
|
|
||||||
textbox->transform.setParent(canvas->transform);
|
|
||||||
|
|
||||||
camNew = Camera::create(this);
|
|
||||||
camTexture = camNew->item->addComponent<CameraTexture>();
|
|
||||||
camNew->fov = 0.436332f;
|
|
||||||
camNew->transform->lookAt(glm::vec3(0, 0, 5), glm::vec3(0, 0, 0));
|
|
||||||
camTexture->renderTarget.setSize(1, 1);
|
|
||||||
|
|
||||||
auto uiTest = this->createSceneItem();
|
|
||||||
uiTest->transform.setParent(canvas->transform);
|
|
||||||
image = uiTest->addComponent<UIImage>();
|
|
||||||
image->texture = camTexture->renderTarget.getTexture();
|
|
||||||
image->alignment = glm::vec4(0, 0, 50, 0);
|
|
||||||
image->alignX = UI_COMPONENT_ALIGN_START;
|
|
||||||
image->alignUnitRight = UI_COMPONENT_ALIGN_UNIT_PERCENT;
|
|
||||||
image->alignY = UI_COMPONENT_ALIGN_STRETCH;
|
|
||||||
|
|
||||||
this->grid = TilesetGrid(
|
|
||||||
1, 13,
|
|
||||||
741, 10270,
|
|
||||||
0, 0,
|
|
||||||
0, 0
|
|
||||||
);
|
|
||||||
auto eth = EthPrefab::create(this);
|
|
||||||
eth->tiledSprite->tileset = &grid;
|
|
||||||
|
|
||||||
useEvent([&]{
|
|
||||||
assertNotNull(camTexture);
|
|
||||||
assertNotNull(image);
|
|
||||||
std::cout << "Size Update" << std::endl;
|
|
||||||
camTexture->renderTarget.setSize(image->getWidth(), image->getHeight());
|
|
||||||
}, image->eventAlignmentUpdated);
|
|
||||||
}
|
|
||||||
|
|
||||||
std::vector<Asset*> getRequiredAssets() override {
|
|
||||||
auto assMan = &this->game->assetManager;
|
|
||||||
std::vector<Asset*> assets;
|
|
||||||
vectorAppend(&assets, VNTextbox::prefabAssets(assMan));
|
|
||||||
vectorAppend(&assets, EthPrefab::prefabAssets(assMan));
|
|
||||||
return assets;
|
|
||||||
}
|
|
||||||
|
|
||||||
public:
|
|
||||||
HelloWorldScene(DawnGame *game) : Scene(game) {}
|
|
||||||
};
|
|
||||||
}
|
|
@ -40,11 +40,16 @@ void Xml::load(Xml *xml, std::string data, size_t *j) {
|
|||||||
doing = XML_PARSE_STATE_PARSING_COMMENT;
|
doing = XML_PARSE_STATE_PARSING_COMMENT;
|
||||||
i += 3;
|
i += 3;
|
||||||
} else if(insideTag) {
|
} else if(insideTag) {
|
||||||
i -= 1;
|
if(data[i] == '/') {
|
||||||
auto child = new Xml();
|
i -= 1;
|
||||||
Xml::load(child, data, &i);
|
doing = XML_PARSE_STATE_PARSING_CHILD;
|
||||||
xml->children.push_back(child);
|
} else {
|
||||||
doing = XML_PARSE_STATE_PARSING_CHILD;
|
i -= 1;
|
||||||
|
auto child = new Xml();
|
||||||
|
Xml::load(child, data, &i);
|
||||||
|
xml->children.push_back(child);
|
||||||
|
doing = XML_PARSE_STATE_PARSING_CHILD;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
doing = XML_PARSE_STATE_PARSING_TAG_NAME;
|
doing = XML_PARSE_STATE_PARSING_TAG_NAME;
|
||||||
level++;
|
level++;
|
||||||
|
@ -50,7 +50,7 @@ function(tool_scene in)
|
|||||||
STRING(REGEX REPLACE "[\.|\\|\/]" "-" scene_name ${in})
|
STRING(REGEX REPLACE "[\.|\\|\/]" "-" scene_name ${in})
|
||||||
add_custom_target(scene_${scene_name}
|
add_custom_target(scene_${scene_name}
|
||||||
COMMAND scenetool --input="${DAWN_ASSETS_SOURCE_DIR}/${in}" --output="${DAWN_GENERATED_DIR}/generatedscenes" --sources="${DAWN_SOURCES_DIR}"
|
COMMAND scenetool --input="${DAWN_ASSETS_SOURCE_DIR}/${in}" --output="${DAWN_GENERATED_DIR}/generatedscenes" --sources="${DAWN_SOURCES_DIR}"
|
||||||
COMMENT "Generating prefab from ${in}"
|
COMMENT "Generating scene from ${in}"
|
||||||
DEPENDS ${DEPS}
|
DEPENDS ${DEPS}
|
||||||
)
|
)
|
||||||
target_include_directories(${DAWN_TARGET_NAME}
|
target_include_directories(${DAWN_TARGET_NAME}
|
||||||
|
@ -53,7 +53,7 @@ function(tool_vnscene in)
|
|||||||
STRING(REGEX REPLACE "[\.|\\|\/]" "-" scene_name ${in})
|
STRING(REGEX REPLACE "[\.|\\|\/]" "-" scene_name ${in})
|
||||||
add_custom_target(scene_${scene_name}
|
add_custom_target(scene_${scene_name}
|
||||||
COMMAND vnscenetool --input="${DAWN_ASSETS_SOURCE_DIR}/${in}" --output="${DAWN_GENERATED_DIR}/generatedscenes"
|
COMMAND vnscenetool --input="${DAWN_ASSETS_SOURCE_DIR}/${in}" --output="${DAWN_GENERATED_DIR}/generatedscenes"
|
||||||
COMMENT "Generating prefab from ${in}"
|
COMMENT "Generating vnscene from ${in}"
|
||||||
DEPENDS ${DEPS}
|
DEPENDS ${DEPS}
|
||||||
)
|
)
|
||||||
target_include_directories(${DAWN_TARGET_NAME}
|
target_include_directories(${DAWN_TARGET_NAME}
|
||||||
|
@ -29,6 +29,8 @@ int32_t VNSceneEventsParser::onParse(
|
|||||||
Xml *child = *itChildren;
|
Xml *child = *itChildren;
|
||||||
struct VNSceneEvent event;
|
struct VNSceneEvent event;
|
||||||
|
|
||||||
|
std::cout << "CHILD: " << child->node << std::endl;
|
||||||
|
|
||||||
// Parse event(s)
|
// Parse event(s)
|
||||||
if(child->node == "text") {
|
if(child->node == "text") {
|
||||||
event.type = VN_SCENE_EVENT_TYPE_TEXT;
|
event.type = VN_SCENE_EVENT_TYPE_TEXT;
|
||||||
|
Reference in New Issue
Block a user