Compare commits
	
		
			No commits in common. "b2f4f31abd1b86b87f023465734c619e7ec25b7e" and "a164593cd85e7159929a4a530df1634b6eadc3ff" have entirely different histories.
		
	
	
		
			
				b2f4f31abd
			
			...
			
				a164593cd8
			
		
	
		
					 5 changed files with 45 additions and 244 deletions
				
			
		| 
						 | 
					@ -4,24 +4,20 @@ project(UnitTest CXX)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
include(../external/catch2/extras/Catch.cmake)
 | 
					include(../external/catch2/extras/Catch.cmake)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
add_executable(UnitTest adummy.cpp
 | 
					add_executable(UnitTest adummy.cpp characteristics_tests.cpp)
 | 
				
			||||||
               characteristics_tests.cpp
 | 
					 | 
				
			||||||
               ../src/billy_objects.cpp
 | 
					 | 
				
			||||||
               billy_objects_tests.cpp
 | 
					 | 
				
			||||||
)
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
set_target_properties(Catch2 UnitTest svector PROPERTIES
 | 
					set_target_properties(Catch2 UnitTest PROPERTIES
 | 
				
			||||||
                      CXX_STANDARD 17
 | 
					                      CXX_STANDARD 17
 | 
				
			||||||
                      CXX_STANDARD_REQUIRED ON
 | 
					                      CXX_STANDARD_REQUIRED ON
 | 
				
			||||||
                      CXX_EXTENSIONS OFF
 | 
					                      CXX_EXTENSIONS OFF
 | 
				
			||||||
                      INTERPROCEDURAL_OPTIMIZATION_RELEASE ON
 | 
					                      INTERPROCEDURAL_OPTIMIZATION ON
 | 
				
			||||||
                      # UNITY_BUILD ON
 | 
					                      # UNITY_BUILD ON
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
target_include_directories(UnitTest PRIVATE ${CMAKE_SOURCE_DIR}/include)
 | 
					target_include_directories(UnitTest PRIVATE ${CMAKE_SOURCE_DIR}/include)
 | 
				
			||||||
target_compile_definitions(UnitTest PRIVATE ${DEF_COMP})
 | 
					target_compile_definitions(UnitTest PRIVATE ${DEF_COMP})
 | 
				
			||||||
target_compile_options(UnitTest PRIVATE ${COMPILE_FLAGS})
 | 
					target_compile_options(UnitTest PRIVATE ${COMPILE_FLAGS})
 | 
				
			||||||
target_link_options(UnitTest PRIVATE ${LINKER_OPTIONS})
 | 
					target_link_options(UnitTest PRIVATE ${LINKER_OPTIONS})
 | 
				
			||||||
target_link_libraries(UnitTest ${LINKER_FLAGS} spdlog::spdlog_header_only Catch2::Catch2WithMain nlohmann_json::nlohmann_json svector::svector)
 | 
					target_link_libraries(UnitTest ${LINKER_FLAGS} Catch2::Catch2WithMain nlohmann_json::nlohmann_json)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
enable_testing()
 | 
					enable_testing()
 | 
				
			||||||
catch_discover_tests(UnitTest WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} REPORTER junit OUTPUT_DIR ${CMAKE_SOURCE_DIR} OUTPUT_PREFIX cppspec- OUTPUT_SUFFIX .xml)
 | 
					catch_discover_tests(UnitTest WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} REPORTER junit OUTPUT_DIR ${CMAKE_SOURCE_DIR} OUTPUT_PREFIX cppspec- OUTPUT_SUFFIX .xml)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,168 +0,0 @@
 | 
				
			||||||
//
 | 
					 | 
				
			||||||
// Created by postaron on 29/02/24.
 | 
					 | 
				
			||||||
//
 | 
					 | 
				
			||||||
#include <catch2/catch_all.hpp>
 | 
					 | 
				
			||||||
#include <iostream>
 | 
					 | 
				
			||||||
#include <fstream>
 | 
					 | 
				
			||||||
#include "billy_objects.hpp"
 | 
					 | 
				
			||||||
#include "character_sheet.hpp"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
using namespace character;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
namespace character::test {
 | 
					 | 
				
			||||||
    struct DummyObject {
 | 
					 | 
				
			||||||
        BillyObjects::container objects;
 | 
					 | 
				
			||||||
    };
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    void to_json(json &j, const DummyObject &a) {
 | 
					 | 
				
			||||||
        j.emplace(std::pair{ BillyObjects::json_key, json::array() });
 | 
					 | 
				
			||||||
        BillyObjects::to_json(j.at(BillyObjects::json_key), a.objects);
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    void from_json(const json &j, DummyObject &dummy) {
 | 
					 | 
				
			||||||
        BillyObjects::from_json(j, dummy.objects);
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
TEST_CASE("[C] Serialize empty BillyObjects", "[serialize][0]") {
 | 
					 | 
				
			||||||
    CharacterSheet sheet;
 | 
					 | 
				
			||||||
    json serializer;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    REQUIRE_NOTHROW(serializer.emplace("sheet", sheet));
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    const auto tester = serializer.at("sheet").at(BillyObjects::json_key);
 | 
					 | 
				
			||||||
    serializer.clear();
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    REQUIRE_NOTHROW(tester.empty() == true);
 | 
					 | 
				
			||||||
    REQUIRE(tester.empty());
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    {
 | 
					 | 
				
			||||||
        std::ofstream file{ "billy_objects_empty.json" };
 | 
					 | 
				
			||||||
        file << tester << std::flush;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
TEST_CASE("[C] Serialize full BillyObjects", "[serialize][1]") {
 | 
					 | 
				
			||||||
    BillyObjects gestionnaire{};
 | 
					 | 
				
			||||||
    test::DummyObject dummy_object;
 | 
					 | 
				
			||||||
    {
 | 
					 | 
				
			||||||
        CharacterSheet sheet;
 | 
					 | 
				
			||||||
        gestionnaire.push_object(weapons::Sword, sheet);
 | 
					 | 
				
			||||||
        gestionnaire.push_object(tools::Fourche, sheet);
 | 
					 | 
				
			||||||
        gestionnaire.push_object(equipments::MedicKit, sheet);
 | 
					 | 
				
			||||||
        dummy_object.objects = sheet.get_objects();
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    json serializer;
 | 
					 | 
				
			||||||
    REQUIRE_NOTHROW(serializer.emplace("sheet", dummy_object));
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    const auto &tester = serializer.at("sheet").at(BillyObjects::json_key);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    REQUIRE_FALSE(tester.empty());
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    {
 | 
					 | 
				
			||||||
        std::ofstream file{ "billy_objects_full.json" };
 | 
					 | 
				
			||||||
        file << tester << std::flush;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
TEST_CASE("[D] Deserialize empty BillyObjects", "[deserialize][0]") {
 | 
					 | 
				
			||||||
    BillyObjects gestionnaire{};
 | 
					 | 
				
			||||||
    test::DummyObject dummy_object;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    const auto deserializer = []() -> json {
 | 
					 | 
				
			||||||
        std::ifstream file{ "billy_objects_empty.json" };
 | 
					 | 
				
			||||||
        return json::parse(file);
 | 
					 | 
				
			||||||
    }();
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    REQUIRE_NOTHROW(deserializer.get_to(dummy_object));
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    REQUIRE_FALSE(!dummy_object.objects.empty());
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
TEST_CASE("[D] Deserialize full BillyObjects", "[deserialize][1]") {
 | 
					 | 
				
			||||||
    BillyObjects gestionnaire{};
 | 
					 | 
				
			||||||
    test::DummyObject dummy_object;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    const auto deserializer = []() -> json {
 | 
					 | 
				
			||||||
        std::ifstream file{ "billy_objects_full.json" };
 | 
					 | 
				
			||||||
        return json::parse(file);
 | 
					 | 
				
			||||||
    }();
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    REQUIRE_NOTHROW(deserializer.get_to(dummy_object));
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    REQUIRE_FALSE(dummy_object.objects.empty());
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    REQUIRE_FALSE(std::holds_alternative<tools>(dummy_object.objects[0]));
 | 
					 | 
				
			||||||
    REQUIRE(std::holds_alternative<weapons>(dummy_object.objects[0]));
 | 
					 | 
				
			||||||
    REQUIRE(std::get<weapons>(dummy_object.objects[0]) == weapons::Sword);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    REQUIRE_FALSE(std::holds_alternative<weapons>(dummy_object.objects[1]));
 | 
					 | 
				
			||||||
    REQUIRE(std::holds_alternative<tools>(dummy_object.objects[1]));
 | 
					 | 
				
			||||||
    REQUIRE(std::get<tools>(dummy_object.objects[1]) == tools::Fourche);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    REQUIRE_FALSE(std::holds_alternative<weapons>(dummy_object.objects[2]));
 | 
					 | 
				
			||||||
    REQUIRE(std::holds_alternative<equipments>(dummy_object.objects[2]));
 | 
					 | 
				
			||||||
    REQUIRE(std::get<equipments>(dummy_object.objects[2]) == equipments::MedicKit);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
TEST_CASE("[D] Pushing popping BillyObjects", "[pushpop][0]") {
 | 
					 | 
				
			||||||
    constexpr std::array<BillyObjects::billyObject, 12> all_objects{
 | 
					 | 
				
			||||||
            weapons::Sword,
 | 
					 | 
				
			||||||
            weapons::Lance,
 | 
					 | 
				
			||||||
            weapons::Morgenstern,
 | 
					 | 
				
			||||||
            weapons::Bow,
 | 
					 | 
				
			||||||
            equipments::Chainmail,
 | 
					 | 
				
			||||||
            equipments::CookingPot,
 | 
					 | 
				
			||||||
            equipments::PamphletTourist,
 | 
					 | 
				
			||||||
            equipments::MedicKit,
 | 
					 | 
				
			||||||
            tools::Fourche,
 | 
					 | 
				
			||||||
            tools::Dagger,
 | 
					 | 
				
			||||||
            tools::RockClimbingKit,
 | 
					 | 
				
			||||||
            tools::SackOfGrain,
 | 
					 | 
				
			||||||
    };
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    BillyObjects gestionnaire{};
 | 
					 | 
				
			||||||
    CharacterSheet sheet;
 | 
					 | 
				
			||||||
    REQUIRE(sheet.get_objects().empty());
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    REQUIRE_NOTHROW(gestionnaire.push_object(weapons::Sword, sheet));
 | 
					 | 
				
			||||||
    REQUIRE_FALSE(sheet.get_objects().empty());
 | 
					 | 
				
			||||||
    REQUIRE(std::holds_alternative<weapons>(sheet.get_objects().back()));
 | 
					 | 
				
			||||||
    REQUIRE(std::get<weapons>(sheet.get_objects().back()) == weapons::Sword);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    REQUIRE_NOTHROW(gestionnaire.pop_object(sheet));
 | 
					 | 
				
			||||||
    REQUIRE(sheet.get_objects().empty());
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    for (std::size_t j = 0; j < all_objects.size(); j += 3) {
 | 
					 | 
				
			||||||
        for (std::size_t i = 0; i < 3; ++i) {
 | 
					 | 
				
			||||||
            REQUIRE_NOTHROW(gestionnaire.push_object(all_objects[i + j], sheet));
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
        REQUIRE_FALSE(sheet.get_objects().empty());
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        for (std::size_t i = 0; i < 3; ++i) {
 | 
					 | 
				
			||||||
            REQUIRE_NOTHROW(gestionnaire.pop_object(sheet));
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
        REQUIRE(sheet.get_objects().empty());
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
TEST_CASE("[D] Printing Billy's objects", "[printing]") {
 | 
					 | 
				
			||||||
    constexpr std::array<BillyObjects::billyObject, 12> all_objects{
 | 
					 | 
				
			||||||
            weapons::Sword,
 | 
					 | 
				
			||||||
            weapons::Lance,
 | 
					 | 
				
			||||||
            weapons::Morgenstern,
 | 
					 | 
				
			||||||
            weapons::Bow,
 | 
					 | 
				
			||||||
            equipments::Chainmail,
 | 
					 | 
				
			||||||
            equipments::CookingPot,
 | 
					 | 
				
			||||||
            equipments::PamphletTourist,
 | 
					 | 
				
			||||||
            equipments::MedicKit,
 | 
					 | 
				
			||||||
            tools::Fourche,
 | 
					 | 
				
			||||||
            tools::Dagger,
 | 
					 | 
				
			||||||
            tools::RockClimbingKit,
 | 
					 | 
				
			||||||
            tools::SackOfGrain,
 | 
					 | 
				
			||||||
    };
 | 
					 | 
				
			||||||
    for (const auto &object: all_objects) {
 | 
					 | 
				
			||||||
        REQUIRE_NOTHROW(BillyObjects::billy_object_to_string(object));
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
| 
						 | 
					@ -30,26 +30,23 @@ namespace character {
 | 
				
			||||||
    };
 | 
					    };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    enum class equipments : std::uint8_t {
 | 
					    enum class equipments : std::uint8_t {
 | 
				
			||||||
        Chainmail = 4,
 | 
					        Chainmail = 0,
 | 
				
			||||||
        CookingPot = 5,
 | 
					        CookingPot = 1,
 | 
				
			||||||
        PamphletTourist = 6,
 | 
					        PamphletTourist = 2,
 | 
				
			||||||
        MedicKit = 7
 | 
					        MedicKit = 3,
 | 
				
			||||||
    };
 | 
					    };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    enum class tools : std::uint8_t {
 | 
					    enum class tools : std::uint8_t {
 | 
				
			||||||
        Fourche = 8,
 | 
					        Fourche = 0,
 | 
				
			||||||
        Dagger = 9,
 | 
					        Dagger = 1,
 | 
				
			||||||
        RockClimbingKit = 10,
 | 
					        RockClimbingKit = 2,
 | 
				
			||||||
        SackOfGrain = 11
 | 
					        SackOfGrain = 3
 | 
				
			||||||
    };
 | 
					    };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    class BillyObjects final {
 | 
					    class BillyObjects final {
 | 
				
			||||||
    public:
 | 
					    public:
 | 
				
			||||||
        static constexpr std::size_t max_num_obj{ 3 };
 | 
					 | 
				
			||||||
        using billyObject = std::variant<weapons, equipments, tools>;
 | 
					        using billyObject = std::variant<weapons, equipments, tools>;
 | 
				
			||||||
        using container = ankerl::svector<billyObject, max_num_obj>;
 | 
					        using container = ankerl::svector<billyObject, 3>;
 | 
				
			||||||
 | 
					 | 
				
			||||||
        static constexpr std::string_view json_key{ "billy_objects" };
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
        static constexpr std::string_view sword{ "Sword" };
 | 
					        static constexpr std::string_view sword{ "Sword" };
 | 
				
			||||||
        static constexpr std::string_view lance{ "Lance" };
 | 
					        static constexpr std::string_view lance{ "Lance" };
 | 
				
			||||||
| 
						 | 
					@ -68,21 +65,16 @@ namespace character {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        static std::string_view billy_object_to_string(const billyObject &object) noexcept;
 | 
					        static std::string_view billy_object_to_string(const billyObject &object) noexcept;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        static void to_json(json &j, const BillyObjects::container &billy);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        static void from_json(const json &j, BillyObjects::container &billy);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        BillyObjects() noexcept = default;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        ~BillyObjects() noexcept = default;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        void push_object(const billyObject &object, CharacterSheet &sheet) noexcept;
 | 
					        void push_object(const billyObject &object, CharacterSheet &sheet) noexcept;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        void pop_object(CharacterSheet &sheet) noexcept;
 | 
					        void pop_object(CharacterSheet &sheet) noexcept;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        [[nodiscard]] const container &get_objects() const noexcept { return objects; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//        void insert_weapon(weapons weapon, CharacterSheet &sheet) noexcept;
 | 
					//        void insert_weapon(weapons weapon, CharacterSheet &sheet) noexcept;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    private:
 | 
					    private:
 | 
				
			||||||
 | 
					        container objects;
 | 
				
			||||||
        std::plus<std::uint32_t> plus;
 | 
					        std::plus<std::uint32_t> plus;
 | 
				
			||||||
        std::minus<std::uint32_t> minus;
 | 
					        std::minus<std::uint32_t> minus;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -12,12 +12,28 @@ using namespace std::string_view_literals;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
namespace gui {
 | 
					namespace gui {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    enum class characChanged {
 | 
				
			||||||
 | 
					        None,
 | 
				
			||||||
 | 
					        Adresse,
 | 
				
			||||||
 | 
					        Endurance,
 | 
				
			||||||
 | 
					        Chance,
 | 
				
			||||||
 | 
					        Habilete
 | 
				
			||||||
 | 
					    };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    class GuiData final {
 | 
					    class GuiData final {
 | 
				
			||||||
    private:
 | 
					    private:
 | 
				
			||||||
        friend class Gui;
 | 
					        friend class Gui;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        character::CharacterSheet &billy;
 | 
					        character::CharacterSheet &billy;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        std::pair<characChanged, std::uint32_t> base{ characChanged::None, 0 };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        std::pair<characChanged, std::uint32_t> carac{ characChanged::None, 0 };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        std::pair<characChanged, std::uint32_t> materiel{ characChanged::None, 0 };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        std::pair<characChanged, std::uint32_t> additional{ characChanged::None, 0 };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    public:
 | 
					    public:
 | 
				
			||||||
        static constexpr std::array classes{
 | 
					        static constexpr std::array classes{
 | 
				
			||||||
                "Guerrier"sv,
 | 
					                "Guerrier"sv,
 | 
				
			||||||
| 
						 | 
					@ -31,6 +47,14 @@ namespace gui {
 | 
				
			||||||
        explicit GuiData(character::CharacterSheet &billy) noexcept: billy(billy) { SPDLOG_DEBUG("Creating GUI Data"); }
 | 
					        explicit GuiData(character::CharacterSheet &billy) noexcept: billy(billy) { SPDLOG_DEBUG("Creating GUI Data"); }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        ~GuiData() noexcept = default;
 | 
					        ~GuiData() noexcept = default;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        [[nodiscard]] const std::pair<characChanged, std::uint32_t> &get_base() const { return base; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        [[nodiscard]] const std::pair<characChanged, std::uint32_t> &get_carac() const { return carac; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        [[nodiscard]] const std::pair<characChanged, std::uint32_t> &get_materiel() const { return materiel; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        [[nodiscard]] const std::pair<characChanged, std::uint32_t> &get_additional() const { return additional; }
 | 
				
			||||||
    };
 | 
					    };
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2,24 +2,15 @@
 | 
				
			||||||
// Created by postaron on 23/02/24.
 | 
					// Created by postaron on 23/02/24.
 | 
				
			||||||
//
 | 
					//
 | 
				
			||||||
#include "billy_objects.hpp"
 | 
					#include "billy_objects.hpp"
 | 
				
			||||||
#include <spdlog/spdlog.h>
 | 
					 | 
				
			||||||
#include "characteristic/characteristic.hpp"
 | 
					#include "characteristic/characteristic.hpp"
 | 
				
			||||||
#include "character_sheet.hpp"
 | 
					#include "character_sheet.hpp"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
std::uint32_t constexpr const_hash(const char *input) {
 | 
					 | 
				
			||||||
    return *input ? static_cast<unsigned int>(*input) + 33 * const_hash(input + 1) : 5381;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
constexpr std::uint32_t weaponsHash = const_hash("weapons");
 | 
					 | 
				
			||||||
constexpr std::uint32_t equipmentHash = const_hash("equipments");
 | 
					 | 
				
			||||||
constexpr std::uint32_t toolsHash = const_hash("tools");
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
namespace character {
 | 
					namespace character {
 | 
				
			||||||
    using characteristic::Characteristic;
 | 
					    using characteristic::Characteristic;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    void BillyObjects::push_object(const billyObject &object, CharacterSheet &sheet) noexcept {
 | 
					    void BillyObjects::push_object(const billyObject &object, CharacterSheet &sheet) noexcept {
 | 
				
			||||||
        if (sheet.objects.size() < 3) {
 | 
					        if (objects.size() < 3) {
 | 
				
			||||||
            sheet.objects.emplace_back(object);
 | 
					            objects.emplace_back(object);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            auto &local_habilete = static_cast<Characteristic &>(sheet.habilete);
 | 
					            auto &local_habilete = static_cast<Characteristic &>(sheet.habilete);
 | 
				
			||||||
            auto &local_adresse = static_cast<Characteristic &>(sheet.adresse);
 | 
					            auto &local_adresse = static_cast<Characteristic &>(sheet.adresse);
 | 
				
			||||||
| 
						 | 
					@ -57,9 +48,9 @@ namespace character {
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    void BillyObjects::pop_object(CharacterSheet &sheet) noexcept {
 | 
					    void BillyObjects::pop_object(CharacterSheet &sheet) noexcept {
 | 
				
			||||||
        if (!sheet.objects.empty()) {
 | 
					        if (!objects.empty()) {
 | 
				
			||||||
            const billyObject obj = sheet.objects.back();
 | 
					            const billyObject obj = objects.back();
 | 
				
			||||||
            sheet.objects.pop_back();
 | 
					            objects.pop_back();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            auto &local_habilete = static_cast<Characteristic &>(sheet.habilete);
 | 
					            auto &local_habilete = static_cast<Characteristic &>(sheet.habilete);
 | 
				
			||||||
            auto &local_adresse = static_cast<Characteristic &>(sheet.adresse);
 | 
					            auto &local_adresse = static_cast<Characteristic &>(sheet.adresse);
 | 
				
			||||||
| 
						 | 
					@ -214,38 +205,4 @@ namespace character {
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
        }, object);
 | 
					        }, object);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					 | 
				
			||||||
    void BillyObjects::from_json(const json &j, BillyObjects::container &billy) {
 | 
					 | 
				
			||||||
        for (const auto &element: j) {
 | 
					 | 
				
			||||||
            const std::uint32_t key = element[0].get<std::uint32_t>();
 | 
					 | 
				
			||||||
            const std::uint8_t value = element[1].get<std::uint8_t>();
 | 
					 | 
				
			||||||
            switch (key) {
 | 
					 | 
				
			||||||
                case weaponsHash:
 | 
					 | 
				
			||||||
                    billy.push_back(static_cast<weapons>(value));
 | 
					 | 
				
			||||||
                    break;
 | 
					 | 
				
			||||||
                case equipmentHash:
 | 
					 | 
				
			||||||
                    billy.push_back(static_cast<equipments>(value));
 | 
					 | 
				
			||||||
                    break;
 | 
					 | 
				
			||||||
                case toolsHash:
 | 
					 | 
				
			||||||
                    billy.push_back(static_cast<tools>(value));
 | 
					 | 
				
			||||||
                    break;
 | 
					 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    void BillyObjects::to_json(json &j, const BillyObjects::container &billy) {
 | 
					 | 
				
			||||||
        for (const auto &object: billy) {
 | 
					 | 
				
			||||||
            std::visit(overloaded{
 | 
					 | 
				
			||||||
                    [&j](const weapons weapon) {
 | 
					 | 
				
			||||||
                        j.emplace_back(std::pair{ weaponsHash, static_cast<std::uint8_t>(weapon) });
 | 
					 | 
				
			||||||
                    },
 | 
					 | 
				
			||||||
                    [&j](const equipments equipment) {
 | 
					 | 
				
			||||||
                        j.emplace_back(std::pair{ equipmentHash, static_cast<std::uint8_t>(equipment) });
 | 
					 | 
				
			||||||
                    },
 | 
					 | 
				
			||||||
                    [&j](const tools tool) {
 | 
					 | 
				
			||||||
                        j.emplace_back(std::pair{ toolsHash, static_cast<std::uint8_t>(tool) });
 | 
					 | 
				
			||||||
                    }
 | 
					 | 
				
			||||||
            }, object);
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue