config.cpp 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. // Copyright 2014 Citra Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #include <memory>
  5. #include <SDL.h>
  6. #include <inih/cpp/INIReader.h>
  7. #include "citra/default_ini.h"
  8. #include "common/file_util.h"
  9. #include "common/logging/log.h"
  10. #include "config.h"
  11. #include "core/settings.h"
  12. Config::Config() {
  13. // TODO: Don't hardcode the path; let the frontend decide where to put the config files.
  14. sdl2_config_loc = FileUtil::GetUserPath(D_CONFIG_IDX) + "sdl2-config.ini";
  15. sdl2_config = std::make_unique<INIReader>(sdl2_config_loc);
  16. Reload();
  17. }
  18. bool Config::LoadINI(const std::string& default_contents, bool retry) {
  19. const char* location = this->sdl2_config_loc.c_str();
  20. if (sdl2_config->ParseError() < 0) {
  21. if (retry) {
  22. LOG_WARNING(Config, "Failed to load %s. Creating file from defaults...", location);
  23. FileUtil::CreateFullPath(location);
  24. FileUtil::WriteStringToFile(true, default_contents, location);
  25. sdl2_config = std::make_unique<INIReader>(location); // Reopen file
  26. return LoadINI(default_contents, false);
  27. }
  28. LOG_ERROR(Config, "Failed.");
  29. return false;
  30. }
  31. LOG_INFO(Config, "Successfully loaded %s", location);
  32. return true;
  33. }
  34. static const std::array<int, Settings::NativeInput::NUM_INPUTS> defaults = {
  35. // directly mapped keys
  36. SDL_SCANCODE_A, SDL_SCANCODE_S, SDL_SCANCODE_Z, SDL_SCANCODE_X, SDL_SCANCODE_Q, SDL_SCANCODE_W,
  37. SDL_SCANCODE_1, SDL_SCANCODE_2, SDL_SCANCODE_M, SDL_SCANCODE_N, SDL_SCANCODE_B, SDL_SCANCODE_T,
  38. SDL_SCANCODE_G, SDL_SCANCODE_F, SDL_SCANCODE_H, SDL_SCANCODE_I, SDL_SCANCODE_K, SDL_SCANCODE_J,
  39. SDL_SCANCODE_L,
  40. // indirectly mapped keys
  41. SDL_SCANCODE_UP, SDL_SCANCODE_DOWN, SDL_SCANCODE_LEFT, SDL_SCANCODE_RIGHT, SDL_SCANCODE_D,
  42. };
  43. void Config::ReadValues() {
  44. // Controls
  45. for (int i = 0; i < Settings::NativeInput::NUM_INPUTS; ++i) {
  46. Settings::values.input_mappings[Settings::NativeInput::All[i]] =
  47. sdl2_config->GetInteger("Controls", Settings::NativeInput::Mapping[i], defaults[i]);
  48. }
  49. Settings::values.pad_circle_modifier_scale =
  50. (float)sdl2_config->GetReal("Controls", "pad_circle_modifier_scale", 0.5);
  51. // Core
  52. Settings::values.use_cpu_jit = sdl2_config->GetBoolean("Core", "use_cpu_jit", true);
  53. Settings::values.frame_skip = sdl2_config->GetInteger("Core", "frame_skip", 0);
  54. // Renderer
  55. Settings::values.use_hw_renderer = sdl2_config->GetBoolean("Renderer", "use_hw_renderer", true);
  56. Settings::values.use_shader_jit = sdl2_config->GetBoolean("Renderer", "use_shader_jit", true);
  57. Settings::values.use_scaled_resolution =
  58. sdl2_config->GetBoolean("Renderer", "use_scaled_resolution", false);
  59. Settings::values.use_vsync = sdl2_config->GetBoolean("Renderer", "use_vsync", false);
  60. Settings::values.bg_red = (float)sdl2_config->GetReal("Renderer", "bg_red", 1.0);
  61. Settings::values.bg_green = (float)sdl2_config->GetReal("Renderer", "bg_green", 1.0);
  62. Settings::values.bg_blue = (float)sdl2_config->GetReal("Renderer", "bg_blue", 1.0);
  63. // Layout
  64. Settings::values.layout_option =
  65. static_cast<Settings::LayoutOption>(sdl2_config->GetInteger("Layout", "layout_option", 0));
  66. Settings::values.swap_screen = sdl2_config->GetBoolean("Layout", "swap_screen", false);
  67. // Audio
  68. Settings::values.sink_id = sdl2_config->Get("Audio", "output_engine", "auto");
  69. Settings::values.enable_audio_stretching =
  70. sdl2_config->GetBoolean("Audio", "enable_audio_stretching", true);
  71. // Data Storage
  72. Settings::values.use_virtual_sd =
  73. sdl2_config->GetBoolean("Data Storage", "use_virtual_sd", true);
  74. // System
  75. Settings::values.is_new_3ds = sdl2_config->GetBoolean("System", "is_new_3ds", false);
  76. Settings::values.region_value = sdl2_config->GetInteger("System", "region_value", 1);
  77. // Miscellaneous
  78. Settings::values.log_filter = sdl2_config->Get("Miscellaneous", "log_filter", "*:Info");
  79. // Debugging
  80. Settings::values.use_gdbstub = sdl2_config->GetBoolean("Debugging", "use_gdbstub", false);
  81. Settings::values.gdbstub_port =
  82. static_cast<u16>(sdl2_config->GetInteger("Debugging", "gdbstub_port", 24689));
  83. }
  84. void Config::Reload() {
  85. LoadINI(DefaultINI::sdl2_config_file);
  86. ReadValues();
  87. }