c583cce5bd
* Remove excess headers * Add ButtonPanel * Add Popup * Move FileReader to standalone object * Universal remote (part 1) * Universal remote (part 2) * Global rename tranciever/file_parser * Compile assets * syntax fix * English: rename tranceiver to transceiver. Co-authored-by: あく <alleteam@gmail.com>
62 lines
1.7 KiB
C++
62 lines
1.7 KiB
C++
#pragma once
|
|
#include <stdint.h>
|
|
#include <string>
|
|
#include <vector>
|
|
#include <memory>
|
|
#include <irda.h>
|
|
#include <sd-card-api.h>
|
|
#include <filesystem-api.h>
|
|
|
|
class IrdaAppRemoteButton {
|
|
friend class IrdaAppRemoteManager;
|
|
std::string name;
|
|
IrdaMessage message;
|
|
public:
|
|
IrdaAppRemoteButton(const char* name, const IrdaMessage* message)
|
|
: name(name), message (*message) {}
|
|
~IrdaAppRemoteButton() {}
|
|
};
|
|
|
|
class IrdaAppRemote {
|
|
friend class IrdaAppRemoteManager;
|
|
std::vector<IrdaAppRemoteButton> buttons;
|
|
std::string name;
|
|
public:
|
|
IrdaAppRemote(const std::string& name);
|
|
IrdaAppRemote& operator=(std::string& new_name) noexcept
|
|
{
|
|
name = new_name;
|
|
buttons.clear();
|
|
return *this;
|
|
}
|
|
};
|
|
|
|
class IrdaAppRemoteManager {
|
|
static const char* irda_directory;
|
|
static const char* irda_extension;
|
|
std::unique_ptr<IrdaAppRemote> remote;
|
|
std::string make_filename(const std::string& name) const;
|
|
|
|
public:
|
|
bool add_remote_with_button(const char* button_name, const IrdaMessage* message);
|
|
bool add_button(const char* button_name, const IrdaMessage* message);
|
|
|
|
int find_remote_name(const std::vector<std::string>& strings);
|
|
bool rename_button(uint32_t index, const char* str);
|
|
bool rename_remote(const char* str);
|
|
|
|
bool get_remote_list(std::vector<std::string>& remote_names) const;
|
|
std::vector<std::string> get_button_list() const;
|
|
std::string get_button_name(uint32_t index);
|
|
std::string get_remote_name();
|
|
size_t get_number_of_buttons();
|
|
const IrdaMessage* get_button_data(size_t button_index) const;
|
|
bool delete_button(uint32_t index);
|
|
bool delete_remote();
|
|
|
|
bool store();
|
|
bool load(const std::string& name);
|
|
bool check_fs() const;
|
|
};
|
|
|