Item C Interface.
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
a95b6d1817
commit
66060c68c0
|
@ -0,0 +1,25 @@
|
||||||
|
#include "../../src/Library/Items/Item.hpp"
|
||||||
|
#include <Arbutils/ConstString.hpp>
|
||||||
|
#include "../Core.hpp"
|
||||||
|
using namespace PkmnLib::Library;
|
||||||
|
|
||||||
|
export Item* PkmnLib_Item_Construct(const char* name, CreatureLib::Library::ItemCategory category,
|
||||||
|
CreatureLib::Library::BattleItemCategory battleCategory, int32_t price,
|
||||||
|
const char* flags[], size_t flagsCount, uint8_t flingPower) {
|
||||||
|
std::unordered_set<uint32_t> conversedFlags(flagsCount);
|
||||||
|
for (size_t i = 0; i < flagsCount; i++) {
|
||||||
|
conversedFlags.insert(Arbutils::CaseInsensitiveConstString::GetHash(flags[i]));
|
||||||
|
}
|
||||||
|
|
||||||
|
return new Item(Arbutils::CaseInsensitiveConstString(name), category, battleCategory, price, conversedFlags,
|
||||||
|
flingPower);
|
||||||
|
};
|
||||||
|
|
||||||
|
export void PkmnLib_Item_Destruct(const Item* p) { delete p; }
|
||||||
|
|
||||||
|
#define SIMPLE_GET_FUNC(type, name, returnType) \
|
||||||
|
export returnType PkmnLib_##type##_##name(const PkmnLib::Library::type* p) { return p->name(); }
|
||||||
|
|
||||||
|
SIMPLE_GET_FUNC(Item, GetFlingPower, uint8_t)
|
||||||
|
|
||||||
|
#undef SIMPLE_GET_FUNC
|
|
@ -9,10 +9,10 @@ namespace PkmnLib::Library {
|
||||||
public:
|
public:
|
||||||
Item(const Arbutils::CaseInsensitiveConstString& name, CreatureLib::Library::ItemCategory category,
|
Item(const Arbutils::CaseInsensitiveConstString& name, CreatureLib::Library::ItemCategory category,
|
||||||
CreatureLib::Library::BattleItemCategory battleCategory, int32_t price,
|
CreatureLib::Library::BattleItemCategory battleCategory, int32_t price,
|
||||||
std::unordered_set<uint32_t> flags, uint8_t flingPower)
|
const std::unordered_set<uint32_t>& flags, uint8_t flingPower) noexcept
|
||||||
: CreatureLib::Library::Item(name, category, battleCategory, price, flags), _flingPower(flingPower) {}
|
: CreatureLib::Library::Item(name, category, battleCategory, price, flags), _flingPower(flingPower) {}
|
||||||
|
|
||||||
inline uint8_t GetFlingPower() const { return _flingPower; }
|
inline uint8_t GetFlingPower() const noexcept { return _flingPower; }
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue