metaforce/Runtime/Particle/IElement.hpp

52 lines
1.2 KiB
C++
Raw Permalink Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2016-02-05 00:34:14 -08:00
#include <memory>
#include "Runtime/GCNTypes.hpp"
#include "Runtime/Streams/IOStreams.hpp"
#include <zeus/CColor.hpp>
#include <zeus/CVector3f.hpp>
2016-02-05 00:34:14 -08:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
2016-02-05 00:34:14 -08:00
2018-12-07 21:30:43 -08:00
class IElement {
2016-02-05 00:34:14 -08:00
public:
2018-12-07 21:30:43 -08:00
virtual ~IElement() = default;
2016-02-05 00:34:14 -08:00
};
2018-12-07 21:30:43 -08:00
class CRealElement : public IElement {
2016-02-05 00:34:14 -08:00
public:
2018-12-07 21:30:43 -08:00
virtual bool GetValue(int frame, float& valOut) const = 0;
virtual bool IsConstant() const { return false; }
2016-02-05 00:34:14 -08:00
};
2018-12-07 21:30:43 -08:00
class CIntElement : public IElement {
2016-02-05 00:34:14 -08:00
public:
2018-12-07 21:30:43 -08:00
virtual bool GetValue(int frame, int& valOut) const = 0;
virtual int GetMaxValue() const = 0;
2016-02-05 00:34:14 -08:00
};
2018-12-07 21:30:43 -08:00
class CVectorElement : public IElement {
2016-02-05 00:34:14 -08:00
public:
2018-12-07 21:30:43 -08:00
virtual bool GetValue(int frame, zeus::CVector3f& valOut) const = 0;
virtual bool IsFastConstant() const { return false; }
2016-02-05 00:34:14 -08:00
};
2018-12-07 21:30:43 -08:00
class CModVectorElement : public IElement {
2016-02-05 00:34:14 -08:00
public:
2018-12-07 21:30:43 -08:00
virtual bool GetValue(int frame, zeus::CVector3f& pVel, zeus::CVector3f& pPos) const = 0;
2016-02-05 00:34:14 -08:00
};
2018-12-07 21:30:43 -08:00
class CColorElement : public IElement {
2016-02-05 00:34:14 -08:00
public:
2018-12-07 21:30:43 -08:00
virtual bool GetValue(int frame, zeus::CColor& colorOut) const = 0;
2016-02-05 00:34:14 -08:00
};
2018-12-07 21:30:43 -08:00
class CEmitterElement : public IElement {
2016-02-10 18:36:21 -08:00
public:
2018-12-07 21:30:43 -08:00
virtual bool GetValue(int frame, zeus::CVector3f& pPos, zeus::CVector3f& pVel) const = 0;
};
2021-04-10 01:42:06 -07:00
} // namespace metaforce