DIJoystick.h
上传用户:wymy58
上传日期:2007-01-07
资源大小:2086k
文件大小:1k
源码类别:

DirextX编程

开发平台:

Visual C++

  1. // Copyright (C) 1998-1999 DXGuide.  All Rights Reserved.
  2. // File: DIJoystick.h
  3. #ifndef _DIJOYSTICK__H
  4. #define _DIJOYSTICK__H
  5. #if _MSC_VER >= 1000
  6. #pragma once
  7. #endif // _MSC_VER >= 1000
  8. #include "DIDevice.h"
  9. class CDIJoystick : public  CDIDevice
  10. {
  11. friend class CDirectInput;
  12. protected:
  13. CDIJoystick(void);
  14. virtual ~CDIJoystick();
  15. public:
  16. virtual bool Create(LPDIRECTINPUT7  lpDI, HWND  hWnd);
  17. LONG Get(int  Id);
  18. HRESULT GetObjectInfo(int  Id, DIDEVICEOBJECTINSTANCE*  pObjectInfo);
  19. HRESULT SetRange(int Id, int Min, int Max, int  dwDeadZone = 2000);
  20. bool SetAxisMode(bool  bAbsolute);
  21. virtual HRESULT Update(void);
  22. protected:
  23. DIJOYSTATE m_JoyState;
  24. };
  25. #endif // _DIJOYSTICK__H