2019-12-29 14:29:52 +00:00
|
|
|
#ifndef PKMNLIB_POKEMONSPECIES_HPP
|
|
|
|
#define PKMNLIB_POKEMONSPECIES_HPP
|
2020-02-08 18:22:29 +00:00
|
|
|
#include <CreatureLib/Battling/Models/Creature.hpp>
|
2020-01-02 12:45:39 +00:00
|
|
|
#include "../Evolutions/EvolutionData.hpp"
|
2019-12-29 14:29:52 +00:00
|
|
|
#include "PokemonForme.hpp"
|
|
|
|
|
|
|
|
namespace PkmnLib::Library {
|
|
|
|
class PokemonSpecies : public CreatureLib::Library::CreatureSpecies {
|
|
|
|
private:
|
|
|
|
uint8_t _baseHappiness;
|
2020-04-16 13:04:53 +00:00
|
|
|
Arbutils::Collections::List<const EvolutionData*> _evolutions;
|
2019-12-29 14:29:52 +00:00
|
|
|
|
|
|
|
public:
|
2020-04-16 13:04:53 +00:00
|
|
|
PokemonSpecies(uint16_t id, const Arbutils::CaseInsensitiveConstString& name, const PokemonForme* defaultForme,
|
|
|
|
float genderRatio, const Arbutils::CaseInsensitiveConstString& growthRate, uint8_t captureRate,
|
2020-05-22 11:43:02 +00:00
|
|
|
uint8_t baseHappiness) noexcept
|
2020-04-16 13:04:53 +00:00
|
|
|
: CreatureSpecies(id, name, defaultForme, genderRatio, growthRate, captureRate),
|
2020-05-22 11:43:02 +00:00
|
|
|
_baseHappiness(baseHappiness) {}
|
2019-12-29 14:29:52 +00:00
|
|
|
|
2020-04-16 12:25:20 +00:00
|
|
|
~PokemonSpecies() override {
|
|
|
|
for (auto evo : _evolutions) {
|
|
|
|
delete evo;
|
|
|
|
}
|
|
|
|
}
|
2020-02-09 10:02:29 +00:00
|
|
|
|
2019-12-29 14:29:52 +00:00
|
|
|
inline uint8_t GetBaseHappiness() const { return _baseHappiness; }
|
|
|
|
|
|
|
|
inline const PokemonForme* GetDefaultForme() const {
|
2020-04-10 12:57:20 +00:00
|
|
|
return reinterpret_cast<const PokemonForme*>(CreatureSpecies::GetVariant("default"_cnc.GetHash()));
|
2019-12-29 14:29:52 +00:00
|
|
|
}
|
|
|
|
|
2020-02-27 17:59:15 +00:00
|
|
|
inline bool HasForme(const Arbutils::CaseInsensitiveConstString& key) const { return HasVariant(key); }
|
2020-02-13 17:00:23 +00:00
|
|
|
|
2020-02-27 17:59:15 +00:00
|
|
|
inline bool TryGetForme(const Arbutils::CaseInsensitiveConstString& key, const PokemonForme*& forme) const {
|
2020-02-13 17:00:23 +00:00
|
|
|
return TryGetVariant(key, (const CreatureLib::Library::SpeciesVariant*&)forme);
|
|
|
|
}
|
|
|
|
|
2020-02-27 17:59:15 +00:00
|
|
|
inline const PokemonForme* GetForme(const Arbutils::CaseInsensitiveConstString& key) const {
|
2019-12-29 14:29:52 +00:00
|
|
|
return reinterpret_cast<const PokemonForme*>(CreatureSpecies::GetVariant(key));
|
|
|
|
}
|
2020-01-02 12:45:39 +00:00
|
|
|
|
2020-04-16 13:04:53 +00:00
|
|
|
inline void AddEvolution(const EvolutionData* data) noexcept { _evolutions.Append(data); }
|
|
|
|
const Arbutils::Collections::List<const EvolutionData*>& GetEvolutions() const noexcept { return _evolutions; }
|
2019-12-29 14:29:52 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // PKMNLIB_POKEMONSPECIES_HPP
|