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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
/*
* Copyright (C) 2016-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.
*/
#include "JoystickEasterEgg.h"
#include "ServiceBroker.h"
#include "games/GameServices.h"
#include "games/GameSettings.h"
#include "games/controllers/ControllerIDs.h"
#include "guilib/GUIAudioManager.h"
#include "guilib/WindowIDs.h"
using namespace KODI;
using namespace JOYSTICK;
const std::map<std::string, std::vector<FeatureName>> CJoystickEasterEgg::m_sequence = {
{
DEFAULT_CONTROLLER_ID,
{
"up",
"up",
"down",
"down",
"left",
"right",
"left",
"right",
"b",
"a",
},
},
{
DEFAULT_REMOTE_ID,
{
"up",
"up",
"down",
"down",
"left",
"right",
"left",
"right",
"back",
"ok",
},
},
};
CJoystickEasterEgg::CJoystickEasterEgg(const std::string& controllerId)
: m_controllerId(controllerId), m_state(0)
{
}
bool CJoystickEasterEgg::OnButtonPress(const FeatureName& feature)
{
bool bHandled = false;
auto it = m_sequence.find(m_controllerId);
if (it != m_sequence.end())
{
const auto& sequence = it->second;
// Reset state if it previously finished
if (m_state >= sequence.size())
m_state = 0;
if (feature == sequence[m_state])
m_state++;
else
m_state = 0;
if (IsCapturing())
{
bHandled = true;
if (m_state >= sequence.size())
OnFinish();
}
}
return bHandled;
}
bool CJoystickEasterEgg::IsCapturing()
{
// Capture input when finished with arrows (2 x up/down/left/right)
return m_state > 8;
}
void CJoystickEasterEgg::OnFinish(void)
{
GAME::CGameSettings& gameSettings = CServiceBroker::GetGameServices().GameSettings();
gameSettings.ToggleGames();
WINDOW_SOUND sound = gameSettings.GamesEnabled() ? SOUND_INIT : SOUND_DEINIT;
CGUIComponent* gui = CServiceBroker::GetGUI();
if (gui)
gui->GetAudioManager().PlayWindowSound(WINDOW_DIALOG_KAI_TOAST, sound);
//! @todo Shake screen
}
|