1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-07 08:28:57 +00:00
CLK/Machines/Apple/ADB/Mouse.hpp

39 lines
759 B
C++
Raw Normal View History

//
// Mouse.hpp
// Clock Signal
//
// Created by Thomas Harte on 12/02/2021.
// Copyright © 2021 Thomas Harte. All rights reserved.
//
#ifndef Mouse_hpp
#define Mouse_hpp
#include "ReactiveDevice.hpp"
2021-02-16 01:49:16 +00:00
#include "../../../Inputs/Mouse.hpp"
namespace Apple {
namespace ADB {
2021-02-16 01:49:16 +00:00
class Mouse: public ReactiveDevice, public Inputs::Mouse {
public:
Mouse(Bus &);
2021-02-14 04:16:45 +00:00
private:
void perform_command(const Command &command) override;
2021-02-16 01:49:16 +00:00
void move(int x, int y) override;
int get_number_of_buttons() override;
void set_button_pressed(int index, bool is_pressed) override;
void reset_all_buttons() override;
std::atomic<int16_t> delta_x_, delta_y_;
std::atomic<int> button_flags_ = 0;
uint16_t last_posted_reg0_ = 0;
};
}
}
#endif /* Mouse_hpp */