- More Documentation

This commit is contained in:
2026-01-12 00:36:39 -05:00
parent 450f725cab
commit ed381c4178
95 changed files with 5631 additions and 1718 deletions

View File

@@ -0,0 +1,52 @@
// =====================================================================================================================
// fennec, a free and open source game engine
// Copyright © 2025 Medusa Slockbower
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
// =====================================================================================================================
#ifndef FENNEC_TEST_CORE_VERSION_H
#define FENNEC_TEST_CORE_VERSION_H
#include <fennec/core/version.h>
#include "../../test.h"
namespace fennec::test
{
inline void fennec_test_core_version() {
fennec_test_run((version{ .major = 1, .minor = 0, .patch = 0, .meta = 0 }) == (version{ .major = 1, .minor = 0, .patch = 0, .meta = 0 }), true);
fennec_test_run((version{ .major = 1, .minor = 0, .patch = 0, .meta = 0 }) == (version{ .major = 1, .minor = 0, .patch = 1, .meta = 0 }), false);
fennec_test_spacer(1);
fennec_test_run((version{ .major = 1, .minor = 0, .patch = 0, .meta = 0 }) != (version{ .major = 1, .minor = 0, .patch = 0, .meta = 0 }), false);
fennec_test_run((version{ .major = 1, .minor = 0, .patch = 0, .meta = 0 }) != (version{ .major = 1, .minor = 0, .patch = 1, .meta = 0 }), true);
fennec_test_spacer(1);
fennec_test_run((version{ .major = 1, .minor = 0, .patch = 0, .meta = 0 }) < (version{ .major = 1, .minor = 0, .patch = 0, .meta = 0 }), false);
fennec_test_run((version{ .major = 1, .minor = 0, .patch = 0, .meta = 0 }) < (version{ .major = 1, .minor = 0, .patch = 1, .meta = 0 }), true);
fennec_test_spacer(1);
fennec_test_run((version{ .major = 1, .minor = 0, .patch = 0, .meta = 0 }) > (version{ .major = 1, .minor = 0, .patch = 0, .meta = 0 }), false);
fennec_test_run((version{ .major = 1, .minor = 0, .patch = 0, .meta = 0 }) > (version{ .major = 1, .minor = 0, .patch = 1, .meta = 0 }), false);
}
}
#endif // FENNEC_TEST_CORE_VERSION_H

View File

@@ -20,7 +20,7 @@
#ifndef FENNEC_TEST_MATRIX_H
#define FENNEC_TEST_MATRIX_H
#include <fennec/math/detail/_fwd.h>
#include <fennec/math/detail/_forward.h>
#include <fennec/math/matrix.h>

View File

@@ -20,18 +20,22 @@
#define FENNEC_TEST_CORE_H
#include "../test.h"
#include "core/test_event.h"
#include "core/test_version.h"
namespace fennec::test
{
inline void fennec_test_core() {
fennec_test_subheader("events");
fennec_test_spacer(2);
fennec_test_core_event();
fennec_test_spacer(3);
fennec_test_subheader("version");
fennec_test_spacer(2);
fennec_test_core_version();
fennec_test_spacer(3);
fennec_test_subheader("events");
fennec_test_spacer(2);
fennec_test_core_event();
}
}

View File

@@ -33,10 +33,10 @@ namespace fennec::test
fennec_test_spacer(1);
fennec_test_run(path::current(), path(FENNEC_TEST_CWD));
fennec_test_run(path::get_current(), path(FENNEC_TEST_CWD));
fennec_test_run(path("../" FENNEC_BUILD_NAME "/./test.sh").absolute(), path(FENNEC_TEST_CWD) / "test.sh");
fennec_test_run(path("./test/../test.sh").absolute(), path(FENNEC_TEST_CWD) / "test.sh");
fennec_test_run(path::current().parent(), path("../").absolute());
fennec_test_run(path::get_current().parent(), path("../").absolute());
fennec_test_spacer(2);

View File

@@ -51,8 +51,8 @@ inline void fennec_test_platform() {
while (wm.is_running(window)) {
wm.begin(window);
wm.end(window);
wm.begin_frame(window);
wm.end_frame(window);
wm.dispatch();
}