97 lines
2.4 KiB
C++
97 lines
2.4 KiB
C++
#pragma once
|
|
#include "sync.hh"
|
|
|
|
namespace sov {
|
|
|
|
/*= FLOATING POINT DRAGGERS/SLIDERS ============================================*/
|
|
|
|
// Float values, common
|
|
class A_Float : public A_SyncOverride
|
|
{
|
|
private:
|
|
T_Optional< float > min_;
|
|
T_Optional< float > max_;
|
|
T_Optional< float > step_;
|
|
T_Optional< ebcl::T_StaticArray< char , 12 > > decimals_;
|
|
T_Optional< float > power_;
|
|
bool slider_;
|
|
|
|
protected:
|
|
A_Float( char const* const type ,
|
|
T_String const& title ) noexcept
|
|
: A_SyncOverride( type , title )
|
|
{}
|
|
|
|
public:
|
|
A_Float( T_String const& input ,
|
|
T_String const& title ) noexcept;
|
|
|
|
bool setMin( const float v ) noexcept;
|
|
bool setMax( const float v ) noexcept;
|
|
bool setStep( const float v ) noexcept;
|
|
bool setDecimals( const uint32_t n ) noexcept;
|
|
bool setPower( const float v ) noexcept;
|
|
void setSlider( ) noexcept;
|
|
|
|
float min( ) const noexcept { return min_ ? *min_ : 0.0f; }
|
|
float max( ) const noexcept { return max_ ? *max_ : 0.0f; }
|
|
float step( ) const noexcept { return step_ ? *step_ : .001f; }
|
|
char const* decimals( ) const noexcept { return decimals_ ? &(*decimals_)[ 0 ] : "%.3f"; }
|
|
float power( ) const noexcept { return power_ ? *power_ : 1.0f; }
|
|
bool slider( ) const noexcept { return slider_; }
|
|
};
|
|
|
|
// Single float values
|
|
class T_Float : public A_Float
|
|
{
|
|
protected:
|
|
void makeEditWidgets( ) noexcept override;
|
|
public:
|
|
T_Float( T_String const& input ,
|
|
T_String const& title ) noexcept;
|
|
};
|
|
|
|
// 2 float values
|
|
class T_Float2 : public A_Float
|
|
{
|
|
protected:
|
|
void makeEditWidgets( ) noexcept override;
|
|
public:
|
|
T_Float2( T_String const& input0 ,
|
|
T_String const& input1 ,
|
|
T_String const& title ) noexcept;
|
|
};
|
|
|
|
// 3 float values
|
|
class T_Float3 : public A_Float
|
|
{
|
|
protected:
|
|
void makeEditWidgets( ) noexcept override;
|
|
public:
|
|
T_Float3( T_String const& input0 ,
|
|
T_String const& input1 ,
|
|
T_String const& input2 ,
|
|
T_String const& title ) noexcept;
|
|
};
|
|
|
|
// 4 float values
|
|
class T_Float4 : public A_Float
|
|
{
|
|
protected:
|
|
void makeEditWidgets( ) noexcept override;
|
|
public:
|
|
T_Float4( T_String const& input0 ,
|
|
T_String const& input1 ,
|
|
T_String const& input2 ,
|
|
T_String const& input3 ,
|
|
T_String const& title ) noexcept;
|
|
};
|
|
|
|
|
|
/*= PARSER CONFIGURATION =======================================================*/
|
|
|
|
// Get a parser configuration that will be able to parse UI override definitions.
|
|
ebcl::T_SRDParserConfig GetParserConfig( );
|
|
|
|
|
|
} // namespace
|