summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/DynamicInputTextures/DITData.h
blob: b0c14a9bfbf80245d072a1f2770fdaa253ee7eb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright 2021 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.

#pragma once

#include <string>
#include <unordered_map>
#include <vector>

#include "InputCommon/ImageOperations.h"

namespace InputCommon::DynamicInputTextures
{
struct Data
{
  std::string m_image_name;
  std::string m_hires_texture_name;
  std::string m_generated_folder_name;

  using EmulatedKeyToRegionsMap = std::unordered_map<std::string, std::vector<Rect>>;
  std::unordered_map<std::string, EmulatedKeyToRegionsMap> m_emulated_controllers;

  using HostKeyToImagePath = std::unordered_map<std::string, std::string>;
  std::unordered_map<std::string, HostKeyToImagePath> m_host_devices;
  bool m_preserve_aspect_ratio = true;
};
}  // namespace InputCommon::DynamicInputTextures