2020-02-29 16:21:36 +00:00
|
|
|
#include "../../src/Library/CreatureData/SpeciesVariant.hpp"
|
2020-03-25 18:07:36 +00:00
|
|
|
#include "../Core.hpp"
|
2020-02-29 16:21:36 +00:00
|
|
|
|
|
|
|
using namespace CreatureLib::Library;
|
|
|
|
|
|
|
|
export SpeciesVariant* CreatureLib_SpeciesVariant_Construct(
|
|
|
|
const char* name, float height, float weight, uint32_t baseExperience, uint8_t types[], size_t typeLength,
|
|
|
|
uint16_t baseHealth, uint16_t baseAttack, uint16_t baseDefense, uint16_t baseMagicalAttack,
|
2020-05-02 15:16:16 +00:00
|
|
|
uint16_t baseMagicalDefense, uint16_t baseSpeed, const char* talents[], size_t talentsLength,
|
2020-02-29 16:21:36 +00:00
|
|
|
const char* secretTalents[], size_t secretTalentsLength, const LearnableAttacks* attacks) {
|
|
|
|
|
2020-06-26 15:08:23 +00:00
|
|
|
auto talentsWrapped = ArbUt::List<ArbUt::StringView>(talentsLength);
|
2020-02-29 16:21:36 +00:00
|
|
|
for (size_t i = 0; i < talentsLength; i++) {
|
2020-06-26 15:08:23 +00:00
|
|
|
talentsWrapped.Append(ArbUt::StringView(talents[i]));
|
2020-02-29 16:21:36 +00:00
|
|
|
}
|
2020-06-26 15:08:23 +00:00
|
|
|
auto secretTalentsWrapped = ArbUt::List<ArbUt::StringView>(secretTalentsLength);
|
2020-02-29 16:21:36 +00:00
|
|
|
for (size_t i = 0; i < secretTalentsLength; i++) {
|
2020-06-26 15:08:23 +00:00
|
|
|
secretTalentsWrapped.Append(ArbUt::StringView(secretTalents[i]));
|
2020-02-29 16:21:36 +00:00
|
|
|
}
|
|
|
|
|
2020-06-26 15:08:23 +00:00
|
|
|
return new SpeciesVariant(
|
|
|
|
ArbUt::StringView(name), height, weight, baseExperience, ArbUt::List<uint8_t>(types, types + typeLength),
|
|
|
|
CreatureLib::Library::StatisticSet<uint16_t>(baseHealth, baseAttack, baseDefense, baseMagicalAttack,
|
|
|
|
baseMagicalDefense, baseSpeed),
|
|
|
|
talentsWrapped, secretTalentsWrapped, attacks);
|
2020-02-29 16:21:36 +00:00
|
|
|
}
|
|
|
|
|
2020-03-02 12:59:49 +00:00
|
|
|
export void CreatureLib_SpeciesVariant_Destruct(SpeciesVariant* p) { delete p; }
|
|
|
|
|
|
|
|
#define SIMPLE_GET_FUNC(type, name, returnType) \
|
|
|
|
export returnType CreatureLib_##type##_##name(const CreatureLib::Library::type* p) { return p->name(); }
|
|
|
|
|
|
|
|
export const char* CreatureLib_SpeciesVariant_GetName(SpeciesVariant* p) { return p->GetName().c_str(); }
|
|
|
|
SIMPLE_GET_FUNC(SpeciesVariant, GetHeight, float);
|
|
|
|
SIMPLE_GET_FUNC(SpeciesVariant, GetWeight, float);
|
|
|
|
SIMPLE_GET_FUNC(SpeciesVariant, GetBaseExperience, uint32_t);
|
|
|
|
SIMPLE_GET_FUNC(SpeciesVariant, GetTypeCount, size_t);
|
|
|
|
export uint8_t CreatureLib_SpeciesVariant_GetType(SpeciesVariant* p, size_t index) { return p->GetType(index); }
|
2020-05-02 18:03:18 +00:00
|
|
|
export uint16_t CreatureLib_SpeciesVariant_GetStatistic(SpeciesVariant* p, CreatureLib::Library::Statistic stat) {
|
2020-03-02 12:59:49 +00:00
|
|
|
return p->GetStatistic(stat);
|
|
|
|
}
|
|
|
|
SIMPLE_GET_FUNC(SpeciesVariant, GetTalentCount, size_t);
|
|
|
|
SIMPLE_GET_FUNC(SpeciesVariant, GetSecretTalentCount, size_t);
|
2020-05-02 19:46:06 +00:00
|
|
|
export uint8_t CreatureLib_SpeciesVariant_GetTalent(SpeciesVariant* p, bool secret, uint8_t index, const char*& out) {
|
|
|
|
Try(out = p->GetTalent(TalentIndex(secret, index)).c_str();)
|
2020-03-02 13:01:56 +00:00
|
|
|
}
|
2020-03-27 19:46:44 +00:00
|
|
|
export const LearnableAttacks* CreatureLib_SpeciesVariant_GetLearnableAttacks(SpeciesVariant* p) {
|
2020-06-20 16:53:10 +00:00
|
|
|
return p->GetLearnableAttacks().operator->();
|
2020-03-27 19:46:44 +00:00
|
|
|
}
|
2020-03-02 12:59:49 +00:00
|
|
|
|
|
|
|
#undef SIMPLE_GET_FUNC
|