You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
2.3 KiB
72 lines
2.3 KiB
/*
|
|
* Copyright 2023 jacqueline <me@jacqueline.id.au>
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
*/
|
|
|
|
#include "system_fsm.hpp"
|
|
#include "audio_fsm.hpp"
|
|
#include "event_queue.hpp"
|
|
#include "relative_wheel.hpp"
|
|
#include "system_events.hpp"
|
|
#include "tag_parser.hpp"
|
|
#include "track_queue.hpp"
|
|
|
|
namespace system_fsm {
|
|
|
|
std::shared_ptr<drivers::Gpios> SystemState::sGpios;
|
|
std::shared_ptr<drivers::Samd> SystemState::sSamd;
|
|
|
|
std::shared_ptr<drivers::TouchWheel> SystemState::sTouch;
|
|
std::shared_ptr<drivers::RelativeWheel> SystemState::sRelativeTouch;
|
|
std::shared_ptr<drivers::Battery> SystemState::sBattery;
|
|
std::shared_ptr<drivers::SdStorage> SystemState::sStorage;
|
|
std::shared_ptr<drivers::Display> SystemState::sDisplay;
|
|
|
|
std::shared_ptr<database::Database> SystemState::sDatabase;
|
|
std::shared_ptr<database::TagParserImpl> SystemState::sTagParser;
|
|
|
|
std::shared_ptr<audio::TrackQueue> SystemState::sTrackQueue;
|
|
|
|
console::AppConsole* SystemState::sAppConsole;
|
|
|
|
void SystemState::react(const FatalError& err) {
|
|
if (!is_in_state<states::Error>()) {
|
|
transit<states::Error>();
|
|
}
|
|
}
|
|
|
|
void SystemState::react(const internal::GpioInterrupt& ev) {
|
|
bool prev_key_up = sGpios->Get(drivers::Gpios::Pin::kKeyUp);
|
|
bool prev_key_down = sGpios->Get(drivers::Gpios::Pin::kKeyDown);
|
|
bool prev_key_lock = sGpios->Get(drivers::Gpios::Pin::kKeyLock);
|
|
bool prev_has_headphones = !sGpios->Get(drivers::Gpios::Pin::kPhoneDetect);
|
|
|
|
sGpios->Read();
|
|
|
|
bool key_up = sGpios->Get(drivers::Gpios::Pin::kKeyUp);
|
|
bool key_down = sGpios->Get(drivers::Gpios::Pin::kKeyDown);
|
|
bool key_lock = sGpios->Get(drivers::Gpios::Pin::kKeyLock);
|
|
bool has_headphones = !sGpios->Get(drivers::Gpios::Pin::kPhoneDetect);
|
|
|
|
if (key_up != prev_key_up) {
|
|
events::Dispatch<KeyUpChanged, audio::AudioState, ui::UiState>(
|
|
{.falling = prev_key_up});
|
|
}
|
|
if (key_down != prev_key_down) {
|
|
events::Dispatch<KeyDownChanged, audio::AudioState, ui::UiState>(
|
|
{.falling = prev_key_down});
|
|
}
|
|
if (key_lock != prev_key_lock) {
|
|
events::Dispatch<KeyLockChanged, SystemState, ui::UiState>(
|
|
{.falling = prev_key_lock});
|
|
}
|
|
if (has_headphones != prev_has_headphones) {
|
|
events::Dispatch<HasPhonesChanged, audio::AudioState>(
|
|
{.falling = prev_has_headphones});
|
|
}
|
|
}
|
|
|
|
} // namespace system_fsm
|
|
|
|
FSM_INITIAL_STATE(system_fsm::SystemState, system_fsm::states::Booting)
|
|
|