Bochs/bochs/iodev/usb_hid.h
Volker Ruppert abd7cbda87 - implemented specific save/restore method for USB HID devices
- removed USB device buffer from save/restore list (contains temporary data only)
2007-04-01 11:15:48 +00:00

59 lines
1.9 KiB
C++

/////////////////////////////////////////////////////////////////////////
// $Id: usb_hid.h,v 1.4 2007-04-01 11:15:48 vruppert Exp $
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2007 Volker Ruppert
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2 of the License, or (at your option) any later version.
//
// This library 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
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
// USB HID emulation support ported from the Qemu project
#ifndef BX_IODEV_USB_HID_H
#define BX_IODEV_USB_HID_H
class usb_hid_device_t : public usb_device_t {
public:
usb_hid_device_t(usbdev_type type);
virtual ~usb_hid_device_t(void);
virtual void handle_reset();
virtual int handle_control(int request, int value, int index, int length, Bit8u *data);
virtual int handle_data(USBPacket *p);
#if BX_SUPPORT_SAVE_RESTORE
virtual void register_state_specific(bx_list_c *parent);
#endif
void mouse_enq(int delta_x, int delta_y, int delta_z, unsigned button_state);
bx_bool key_enq(Bit8u *scan_code);
protected:
int mouse_poll(Bit8u *buf, int len);
int keypad_poll(Bit8u *buf, int len);
private:
struct {
int mouse_delayed_dx;
int mouse_delayed_dy;
int mouse_delayed_dz;
Bit16s mouse_x;
Bit16s mouse_y;
Bit8s mouse_z;
Bit8u b_state;
Bit8u saved_key[8];
Bit8u key_pad_packet[8];
} s;
};
#endif