2013-04-17 23:09:55 -04:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// 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
|
|
|
|
2014-02-17 05:18:15 -05:00
|
|
|
#include <map>
|
|
|
|
#include <vector>
|
2010-06-03 18:05:08 +00:00
|
|
|
|
2014-02-17 05:18:15 -05:00
|
|
|
#include "Common/FileUtil.h"
|
|
|
|
#include "Common/IniFile.h"
|
|
|
|
#include "Common/Thread.h"
|
2010-06-03 18:05:08 +00:00
|
|
|
|
2014-02-17 05:18:15 -05:00
|
|
|
#include "InputCommon/ControllerEmu.h"
|
|
|
|
#include "InputCommon/ControllerInterface/ControllerInterface.h"
|
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:
|
2014-08-31 00:04:15 -04:00
|
|
|
InputConfig(const char* const _ini_name, const char* const _gui_name,
|
2010-10-12 19:42:29 +00:00
|
|
|
const char* const _profile_name)
|
|
|
|
: ini_name(_ini_name), gui_name(_gui_name), profile_name(_profile_name) {}
|
|
|
|
|
2013-01-09 15:03:43 -05:00
|
|
|
bool LoadConfig(bool isGC);
|
2010-06-03 18:05:08 +00:00
|
|
|
void SaveConfig();
|
|
|
|
|
2014-01-30 19:51:21 -05:00
|
|
|
std::vector<ControllerEmu*> controllers;
|
2010-06-03 18:05:08 +00:00
|
|
|
|
2014-01-30 19:51:21 -05:00
|
|
|
const char* const ini_name;
|
|
|
|
const char* const gui_name;
|
|
|
|
const char* const profile_name;
|
2010-06-03 18:05:08 +00:00
|
|
|
};
|