Add /status command in http server

This commit is contained in:
offtkp 2023-07-10 13:50:14 +03:00
parent c8f4d41b47
commit 37188edc3b
2 changed files with 70 additions and 27 deletions

View file

@ -1,7 +1,9 @@
#ifdef PANDA3DS_ENABLE_HTTP_SERVER
#pragma once
#include <array>
#include <atomic>
#include <map>
#include <mutex>
#include "helpers.hpp"
@ -16,7 +18,19 @@ struct HttpServer {
std::mutex actionMutex = {};
u32 pendingKey = 0;
HttpServer();
void startHttpServer();
std::string status();
private:
std::map<std::string, std::pair<u32, bool>> keyMap;
std::array<bool, 12> pressedKeys = {};
bool paused = false;
u32 stringToKey(const std::string& key_name);
bool getKeyState(const std::string& key_name);
void setKeyState(const std::string& key_name, bool state);
};
#endif // PANDA3DS_ENABLE_HTTP_SERVER