diff options
Diffstat (limited to 'xbmc/input/joysticks/JoystickEasterEgg.h')
-rw-r--r-- | xbmc/input/joysticks/JoystickEasterEgg.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/xbmc/input/joysticks/JoystickEasterEgg.h b/xbmc/input/joysticks/JoystickEasterEgg.h new file mode 100644 index 0000000000..fe239fcec7 --- /dev/null +++ b/xbmc/input/joysticks/JoystickEasterEgg.h @@ -0,0 +1,47 @@ +/* + * Copyright (C) 2016 Team Kodi + * http://kodi.tv + * + * This Program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2, or (at your option) + * any later version. + * + * This Program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this Program; see the file COPYING. If not, see + * <http://www.gnu.org/licenses/>. + * + */ +#pragma once + +#include "IButtonSequence.h" + +#include <vector> + +namespace JOYSTICK +{ + /*! + * \brief Hush!!! + */ + class CJoystickEasterEgg : public IButtonSequence + { + public: + CJoystickEasterEgg(void); + virtual ~CJoystickEasterEgg() = default; + + // implementation of IButtonSequence + virtual bool OnButtonPress(const FeatureName& feature) override; + + static void OnFinish(void); + + private: + static std::vector<FeatureName> m_sequence; + + unsigned int m_state; + }; +} |