Rewrote assertions
This commit is contained in:
@ -26,6 +26,7 @@ target_sources(${DAWN_TARGET_NAME}
|
|||||||
# Subdirs
|
# Subdirs
|
||||||
add_subdirectory(assert)
|
add_subdirectory(assert)
|
||||||
add_subdirectory(asset)
|
add_subdirectory(asset)
|
||||||
|
add_subdirectory(audio)
|
||||||
add_subdirectory(display)
|
add_subdirectory(display)
|
||||||
add_subdirectory(game)
|
add_subdirectory(game)
|
||||||
add_subdirectory(games)
|
add_subdirectory(games)
|
||||||
|
@ -7,60 +7,29 @@
|
|||||||
|
|
||||||
#include "assert.hpp"
|
#include "assert.hpp"
|
||||||
|
|
||||||
void assertTrue(bool_t x, const char message[]) {
|
void assertTrueImplement(
|
||||||
if(x != true) {
|
const char *file,
|
||||||
std::cout << message << std::endl;
|
const int32_t line,
|
||||||
throw message;
|
const char *func,
|
||||||
abort();
|
const bool_t result,
|
||||||
}
|
const char *message,
|
||||||
assert(x == true);
|
...
|
||||||
|
) {
|
||||||
|
if(result) return;
|
||||||
|
|
||||||
|
// Print file info.
|
||||||
|
fprintf(
|
||||||
|
stderr,
|
||||||
|
"Assert failed in %s:%i :: %s\n",
|
||||||
|
file,
|
||||||
|
line,
|
||||||
|
func
|
||||||
|
);
|
||||||
|
|
||||||
|
va_list argptr;
|
||||||
|
va_start(argptr, message);
|
||||||
|
vfprintf(stderr, message, argptr);
|
||||||
|
va_end(argptr);
|
||||||
|
fprintf(stderr, "\n");
|
||||||
|
abort();
|
||||||
}
|
}
|
||||||
|
|
||||||
void assertTrue(bool_t x, std::string message) {
|
|
||||||
assertTrue(x, message.c_str());
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void assertFalse(bool_t x, const char message[]) {
|
|
||||||
assertTrue(!x, message);
|
|
||||||
}
|
|
||||||
|
|
||||||
void assertFalse(bool_t x, std::string message) {
|
|
||||||
assertFalse(x, message.c_str());
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void assertUnreachable(const char message[]) {
|
|
||||||
assertTrue(false, message);
|
|
||||||
}
|
|
||||||
|
|
||||||
void assertUnreachable(std::string message) {
|
|
||||||
assertUnreachable(message.c_str());
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void assertNotNull(void *pointer, const char message[]) {
|
|
||||||
assertTrue(pointer != nullptr && pointer != NULL, message);
|
|
||||||
}
|
|
||||||
|
|
||||||
void assertNotNull(void *pointer, std::string message) {
|
|
||||||
assertNotNull(pointer, message.c_str());
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void assertNull(void *pointer, const char message[]) {
|
|
||||||
assertTrue(pointer == NULL || pointer == nullptr, message);
|
|
||||||
}
|
|
||||||
|
|
||||||
void assertNull(void *pointer, std::string message) {
|
|
||||||
assertNull(pointer, message.c_str());
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void assertDeprecated(const char message[]) {
|
|
||||||
assertUnreachable(message);
|
|
||||||
}
|
|
||||||
|
|
||||||
void assertDeprecated(std::string message) {
|
|
||||||
assertDeprecated(message.c_str());
|
|
||||||
}
|
|
@ -9,72 +9,83 @@
|
|||||||
#include "dawnlibs.hpp"
|
#include "dawnlibs.hpp"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Assert a given value to be true.
|
* Asserts that a given statement must evaluate to true or the assertion fails
|
||||||
* @param x Value to assert as true.
|
* and the game will close semi-gracefully.
|
||||||
* @param message Message to throw against assertion failure.
|
|
||||||
*/
|
|
||||||
void assertTrue(bool_t x, const char message[]);
|
|
||||||
void assertTrue(bool_t x, std::string message);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Asserts a given statement to be false.
|
|
||||||
* @param x Value to assert as false.
|
|
||||||
* @param message Message to throw against assertion failure.
|
|
||||||
*/
|
|
||||||
void assertFalse(bool_t x, const char message[]);
|
|
||||||
void assertFalse(bool_t x, std::string message);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Asserts that a given line of code is unreachable. Essentially a forced
|
|
||||||
* assertion failure, good for "edge cases"
|
|
||||||
* @param message Message to throw against assertion failure.
|
|
||||||
*/
|
|
||||||
void assertUnreachable(const char message[]);
|
|
||||||
void assertUnreachable(std::string message);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Assert a given pointer to not point to a null pointer.
|
|
||||||
* @param pointer Pointer to assert is not a null pointer.
|
|
||||||
* @param message Message to throw against assertion failure.
|
|
||||||
*/
|
|
||||||
void assertNotNull(void *pointer, const char message[]);
|
|
||||||
void assertNotNull(void *pointer, std::string message);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Asserts a given pointer to be a nullptr.
|
|
||||||
* @param pointer Pointer to assert is nullptr.
|
|
||||||
* @param message Message to throw against assertion failure.
|
|
||||||
*/
|
|
||||||
void assertNull(void *pointer, const char message[]);
|
|
||||||
void assertNull(void *pointer, std::string message);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Asserts a function as being deprecated.
|
|
||||||
* @param message Message to throw against assertion failure.
|
|
||||||
*/
|
|
||||||
void assertDeprecated(const char message[]);
|
|
||||||
void assertDeprecated(std::string message);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Asserts that a given map has a key.
|
|
||||||
*
|
*
|
||||||
* @param map Map to check.
|
* @param file String filename of the file that has the assertion.
|
||||||
* @param key Key to try and assert exists.
|
* @param line Integer line number within the file that the assertion is on.
|
||||||
* @param message Message to throw against assertion failure.
|
* @param func Called function that has the assertion.
|
||||||
|
* @param result The statement that must equate to true.
|
||||||
|
* @param message Message (sprintf format) to send to the stdout.
|
||||||
|
* @param ... Varargs of the sprintf arguments.
|
||||||
*/
|
*/
|
||||||
template<typename K, typename V>
|
void assertTrueImplement(
|
||||||
void assertMapHasKey(std::map<K,V> map, K key, const char message[]) {
|
const char *file,
|
||||||
assertTrue(map.find(key) != map.end(), message);
|
const int32_t line,
|
||||||
}
|
const char *func,
|
||||||
|
const bool_t result,
|
||||||
|
const char *message,
|
||||||
|
...
|
||||||
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Asserts that a given map has a key.
|
* Asserts that a statement must be true in order for the assertion to not cause
|
||||||
|
* an error. Basically this is a throw statement in disguise.
|
||||||
*
|
*
|
||||||
* @param map Map to check.
|
* @param statement Statement of the assertion.
|
||||||
* @param key Key to try and assert exists.
|
* @param message Message (sprintf format) to send to the logger.
|
||||||
* @param message Message to throw against assertion failure.
|
* @param args Optional TParam args for the sprintf message to accept.
|
||||||
*/
|
*/
|
||||||
template<typename K, typename V>
|
#define assertTrue(...) assertTrueImplement( \
|
||||||
void assertMapHasKey(std::map<K,V> map, K key, std::string message) {
|
__FILE__, __LINE__, __func__, __VA_ARGS__ \
|
||||||
assertMapHasKey(map, key, message.c_str());
|
)
|
||||||
}
|
|
||||||
|
/**
|
||||||
|
* Asserts that a statement must be false in order for the assertion to not
|
||||||
|
* cause an error.
|
||||||
|
*
|
||||||
|
* @param statement Statement of the assertion.
|
||||||
|
* @param message Message (sprintf format) to send to the logger.
|
||||||
|
* @param args Optional TParam args for the sprintf message to accept.
|
||||||
|
*/
|
||||||
|
#define assertFalse(x, ...) assertTrue(!(x), __VA_ARGS__)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Asserts that a specified piece of code should be entirely unreachable.
|
||||||
|
* @param message Message (sprintf format) to send to the logger.
|
||||||
|
* @param args Optional TParam args for the sprintf message to accept.
|
||||||
|
*/
|
||||||
|
#define assertUnreachable(...) assertTrue(false, __VA_ARGS__)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Asserts that a given pointer is not null.
|
||||||
|
* @param x Pointer to check.
|
||||||
|
* @param message Message (sprintf format) to send to the logger.
|
||||||
|
* @param args Optional TParam args for the sprintf message to accept.
|
||||||
|
*/
|
||||||
|
#define assertNotNull(x, ...) assertTrue(x != nullptr, __VA_ARGS__)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Asserts that a given pointer is null.
|
||||||
|
* @param x Pointer to check.
|
||||||
|
* @param message Message (sprintf format) to send to the logger.
|
||||||
|
* @param args Optional TParam args for the sprintf message to accept.
|
||||||
|
*/
|
||||||
|
#define assertNull(x, ...) assertTrue(x == nullptr, __VA_ARGS__)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Asserts that a given map has a specific key.
|
||||||
|
* @param map Map to check.
|
||||||
|
* @param key Key to check for.
|
||||||
|
* @param message Message (sprintf format) to send to the logger.
|
||||||
|
* @param args Optional TParam args for the sprintf message to accept.
|
||||||
|
*/
|
||||||
|
#define assertMapHasKey(map, key, ...) assertTrue( \
|
||||||
|
map.find(key) != map.end(), __VA_ARGS__ \
|
||||||
|
)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Asserts that the current code is deprecated and should not be used anymore.
|
||||||
|
* @deprecated
|
||||||
|
*/
|
||||||
|
#define assertDeprecated(...) assertUnreachable(__VA_ARGS__)
|
@ -97,8 +97,8 @@ namespace Dawn {
|
|||||||
int32_t i;
|
int32_t i;
|
||||||
bool_t result;
|
bool_t result;
|
||||||
|
|
||||||
assertNotNull(instance);
|
assertNotNull(instance, "Instance cannot be null.");
|
||||||
assertNotNull(callback);
|
assertNotNull(callback, "Callback cannot be null.");
|
||||||
|
|
||||||
// Open the buffer.
|
// Open the buffer.
|
||||||
this->open();
|
this->open();
|
||||||
|
10
src/dawn/audio/CMakeLists.txt
Normal file
10
src/dawn/audio/CMakeLists.txt
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# Copyright (c) 2022 Dominic Masters
|
||||||
|
#
|
||||||
|
# This software is released under the MIT License.
|
||||||
|
# https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
# Sources
|
||||||
|
target_sources(${DAWN_TARGET_NAME}
|
||||||
|
PRIVATE
|
||||||
|
IAudioManager.cpp
|
||||||
|
)
|
13
src/dawn/audio/IAudioManager.cpp
Normal file
13
src/dawn/audio/IAudioManager.cpp
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
// Copyright (c) 2023 Dominic Masters
|
||||||
|
//
|
||||||
|
// This software is released under the MIT License.
|
||||||
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
#include "IAudioManager.hpp"
|
||||||
|
|
||||||
|
using namespace Dawn;
|
||||||
|
|
||||||
|
IAudioManager::IAudioManager(DawnGame *game) {
|
||||||
|
assertNotNull(game, "Game cannot be null.");
|
||||||
|
this->game = game;
|
||||||
|
}
|
@ -4,22 +4,31 @@
|
|||||||
// https://opensource.org/licenses/MIT
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include "dawnlibs.hpp"
|
|
||||||
#include "assert/assert.hpp"
|
#include "assert/assert.hpp"
|
||||||
|
|
||||||
namespace Dawn {
|
namespace Dawn {
|
||||||
class DawnGame;
|
class DawnGame;
|
||||||
|
|
||||||
class IAudioManager {
|
class IAudioManager {
|
||||||
public:
|
protected:
|
||||||
DawnGame *game;
|
DawnGame *game;
|
||||||
|
|
||||||
IAudioManager(DawnGame *game) {
|
public:
|
||||||
assertNotNull(game);
|
/**
|
||||||
this->game = game;
|
* Construct a new IAudioManager.
|
||||||
}
|
*
|
||||||
|
* @param game The game instance.
|
||||||
|
*/
|
||||||
|
IAudioManager(DawnGame *game);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initializes the audio manager system.
|
||||||
|
*/
|
||||||
virtual void init() = 0;
|
virtual void init() = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ticks/Update the audio manager system.
|
||||||
|
*/
|
||||||
virtual void update() = 0;
|
virtual void update() = 0;
|
||||||
};
|
};
|
||||||
}
|
}
|
@ -78,6 +78,6 @@ struct Color Color::fromString(std::string str) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// TODO: Parse other kinds of colors
|
// TODO: Parse other kinds of colors
|
||||||
assertUnreachable("Failed to find a color match for " + str);
|
assertUnreachable("Failed to find a color match for %s", str);
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
@ -39,7 +39,7 @@ void UIRichTextLabel::onStart() {
|
|||||||
bufferTexts.push_back(text);
|
bufferTexts.push_back(text);
|
||||||
} else if(child.nodeType == XML_NODE_TYPE_ELEMENT) {
|
} else if(child.nodeType == XML_NODE_TYPE_ELEMENT) {
|
||||||
auto node = child.child;
|
auto node = child.child;
|
||||||
assertTrue(node->node == "font", "UIRichTextLabel::onStart: Unknown node type '" + node->node + "'");
|
assertTrue(node->node == "font", "UIRichTextLabel::onStart: Unknown node type '%s'", node->node.c_str());
|
||||||
|
|
||||||
struct UILabelStyle style;
|
struct UILabelStyle style;
|
||||||
if(node->attributes.contains("font")) {
|
if(node->attributes.contains("font")) {
|
||||||
|
@ -221,7 +221,7 @@ void Xml::load(Xml *xml, std::string data, size_t *j) {
|
|||||||
int code = std::stoi(sc.substr(1));
|
int code = std::stoi(sc.substr(1));
|
||||||
buffer += (char)code;
|
buffer += (char)code;
|
||||||
} else {
|
} else {
|
||||||
assertUnreachable("Unknown Special character: " + sc);
|
assertUnreachable("Unknown Special character: %s", sc.c_str());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
@ -65,7 +65,7 @@ void AssetLoader::open() {
|
|||||||
assertNull(this->assetArchiveEntry, "AssetLoader::open: Entry is already open");
|
assertNull(this->assetArchiveEntry, "AssetLoader::open: Entry is already open");
|
||||||
|
|
||||||
this->assetArchiveFile = fopen(DAWN_ASSET_LOCATION, "rb");
|
this->assetArchiveFile = fopen(DAWN_ASSET_LOCATION, "rb");
|
||||||
assertNotNull(this->assetArchiveFile, "AssetLoader::open: Failed to open file " + std::string(DAWN_ASSET_LOCATION));
|
assertNotNull(this->assetArchiveFile, "AssetLoader::open: Failed to open file %s", DAWN_ASSET_LOCATION);
|
||||||
|
|
||||||
// Open archive reader
|
// Open archive reader
|
||||||
assetArchive = archive_read_new();
|
assetArchive = archive_read_new();
|
||||||
|
@ -53,6 +53,6 @@ void assertNotGLErrorCheck(const char *file, int32_t line) {
|
|||||||
|
|
||||||
if(errorCount != 0) {
|
if(errorCount != 0) {
|
||||||
error += "\n" + std::string(file) + " (" + std::to_string(line) + ")";
|
error += "\n" + std::string(file) + " (" + std::to_string(line) + ")";
|
||||||
assertUnreachable(error);
|
assertUnreachable(error.c_str());
|
||||||
}
|
}
|
||||||
}
|
}
|
Reference in New Issue
Block a user