Compare commits

..

No commits in common. "da1215d8274cc41576795e45b6ca4d3004e1ba7e" and "b3c59ffe0d17bbd3a09f88c2b6b4572052b62deb" have entirely different histories.

9 changed files with 106 additions and 115 deletions

View file

@ -77,8 +77,8 @@ add_library(BillySheet SHARED ${SOURCES})
target_include_directories(BillySheet target_include_directories(BillySheet
PUBLIC PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include> $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INDLUDEDIR}/billySheet>
) )
target_include_directories(BillySheet INTERFACE $<INSTALL_INTERFACE:include/billySheet>)
set_target_properties(BillySheet PROPERTIES set_target_properties(BillySheet PROPERTIES
CXX_STANDARD 17 CXX_STANDARD 17
@ -89,7 +89,7 @@ set_target_properties(BillySheet PROPERTIES
PUBLIC_HEADER "include/billy_objects.hpp;include/character_sheet.hpp;include/generic_object.hpp;include/characteristic.hpp" PUBLIC_HEADER "include/billy_objects.hpp;include/character_sheet.hpp;include/generic_object.hpp;include/characteristic.hpp"
) )
target_compile_definitions(BillySheet PRIVATE target_compile_definitions(BillySheet PUBLIC
$<$<CONFIG:Debug>:_GLIBCXX_DEBUG> $<$<CONFIG:Debug>:_GLIBCXX_DEBUG>
) )

View file

@ -23,15 +23,9 @@ namespace character::test {
static std::unique_ptr<GenericObject> get_obj(const billyEnums &object) noexcept { static std::unique_ptr<GenericObject> get_obj(const billyEnums &object) noexcept {
return std::visit(overloaded{ return std::visit(overloaded{
[](const weapons &arg) { [](const weapons &arg) { return std::unique_ptr<GenericObject>(std::make_unique<Weapons>(arg)); },
return std::unique_ptr<GenericObject>(std::make_unique<Weapons>(arg)); [](const equipments &arg) { return std::unique_ptr<GenericObject>(std::make_unique<Equipments>(arg)); },
}, [](const tools &arg) { return std::unique_ptr<GenericObject>(std::make_unique<Tools>(arg)); },
[](const equipments &arg) {
return std::unique_ptr<GenericObject>(std::make_unique<Equipments>(arg));
},
[](const tools &arg) {
return std::unique_ptr<GenericObject>(std::make_unique<Tools>(arg));
},
}, },
object); object);
} }

View file

@ -16,7 +16,9 @@ TEST_CASE("[A] Serialize adresse", "[serialize][0]") {
REQUIRE_NOTHROW(tester.at("base") == 1); REQUIRE_NOTHROW(tester.at("base") == 1);
REQUIRE_NOTHROW(tester.at("carac") == 0); REQUIRE_NOTHROW(tester.at("carac") == 0);
REQUIRE_NOTHROW(tester.at("materiel") == 0); REQUIRE_NOTHROW(tester.at("materiel") == 0);
REQUIRE_NOTHROW(tester.at("additional") == 0); { REQUIRE_NOTHROW(tester.at("additional") == 0);
{
std::ofstream file{ "adresse.json" }; std::ofstream file{ "adresse.json" };
file << serializer << std::flush; file << serializer << std::flush;
} }
@ -33,7 +35,9 @@ TEST_CASE("[A] Serialize chance", "[serialize][1]") {
REQUIRE_NOTHROW(tester.at("base") == 3); REQUIRE_NOTHROW(tester.at("base") == 3);
REQUIRE_NOTHROW(tester.at("carac") == 0); REQUIRE_NOTHROW(tester.at("carac") == 0);
REQUIRE_NOTHROW(tester.at("materiel") == 0); REQUIRE_NOTHROW(tester.at("materiel") == 0);
REQUIRE_NOTHROW(tester.at("additional") == 0); { REQUIRE_NOTHROW(tester.at("additional") == 0);
{
std::ofstream file{ "chance.json" }; std::ofstream file{ "chance.json" };
file << serializer << std::flush; file << serializer << std::flush;
} }
@ -50,7 +54,9 @@ TEST_CASE("[A] Serialize endurance", "[serialize][2]") {
REQUIRE_NOTHROW(tester.at("base") == 2); REQUIRE_NOTHROW(tester.at("base") == 2);
REQUIRE_NOTHROW(tester.at("carac") == 0); REQUIRE_NOTHROW(tester.at("carac") == 0);
REQUIRE_NOTHROW(tester.at("materiel") == 0); REQUIRE_NOTHROW(tester.at("materiel") == 0);
REQUIRE_NOTHROW(tester.at("additional") == 0); { REQUIRE_NOTHROW(tester.at("additional") == 0);
{
std::ofstream file{ "endurance.json" }; std::ofstream file{ "endurance.json" };
file << serializer << std::flush; file << serializer << std::flush;
} }
@ -67,7 +73,9 @@ TEST_CASE("[A] Serialize habilete", "[serialize][3]") {
REQUIRE_NOTHROW(tester.at("base") == 2); REQUIRE_NOTHROW(tester.at("base") == 2);
REQUIRE_NOTHROW(tester.at("carac") == 0); REQUIRE_NOTHROW(tester.at("carac") == 0);
REQUIRE_NOTHROW(tester.at("materiel") == 0); REQUIRE_NOTHROW(tester.at("materiel") == 0);
REQUIRE_NOTHROW(tester.at("additional") == 0); { REQUIRE_NOTHROW(tester.at("additional") == 0);
{
std::ofstream file{ "habilete.json" }; std::ofstream file{ "habilete.json" };
file << serializer << std::flush; file << serializer << std::flush;
} }

View file

@ -15,6 +15,7 @@ namespace character {
class CharacterSheet final { class CharacterSheet final {
private: private:
friend BillyObjects; friend BillyObjects;
std::string caractere{}; std::string caractere{};
@ -53,7 +54,6 @@ namespace character {
std::uint32_t nb_equipments{ 0 }; std::uint32_t nb_equipments{ 0 };
std::uint32_t nb_tools{ 0 }; std::uint32_t nb_tools{ 0 };
public: public:
CharacterSheet() = default; CharacterSheet() = default;

View file

@ -1,7 +1,6 @@
#ifndef BILLYSHEET_CHARACTERISTIC_HPP #ifndef BILLYSHEET_CHARACTERISTIC_HPP
#define BILLYSHEET_CHARACTERISTIC_HPP #define BILLYSHEET_CHARACTERISTIC_HPP
#include <algorithm>
#include <cstdint> #include <cstdint>
#include <nlohmann/json.hpp> #include <nlohmann/json.hpp>
@ -83,7 +82,9 @@ namespace character::characteristic {
[[nodiscard]] std::size_t get_total() const noexcept { [[nodiscard]] std::size_t get_total() const noexcept {
if (total == defaultValue::max()) { if (total == defaultValue::max()) {
total = static_cast<std::int32_t>(base + carac + materiel + additional); total = static_cast<std::int32_t>(base + carac + materiel + additional);
total = std::max(total, 0); if (total < 0) {
total = 0;
}
} }
return total; return total;
} }

View file

@ -12,10 +12,7 @@
// helper type for the visitor // helper type for the visitor
template<typename... Ts> template<typename... Ts>
struct overloaded : Ts... { struct overloaded : Ts ... { using Ts::operator()...; };
using Ts::operator()...;
};
template<typename... Ts> template<typename... Ts>
overloaded(Ts...) -> overloaded<Ts...>; overloaded(Ts...) -> overloaded<Ts...>;
@ -142,6 +139,7 @@ namespace character {
[[nodiscard]] billyEnums get_type() const noexcept final { return type; } [[nodiscard]] billyEnums get_type() const noexcept final { return type; }
}; };
} // character } // character
#endif //BILLYSHEET_GENERIC_OBJECT_HPP #endif //BILLYSHEET_GENERIC_OBJECT_HPP

View file

@ -1,7 +1,6 @@
#include "billy_objects.hpp" #include "billy_objects.hpp"
#include "characteristic.hpp" #include "characteristic.hpp"
#include "character_sheet.hpp" #include "character_sheet.hpp"
#include <nlohmann/json.hpp> #include <nlohmann/json.hpp>
constexpr std::uint32_t const_hash(const char *input) { constexpr std::uint32_t const_hash(const char *input) {
@ -21,20 +20,12 @@ namespace character {
sheet.objects.emplace(objType, sheet.objects.emplace(objType,
std::visit(overloaded{ std::visit(overloaded{
[](const weapons &arg) { [](const weapons &arg) {
return std::unique_ptr<GenericObject>( return std::unique_ptr<GenericObject>(std::make_unique<Weapons>(arg));
std::make_unique<Weapons>(arg)
);
}, },
[](const equipments &arg) { [](const equipments &arg) {
return std::unique_ptr<GenericObject>( return std::unique_ptr<GenericObject>(std::make_unique<Equipments>(arg));
std::make_unique<Equipments>(arg)
);
},
[](const tools &arg) {
return std::unique_ptr<GenericObject>(
std::make_unique<Tools>(arg)
);
}, },
[](const tools &arg) { return std::unique_ptr<GenericObject>(std::make_unique<Tools>(arg)); },
}, },
objType)); objType));
const auto &object = sheet.objects[objType]; const auto &object = sheet.objects[objType];
@ -84,8 +75,7 @@ namespace character {
Characteristic &localAdresse, Characteristic &localAdresse,
Characteristic &localEndurance, Characteristic &localEndurance,
Characteristic &localChance, Characteristic &localChance,
const std::function<std::uint32_t(std::uint32_t, std::uint32_t)> &operation) const std::function<std::uint32_t(std::uint32_t, std::uint32_t)> &operation) noexcept {
noexcept {
localHabilete.materiel = operation(localHabilete.materiel, arg->add_materiel(localHabilete.type)); localHabilete.materiel = operation(localHabilete.materiel, arg->add_materiel(localHabilete.type));
localAdresse.materiel = operation(localAdresse.materiel, arg->add_materiel(localAdresse.type)); localAdresse.materiel = operation(localAdresse.materiel, arg->add_materiel(localAdresse.type));
localEndurance.materiel = operation(localEndurance.materiel, arg->add_materiel(localEndurance.type)); localEndurance.materiel = operation(localEndurance.materiel, arg->add_materiel(localEndurance.type));