#ifndef CREATURELIB_TYPELIBRARY_HPP #define CREATURELIB_TYPELIBRARY_HPP #include #include namespace CreatureLib::Library { class TypeLibrary { std::unordered_map _types; std::vector> _effectiveness; public: TypeLibrary(size_t initialCapacity = 20) : _types(std::unordered_map(initialCapacity)) {} uint8_t GetTypeId(const std::string& s) const; float GetSingleEffectiveness(uint8_t attacking, uint8_t defensive) const; float GetEffectiveness(uint8_t attacking, const std::vector& defensive) const; uint8_t RegisterType(const std::string& typeName); void SetEffectiveness(uint8_t attacking, uint8_t defensive, float effectiveness); }; } #endif // CREATURELIB_TYPELIBRARY_HPP