summaryrefslogtreecommitdiffstats
path: root/xbmc/games/addons/input/GameClientTopology.h
blob: 10b40f12c7f7bcbc6c5fce5fc6cb6a32a8fbf946 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
 *  Copyright (C) 2017-2018 Team Kodi
 *  This file is part of Kodi - https://kodi.tv
 *
 *  SPDX-License-Identifier: GPL-2.0-or-later
 *  See LICENSES/README.md for more information.
 */

#pragma once

#include "games/GameTypes.h"
#include "games/controllers/types/ControllerTree.h"

#include <memory>

namespace KODI
{
namespace GAME
{
class CGameClientTopology
{
public:
  CGameClientTopology() = default;
  CGameClientTopology(GameClientPortVec ports, int playerLimit);

  void Clear();

  int GetPlayerLimit() const { return m_playerLimit; }

  const CControllerTree& GetControllerTree() const { return m_controllers; }
  CControllerTree& GetControllerTree() { return m_controllers; }

  // Utility function
  static std::string MakeAddress(const std::string& baseAddress, const std::string& nodeId);

private:
  static CControllerTree GetControllerTree(const GameClientPortVec& ports);
  static CPortNode GetPortNode(const GameClientPortPtr& port, const std::string& controllerAddress);
  static CControllerNode GetControllerNode(const GameClientDevicePtr& device,
                                           const std::string& portAddress);

  // Game API parameters
  GameClientPortVec m_ports;
  int m_playerLimit = -1;

  // Controller parameters
  CControllerTree m_controllers;
};
} // namespace GAME
} // namespace KODI