~aleteoryx/muditaos

ref: 85cd9dd6902b49221fa94f91b062f64c3ef9df8e muditaos/module-apps/application-meditation/widgets/TimerProperty.cpp -rw-r--r-- 6.2 KiB
85cd9dd6 — Lukasz Mastalerz [CP-1852] Too many user files removes default relaxation audio from the list 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
// Copyright (c) 2017-2023, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md

#include "Style.hpp"
#include "TimerProperty.hpp"

#include <InputEvent.hpp>
#include <i18n/i18n.hpp>
#include <Utils.hpp>
#include <Constants.hpp>

using namespace gui;

TimerProperty::TimerProperty(
    Item *parent, const std::uint32_t x, const std::uint32_t y, const std::uint32_t w, const std::uint32_t h)
    : Rect(parent, x, y, w, h)
{
    build();
}

void TimerProperty::build()
{
    namespace timerStyle = style::meditation::timer;

    const Point boxCenter(getX() + (getWidth() / 2), getY() + (getHeight() / 2));
    Circle::ShapeParams params;
    params.setCenterPoint(boxCenter)
        .setRadius(timerStyle::Radius)
        .setBorderColor(timerStyle::BorderColor)
        .setFocusBorderColor(timerStyle::BorderColor)
        .setPenWidth(timerStyle::PenWidth)
        .setFocusPenWidth(timerStyle::FocusPenWidth);
    circle = new Circle(this, params);

    centerBody = new VBox(this, 0, 0, 2 * timerStyle::Radius, 2 * timerStyle::Radius);
    centerBody->setAlignment(Alignment(Alignment::Horizontal::Center, Alignment::Vertical::Top));
    centerBody->setMinimumSize(2 * timerStyle::Radius, 2 * timerStyle::Radius);
    centerBody->setEdges(RectangleEdge::None);
    centerBody->activeItem = false;

    timeLabel = new Label(centerBody);
    timeLabel->setMargins(gui::Margins(0, timerStyle::setterValueLabel::TopMargin, 0, 0));
    timeLabel->setEdges(RectangleEdge::None);
    timeLabel->setMinimumSize(timerStyle::setterValueLabel::Width, timerStyle::setterValueLabel::Height);
    timeLabel->setFont(style::window::font::supersizemelight);
    timeLabel->setAlignment(Alignment(gui::Alignment::Horizontal::Center, gui::Alignment::Vertical::Center));
    timeLabel->setPenWidth(timerStyle::PenWidth);
    timeLabel->setText(std::to_string(static_cast<int>(state.getTime().count())));

    divRect = new Rect(centerBody, 0, 0, timerStyle::setterValueLabel::BottomLineWidth, 1);
    divRect->setPenWidth(timerStyle::setterValueLabel::BottomLinePen);

    timeUnitLabel = new Label(centerBody);
    timeUnitLabel->setMinimumSize(timerStyle::setterUnitLabel::Width, timerStyle::setterUnitLabel::Height);
    timeUnitLabel->setMargins(gui::Margins(0, timerStyle::setterUnitLabel::TopMargin, 0, 0));
    timeUnitLabel->setFont(style::window::font::verysmall);
    timeUnitLabel->setAlignment(Alignment(gui::Alignment::Horizontal::Center, gui::Alignment::Vertical::Center));
    timeUnitLabel->setEdges(RectangleEdge::None);
    timeUnitLabel->setText(utils::translate("app_meditation_minutes"));

    centerBody->resizeItems();
}

bool TimerProperty::onFocus(bool isFocused)
{
    circle->setFocus(isFocused);
    if (isFocused) {
        divRect->setEdges(RectangleEdge::Top);
    }
    else {
        divRect->setEdges(RectangleEdge::None);
    }
    state.onFocus();
    return true;
}

bool TimerProperty::onInput(const InputEvent &inputEvent)
{
    bool handled = false;
    if (inputEvent.isShortRelease()) {
        if (inputEvent.isDigit()) {
            state.putNumericValue(inputEvent.numericValue());
            handled = true;
        }
        else if (inputEvent.is(KeyCode::KEY_LEFT)) {
            state.decrement();
            handled = true;
        }
        else if (inputEvent.is(KeyCode::KEY_RIGHT)) {
            state.increment();
            handled = true;
        }
        else if (inputEvent.is(KeyCode::KEY_PND)) {
            state.delNumericValue();
            handled = true;
        }
        else {
            state.onFocus();
        }
        setMeditationTime();
    }
    return handled;
}

void TimerProperty::setMeditationTime()
{
    const auto meditationTime = static_cast<int>(state.getTime().count());
    timeLabel->setText(utils::to_string(meditationTime));
    if (meditationTime == 1) {
        timeUnitLabel->setText(utils::translate("app_meditation_minute"));
    }
    else {
        timeUnitLabel->setText(utils::translate("app_meditation_minutes"));
    }
    if (onChangeCallback != nullptr) {
        onChangeCallback(meditationTime);
    }
}

std::chrono::minutes TimerProperty::getTime() noexcept
{
    state.checkBounds();
    return state.getTime();
}

bool TimerProperty::setTime(std::int32_t newValue)
{
    bool result = state.setTime(newValue);
    setMeditationTime();
    return result;
}
void TimerProperty::setOnChangeCallback(OnChangeCallback callback)
{
    onChangeCallback = callback;
}

bool TimerProperty::State::setTime(int value)
{
    timeInMinutes =
        std::clamp(value, Constants::Params::minimalMeditationDuration, Constants::Params::maximalMeditationDuration);
    return true;
}

void TimerProperty::State::checkBounds() noexcept
{
    timeInMinutes = std::clamp(
        timeInMinutes, Constants::Params::minimalMeditationDuration, Constants::Params::maximalMeditationDuration);
    resetValueOnNumeric = true;
}

void TimerProperty::State::putNumericValue(int digit) noexcept
{
    if (resetValueOnNumeric) {
        timeInMinutes       = 0;
        resetValueOnNumeric = false;
    }
    if (timeInMinutes == 0 && digit == 0) {
        digit = Constants::Params::minimalMeditationDuration;
    }
    timeInMinutes = 10 * timeInMinutes + digit;
    if (timeInMinutes >= 10 * (counterMaxDigits - 1)) {
        resetValueOnNumeric = true;
    }
}
void TimerProperty::State::delNumericValue() noexcept
{
    timeInMinutes = timeInMinutes / 10;
    if (timeInMinutes < Constants::Params::minimalMeditationDuration) {
        timeInMinutes       = Constants::Params::minimalMeditationDuration;
        resetValueOnNumeric = true;
    }
    else {
        resetValueOnNumeric = false;
    }
}

void TimerProperty::State::increment() noexcept
{
    auto it = std::upper_bound(std::begin(timeArray), std::end(timeArray), timeInMinutes);
    if (it == std::end(timeArray)) {
        it--;
    }
    timeInMinutes       = *it;
    resetValueOnNumeric = true;
}

void TimerProperty::State::decrement() noexcept
{
    auto it = std::upper_bound(
        std::rbegin(timeArray), std::rend(timeArray), timeInMinutes, [](int a, int b) { return a > b; });
    if (it == std::rend(timeArray)) {
        it--;
    }
    timeInMinutes       = *it;
    resetValueOnNumeric = true;
}