2021-08-21 14:29:58 +02:00
|
|
|
#include "bpmcalculatorwidget.h"
|
2021-08-27 19:40:48 +02:00
|
|
|
#include "tools/bpmcalculator.h"
|
2021-08-16 20:54:03 +02:00
|
|
|
|
2021-08-27 19:40:48 +02:00
|
|
|
BPMCalculatorWidget::BPMCalculatorWidget(const std::shared_ptr<BPMCalculator>& bpm_calculator, const std::shared_ptr<sf::Font>& font) :
|
2021-08-31 21:09:34 +02:00
|
|
|
Window("BPM Calculation", font),
|
2021-08-27 19:40:48 +02:00
|
|
|
_bpm_calculator(bpm_calculator),
|
2021-08-31 21:09:34 +02:00
|
|
|
_slider(std::make_shared<BPMSlider>())
|
2021-08-16 20:54:03 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-08-21 14:29:58 +02:00
|
|
|
void BPMCalculatorWidget::input(const sf::Event& event)
|
2021-08-16 20:54:03 +02:00
|
|
|
{
|
|
|
|
switch (event.type)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
|
2021-08-27 19:40:48 +02:00
|
|
|
case sf::Event::KeyPressed:
|
|
|
|
if (event.type == sf::Event::KeyPressed && event.key.code == sf::Keyboard::Space)
|
2021-08-16 20:54:03 +02:00
|
|
|
{
|
2021-08-27 19:40:48 +02:00
|
|
|
_bpm_calculator->click();
|
2021-08-16 20:54:03 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2021-08-31 21:09:34 +02:00
|
|
|
Window::input(event);
|
2021-08-16 20:54:03 +02:00
|
|
|
}
|
|
|
|
|
2021-08-27 19:40:48 +02:00
|
|
|
void BPMCalculatorWidget::update(const sf::Time& dt)
|
2021-08-16 20:54:03 +02:00
|
|
|
{
|
2021-08-31 21:09:34 +02:00
|
|
|
Window::update(dt);
|
2021-08-16 20:54:03 +02:00
|
|
|
}
|
|
|
|
|
2021-08-21 14:29:58 +02:00
|
|
|
void BPMCalculatorWidget::draw(sf::RenderTarget& target, sf::RenderStates states) const
|
2021-08-16 20:54:03 +02:00
|
|
|
{
|
2021-08-31 21:09:34 +02:00
|
|
|
Window::draw(target, states);
|
|
|
|
|
2021-08-27 19:40:48 +02:00
|
|
|
if (_is_visible)
|
2021-08-31 21:09:34 +02:00
|
|
|
_slider->draw(target, states);
|
2021-08-16 20:54:03 +02:00
|
|
|
}
|
|
|
|
|
2021-08-21 14:29:58 +02:00
|
|
|
void BPMCalculatorWidget::setRect(const sf::FloatRect& rect)
|
2021-08-16 20:54:03 +02:00
|
|
|
{
|
2021-08-31 21:09:34 +02:00
|
|
|
Window::setRect(rect);
|
|
|
|
_slider->setRect(sf::FloatRect{0, 0, rect.width / 8 * 6, 100});
|
|
|
|
_slider->setPosition({_window_content.getGlobalBounds().left + rect.width / 8,
|
|
|
|
_window_content.getGlobalBounds().top + rect.height / 8 * 3});
|
2021-08-16 20:54:03 +02:00
|
|
|
}
|
|
|
|
|
2021-08-31 21:09:34 +02:00
|
|
|
void BPMCalculatorWidget::move(const sf::Vector2f &delta)
|
2021-08-16 20:54:03 +02:00
|
|
|
{
|
2021-08-31 21:09:34 +02:00
|
|
|
Window::move(delta);
|
|
|
|
_slider->move(delta);
|
2021-08-16 20:54:03 +02:00
|
|
|
}
|
|
|
|
|
2021-08-31 21:09:34 +02:00
|
|
|
void BPMCalculatorWidget::setPosition(const sf::Vector2f &position)
|
2021-08-16 20:54:03 +02:00
|
|
|
{
|
2021-08-31 21:09:34 +02:00
|
|
|
Window::setPosition(position);
|
|
|
|
_slider->setPosition(position);
|
2021-08-16 20:54:03 +02:00
|
|
|
}
|