| 
									
										
										
										
											2015-05-24 06:55:12 +02:00
										 |  |  | // Copyright 2010 Dolphin Emulator Project
 | 
					
						
							| 
									
										
										
										
											2015-05-18 01:08:10 +02:00
										 |  |  | // Licensed under GPLv2+
 | 
					
						
							| 
									
										
										
										
											2013-04-17 23:09:55 -04:00
										 |  |  | // Refer to the license.txt file included.
 | 
					
						
							| 
									
										
										
										
											2010-06-12 17:15:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-10 13:54:46 -05:00
										 |  |  | #pragma once
 | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-25 22:28:15 -04:00
										 |  |  | #include <memory>
 | 
					
						
							|  |  |  | #include <string>
 | 
					
						
							|  |  |  | #include <utility>
 | 
					
						
							| 
									
										
										
										
											2014-02-17 05:18:15 -05:00
										 |  |  | #include <vector>
 | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-25 22:28:15 -04:00
										 |  |  | class ControllerEmu; | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-31 00:04:15 -04:00
										 |  |  | class InputConfig | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | { | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   InputConfig(const std::string& ini_name, const std::string& gui_name, | 
					
						
							|  |  |  |               const std::string& profile_name) | 
					
						
							|  |  |  |       : m_ini_name(ini_name), m_gui_name(gui_name), m_profile_name(profile_name) | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   bool LoadConfig(bool isGC); | 
					
						
							|  |  |  |   void SaveConfig(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   template <typename T, typename... Args> | 
					
						
							|  |  |  |   void CreateController(Args&&... args) | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     m_controllers.emplace_back(std::make_unique<T>(std::forward<Args>(args)...)); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   ControllerEmu* GetController(int index); | 
					
						
							|  |  |  |   void ClearControllers(); | 
					
						
							|  |  |  |   bool ControllersNeedToBeCreated() const; | 
					
						
							|  |  |  |   bool IsControllerControlledByGamepadDevice(int index) const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   std::string GetGUIName() const { return m_gui_name; } | 
					
						
							|  |  |  |   std::string GetProfileName() const { return m_profile_name; } | 
					
						
							| 
									
										
										
										
											2015-10-25 22:28:15 -04:00
										 |  |  | private: | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   std::vector<std::unique_ptr<ControllerEmu>> m_controllers; | 
					
						
							|  |  |  |   const std::string m_ini_name; | 
					
						
							|  |  |  |   const std::string m_gui_name; | 
					
						
							|  |  |  |   const std::string m_profile_name; | 
					
						
							| 
									
										
										
										
											2010-06-03 18:05:08 +00:00
										 |  |  | }; |