2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2016-02-05 01:27:03 +00:00
|
|
|
|
2019-09-23 19:00:23 +00:00
|
|
|
#include <memory>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "Runtime/GCNTypes.hpp"
|
|
|
|
#include "Runtime/Particle/IElement.hpp"
|
2016-02-05 08:34:14 +00:00
|
|
|
|
2019-12-03 08:47:05 +00:00
|
|
|
/* Documentation at: https://wiki.axiodl.com/w/Particle_Script#Real_Elements */
|
2016-02-28 06:55:05 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde {
|
|
|
|
|
|
|
|
class CREKeyframeEmitter : public CRealElement {
|
|
|
|
u32 x4_percent;
|
|
|
|
u32 x8_unk1;
|
|
|
|
bool xc_loop;
|
|
|
|
bool xd_unk2;
|
|
|
|
u32 x10_loopEnd;
|
|
|
|
u32 x14_loopStart;
|
|
|
|
std::vector<float> x18_keys;
|
2016-02-05 01:27:03 +00:00
|
|
|
|
2016-02-06 07:31:53 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CREKeyframeEmitter(CInputStream& in);
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-06 07:31:53 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CRELifetimeTween : public CRealElement {
|
|
|
|
std::unique_ptr<CRealElement> x4_a;
|
|
|
|
std::unique_ptr<CRealElement> x8_b;
|
|
|
|
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CRELifetimeTween(std::unique_ptr<CRealElement>&& a, std::unique_ptr<CRealElement>&& b)
|
|
|
|
: x4_a(std::move(a)), x8_b(std::move(b)) {}
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CREConstant : public CRealElement {
|
|
|
|
float x4_val;
|
|
|
|
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CREConstant(float val) : x4_val(val) {}
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
|
|
|
bool IsConstant() const override { return true; }
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CRETimeChain : public CRealElement {
|
|
|
|
std::unique_ptr<CRealElement> x4_a;
|
|
|
|
std::unique_ptr<CRealElement> x8_b;
|
|
|
|
std::unique_ptr<CIntElement> xc_swFrame;
|
|
|
|
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CRETimeChain(std::unique_ptr<CRealElement>&& a, std::unique_ptr<CRealElement>&& b, std::unique_ptr<CIntElement>&& c)
|
|
|
|
: x4_a(std::move(a)), x8_b(std::move(b)), xc_swFrame(std::move(c)) {}
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CREAdd : public CRealElement {
|
|
|
|
std::unique_ptr<CRealElement> x4_a;
|
|
|
|
std::unique_ptr<CRealElement> x8_b;
|
|
|
|
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CREAdd(std::unique_ptr<CRealElement>&& a, std::unique_ptr<CRealElement>&& b)
|
|
|
|
: x4_a(std::move(a)), x8_b(std::move(b)) {}
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CREClamp : public CRealElement {
|
|
|
|
std::unique_ptr<CRealElement> x4_min;
|
|
|
|
std::unique_ptr<CRealElement> x8_max;
|
|
|
|
std::unique_ptr<CRealElement> xc_val;
|
|
|
|
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CREClamp(std::unique_ptr<CRealElement>&& a, std::unique_ptr<CRealElement>&& b, std::unique_ptr<CRealElement>&& c)
|
|
|
|
: x4_min(std::move(a)), x8_max(std::move(b)), xc_val(std::move(c)) {}
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CREInitialRandom : public CRealElement {
|
|
|
|
std::unique_ptr<CRealElement> x4_min;
|
|
|
|
std::unique_ptr<CRealElement> x8_max;
|
|
|
|
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CREInitialRandom(std::unique_ptr<CRealElement>&& a, std::unique_ptr<CRealElement>&& b)
|
|
|
|
: x4_min(std::move(a)), x8_max(std::move(b)) {}
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
|
|
|
bool IsConstant() const override { return true; }
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CRERandom : public CRealElement {
|
|
|
|
std::unique_ptr<CRealElement> x4_min;
|
|
|
|
std::unique_ptr<CRealElement> x8_max;
|
|
|
|
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CRERandom(std::unique_ptr<CRealElement>&& a, std::unique_ptr<CRealElement>&& b)
|
|
|
|
: x4_min(std::move(a)), x8_max(std::move(b)) {}
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CREDotProduct : public CRealElement {
|
|
|
|
std::unique_ptr<CVectorElement> x4_a;
|
|
|
|
std::unique_ptr<CVectorElement> x8_b;
|
|
|
|
|
2016-02-12 06:06:17 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CREDotProduct(std::unique_ptr<CVectorElement>&& a, std::unique_ptr<CVectorElement>&& b)
|
|
|
|
: x4_a(std::move(a)), x8_b(std::move(b)) {}
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-12 06:06:17 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CREMultiply : public CRealElement {
|
|
|
|
std::unique_ptr<CRealElement> x4_a;
|
|
|
|
std::unique_ptr<CRealElement> x8_b;
|
|
|
|
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CREMultiply(std::unique_ptr<CRealElement>&& a, std::unique_ptr<CRealElement>&& b)
|
|
|
|
: x4_a(std::move(a)), x8_b(std::move(b)) {}
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CREPulse : public CRealElement {
|
|
|
|
std::unique_ptr<CIntElement> x4_aDuration;
|
|
|
|
std::unique_ptr<CIntElement> x8_bDuration;
|
|
|
|
std::unique_ptr<CRealElement> xc_valA;
|
|
|
|
std::unique_ptr<CRealElement> x10_valB;
|
|
|
|
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CREPulse(std::unique_ptr<CIntElement>&& a, std::unique_ptr<CIntElement>&& b, std::unique_ptr<CRealElement>&& c,
|
|
|
|
std::unique_ptr<CRealElement>&& d)
|
|
|
|
: x4_aDuration(std::move(a)), x8_bDuration(std::move(b)), xc_valA(std::move(c)), x10_valB(std::move(d)) {}
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CRETimeScale : public CRealElement {
|
|
|
|
std::unique_ptr<CRealElement> x4_a;
|
|
|
|
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CRETimeScale(std::unique_ptr<CRealElement>&& a) : x4_a(std::move(a)) {}
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CRELifetimePercent : public CRealElement {
|
|
|
|
std::unique_ptr<CRealElement> x4_percentVal;
|
|
|
|
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CRELifetimePercent(std::unique_ptr<CRealElement>&& a) : x4_percentVal(std::move(a)) {}
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CRESineWave : public CRealElement {
|
|
|
|
std::unique_ptr<CRealElement> x4_frequency;
|
|
|
|
std::unique_ptr<CRealElement> x8_amplitude;
|
|
|
|
std::unique_ptr<CRealElement> xc_phase;
|
|
|
|
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CRESineWave(std::unique_ptr<CRealElement>&& a, std::unique_ptr<CRealElement>&& b, std::unique_ptr<CRealElement>&& c)
|
|
|
|
: x4_frequency(std::move(a)), x8_amplitude(std::move(b)), xc_phase(std::move(c)) {}
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CREInitialSwitch : public CRealElement {
|
|
|
|
std::unique_ptr<CRealElement> x4_a;
|
|
|
|
std::unique_ptr<CRealElement> x8_b;
|
|
|
|
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CREInitialSwitch(std::unique_ptr<CRealElement>&& a, std::unique_ptr<CRealElement>&& b)
|
|
|
|
: x4_a(std::move(a)), x8_b(std::move(b)) {}
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CRECompareLessThan : public CRealElement {
|
|
|
|
std::unique_ptr<CRealElement> x4_a;
|
|
|
|
std::unique_ptr<CRealElement> x8_b;
|
|
|
|
std::unique_ptr<CRealElement> xc_c;
|
|
|
|
std::unique_ptr<CRealElement> x10_d;
|
|
|
|
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CRECompareLessThan(std::unique_ptr<CRealElement>&& a, std::unique_ptr<CRealElement>&& b,
|
|
|
|
std::unique_ptr<CRealElement>&& c, std::unique_ptr<CRealElement>&& d)
|
|
|
|
: x4_a(std::move(a)), x8_b(std::move(b)), xc_c(std::move(c)), x10_d(std::move(d)) {}
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CRECompareEquals : public CRealElement {
|
|
|
|
std::unique_ptr<CRealElement> x4_a;
|
|
|
|
std::unique_ptr<CRealElement> x8_b;
|
|
|
|
std::unique_ptr<CRealElement> xc_c;
|
|
|
|
std::unique_ptr<CRealElement> x10_d;
|
|
|
|
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CRECompareEquals(std::unique_ptr<CRealElement>&& a, std::unique_ptr<CRealElement>&& b,
|
|
|
|
std::unique_ptr<CRealElement>&& c, std::unique_ptr<CRealElement>&& d)
|
|
|
|
: x4_a(std::move(a)), x8_b(std::move(b)), xc_c(std::move(c)), x10_d(std::move(d)) {}
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CREParticleAccessParam1 : public CRealElement {
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CREParticleAccessParam2 : public CRealElement {
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CREParticleAccessParam3 : public CRealElement {
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CREParticleAccessParam4 : public CRealElement {
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CREParticleAccessParam5 : public CRealElement {
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CREParticleAccessParam6 : public CRealElement {
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CREParticleAccessParam7 : public CRealElement {
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CREParticleAccessParam8 : public CRealElement {
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CREParticleSizeOrLineLength : public CRealElement {
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CREParticleRotationOrLineWidth : public CRealElement {
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CRESubtract : public CRealElement {
|
|
|
|
std::unique_ptr<CRealElement> x4_a;
|
|
|
|
std::unique_ptr<CRealElement> x8_b;
|
|
|
|
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CRESubtract(std::unique_ptr<CRealElement>&& a, std::unique_ptr<CRealElement>&& b)
|
|
|
|
: x4_a(std::move(a)), x8_b(std::move(b)) {}
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CREVectorMagnitude : public CRealElement {
|
|
|
|
std::unique_ptr<CVectorElement> x4_a;
|
|
|
|
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CREVectorMagnitude(std::unique_ptr<CVectorElement>&& a) : x4_a(std::move(a)) {}
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CREVectorXToReal : public CRealElement {
|
|
|
|
std::unique_ptr<CVectorElement> x4_a;
|
|
|
|
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CREVectorXToReal(std::unique_ptr<CVectorElement>&& a) : x4_a(std::move(a)) {}
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CREVectorYToReal : public CRealElement {
|
|
|
|
std::unique_ptr<CVectorElement> x4_a;
|
|
|
|
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CREVectorYToReal(std::unique_ptr<CVectorElement>&& a) : x4_a(std::move(a)) {}
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CREVectorZToReal : public CRealElement {
|
|
|
|
std::unique_ptr<CVectorElement> x4_a;
|
|
|
|
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CREVectorZToReal(std::unique_ptr<CVectorElement>&& a) : x4_a(std::move(a)) {}
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2019-11-19 23:06:25 +00:00
|
|
|
class CREExternalVar : public CRealElement {
|
2018-12-08 05:30:43 +00:00
|
|
|
std::unique_ptr<CIntElement> x4_a;
|
|
|
|
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2019-11-19 23:06:25 +00:00
|
|
|
CREExternalVar(std::unique_ptr<CIntElement>&& a) : x4_a(std::move(a)) {}
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-05 08:34:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CREIntTimesReal : public CRealElement {
|
|
|
|
std::unique_ptr<CIntElement> x4_a;
|
|
|
|
std::unique_ptr<CRealElement> x8_b;
|
|
|
|
|
2016-02-05 08:34:14 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CREIntTimesReal(std::unique_ptr<CIntElement>&& a, std::unique_ptr<CRealElement>&& b)
|
|
|
|
: x4_a(std::move(a)), x8_b(std::move(b)) {}
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-05 01:27:03 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CREConstantRange : public CRealElement {
|
|
|
|
std::unique_ptr<CRealElement> x4_val;
|
|
|
|
std::unique_ptr<CRealElement> x8_min;
|
|
|
|
std::unique_ptr<CRealElement> xc_max;
|
|
|
|
std::unique_ptr<CRealElement> x10_inRange;
|
|
|
|
std::unique_ptr<CRealElement> x14_outOfRange;
|
|
|
|
|
2016-02-12 06:06:17 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CREConstantRange(std::unique_ptr<CRealElement>&& a, std::unique_ptr<CRealElement>&& b,
|
|
|
|
std::unique_ptr<CRealElement>&& c, std::unique_ptr<CRealElement>&& d,
|
|
|
|
std::unique_ptr<CRealElement>&& e)
|
|
|
|
: x4_val(std::move(a))
|
|
|
|
, x8_min(std::move(b))
|
|
|
|
, xc_max(std::move(c))
|
|
|
|
, x10_inRange(std::move(d))
|
|
|
|
, x14_outOfRange(std::move(e)) {}
|
2016-02-12 06:06:17 +00:00
|
|
|
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-12 06:06:17 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CREGetComponentRed : public CRealElement {
|
|
|
|
std::unique_ptr<CColorElement> x4_a;
|
|
|
|
|
2016-02-12 06:06:17 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CREGetComponentRed(std::unique_ptr<CColorElement>&& a) : x4_a(std::move(a)) {}
|
2016-02-12 06:06:17 +00:00
|
|
|
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-12 06:06:17 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CREGetComponentGreen : public CRealElement {
|
|
|
|
std::unique_ptr<CColorElement> x4_a;
|
|
|
|
|
2016-02-12 06:06:17 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CREGetComponentGreen(std::unique_ptr<CColorElement>&& a) : x4_a(std::move(a)) {}
|
2016-02-12 06:06:17 +00:00
|
|
|
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-12 06:06:17 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CREGetComponentBlue : public CRealElement {
|
|
|
|
std::unique_ptr<CColorElement> x4_a;
|
|
|
|
|
2016-02-12 06:06:17 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CREGetComponentBlue(std::unique_ptr<CColorElement>&& a) : x4_a(std::move(a)) {}
|
2016-02-12 06:06:17 +00:00
|
|
|
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-12 06:06:17 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CREGetComponentAlpha : public CRealElement {
|
|
|
|
std::unique_ptr<CColorElement> x4_a;
|
|
|
|
|
2016-02-12 06:06:17 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CREGetComponentAlpha(std::unique_ptr<CColorElement>&& a) : x4_a(std::move(a)) {}
|
2016-02-12 06:06:17 +00:00
|
|
|
|
2019-08-09 12:45:18 +00:00
|
|
|
bool GetValue(int frame, float& valOut) const override;
|
2016-02-12 06:06:17 +00:00
|
|
|
};
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde
|