summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid/hidbus/starlink.h
blob: 79770b68eec719412e04809a6d1d97e6249ec999 (plain) (blame)
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
// Copyright 2021 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include "common/common_types.h"
#include "core/hle/service/hid/hidbus/hidbus_base.h"

namespace Core::HID {
class EmulatedController;
} // namespace Core::HID

namespace Service::HID {

class Starlink final : public HidbusBase {
public:
    explicit Starlink(Core::HID::HIDCore& hid_core_,
                      KernelHelpers::ServiceContext& service_context_);
    ~Starlink() override;

    void OnInit() override;

    void OnRelease() override;

    // Updates ringcon transfer memory
    void OnUpdate() override;

    // Returns the device ID of the joycon
    u8 GetDeviceId() const override;

    // Assigns a command from data
    bool SetCommand(const std::vector<u8>& data) override;

    // Returns a reply from a command
    std::vector<u8> GetReply() const override;
};

} // namespace Service::HID