This commit is contained in:
Jonas Zeunert
2018-05-07 23:19:45 +02:00
parent 28b1755529
commit 4c2a5815ff
2 changed files with 7 additions and 4 deletions

View File

@@ -24,6 +24,7 @@ class InputFactory
public:
static std::shared_ptr<Detector> get_detector(std::string& input_config_path, std::string& matrix_config_path)
{
// todo this in gpiointerface
std::ifstream input_config_stream(input_config_path);
json input_config;
input_config << input_config_stream;
@@ -32,19 +33,20 @@ public:
json matrix_config;
matrix_config << matrix_config_stream;
std::vector<InputEvent> input_events = create_input_events(matrix_config);
std::map<char, InputEvent> input_events = create_input_events(matrix_config);
return std::shared_ptr<Detector>(Detector(input_config, input_events));
}
private:
static std::vector<InputEvent> create_input_events(json matrix_config)
static std::map<char, InputEvent> create_input_events(json matrix_config)
{
std::vector<InputEvent> input_events;
std::map<char, InputEvent> input_events;
for(auto& key : matrix_config)
{
InputEvent event(matrix_config[key], key);
input_events.emplace(key, event);
}
return input_events;