Add /status command in http server
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user