198 lines
9.5 KiB
C++
198 lines
9.5 KiB
C++
#include "ledstripmenu.h"
|
|
|
|
// 3rdparty lib includes
|
|
#include <FastLED.h>
|
|
#include <actioninterface.h>
|
|
#include <actions/pushscreenaction.h>
|
|
#include <actions/popscreenaction.h>
|
|
#include <changevaluedisplay.h>
|
|
#include <icons/back.h>
|
|
#include <menuitem.h>
|
|
#include <textwithvaluehelper.h>
|
|
|
|
// local includes
|
|
#include "accessors/settingsaccessors.h"
|
|
#include "bobbycheckbox.h"
|
|
#include "displays/bobbychangevaluedisplay.h"
|
|
#include "displays/ledstripcolorsdisplay.h"
|
|
#include "displays/menus/ledstripselectotamode.h"
|
|
#include "displays/menus/mainmenu.h"
|
|
#include "displays/menus/typesafeenumchangemenu.h"
|
|
#include "globals.h"
|
|
#include "ledstrip.h"
|
|
#include "ledstripselectblinkmenu.h"
|
|
|
|
// clang-format off
|
|
|
|
namespace {
|
|
constexpr char TEXT_LEDSTRIP[] = "Ledstrip";
|
|
constexpr char TEXT_LEDANIMATION[] = "LED Animation";
|
|
constexpr char TEXT_SELECTANIMATION[] = "Select Animation";
|
|
constexpr char TEXT_BRAKELIGHTS[] = "Brake Lights";
|
|
constexpr char TEXT_LEDSTRIPCOLORMENU[] = "Customize Ledstrip";
|
|
constexpr char TEXT_BLINKANIMATION[] = "Blink animation";
|
|
constexpr char TEXT_ANIMATION_TYPE[] = "Blink animation";
|
|
constexpr char TEXT_LEDSCOUNT[] = "LEDs Count";
|
|
constexpr char TEXT_CENTEROFFSET[] = "Center Offset";
|
|
constexpr char TEXT_SMALLOFFSET[] = "Small Offset";
|
|
constexpr char TEXT_BIGOFFSET[] = "Big Offset";
|
|
constexpr char TEXT_LEDSTRIPCURRENTLIMIT[] = "Ledstrip Currentlimit";
|
|
constexpr char TEXT_BLINKBEEP[] = "Blink Beep";
|
|
constexpr char TEXT_FULLBLINK[] = "Full blink";
|
|
constexpr char TEXT_LEDSTRIP_STVO[] = "Enable StVO";
|
|
constexpr char TEXT_STVO_FRONTOFFSET[] = "StVO Front Offset";
|
|
constexpr char TEXT_STVO_FRONTLENGTH[] = "StVO Front Length";
|
|
constexpr char TEXT_STVO_ENABLEFRONTLIGHT[] = "StVO Front Enable";
|
|
constexpr char TEXT_AUTOMATIC_LIGHTS[] = "Automatic Lights";
|
|
constexpr char TEXT_ANIMATION_MULTIPLIER[] = "Animation Multiplier";
|
|
constexpr char TEXT_LEDSTRIP_BRIGHTNESS[] = "Ledstrip Brightness";
|
|
constexpr char TEXT_LEDSTRIP_ALLCUSTOMOFF[] = "All custom off";
|
|
constexpr char TEXT_LEDSTRIP_CHANGE_OTA_ANIM[] = "Change Ota animation";
|
|
constexpr char TEXT_LEDSTRIP_BRAKE_USE_ACCEL[] = "Brakelight use acceleration";
|
|
constexpr char TEXT_LEDSTRIP_BRAKE_USE_POWER[] = "Brakelight use motor power";
|
|
constexpr char TEXT_BACK[] = "Back";
|
|
|
|
using LedsCountChangeScreen = espgui::makeComponent<
|
|
BobbyChangeValueDisplay<int16_t>,
|
|
espgui::StaticTitle<TEXT_LEDSCOUNT>,
|
|
LedsCountAccessor,
|
|
espgui::ConfirmActionInterface<espgui::PopScreenAction>,
|
|
espgui::BackActionInterface<espgui::PopScreenAction>
|
|
>;
|
|
|
|
using CenterOffsetChangeScreen = espgui::makeComponent<
|
|
BobbyChangeValueDisplay<int16_t>,
|
|
espgui::StaticTitle<TEXT_CENTEROFFSET>,
|
|
CenterOffsetAccessor,
|
|
espgui::ConfirmActionInterface<espgui::PopScreenAction>,
|
|
espgui::BackActionInterface<espgui::PopScreenAction>
|
|
>;
|
|
|
|
using SmallOffsetChangeScreen = espgui::makeComponent<
|
|
BobbyChangeValueDisplay<int16_t>,
|
|
espgui::StaticTitle<TEXT_SMALLOFFSET>,
|
|
SmallOffsetAccessor,
|
|
espgui::ConfirmActionInterface<espgui::PopScreenAction>,
|
|
espgui::BackActionInterface<espgui::PopScreenAction>
|
|
>;
|
|
|
|
using BigOffsetChangeScreen = espgui::makeComponent<
|
|
BobbyChangeValueDisplay<int16_t>,
|
|
espgui::StaticTitle<TEXT_BIGOFFSET>,
|
|
BigOffsetAccessor,
|
|
espgui::ConfirmActionInterface<espgui::PopScreenAction>,
|
|
espgui::BackActionInterface<espgui::PopScreenAction>
|
|
>;
|
|
|
|
using LedStripMaxAmpereChangeScreen = espgui::makeComponent<
|
|
BobbyChangeValueDisplay<float>,
|
|
espgui::StaticTitle<TEXT_LEDSTRIPCURRENTLIMIT>,
|
|
LedStripMaxAmpereAccessor,
|
|
espgui::RatioNumberStep<float, std::ratio<1,10>>,
|
|
espgui::ConfirmActionInterface<espgui::PopScreenAction>,
|
|
espgui::BackActionInterface<espgui::PopScreenAction>
|
|
>;
|
|
|
|
using StVOOffsetChangeScreen = espgui::makeComponent<
|
|
BobbyChangeValueDisplay<int16_t>,
|
|
espgui::StaticTitle<TEXT_STVO_FRONTOFFSET>,
|
|
LedsStVOFrontOffsetAccessor,
|
|
espgui::ConfirmActionInterface<espgui::PopScreenAction>,
|
|
espgui::BackActionInterface<espgui::PopScreenAction>
|
|
>;
|
|
|
|
using StVOLengthChangeScreen = espgui::makeComponent<
|
|
BobbyChangeValueDisplay<int16_t>,
|
|
espgui::StaticTitle<TEXT_STVO_FRONTLENGTH>,
|
|
LedsStVOFrontLengthAccessor,
|
|
espgui::ConfirmActionInterface<espgui::PopScreenAction>,
|
|
espgui::BackActionInterface<espgui::PopScreenAction>
|
|
>;
|
|
|
|
using AnimationMultiplierChangeScreen = espgui::makeComponent<
|
|
BobbyChangeValueDisplay<int16_t>,
|
|
espgui::StaticTitle<TEXT_ANIMATION_MULTIPLIER>,
|
|
AnimationMultiplierAccessor,
|
|
espgui::ConfirmActionInterface<espgui::PopScreenAction>,
|
|
espgui::BackActionInterface<espgui::PopScreenAction>
|
|
>;
|
|
|
|
using LedStripBrightnessChangeScreen = espgui::makeComponent<
|
|
BobbyChangeValueDisplay<uint8_t>,
|
|
espgui::StaticTitle<TEXT_LEDSTRIP_BRIGHTNESS>,
|
|
LedstripBrightnessAccessor,
|
|
espgui::ConfirmActionInterface<espgui::PopScreenAction>,
|
|
espgui::BackActionInterface<espgui::PopScreenAction>
|
|
>;
|
|
|
|
class AllCustomLedsOffAction : public virtual espgui::ActionInterface
|
|
{
|
|
public:
|
|
void triggered() override
|
|
{
|
|
// std::fill(std::begin(ledstrip_custom_colors), std::end(ledstrip_custom_colors), CRGB{0, 0, 0});
|
|
for (uint8_t i = 0; i < configs.ledstrip.custom_color.size(); i++)
|
|
{
|
|
configs.write_config(configs.ledstrip.custom_color[i], 0);
|
|
}
|
|
}
|
|
};
|
|
|
|
class LedStripMaxCurrentText : public virtual espgui::TextInterface
|
|
{
|
|
public:
|
|
std::string text() const override
|
|
{
|
|
return fmt::format("&sLedstrip max current: &f&2{:.02f}A", configs.ledstrip.maxMilliamps.value() / 1000.f);
|
|
}
|
|
};
|
|
} // namespace
|
|
|
|
LedstripMenu::LedstripMenu()
|
|
{
|
|
using namespace espgui;
|
|
|
|
if (!simplified) { constructMenuItem<makeComponent<MenuItem, espgui::StaticText<TEXT_LEDSTRIP_STVO>, BobbyCheckbox, EnableLedstripStVOAccessor>>(); }
|
|
constructMenuItem<makeComponent<MenuItem, espgui::StaticText<TEXT_STVO_ENABLEFRONTLIGHT>, BobbyCheckbox, EnableLedstripStVOFrontlight>>();
|
|
constructMenuItem<makeComponent<MenuItem, espgui::StaticText<TEXT_AUTOMATIC_LIGHTS>, BobbyCheckbox, LedstripAutomaticLightAccessor>>();
|
|
|
|
constructMenuItem<makeComponent<MenuItem, espgui::StaticText<TEXT_LEDANIMATION>, BobbyCheckbox, EnableLedAnimationAccessor>>();
|
|
|
|
constructMenuItem<PushScreenTypeSafeChangeMenuItem<LedstripAnimation, TEXT_SELECTANIMATION>>(&configs.ledstrip.animationType);
|
|
|
|
constructMenuItem<makeComponent<MenuItem, espgui::StaticText<TEXT_BRAKELIGHTS>, BobbyCheckbox, EnableBrakeLightsAccessor>>();
|
|
|
|
constructMenuItem<makeComponent<MenuItem, espgui::StaticText<TEXT_LEDSTRIPCOLORMENU>, espgui::PushScreenAction<LedstripColorsDisplay>>>();
|
|
constructMenuItem<makeComponent<MenuItem, espgui::StaticText<TEXT_LEDSTRIP_ALLCUSTOMOFF>, AllCustomLedsOffAction>>();
|
|
|
|
constructMenuItem<makeComponent<MenuItem, espgui::StaticText<TEXT_BLINKBEEP>, BobbyCheckbox, EnableBeepWhenBlinkAccessor>>();
|
|
constructMenuItem<makeComponent<MenuItem, espgui::StaticText<TEXT_FULLBLINK>, BobbyCheckbox, EnableFullBlinkAccessor>>();
|
|
|
|
if (!simplified) { constructMenuItem<makeComponent<MenuItem, TextWithValueHelper<TEXT_STVO_FRONTOFFSET, LedsStVOFrontOffsetAccessor>, espgui::PushScreenAction<StVOOffsetChangeScreen>>>(); }
|
|
if (!simplified) { constructMenuItem<makeComponent<MenuItem, TextWithValueHelper<TEXT_STVO_FRONTLENGTH, LedsStVOFrontLengthAccessor>, espgui::PushScreenAction<StVOLengthChangeScreen>>>(); }
|
|
|
|
constructMenuItem<makeComponent<MenuItem, espgui::StaticText<TEXT_BLINKANIMATION>, espgui::PushScreenAction<LedstripSelectBlinkMenu>>>();
|
|
if (configs.feature.ota.isEnabled.value())
|
|
if (!simplified) { constructMenuItem<makeComponent<MenuItem, espgui::StaticText<TEXT_LEDSTRIP_CHANGE_OTA_ANIM>, espgui::PushScreenAction<LedstripOtaAnimationChangeMenu>>>(); }
|
|
constructMenuItem<makeComponent<MenuItem, espgui::StaticText<TEXT_ANIMATION_MULTIPLIER>, espgui::PushScreenAction<AnimationMultiplierChangeScreen>>>();
|
|
if (!simplified) { constructMenuItem<makeComponent<MenuItem, TextWithValueHelper<TEXT_LEDSCOUNT, LedsCountAccessor>, espgui::PushScreenAction<LedsCountChangeScreen>>>(); }
|
|
if (!simplified) { constructMenuItem<makeComponent<MenuItem, TextWithValueHelper<TEXT_CENTEROFFSET, CenterOffsetAccessor>, espgui::PushScreenAction<CenterOffsetChangeScreen>>>(); }
|
|
if (!simplified) { constructMenuItem<makeComponent<MenuItem, TextWithValueHelper<TEXT_SMALLOFFSET, SmallOffsetAccessor>, espgui::PushScreenAction<SmallOffsetChangeScreen>>>(); }
|
|
if (!simplified) { constructMenuItem<makeComponent<MenuItem, TextWithValueHelper<TEXT_BIGOFFSET, BigOffsetAccessor>, espgui::PushScreenAction<BigOffsetChangeScreen>>>(); }
|
|
if (!simplified) { constructMenuItem<makeComponent<MenuItem, espgui::StaticText<TEXT_LEDSTRIP_BRIGHTNESS>, espgui::PushScreenAction<LedStripBrightnessChangeScreen>>>(); }
|
|
if (!simplified) { constructMenuItem<makeComponent<MenuItem, LedStripMaxCurrentText, espgui::PushScreenAction<LedStripMaxAmpereChangeScreen>>>(); }
|
|
constructMenuItem<makeComponent<MenuItem, espgui::StaticText<TEXT_LEDSTRIP_BRAKE_USE_ACCEL>, BobbyCheckbox, LedstripBrakeLightUseAccelAccessor>>();
|
|
constructMenuItem<makeComponent<MenuItem, espgui::StaticText<TEXT_LEDSTRIP_BRAKE_USE_POWER>, BobbyCheckbox, LedstripBrakeLightUsePowerAccessor>>();
|
|
constructMenuItem<makeComponent<MenuItem, espgui::StaticText<TEXT_BACK>, espgui::PushScreenAction<MainMenu>, StaticMenuItemIcon<&espgui::icons::back>>>();
|
|
}
|
|
|
|
std::string LedstripMenu::title() const
|
|
{
|
|
return TEXT_LEDSTRIP;
|
|
}
|
|
|
|
void LedstripMenu::back()
|
|
{
|
|
espgui::popScreen();
|
|
}
|