mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
43 lines
952 B
C++
43 lines
952 B
C++
#ifndef __GL_CYCLER_H
|
|
#define __GL_CYCLER_H
|
|
|
|
class FSerializer;
|
|
|
|
enum CycleType
|
|
{
|
|
CYCLE_Linear,
|
|
CYCLE_Sin,
|
|
CYCLE_Cos,
|
|
CYCLE_SawTooth,
|
|
CYCLE_Square
|
|
};
|
|
|
|
class FCycler;
|
|
FSerializer &Serialize(FSerializer &arc, const char *key, FCycler &c, FCycler *def);
|
|
|
|
class FCycler
|
|
{
|
|
friend FSerializer &Serialize(FSerializer &arc, const char *key, FCycler &c, FCycler *def);
|
|
|
|
public:
|
|
FCycler() = default;
|
|
FCycler(const FCycler &other) = default;
|
|
FCycler &operator=(const FCycler &other) = default;
|
|
|
|
void Update(double diff);
|
|
void SetParams(double start, double end, double cycle, bool update = false);
|
|
void ShouldCycle(bool sc) { m_shouldCycle = sc; }
|
|
void SetCycleType(CycleType ct) { m_cycleType = ct; }
|
|
double GetVal() { return m_current; }
|
|
|
|
inline operator double () const { return m_current; }
|
|
|
|
double m_start, m_end, m_current;
|
|
double m_time, m_cycle;
|
|
bool m_increment, m_shouldCycle;
|
|
|
|
CycleType m_cycleType;
|
|
};
|
|
|
|
|
|
#endif
|