mirror of https://github.com/AxioDL/metaforce.git
32 lines
858 B
C++
32 lines
858 B
C++
#ifndef __URDE_CANIMATIONPARAMETERS_HPP__
|
|
#define __URDE_CANIMATIONPARAMETERS_HPP__
|
|
|
|
#include "RetroTypes.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
class CAnimationParameters
|
|
{
|
|
ResId x0_ancs = -1;
|
|
u32 x4_charIdx = -1;
|
|
u32 x8_defaultAnim = -1;
|
|
public:
|
|
CAnimationParameters() = default;
|
|
CAnimationParameters(ResId ancs, u32 charIdx, u32 defaultAnim)
|
|
: x0_ancs(ancs), x4_charIdx(charIdx), x8_defaultAnim(defaultAnim) {}
|
|
CAnimationParameters(CInputStream& in)
|
|
: x0_ancs(in.readUint32Big()),
|
|
x4_charIdx(in.readUint32Big()),
|
|
x8_defaultAnim(in.readUint32Big()) {}
|
|
|
|
u32 GetACSFile() const { return x0_ancs; }
|
|
u32 GetCharacter() const { return x4_charIdx; }
|
|
u32 GetInitialAnimation() const { return x8_defaultAnim; }
|
|
void SetCharacter(u32 charIdx) { x4_charIdx = charIdx; }
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __URDE_CANIMATIONPARAMETERS_HPP__
|