mirror of https://github.com/AxioDL/metaforce.git
50 lines
1.2 KiB
C++
50 lines
1.2 KiB
C++
#ifndef __URDE_CFLUIDUVMOTION_HPP__
|
|
#define __URDE_CFLUIDUVMOTION_HPP__
|
|
|
|
#include "rstl.hpp"
|
|
#include "RetroTypes.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
class CFluidUVMotion
|
|
{
|
|
public:
|
|
enum class EFluidUVMotion
|
|
{
|
|
Zero,
|
|
One,
|
|
Two,
|
|
};
|
|
|
|
struct SFluidLayerMotion
|
|
{
|
|
EFluidUVMotion x0_motion = EFluidUVMotion::Zero;
|
|
float x4_a = 0.16666667f;
|
|
float x8_b = 0.f;
|
|
float xc_c = 1.f;
|
|
float x10_d = 5.f;
|
|
float x14_e = 0.2f;
|
|
|
|
SFluidLayerMotion() = default;
|
|
SFluidLayerMotion(EFluidUVMotion motion, float a, float b, float c, float d)
|
|
: x0_motion(motion), x4_a(1.f / a), x8_b(b), xc_c(c), x10_d(d), x14_e(1.f / d)
|
|
{
|
|
}
|
|
};
|
|
|
|
private:
|
|
rstl::reserved_vector<SFluidLayerMotion, 3> x0_fluidLayers;
|
|
float x4c_;
|
|
float x50_;
|
|
public:
|
|
CFluidUVMotion(float a, float b, const SFluidLayerMotion& c, const SFluidLayerMotion& d, const SFluidLayerMotion& e);
|
|
CFluidUVMotion(float, float);
|
|
|
|
const rstl::reserved_vector<SFluidLayerMotion, 3>& GetFluidLayers() const { return x0_fluidLayers; }
|
|
void GetOrientation() const;
|
|
void GetOOTimeToWrapTexPage() const;
|
|
void CalculateFluidTextureOffset(float, float[3][2]);
|
|
};
|
|
}
|
|
#endif // __URDE_CFLUIDUVMOTION_HPP__
|