metaforce/Runtime/Character/CPASDatabase.hpp

50 lines
1.4 KiB
C++
Raw Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2016-04-09 21:49:02 -07:00
#include <algorithm>
#include <utility>
#include <vector>
#include "Runtime/Streams/IOStreams.hpp"
#include "Runtime/Character/CPASAnimState.hpp"
2016-04-09 21:49:02 -07:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
2016-04-09 21:49:02 -07:00
class CRandom16;
class CPASAnimParmData;
2018-12-07 21:30:43 -08:00
class CPASDatabase {
std::vector<CPASAnimState> x0_states;
s32 x10_defaultState;
void AddAnimState(CPASAnimState&& state);
void SetDefaultState(s32 state) { x10_defaultState = state; }
2016-04-09 21:49:02 -07:00
public:
explicit CPASDatabase(CInputStream& in);
2018-12-07 21:30:43 -08:00
std::pair<float, s32> FindBestAnimation(const CPASAnimParmData& data, s32 ignoreAnim) const;
std::pair<float, s32> FindBestAnimation(const CPASAnimParmData& data, CRandom16& rand, s32 ignoreAnim) const;
2018-12-07 21:30:43 -08:00
s32 GetDefaultState() const { return x10_defaultState; }
size_t GetNumAnimStates() const { return x0_states.size(); }
2020-04-22 02:08:02 -07:00
const CPASAnimState* GetAnimState(pas::EAnimationState id) const {
2018-12-07 21:30:43 -08:00
for (const CPASAnimState& state : x0_states)
if (id == state.GetStateId())
return &state;
return nullptr;
}
const CPASAnimState* GetAnimStateByIndex(size_t index) const {
if (index >= x0_states.size()) {
2018-12-07 21:30:43 -08:00
return nullptr;
}
2018-12-07 21:30:43 -08:00
return &x0_states[index];
2018-12-07 21:30:43 -08:00
}
2020-04-22 02:08:02 -07:00
bool HasState(pas::EAnimationState id) const {
2018-12-07 21:30:43 -08:00
const auto& st = std::find_if(x0_states.begin(), x0_states.end(),
[&id](const CPASAnimState& other) -> bool { return other.GetStateId() == id; });
return st != x0_states.end();
}
2016-04-09 21:49:02 -07:00
};
2021-04-10 01:42:06 -07:00
} // namespace metaforce