Add JSON parser
This commit is contained in:
@ -3,4 +3,5 @@
|
|||||||
# This software is released under the MIT License.
|
# This software is released under the MIT License.
|
||||||
# https://opensource.org/licenses/MIT
|
# https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
tool_truetype(font_silver "${CMAKE_CURRENT_LIST_DIR}/Silver.ttf")
|
tool_truetype(font_silver "${CMAKE_CURRENT_LIST_DIR}/Silver.ttf")
|
||||||
|
tool_copy(json_test "${CMAKE_CURRENT_LIST_DIR}/test.json" "${DAWN_ASSETS_BUILD_DIR}/test.json")
|
@ -6,6 +6,7 @@
|
|||||||
#include "AssetManager.hpp"
|
#include "AssetManager.hpp"
|
||||||
#include "loaders/TextureLoader.hpp"
|
#include "loaders/TextureLoader.hpp"
|
||||||
#include "loaders/TrueTypeLoader.hpp"
|
#include "loaders/TrueTypeLoader.hpp"
|
||||||
|
#include "loaders/JSONLoader.hpp"
|
||||||
|
|
||||||
using namespace Dawn;
|
using namespace Dawn;
|
||||||
|
|
||||||
@ -80,6 +81,20 @@ std::shared_ptr<TrueTypeTexture> AssetManager::get<TrueTypeTexture>(
|
|||||||
return loader->getTexture(fontSize);
|
return loader->getTexture(fontSize);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template<>
|
||||||
|
std::shared_ptr<json> AssetManager::get<json>(
|
||||||
|
const std::string filename
|
||||||
|
) {
|
||||||
|
auto existing = this->getExisting<JSONLoader>(filename);
|
||||||
|
if(existing) return existing->data;
|
||||||
|
|
||||||
|
std::shared_ptr<JSONLoader> loader = std::make_shared<JSONLoader>(
|
||||||
|
filename
|
||||||
|
);
|
||||||
|
pendingAssetLoaders.push_back(std::static_pointer_cast<AssetLoader>(loader));
|
||||||
|
return loader->data;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
AssetManager::~AssetManager() {
|
AssetManager::~AssetManager() {
|
||||||
|
|
||||||
|
@ -80,6 +80,7 @@ namespace Dawn {
|
|||||||
* Returns the asset loader for the given asset.
|
* Returns the asset loader for the given asset.
|
||||||
*
|
*
|
||||||
* @param filename The filename of the asset to get.
|
* @param filename The filename of the asset to get.
|
||||||
|
* @param fontSize The font size to get the truetype asset of.
|
||||||
* @return The asset loader for the given asset.
|
* @return The asset loader for the given asset.
|
||||||
*/
|
*/
|
||||||
template<class T>
|
template<class T>
|
||||||
|
@ -8,4 +8,5 @@ target_sources(${DAWN_TARGET_NAME}
|
|||||||
PRIVATE
|
PRIVATE
|
||||||
TextureLoader.cpp
|
TextureLoader.cpp
|
||||||
TrueTypeLoader.cpp
|
TrueTypeLoader.cpp
|
||||||
|
JSONLoader.cpp
|
||||||
)
|
)
|
46
src/dawn/asset/loaders/JSONLoader.cpp
Normal file
46
src/dawn/asset/loaders/JSONLoader.cpp
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
// Copyright (c) 2024 Dominic Masters
|
||||||
|
//
|
||||||
|
// This software is released under the MIT License.
|
||||||
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
#include "JSONLoader.hpp"
|
||||||
|
#include "assert/assert.hpp"
|
||||||
|
|
||||||
|
using namespace Dawn;
|
||||||
|
|
||||||
|
JSONLoader::JSONLoader(const std::string name) :
|
||||||
|
AssetLoader(name),
|
||||||
|
loader(name + ".json"),
|
||||||
|
state(JSONLoaderLoadState::INITIAL)
|
||||||
|
{
|
||||||
|
data = std::make_shared<json>();
|
||||||
|
}
|
||||||
|
|
||||||
|
void JSONLoader::updateAsync() {
|
||||||
|
if(this->state != JSONLoaderLoadState::INITIAL) return;
|
||||||
|
this->state = JSONLoaderLoadState::LOADING_FILE;
|
||||||
|
|
||||||
|
this->loader.open();
|
||||||
|
auto size = this->loader.getSize();
|
||||||
|
|
||||||
|
auto buffer = new uint8_t[size + 1];
|
||||||
|
assertNotNull(buffer, "Failed to allocate buffer!");
|
||||||
|
|
||||||
|
this->state = JSONLoaderLoadState::PARSING_DATA;
|
||||||
|
auto read = this->loader.read(buffer, size);
|
||||||
|
assertTrue(read == size, "Failed to read entire file!");
|
||||||
|
buffer[size] = '\0';
|
||||||
|
|
||||||
|
*data = json::parse(buffer);
|
||||||
|
delete[] buffer;
|
||||||
|
|
||||||
|
this->state = JSONLoaderLoadState::DONE;
|
||||||
|
this->loaded = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void JSONLoader::updateSync() {
|
||||||
|
}
|
||||||
|
|
||||||
|
JSONLoader::~JSONLoader() {
|
||||||
|
this->data = nullptr;
|
||||||
|
}
|
42
src/dawn/asset/loaders/JSONLoader.hpp
Normal file
42
src/dawn/asset/loaders/JSONLoader.hpp
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
// Copyright (c) 2024 Dominic Masters
|
||||||
|
//
|
||||||
|
// This software is released under the MIT License.
|
||||||
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
#include "asset/AssetLoader.hpp"
|
||||||
|
#include "asset/AssetDataLoader.hpp"
|
||||||
|
|
||||||
|
namespace Dawn {
|
||||||
|
enum class JSONLoaderLoadState {
|
||||||
|
INITIAL,
|
||||||
|
LOADING_FILE,
|
||||||
|
PARSING_DATA,
|
||||||
|
DONE
|
||||||
|
};
|
||||||
|
|
||||||
|
class JSONLoader : public AssetLoader {
|
||||||
|
protected:
|
||||||
|
AssetDataLoader loader;
|
||||||
|
enum JSONLoaderLoadState state;
|
||||||
|
|
||||||
|
public:
|
||||||
|
std::shared_ptr<json> data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs a JSON asset loader. You should instead use the parent
|
||||||
|
* asset managers' abstracted load method
|
||||||
|
*
|
||||||
|
* @param name File name asset to load, omitting the extension.
|
||||||
|
*/
|
||||||
|
JSONLoader(const std::string name);
|
||||||
|
|
||||||
|
void updateSync() override;
|
||||||
|
void updateAsync() override;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dispose / Cleanup the JSON asset.
|
||||||
|
*/
|
||||||
|
~JSONLoader();
|
||||||
|
};
|
||||||
|
}
|
@ -47,4 +47,7 @@ extern "C" {
|
|||||||
// #include <glm/gtx/intersect.hpp>
|
// #include <glm/gtx/intersect.hpp>
|
||||||
#include <glm/gtc/type_ptr.hpp>
|
#include <glm/gtc/type_ptr.hpp>
|
||||||
#define GLM_ENABLE_EXPERIMENTAL 1
|
#define GLM_ENABLE_EXPERIMENTAL 1
|
||||||
#include <glm/gtx/matrix_decompose.hpp>
|
#include <glm/gtx/matrix_decompose.hpp>
|
||||||
|
|
||||||
|
#include <nlohmann/json.hpp>
|
||||||
|
using json = nlohmann::json;
|
@ -37,7 +37,7 @@ void Entity::onInit() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
float_t t = Easing::easeInOutSine(1.0f - this->stepTime);
|
float_t t = 1.0f - this->stepTime;
|
||||||
glm::vec3 lastPosition = this->lastTilePosition.toWorldSpace();
|
glm::vec3 lastPosition = this->lastTilePosition.toWorldSpace();
|
||||||
glm::vec3 newLocal = glm::mix(lastPosition, nextPosition, t);
|
glm::vec3 newLocal = glm::mix(lastPosition, nextPosition, t);
|
||||||
this->getItem()->setLocalPosition(newLocal);
|
this->getItem()->setLocalPosition(newLocal);
|
||||||
|
@ -14,11 +14,11 @@ void Player::updateCameraPosition() {
|
|||||||
if(!c) return;
|
if(!c) return;
|
||||||
glm::vec3 pos = this->getItem()->getLocalPosition();
|
glm::vec3 pos = this->getItem()->getLocalPosition();
|
||||||
c->getItem()->lookAtPixelPerfect(
|
c->getItem()->lookAtPixelPerfect(
|
||||||
pos + glm::vec3(0, 3, 1),
|
pos + glm::vec3(0, -10, 0),
|
||||||
pos,
|
pos,
|
||||||
c->getRenderTarget()->getHeight(),
|
c->getRenderTarget()->getHeight(),
|
||||||
c->fov,
|
c->fov,
|
||||||
32.0f
|
48.0f
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -45,6 +45,13 @@ void Player::onInit() {
|
|||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
auto c = camera.lock();
|
||||||
|
if(c) {
|
||||||
|
listeners.push_back(c->getRenderTarget()->onResize.listen([this](int width, int height){
|
||||||
|
this->updateCameraPosition();
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
listeners.push_back(eventMove.listen([this]() {
|
listeners.push_back(eventMove.listen([this]() {
|
||||||
this->updateCameraPosition();
|
this->updateCameraPosition();
|
||||||
}));
|
}));
|
||||||
|
@ -25,6 +25,11 @@
|
|||||||
using namespace Dawn;
|
using namespace Dawn;
|
||||||
|
|
||||||
void Dawn::worldScene(Scene &s) {
|
void Dawn::worldScene(Scene &s) {
|
||||||
|
auto testj = s.getGame()->assetManager.get<json>("test");
|
||||||
|
while(!s.getGame()->assetManager.isEverythingLoaded()) {
|
||||||
|
s.getGame()->assetManager.update();
|
||||||
|
}
|
||||||
|
|
||||||
auto cameraItem = s.createSceneItem();
|
auto cameraItem = s.createSceneItem();
|
||||||
auto camera = cameraItem->addComponent<Camera>();
|
auto camera = cameraItem->addComponent<Camera>();
|
||||||
cameraItem->lookAt({ 3, 3, 3 }, { 0, 0, 0 }, { 0, 1, 0 });
|
cameraItem->lookAt({ 3, 3, 3 }, { 0, 0, 0 }, { 0, 1, 0 });
|
||||||
|
Reference in New Issue
Block a user