- Basic RTTI type data with inheritance.

This commit is contained in:
2025-11-28 12:58:23 -05:00
parent b9026ec8da
commit fe8c3a4602
126 changed files with 2158 additions and 979 deletions

View File

@@ -8,8 +8,10 @@ add_executable(fennec-test
main.cpp
tests/containers/performance/test_iterator_visitor.h
tests/containers/test_sequence.h
tests/langproc/test_format.h
tests/lang/test_format.h
tests/containers/test_priority_queue.h
tests/lang/strings/test_string.h
tests/test_rtti.h
)
target_compile_definitions(fennec-test PUBLIC FENNEC_TEST_CWD="${CMAKE_SOURCE_DIR}/bin/${FENNEC_BUILD_NAME}"

View File

@@ -24,6 +24,7 @@
#include "tests/test_containers.h"
#include "tests/test_langproc.h"
#include "tests/test_platform.h"
#include "tests/test_rtti.h"
int main(int, char **)
{
@@ -58,5 +59,10 @@ int main(int, char **)
fennec::test::fennec_test_platform();
fennec_test_spacer(3);
fennec_test_header("rtti library");
fennec_test_spacer(2);
fennec::test::fennec_test_rtti();
fennec_test_spacer(3);
return 0;
}

View File

@@ -20,14 +20,17 @@
#define FENNEC_TEST_PRINTING_H
#include <iostream>
#include <fennec/langproc/filesystem/path.h>
#include <fennec/langproc/strings/string.h>
#include <fennec/lang/filesystem/path.h>
#include <fennec/lang/strings/string.h>
#include <fennec/math/common.h>
#include <fennec/math/matrix.h>
#include <fennec/math/relational.h>
#include <fennec/math/ext/quaternion.h>
#include <fennec/rtti/type.h>
namespace fennec
{
@@ -73,6 +76,11 @@ inline std::ostream& operator<<(std::ostream& os, const path& str) {
return os << str.str();
}
// Helper for printing types
inline std::ostream& operator<<(std::ostream& os, const type& t) {
return os << t.name();
}
}
}

View File

@@ -23,7 +23,7 @@
#include <ostream>
#include <string>
#include <fennec/lang/limits.h>
#include <fennec/langcpp/limits.h>
#include <fennec/math/vector_traits.h>
#include "printing.h"

View File

@@ -20,7 +20,7 @@
#define FENNEC_TEST_CONTAINERS_MAP_H
#include <fennec/containers/map.h>
#include <fennec/langproc/strings/string.h>
#include <fennec/lang/strings/string.h>
namespace fennec::test {

View File

@@ -53,6 +53,10 @@ inline void fennec_test_containers_rdtree() {
assertf(next == rdtree<size_t>::npos || test.prev(next) == l, "Tree Construct Test Failed");
}
tree_t insert;
insert.insert(npos, 0, test);
assertf(insert.size() == test.size(), "Tree Insert Tree Test Failed");
fennec_test_spacer(1);
test.erase(0);

View File

@@ -19,7 +19,7 @@
#ifndef FENNEC_TEST_CONTAINERS_TUPLE_H
#define FENNEC_TEST_CONTAINERS_TUPLE_H
#include <fennec/containers/tuple.h>
#include <fennec/langproc/strings/string.h>
#include <fennec/lang/strings/string.h>
namespace fennec
{

View File

@@ -21,7 +21,7 @@
#include "../../../test.h"
#include <fennec/langproc/strings/cstring.h>
#include <fennec/lang/strings/cstring.h>
namespace fennec::test
{
@@ -45,7 +45,6 @@ namespace fennec::test
fennec_test_run(str.find("World"), static_cast<size_t>(6));
fennec_test_run(str.rfind('o'), static_cast<size_t>(7));
fennec_test_run(str.rfind("World"), static_cast<size_t>(6));
}
}

View File

@@ -0,0 +1,57 @@
// =====================================================================================================================
// 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/>.
// =====================================================================================================================
///
/// \file test_string.h
/// \brief
///
///
/// \details
/// \author Medusa Slockbower
///
/// \copyright Copyright © 2025 Medusa Slockbower ([GPLv3](https://www.gnu.org/licenses/gpl-3.0.en.html))
///
///
#ifndef FENNEC_TEST_LANGPROC_STRINGS_STRING_H
#define FENNEC_TEST_LANGPROC_STRINGS_STRING_H
#include <fennec/lang/strings/string.h>
#include "../../../test.h"
namespace fennec::test
{
inline void fennec_test_langproc_strings_string() {
string test0 = string("test0");
string test1 = string("test1");
fennec_test_run(test0, test0);
fennec_test_run(test1, test1);
fennec_test_spacer(1);
fennec_test_run(test1 = test0, test0);
}
}
#endif // FENNEC_TEST_LANGPROC_STRINGS_STRING_H

View File

@@ -30,7 +30,7 @@
#ifndef FENNEC_TEST_LANGPROC_FORMAT_H
#define FENNEC_TEST_LANGPROC_FORMAT_H
#include <fennec/langproc/strings/format.h>
#include <fennec/lang/strings/format.h>
namespace fennec
{

View File

@@ -21,8 +21,8 @@
#include "../../test.h"
#include <fennec/langproc/filesystem/file.h>
#include <fennec/langproc/filesystem/path.h>
#include <fennec/lang/filesystem/file.h>
#include <fennec/lang/filesystem/path.h>
namespace fennec::test
{

View File

@@ -21,6 +21,7 @@
#include "../../test.h"
#include "./strings/test_cstring.h"
#include "./strings/test_string.h"
namespace fennec::test
{
@@ -32,6 +33,12 @@ namespace fennec::test
fennec_test_langproc_strings_cstring();
fennec_test_spacer(3);
fennec_test_subheader("string");
fennec_test_spacer(2);
fennec_test_langproc_strings_string();
fennec_test_spacer(3);
// TODO
}

View File

@@ -19,8 +19,8 @@
#ifndef FENNEC_TEST_LANG_BITS_H
#define FENNEC_TEST_LANG_BITS_H
#include <fennec/lang/assert.h>
#include <fennec/lang/bits.h>
#include <fennec/langcpp/assert.h>
#include <fennec/langcpp/bits.h>
#include "../../test.h"

View File

@@ -19,7 +19,7 @@
#ifndef FENNEC_TEST_LANG_HASHING_H
#define FENNEC_TEST_LANG_HASHING_H
#include <fennec/lang/hashing.h>
#include <fennec/langcpp/hashing.h>
#include "../../test.h"
namespace fennec::test

View File

@@ -19,7 +19,7 @@
#ifndef FENNEC_TEST_LANG_SEQUENCES_H
#define FENNEC_TEST_LANG_SEQUENCES_H
#include <fennec/lang/const_sequences.h>
#include <fennec/langcpp/const_sequences.h>
namespace fennec::test
{

View File

@@ -19,9 +19,9 @@
#ifndef FENNEC_TEST_LANG_H
#define FENNEC_TEST_LANG_H
#include "lang/test_bits.h"
#include "lang/test_conditional_types.h"
#include "lang/test_hashing.h"
#include "langcpp/test_bits.h"
#include "langcpp/test_conditional_types.h"
#include "langcpp/test_hashing.h"
namespace fennec::test
{

View File

@@ -21,9 +21,9 @@
#include "../test.h"
#include "./langproc/test_strings.h"
#include "./langproc/test_io.h"
#include "langproc/test_format.h"
#include "./lang/test_strings.h"
#include "./lang/test_io.h"
#include "lang/test_format.h"
namespace fennec::test
{

67
test/tests/test_rtti.h Normal file
View File

@@ -0,0 +1,67 @@
// =====================================================================================================================
// 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/>.
// =====================================================================================================================
///
/// \file test_rtti.h
/// \brief
///
///
/// \details
/// \author Medusa Slockbower
///
/// \copyright Copyright © 2025 Medusa Slockbower ([GPLv3](https://www.gnu.org/licenses/gpl-3.0.en.html))
///
///
#ifndef FENNEC_TEST_RTTI_H
#define FENNEC_TEST_RTTI_H
#include <fennec/lang/strings/string.h>
#include <fennec/rtti/type.h>
#include <fennec/rtti/type_data.h>
#include <fennec/rtti/detail/_type_name.h>
#include <fennec/scene/node2d.h>
#include "../test.h"
namespace fennec::test
{
struct rtti_test_base {
FENNEC_RTTI_ENABLE();
};
struct rtti_test_sub : rtti_test_base {
FENNEC_RTTI_ENABLE(rtti_test_base);
};
inline void fennec_test_rtti() {
fennec_test_run(string(detail::type_name<int>()), string("int"));
fennec_test_run(type::get<int>(), type::get<signed int>());
fennec_test_run(type::get<rtti_test_sub>().name(), string(detail::type_name<rtti_test_sub>()));
fennec_test_run(type::get<rtti_test_sub>().supertypes()[0].name(), string(detail::type_name<rtti_test_base>()));
fennec_test_run(type::get<rtti_test_base>().subtypes()[0].name(), string(detail::type_name<rtti_test_sub>()));
}
}
#endif // FENNEC_TEST_RTTI_H