Replace dawnlibs with dawn.hpp

This commit is contained in:
2024-11-25 17:08:25 -06:00
parent cfa9e0e99a
commit aefbe17786
33 changed files with 86 additions and 59 deletions

View File

@ -6,7 +6,7 @@
*/ */
#pragma once #pragma once
#include "dawnlibs.hpp" #include "dawn.hpp"
/** /**
* Asserts that a given statement must evaluate to true or the assertion fails * Asserts that a given statement must evaluate to true or the assertion fails

View File

@ -97,16 +97,16 @@ bool_t AssetDataLoader::isOpen() {
} }
void AssetDataLoader::open() { void AssetDataLoader::open() {
assertNull(this->assetArchiveFile, "AssetDataLoader::open: File is already open"); assertNull(this->assetArchiveFile, "File is already open");
assertNull(this->assetArchive, "AssetDataLoader::open: Archive is already open"); assertNull(this->assetArchive, "Archive is already open");
assertNull(this->assetArchiveEntry, "AssetDataLoader::open: Entry is already open"); assertNull(this->assetArchiveEntry, "Entry is already open");
this->assetArchiveFile = this->openAssetArchiveFile(); this->assetArchiveFile = this->openAssetArchiveFile();
assertNotNull(this->assetArchiveFile, "AssetDataLoader::open: Failed to open archive file!"); assertNotNull(this->assetArchiveFile, "Failed to open archive file!");
// Open archive reader // Open archive reader
assetArchive = archive_read_new(); assetArchive = archive_read_new();
assertNotNull(assetArchive, "AssetDataLoader::open: Failed to create archive reader"); assertNotNull(assetArchive, "Failed to create archive reader");
// Set up the reader // Set up the reader
archive_read_support_format_tar(assetArchive); archive_read_support_format_tar(assetArchive);
@ -119,7 +119,7 @@ void AssetDataLoader::open() {
archive_read_set_callback_data(assetArchive, this); archive_read_set_callback_data(assetArchive, this);
int32_t ret = archive_read_open1(assetArchive); int32_t ret = archive_read_open1(assetArchive);
assertTrue(ret == ARCHIVE_OK, "AssetDataLoader::open: Failed to open archive!"); assertTrue(ret == ARCHIVE_OK, "Failed to open archive!");
position = 0; position = 0;
// Iterate over each file to find the one for this asset loader. // Iterate over each file to find the one for this asset loader.
@ -127,20 +127,20 @@ void AssetDataLoader::open() {
const char_t *headerFile = (char_t*)archive_entry_pathname(assetArchiveEntry); const char_t *headerFile = (char_t*)archive_entry_pathname(assetArchiveEntry);
if(std::string(headerFile) == this->fileName) return; if(std::string(headerFile) == this->fileName) return;
int32_t ret = archive_read_data_skip(assetArchive); int32_t ret = archive_read_data_skip(assetArchive);
assertTrue(ret == ARCHIVE_OK, "AssetDataLoader::open: Failed to skip data!"); assertTrue(ret == ARCHIVE_OK, "Failed to skip data!");
} }
assertUnreachable("AssetDataLoader::open: Failed to find file!"); assertUnreachable("Failed to find file!");
} }
int32_t AssetDataLoader::close() { int32_t AssetDataLoader::close() {
assertNotNull(this->assetArchiveFile, "AssetDataLoader::close: File is NULL"); assertNotNull(this->assetArchiveFile, "File is NULL");
assertNotNull(this->assetArchive, "AssetDataLoader::close: Archive is NULL!"); assertNotNull(this->assetArchive, "Archive is NULL!");
assertNotNull(this->assetArchiveEntry, "AssetDataLoader::close: Entry is NULL!"); assertNotNull(this->assetArchiveEntry, "Entry is NULL!");
// Close the archive // Close the archive
int32_t ret = archive_read_free(this->assetArchive); int32_t ret = archive_read_free(this->assetArchive);
assertTrue(ret == ARCHIVE_OK, "AssetDataLoader::close: Failed to close archive!"); assertTrue(ret == ARCHIVE_OK, "Failed to close archive!");
this->assetArchive = nullptr; this->assetArchive = nullptr;
this->assetArchiveEntry = nullptr; this->assetArchiveEntry = nullptr;

View File

@ -4,7 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#pragma once #pragma once
#include "dawnlibs.hpp" #include "dawn.hpp"
extern "C" { extern "C" {
#include <archive.h> #include <archive.h>

View File

@ -4,7 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#pragma once #pragma once
#include "dawnlibs.hpp" #include "dawn.hpp"
namespace Dawn { namespace Dawn {
class AssetLoader { class AssetLoader {

View File

@ -4,7 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#pragma once #pragma once
#include "dawnlibs.hpp" #include "dawn.hpp"
#include "asset/AssetLoader.hpp" #include "asset/AssetLoader.hpp"
namespace Dawn { namespace Dawn {

View File

@ -4,7 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#pragma once #pragma once
#include "dawnlibs.hpp" #include "dawn.hpp"
namespace Dawn { namespace Dawn {
class IAudioManager { class IAudioManager {

View File

@ -0,0 +1,12 @@
// Copyright (c) 2024 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#include "Registry.hpp"
using namespace Dawn;
void Dawn::someFunction(const char_t *someParam) {
printf("Hello, %s!\n", someParam);
}

View File

@ -0,0 +1,11 @@
// Copyright (c) 2024 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include "dawn.hpp"
namespace Dawn {
static void someFunction(const char_t *someParam);
}

View File

@ -4,7 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#pragma once #pragma once
#include "dawnlibs.hpp" #include "dawn.hpp"
namespace Dawn { namespace Dawn {
struct ColorU8 { struct ColorU8 {

View File

@ -4,7 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#pragma once #pragma once
#include "dawnlibs.hpp" #include "dawn.hpp"
#include "display/RenderTarget.hpp" #include "display/RenderTarget.hpp"
#include "display/RenderPipeline.hpp" #include "display/RenderPipeline.hpp"
#include "display/shader/ShaderManager.hpp" #include "display/shader/ShaderManager.hpp"

View File

@ -4,7 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#pragma once #pragma once
#include "dawnlibs.hpp" #include "dawn.hpp"
namespace Dawn { namespace Dawn {
class Game; class Game;

View File

@ -4,7 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#pragma once #pragma once
#include "dawnlibs.hpp" #include "dawn.hpp"
namespace Dawn { namespace Dawn {
struct TrueTypeCharacter { struct TrueTypeCharacter {

View File

@ -4,7 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#pragma once #pragma once
#include "dawnlibs.hpp" #include "dawn.hpp"
namespace Dawn { namespace Dawn {
enum MeshDrawMode { enum MeshDrawMode {

View File

@ -4,7 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#pragma once #pragma once
#include "dawnlibs.hpp" #include "dawn.hpp"
namespace Dawn { namespace Dawn {
enum class ShaderParameterType { enum class ShaderParameterType {

View File

@ -4,7 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#pragma once #pragma once
#include "dawnlibs.hpp" #include "dawn.hpp"
namespace Dawn { namespace Dawn {
enum class ShaderStageType { enum class ShaderStageType {

View File

@ -4,7 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#pragma once #pragma once
#include "dawnlibs.hpp" #include "dawn.hpp"
namespace Dawn { namespace Dawn {
class Environment { class Environment {

View File

@ -4,7 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#pragma once #pragma once
#include "dawnlibs.hpp" #include "dawn.hpp"
namespace Dawn { namespace Dawn {
enum class CustomEventResult { enum class CustomEventResult {

View File

@ -4,7 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#pragma once #pragma once
#include "dawnlibs.hpp" #include "dawn.hpp"
namespace Dawn { namespace Dawn {
template<typename ...A> template<typename ...A>

View File

@ -4,7 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#pragma once #pragma once
#include "dawnlibs.hpp" #include "dawn.hpp"
#include "display/RenderHost.hpp" #include "display/RenderHost.hpp"
#include "input/InputManager.hpp" #include "input/InputManager.hpp"
#include "time/TimeManager.hpp" #include "time/TimeManager.hpp"

View File

@ -25,6 +25,10 @@ std::string LocaleManager::getString(
const std::unordered_map<std::string, std::string> replacements const std::unordered_map<std::string, std::string> replacements
) { ) {
assertNotNull(languageAsset, "Language asset cannot be null."); assertNotNull(languageAsset, "Language asset cannot be null.");
assertTrue(
languageAsset->loaded,
"Language asset must be loaded before attempting to get a string."
);
// Key comes in like "main_menu.new_game", which would be; // Key comes in like "main_menu.new_game", which would be;
// data["main_menu"]["new_game"], so we need to split by dot and iterate. // data["main_menu"]["new_game"], so we need to split by dot and iterate.

View File

@ -4,7 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#pragma once #pragma once
#include "dawnlibs.hpp" #include "dawn.hpp"
namespace Dawn { namespace Dawn {
class SaveManager; class SaveManager;

View File

@ -4,7 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#pragma once #pragma once
#include "dawnlibs.hpp" #include "dawn.hpp"
#define SCENE_COMPONENT_STATE_INIT 0x01 #define SCENE_COMPONENT_STATE_INIT 0x01
#define SCENE_COMPONENT_STATE_DISPOSED 0x02 #define SCENE_COMPONENT_STATE_DISPOSED 0x02

View File

@ -4,7 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#pragma once #pragma once
#include "dawnlibs.hpp" #include "dawn.hpp"
namespace Dawn { namespace Dawn {
class SceneItem; class SceneItem;

View File

@ -4,7 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#pragma once #pragma once
#include "dawnlibs.hpp" #include "dawn.hpp"
namespace Dawn { namespace Dawn {
class ITimeManager { class ITimeManager {

View File

@ -4,7 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#pragma once #pragma once
#include "dawnlibs.hpp" #include "dawn.hpp"
namespace Dawn { namespace Dawn {
class Flag final { class Flag final {

View File

@ -6,7 +6,7 @@
*/ */
#pragma once #pragma once
#include "dawnlibs.hpp" #include "dawn.hpp"
#define MATH_PI 3.1415926535897f #define MATH_PI 3.1415926535897f

View File

@ -4,7 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#pragma once #pragma once
#include "dawnlibs.hpp" #include "dawn.hpp"
namespace Dawn { namespace Dawn {
class String { class String {

View File

@ -15,12 +15,6 @@ target_include_directories(${DAWN_TARGET_NAME}
${CMAKE_CURRENT_LIST_DIR} ${CMAKE_CURRENT_LIST_DIR}
) )
# Platform variables
# target_compile_definitions(${DAWN_TARGET_NAME}
# PUBLIC
# DAWN_ASSET_LOCATION="../../assets.tar"
# )
# Sources # Sources
target_sources(${DAWN_TARGET_NAME} target_sources(${DAWN_TARGET_NAME}
PRIVATE PRIVATE

View File

@ -27,6 +27,8 @@ FILE * AssetDataLoader::openAssetArchiveFile() {
int32_t main(int32_t argc, const char **argv) { int32_t main(int32_t argc, const char **argv) {
//Set the path //Set the path
assertTrue(argc > 0, "No executable path provided."); assertTrue(argc > 0, "No executable path provided.");
assertNotNull(argv, "No executable path provided.");
assertNotNull(argv[0], "No executable path provided.");
environment.setVariable("executablePath", argv[0]); environment.setVariable("executablePath", argv[0]);
auto execPath = fs::path(environment.getVariable("executablePath")); auto execPath = fs::path(environment.getVariable("executablePath"));
@ -36,20 +38,24 @@ int32_t main(int32_t argc, const char **argv) {
// Find the assets // Find the assets
std::vector<fs::path> pathsToTryAndFindAssets = { std::vector<fs::path> pathsToTryAndFindAssets = {
execDir / "assets.tar", execDir / "dawn.tar",
execDir / "assets.zip", execDir / "dawn.zip",
execDir / "data" / "assets.tar", execDir / "data" / "dawn.tar",
execDir / "data" / "assets.zip", execDir / "data" / "dawn.zip",
execDir.parent_path() / "assets.tar", execDir.parent_path() / "dawn.tar",
execDir.parent_path() / "assets.zip", execDir.parent_path() / "dawn.zip",
execDir.parent_path() / "data" / "assets.tar", execDir.parent_path() / "data" / "dawn.tar",
execDir.parent_path() / "data" / "assets.zip", execDir.parent_path() / "data" / "dawn.zip",
execDir.parent_path().parent_path() / "assets.tar", execDir.parent_path().parent_path() / "dawn.tar",
execDir.parent_path().parent_path() / "assets.zip", execDir.parent_path().parent_path() / "dawn.zip",
execDir.parent_path().parent_path() / "data" / "assets.tar", execDir.parent_path().parent_path() / "data" / "dawn.tar",
execDir.parent_path().parent_path() / "data" / "assets.zip" execDir.parent_path().parent_path() / "data" / "dawn.zip"
}; };
auto matchingPathIfAny = std::find_if(pathsToTryAndFindAssets.begin(), pathsToTryAndFindAssets.end(), [](const fs::path &p) { auto matchingPathIfAny = std::find_if(
pathsToTryAndFindAssets.begin(),
pathsToTryAndFindAssets.end(),
[](const fs::path &p
) {
return fs::exists(p); return fs::exists(p);
}); });

View File

@ -4,7 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#pragma once #pragma once
#include "dawnlibs.hpp" #include "dawn.hpp"
/** /**
* The main entry point for the program. * The main entry point for the program.

View File

@ -4,7 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#pragma once #pragma once
#include "dawnlibs.hpp" #include "dawn.hpp"
/** /**
* Asserts that there are no OpenGL errors. * Asserts that there are no OpenGL errors.

View File

@ -14,9 +14,9 @@
using namespace Dawn; using namespace Dawn;
void Dawn::helloWorldScene(Scene &s) { void Dawn::helloWorldScene(Scene &s) {
// while(!s.getGame()->assetManager.isLoaded(font)) { while(!s.getGame()->assetManager.isEverythingLoaded()) {
// s.getGame()->assetManager.update(); s.getGame()->assetManager.update();
// } }
auto cameraItem = s.createSceneItem(); auto cameraItem = s.createSceneItem();
auto camera = cameraItem->addComponent<Camera>(); auto camera = cameraItem->addComponent<Camera>();