From 07e1b5a3284201b4eac36a15c361b85dfba147b5 Mon Sep 17 00:00:00 2001 From: jacqueline Date: Tue, 15 Nov 2022 16:36:42 +1100 Subject: WIP debug console for testing playback --- src/main/app_console.cpp | 104 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100644 src/main/app_console.cpp (limited to 'src/main/app_console.cpp') diff --git a/src/main/app_console.cpp b/src/main/app_console.cpp new file mode 100644 index 00000000..613d5a9a --- /dev/null +++ b/src/main/app_console.cpp @@ -0,0 +1,104 @@ +#include "app_console.hpp" + +#include +#include +#include +#include +#include "esp_console.h" + +namespace console { + +static AppConsole* sInstance = nullptr; + +int CmdListDir(int argc, char** argv) { + static const std::string usage = "usage: ls [directory]"; + if (argc > 2) { + std::cout << usage << std::endl; + return 1; + } + std::string path = drivers::kStoragePath; + if (argc == 2) { + path += "/"; + path += argv[1]; + } + + DIR* dir; + struct dirent* ent; + dir = opendir(path.c_str()); + while ((ent = readdir(dir))) { + std::cout << ent->d_name << std::endl; + } + closedir(dir); + + return 0; +} + +void RegisterListDir() { + esp_console_cmd_t cmd{.command = "ls", + .help = "Lists SD contents", + .hint = NULL, + .func = &CmdListDir, + .argtable = NULL}; + esp_console_cmd_register(&cmd); +} + +int CmdPlayFile(int argc, char** argv) { + static const std::string usage = "usage: play [file]"; + if (argc != 2) { + std::cout << usage << std::endl; + return 1; + } + std::string path = drivers::kStoragePath; + path += "/"; + path += argv[1]; + + sInstance->playback_->Play(path.c_str()); + + return 0; +} + +void RegisterPlayFile() { + esp_console_cmd_t cmd{.command = "play", + .help = "Begins playback of the file at the given path", + .hint = "filepath", + .func = &CmdPlayFile, + .argtable = NULL}; + esp_console_cmd_register(&cmd); +} + +int CmdToggle(int argc, char** argv) { + static const std::string usage = "usage: toggle"; + if (argc != 1) { + std::cout << usage << std::endl; + return 1; + } + + sInstance->playback_->Toggle(); + + return 0; +} + +void RegisterToggle() { + esp_console_cmd_t cmd{.command = "toggle", + .help = "Toggles between play and pause", + .hint = NULL, + .func = &CmdToggle, + .argtable = NULL}; + esp_console_cmd_register(&cmd); +} + +AppConsole::AppConsole(std::unique_ptr playback) + : playback_(std::move(playback)) { + sInstance = this; +} +AppConsole::~AppConsole() { + sInstance = nullptr; +} + +auto AppConsole::RegisterExtraComponents() -> void { + RegisterListDir(); + RegisterPlayFile(); + RegisterToggle(); +} + +} // namespace console -- cgit v1.2.3