openMSX
MagicKey.hh
Go to the documentation of this file.
1#ifndef MAGICKEY_HH
2#define MAGICKEY_HH
3
4#include "JoystickDevice.hh"
5
6namespace openmsx {
7
8class MagicKey final : public JoystickDevice
9{
10public:
11 // Pluggable
12 [[nodiscard]] std::string_view getName() const override;
13 [[nodiscard]] std::string_view getDescription() const override;
14 void plugHelper(Connector& connector, EmuTime::param time) override;
15 void unplugHelper(EmuTime::param time) override;
16
17 // JoystickDevice
18 [[nodiscard]] uint8_t read(EmuTime::param time) override;
19 void write(uint8_t value, EmuTime::param time) override;
20
21 template<typename Archive>
22 void serialize(Archive& ar, unsigned version);
23};
24
25} // namespace openmsx
26
27#endif
Represents something you can plug devices into.
Definition Connector.hh:21
void serialize(Archive &ar, unsigned version)
Definition MagicKey.cc:39
std::string_view getDescription() const override
Description for this pluggable.
Definition MagicKey.cc:13
void plugHelper(Connector &connector, EmuTime::param time) override
Definition MagicKey.cc:18
void write(uint8_t value, EmuTime::param time) override
Write a value to the joystick device.
Definition MagicKey.cc:33
std::string_view getName() const override
Name used to identify this pluggable.
Definition MagicKey.cc:8
void unplugHelper(EmuTime::param time) override
Definition MagicKey.cc:22
uint8_t read(EmuTime::param time) override
Read from the joystick device.
Definition MagicKey.cc:28
This file implemented 3 utility functions:
Definition Autofire.cc:9