mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-24 07:05:39 +00:00
78 lines
1.5 KiB
C++
78 lines
1.5 KiB
C++
|
#include "SliderComponent.h"
|
||
|
#include <assert.h>
|
||
|
#include "../Renderer.h"
|
||
|
|
||
|
SliderComponent::SliderComponent(Window* window, float min, float max) : GuiComponent(window),
|
||
|
mMin(min), mMax(max), mMoveRate(0)
|
||
|
{
|
||
|
assert((min - max) != 0);
|
||
|
|
||
|
mValue = (max + min) / 2;
|
||
|
|
||
|
//calculate move scale
|
||
|
mMoveScale = (max - min) * 0.0007f;
|
||
|
|
||
|
setSize(Vector2u(128, 32));
|
||
|
}
|
||
|
|
||
|
bool SliderComponent::input(InputConfig* config, Input input)
|
||
|
{
|
||
|
if(config->isMappedTo("left", input))
|
||
|
{
|
||
|
if(input.value)
|
||
|
mMoveRate = -1;
|
||
|
else
|
||
|
mMoveRate = 0;
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
if(config->isMappedTo("right", input))
|
||
|
{
|
||
|
if(input.value)
|
||
|
mMoveRate = 1;
|
||
|
else
|
||
|
mMoveRate = 0;
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
return GuiComponent::input(config, input);
|
||
|
}
|
||
|
|
||
|
void SliderComponent::update(int deltaTime)
|
||
|
{
|
||
|
mValue += mMoveRate * deltaTime * mMoveScale;
|
||
|
|
||
|
if(mValue < mMin)
|
||
|
mValue = mMin;
|
||
|
if(mValue > mMax)
|
||
|
mValue = mMax;
|
||
|
|
||
|
GuiComponent::update(deltaTime);
|
||
|
}
|
||
|
|
||
|
void SliderComponent::onRender()
|
||
|
{
|
||
|
//render line
|
||
|
const int lineWidth = 2;
|
||
|
Renderer::drawRect(0, mSize.y / 2 - lineWidth / 2, mSize.x, lineWidth, 0x000000CC);
|
||
|
|
||
|
//render left end
|
||
|
const int capWidth = (int)(mSize.x * 0.03f);
|
||
|
Renderer::drawRect(0, 0, capWidth, mSize.y, 0x000000CC);
|
||
|
|
||
|
//render right end
|
||
|
Renderer::drawRect(mSize.x - capWidth, 0, capWidth, mSize.y, 0x000000CC);
|
||
|
|
||
|
//render our value
|
||
|
const int lineLength = mSize.x - capWidth;
|
||
|
Renderer::drawRect((int)(((mValue + mMin) / mMax) * lineLength), 0, capWidth, mSize.y, 0x0000FFFF);
|
||
|
|
||
|
GuiComponent::onRender();
|
||
|
}
|
||
|
|
||
|
void SliderComponent::setSize(Vector2u size)
|
||
|
{
|
||
|
mSize = size;
|
||
|
}
|