opensurgsim
InputManager.h
1 // This file is a part of the OpenSurgSim project.
2 // Copyright 2013, SimQuest Solutions Inc.
3 //
4 // Licensed under the Apache License, Version 2.0 (the "License");
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 // http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 
16 #ifndef SURGSIM_INPUT_INPUTMANAGER_H
17 #define SURGSIM_INPUT_INPUTMANAGER_H
18 
19 #include <boost/thread/mutex.hpp>
20 #include <memory>
21 #include <unordered_map>
22 #include <vector>
23 
24 #include "SurgSim/Framework/ComponentManager.h"
25 
26 namespace SurgSim
27 {
28 namespace Input
29 {
30 class DeviceInterface;
31 class InputComponent;
32 class OutputComponent;
33 
38 {
39 public:
40  InputManager();
41  virtual ~InputManager();
42 
43  friend class InputManagerTest;
44 
48  bool addDevice(std::shared_ptr<SurgSim::Input::DeviceInterface> device);
49 
53  bool removeDevice(std::shared_ptr<SurgSim::Input::DeviceInterface> device);
54 
55  int getType() const override;
56 
57 private:
58  bool doInitialize() override;
59  bool doStartUp() override;
60  bool doUpdate(double dt) override;
61  void doBeforeStop() override;
62 
71  bool executeAdditions(const std::shared_ptr<SurgSim::Framework::Component>& component) override;
72 
76  bool executeRemovals(const std::shared_ptr<SurgSim::Framework::Component>& component) override;
77 
78 
82  bool addInputComponent(const std::shared_ptr<InputComponent>& input);
84  bool addOutputComponent(const std::shared_ptr<OutputComponent>& output);
85 
90  bool tryFindDevice(const std::string& name, DeviceInterface** device);
91 
93  std::vector<std::shared_ptr<InputComponent>> m_inputs;
95  std::vector<std::shared_ptr<OutputComponent>> m_outputs;
96 
100  std::unordered_map<std::string, std::shared_ptr<SurgSim::Input::DeviceInterface>> m_devices;
101 
103  boost::mutex m_mutex;
104 };
105 
106 }; //namespace Input
107 }; //namespace SurgSim
108 #endif
Wraps glewInit() to separate the glew opengl definitions from the osg opengl definitions only imgui n...
Definition: AddRandomSphereBehavior.cpp:36
Base Component Manager class.
Definition: ComponentManager.h:49
bool addDevice(std::shared_ptr< SurgSim::Input::DeviceInterface > device)
Adds a device to the manager.
Definition: InputManager.cpp:161
Interface used to communicate with user-interface hardware devices.
Definition: DeviceInterface.h:41
int getType() const override
Returns the type of Manager.
Definition: InputManager.cpp:202
Manager to handle InputComponent and OutputComponent, SceneElement can add these to get input from de...
Definition: InputManager.h:37
Definition: InputManagerTest.cpp:72
bool removeDevice(std::shared_ptr< SurgSim::Input::DeviceInterface > device)
Removes the device described by device.
Definition: InputManager.cpp:184