Compare commits

..

1 Commits

Author SHA1 Message Date
Clément Roblot
0469c00e8c
Merge 3754136dd6 into 1d40687a40 2024-10-06 21:08:23 -05:00
5 changed files with 47 additions and 91 deletions

View File

@ -39,8 +39,6 @@ current (development)
component in its parent. See #932 component in its parent. See #932
- Feature: Add `EntryState::index`. This allows to get the index of a menu entry. - Feature: Add `EntryState::index`. This allows to get the index of a menu entry.
See #932 See #932
- Feature: Add `SliderOption::on_change`. This allows to set a callback when the
slider value changes. See #938.
### Dom ### Dom
- Feature: Add `hscroll_indicator`. It display an horizontal indicator - Feature: Add `hscroll_indicator`. It display an horizontal indicator

View File

@ -336,7 +336,6 @@ Feel free to add your projects here:
- [Step-Writer](https://github.com/BrianAnakPintar/step-writer) - [Step-Writer](https://github.com/BrianAnakPintar/step-writer)
- [XJ music](https://github.com/xjmusic/xjmusic) - [XJ music](https://github.com/xjmusic/xjmusic)
- [UDP chat](https://github.com/Sergeydigl3/udp-chat-tui) - [UDP chat](https://github.com/Sergeydigl3/udp-chat-tui)
- [2048-cpp](https://github.com/Chessom/2048-cpp)
### [cpp-best-practices/game_jam](https://github.com/cpp-best-practices/game_jam) ### [cpp-best-practices/game_jam](https://github.com/cpp-best-practices/game_jam)

View File

@ -228,7 +228,6 @@ struct SliderOption {
Direction direction = Direction::Right; Direction direction = Direction::Right;
Color color_active = Color::White; Color color_active = Color::White;
Color color_inactive = Color::GrayDark; Color color_inactive = Color::GrayDark;
std::function<void()> on_change; ///> Called when `value` is updated.
}; };
// Parameter pack used by `WindowOptions::render`. // Parameter pack used by `WindowOptions::render`.

View File

@ -35,26 +35,31 @@ Decorator flexDirection(Direction direction) {
} }
template <class T> template <class T>
class SliderBase : public SliderOption<T>, public ComponentBase { class SliderBase : public ComponentBase {
public: public:
explicit SliderBase(SliderOption<T> options) : SliderOption<T>(options) {} explicit SliderBase(SliderOption<T> options)
: value_(options.value),
min_(options.min),
max_(options.max),
increment_(options.increment),
options_(options) {}
Element Render() override { Element Render() override {
auto gauge_color = auto gauge_color = Focused() ? color(options_.color_active)
Focused() ? color(this->color_active) : color(this->color_inactive); : color(options_.color_inactive);
const float percent = const float percent = float(value_() - min_()) / float(max_() - min_());
float(this->value() - this->min()) / float(this->max() - this->min()); return gaugeDirection(percent, options_.direction) |
return gaugeDirection(percent, this->direction) | flexDirection(options_.direction) | reflect(gauge_box_) |
flexDirection(this->direction) | reflect(gauge_box_) | gauge_color; gauge_color;
} }
void OnLeft() { void OnLeft() {
switch (this->direction) { switch (options_.direction) {
case Direction::Right: case Direction::Right:
this->value() -= this->increment(); value_() -= increment_();
break; break;
case Direction::Left: case Direction::Left:
this->value() += this->increment(); value_() += increment_();
break; break;
case Direction::Up: case Direction::Up:
case Direction::Down: case Direction::Down:
@ -63,12 +68,12 @@ class SliderBase : public SliderOption<T>, public ComponentBase {
} }
void OnRight() { void OnRight() {
switch (this->direction) { switch (options_.direction) {
case Direction::Right: case Direction::Right:
this->value() += this->increment(); value_() += increment_();
break; break;
case Direction::Left: case Direction::Left:
this->value() -= this->increment(); value_() -= increment_();
break; break;
case Direction::Up: case Direction::Up:
case Direction::Down: case Direction::Down:
@ -77,12 +82,12 @@ class SliderBase : public SliderOption<T>, public ComponentBase {
} }
void OnUp() { void OnUp() {
switch (this->direction) { switch (options_.direction) {
case Direction::Up: case Direction::Up:
this->value() -= this->increment(); value_() -= increment_();
break; break;
case Direction::Down: case Direction::Down:
this->value() += this->increment(); value_() += increment_();
break; break;
case Direction::Left: case Direction::Left:
case Direction::Right: case Direction::Right:
@ -91,12 +96,12 @@ class SliderBase : public SliderOption<T>, public ComponentBase {
} }
void OnDown() { void OnDown() {
switch (this->direction) { switch (options_.direction) {
case Direction::Down: case Direction::Down:
this->value() += this->increment(); value_() -= increment_();
break; break;
case Direction::Up: case Direction::Up:
this->value() -= this->increment(); value_() += increment_();
break; break;
case Direction::Left: case Direction::Left:
case Direction::Right: case Direction::Right:
@ -109,7 +114,7 @@ class SliderBase : public SliderOption<T>, public ComponentBase {
return OnMouseEvent(event); return OnMouseEvent(event);
} }
T old_value = this->value(); T old_value = value_();
if (event == Event::ArrowLeft || event == Event::Character('h')) { if (event == Event::ArrowLeft || event == Event::Character('h')) {
OnLeft(); OnLeft();
} }
@ -123,11 +128,8 @@ class SliderBase : public SliderOption<T>, public ComponentBase {
OnUp(); OnUp();
} }
this->value() = std::max(this->min(), std::min(this->max(), this->value())); value_() = util::clamp(value_(), min_(), max_());
if (old_value != this->value()) { if (old_value != value_()) {
if (this->on_change) {
this->on_change();
}
return true; return true;
} }
@ -141,45 +143,33 @@ class SliderBase : public SliderOption<T>, public ComponentBase {
return true; return true;
} }
T old_value = this->value(); switch (options_.direction) {
switch (this->direction) {
case Direction::Right: { case Direction::Right: {
this->value() = value_() = min_() + (event.mouse().x - gauge_box_.x_min) *
this->min() + (event.mouse().x - gauge_box_.x_min) * (max_() - min_()) /
(this->max() - this->min()) / (gauge_box_.x_max - gauge_box_.x_min);
(gauge_box_.x_max - gauge_box_.x_min);
break; break;
} }
case Direction::Left: { case Direction::Left: {
this->value() = value_() = max_() - (event.mouse().x - gauge_box_.x_min) *
this->max() - (event.mouse().x - gauge_box_.x_min) * (max_() - min_()) /
(this->max() - this->min()) / (gauge_box_.x_max - gauge_box_.x_min);
(gauge_box_.x_max - gauge_box_.x_min);
break; break;
} }
case Direction::Down: { case Direction::Down: {
this->value() = value_() = min_() + (event.mouse().y - gauge_box_.y_min) *
this->min() + (event.mouse().y - gauge_box_.y_min) * (max_() - min_()) /
(this->max() - this->min()) / (gauge_box_.y_max - gauge_box_.y_min);
(gauge_box_.y_max - gauge_box_.y_min);
break; break;
} }
case Direction::Up: { case Direction::Up: {
this->value() = value_() = max_() - (event.mouse().y - gauge_box_.y_min) *
this->max() - (event.mouse().y - gauge_box_.y_min) * (max_() - min_()) /
(this->max() - this->min()) / (gauge_box_.y_max - gauge_box_.y_min);
(gauge_box_.y_max - gauge_box_.y_min);
break; break;
} }
} }
value_() = std::max(min_(), std::min(max_(), value_()));
this->value() =
std::max(this->min(), std::min(this->max(), this->value()));
if (old_value != this->value() && this->on_change) {
this->on_change();
}
return true; return true;
} }
@ -207,6 +197,11 @@ class SliderBase : public SliderOption<T>, public ComponentBase {
bool Focusable() const final { return true; } bool Focusable() const final { return true; }
private: private:
Ref<T> value_;
ConstRef<T> min_;
ConstRef<T> max_;
ConstRef<T> increment_;
SliderOption<T> options_;
Box gauge_box_; Box gauge_box_;
CapturedMouse captured_mouse_; CapturedMouse captured_mouse_;
}; };
@ -261,7 +256,6 @@ class SliderWithLabel : public ComponentBase {
Box box_; Box box_;
bool mouse_hover_ = false; bool mouse_hover_ = false;
}; };
} // namespace } // namespace
/// @brief An horizontal slider. /// @brief An horizontal slider.
@ -346,7 +340,6 @@ template <typename T>
Component Slider(SliderOption<T> options) { Component Slider(SliderOption<T> options) {
return Make<SliderBase<T>>(options); return Make<SliderBase<T>>(options);
} }
template Component Slider(SliderOption<int8_t>); template Component Slider(SliderOption<int8_t>);
template Component Slider(SliderOption<int16_t>); template Component Slider(SliderOption<int16_t>);
template Component Slider(SliderOption<int32_t>); template Component Slider(SliderOption<int32_t>);

View File

@ -45,7 +45,6 @@ Event MouseReleased(int x, int y) {
} // namespace } // namespace
TEST(SliderTest, Right) { TEST(SliderTest, Right) {
int updated = 0;
int value = 50; int value = 50;
auto slider = Slider<int>({ auto slider = Slider<int>({
.value = &value, .value = &value,
@ -53,31 +52,23 @@ TEST(SliderTest, Right) {
.max = 100, .max = 100,
.increment = 10, .increment = 10,
.direction = Direction::Right, .direction = Direction::Right,
.on_change = [&]() { updated++; },
}); });
Screen screen(11, 1); Screen screen(11, 1);
Render(screen, slider->Render()); Render(screen, slider->Render());
EXPECT_EQ(value, 50); EXPECT_EQ(value, 50);
EXPECT_EQ(updated, 0);
EXPECT_TRUE(slider->OnEvent(MousePressed(3, 0))); EXPECT_TRUE(slider->OnEvent(MousePressed(3, 0)));
EXPECT_EQ(value, 50); EXPECT_EQ(value, 50);
EXPECT_EQ(updated, 0);
EXPECT_TRUE(slider->OnEvent(MousePressed(9, 0))); EXPECT_TRUE(slider->OnEvent(MousePressed(9, 0)));
EXPECT_EQ(value, 90); EXPECT_EQ(value, 90);
EXPECT_EQ(updated, 1);
EXPECT_TRUE(slider->OnEvent(MousePressed(9, 2))); EXPECT_TRUE(slider->OnEvent(MousePressed(9, 2)));
EXPECT_EQ(value, 90); EXPECT_EQ(value, 90);
EXPECT_EQ(updated, 1);
EXPECT_TRUE(slider->OnEvent(MousePressed(5, 2))); EXPECT_TRUE(slider->OnEvent(MousePressed(5, 2)));
EXPECT_EQ(value, 50); EXPECT_EQ(value, 50);
EXPECT_EQ(updated, 2);
EXPECT_TRUE(slider->OnEvent(MouseReleased(5, 2))); EXPECT_TRUE(slider->OnEvent(MouseReleased(5, 2)));
EXPECT_FALSE(slider->OnEvent(MousePressed(5, 2))); EXPECT_FALSE(slider->OnEvent(MousePressed(5, 2)));
EXPECT_EQ(value, 50);
} }
TEST(SliderTest, Left) { TEST(SliderTest, Left) {
int updated = 0;
int value = 50; int value = 50;
auto slider = Slider<int>({ auto slider = Slider<int>({
.value = &value, .value = &value,
@ -85,31 +76,23 @@ TEST(SliderTest, Left) {
.max = 100, .max = 100,
.increment = 10, .increment = 10,
.direction = Direction::Left, .direction = Direction::Left,
.on_change = [&]() { updated++; },
}); });
Screen screen(11, 1); Screen screen(11, 1);
Render(screen, slider->Render()); Render(screen, slider->Render());
EXPECT_EQ(value, 50); EXPECT_EQ(value, 50);
EXPECT_EQ(updated, 0);
EXPECT_TRUE(slider->OnEvent(MousePressed(3, 0))); EXPECT_TRUE(slider->OnEvent(MousePressed(3, 0)));
EXPECT_EQ(value, 50); EXPECT_EQ(value, 50);
EXPECT_EQ(updated, 0);
EXPECT_TRUE(slider->OnEvent(MousePressed(9, 0))); EXPECT_TRUE(slider->OnEvent(MousePressed(9, 0)));
EXPECT_EQ(value, 10); EXPECT_EQ(value, 10);
EXPECT_EQ(updated, 1);
EXPECT_TRUE(slider->OnEvent(MousePressed(9, 2))); EXPECT_TRUE(slider->OnEvent(MousePressed(9, 2)));
EXPECT_EQ(value, 10); EXPECT_EQ(value, 10);
EXPECT_EQ(updated, 1);
EXPECT_TRUE(slider->OnEvent(MousePressed(5, 2))); EXPECT_TRUE(slider->OnEvent(MousePressed(5, 2)));
EXPECT_EQ(value, 50); EXPECT_EQ(value, 50);
EXPECT_EQ(updated, 2);
EXPECT_TRUE(slider->OnEvent(MouseReleased(5, 2))); EXPECT_TRUE(slider->OnEvent(MouseReleased(5, 2)));
EXPECT_FALSE(slider->OnEvent(MousePressed(5, 2))); EXPECT_FALSE(slider->OnEvent(MousePressed(5, 2)));
EXPECT_EQ(value, 50);
} }
TEST(SliderTest, Down) { TEST(SliderTest, Down) {
int updated = 0;
int value = 50; int value = 50;
auto slider = Slider<int>({ auto slider = Slider<int>({
.value = &value, .value = &value,
@ -117,32 +100,23 @@ TEST(SliderTest, Down) {
.max = 100, .max = 100,
.increment = 10, .increment = 10,
.direction = Direction::Down, .direction = Direction::Down,
.on_change = [&]() { updated++; },
}); });
Screen screen(1, 11); Screen screen(1, 11);
Render(screen, slider->Render()); Render(screen, slider->Render());
EXPECT_EQ(value, 50); EXPECT_EQ(value, 50);
EXPECT_EQ(updated, 0);
EXPECT_TRUE(slider->OnEvent(MousePressed(0, 3))); EXPECT_TRUE(slider->OnEvent(MousePressed(0, 3)));
EXPECT_EQ(value, 50); EXPECT_EQ(value, 50);
EXPECT_EQ(updated, 0);
EXPECT_TRUE(slider->OnEvent(MousePressed(0, 9))); EXPECT_TRUE(slider->OnEvent(MousePressed(0, 9)));
EXPECT_EQ(value, 90); EXPECT_EQ(value, 90);
EXPECT_EQ(updated, 1);
EXPECT_TRUE(slider->OnEvent(MousePressed(2, 9))); EXPECT_TRUE(slider->OnEvent(MousePressed(2, 9)));
EXPECT_EQ(value, 90); EXPECT_EQ(value, 90);
EXPECT_EQ(updated, 1);
EXPECT_TRUE(slider->OnEvent(MousePressed(2, 5))); EXPECT_TRUE(slider->OnEvent(MousePressed(2, 5)));
EXPECT_EQ(value, 50); EXPECT_EQ(value, 50);
EXPECT_EQ(updated, 2);
EXPECT_TRUE(slider->OnEvent(MouseReleased(2, 5))); EXPECT_TRUE(slider->OnEvent(MouseReleased(2, 5)));
EXPECT_FALSE(slider->OnEvent(MousePressed(2, 5))); EXPECT_FALSE(slider->OnEvent(MousePressed(2, 5)));
EXPECT_EQ(value, 50);
EXPECT_EQ(updated, 2);
} }
TEST(SliderTest, Up) { TEST(SliderTest, Up) {
int updated = 0;
int value = 50; int value = 50;
auto slider = Slider<int>({ auto slider = Slider<int>({
.value = &value, .value = &value,
@ -150,27 +124,20 @@ TEST(SliderTest, Up) {
.max = 100, .max = 100,
.increment = 10, .increment = 10,
.direction = Direction::Up, .direction = Direction::Up,
.on_change = [&]() { updated++; },
}); });
Screen screen(1, 11); Screen screen(1, 11);
Render(screen, slider->Render()); Render(screen, slider->Render());
EXPECT_EQ(value, 50); EXPECT_EQ(value, 50);
EXPECT_EQ(updated, 0);
EXPECT_TRUE(slider->OnEvent(MousePressed(0, 3))); EXPECT_TRUE(slider->OnEvent(MousePressed(0, 3)));
EXPECT_EQ(value, 50); EXPECT_EQ(value, 50);
EXPECT_EQ(updated, 0);
EXPECT_TRUE(slider->OnEvent(MousePressed(0, 9))); EXPECT_TRUE(slider->OnEvent(MousePressed(0, 9)));
EXPECT_EQ(value, 10); EXPECT_EQ(value, 10);
EXPECT_EQ(updated, 1);
EXPECT_TRUE(slider->OnEvent(MousePressed(2, 9))); EXPECT_TRUE(slider->OnEvent(MousePressed(2, 9)));
EXPECT_EQ(value, 10); EXPECT_EQ(value, 10);
EXPECT_EQ(updated, 1);
EXPECT_TRUE(slider->OnEvent(MousePressed(2, 5))); EXPECT_TRUE(slider->OnEvent(MousePressed(2, 5)));
EXPECT_EQ(value, 50); EXPECT_EQ(value, 50);
EXPECT_EQ(updated, 2);
EXPECT_TRUE(slider->OnEvent(MouseReleased(2, 5))); EXPECT_TRUE(slider->OnEvent(MouseReleased(2, 5)));
EXPECT_FALSE(slider->OnEvent(MousePressed(2, 5))); EXPECT_FALSE(slider->OnEvent(MousePressed(2, 5)));
EXPECT_EQ(value, 50);
} }
TEST(SliderTest, Focus) { TEST(SliderTest, Focus) {