metaforce/Runtime/Character/CSoundPOINode.hpp

33 lines
890 B
C++
Raw Normal View History

2016-04-13 06:07:23 +00:00
#ifndef __URDE_CSOUNDPOINODE_HPP__
#define __URDE_CSOUNDPOINODE_HPP__
2016-04-11 07:10:28 +00:00
#include "CPOINode.hpp"
#include "CCharAnimTime.hpp"
namespace urde
{
2016-04-12 06:15:32 +00:00
class IAnimSourceInfo;
2016-04-11 07:10:28 +00:00
class CSoundPOINode : public CPOINode
{
u32 x38_sfxId;
float x3c_falloff;
float x40_maxDist;
public:
CSoundPOINode();
2016-04-11 07:10:28 +00:00
CSoundPOINode(CInputStream& in);
2017-11-13 06:19:18 +00:00
CSoundPOINode(std::string_view name, EPOIType type,
2016-04-11 07:10:28 +00:00
const CCharAnimTime& time, u32 b, bool c,
float d, u32 e, u32 f, u32 sfxId, float falloff, float maxDist);
2016-04-12 06:15:32 +00:00
static CSoundPOINode CopyNodeMinusStartTime(const CSoundPOINode& node,
const CCharAnimTime& startTime);
2017-06-03 06:03:07 +00:00
u32 GetSfxId() const { return x38_sfxId; }
float GetFalloff() const { return x3c_falloff; }
float GetMaxDist() const { return x40_maxDist; }
2016-04-11 07:10:28 +00:00
};
}
2016-04-13 06:07:23 +00:00
#endif // __URDE_CSOUNDPOINODE_HPP__