Input.h
上传用户:hkb425
上传日期:2007-06-16
资源大小:34191k
文件大小:1k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. // Input.h: interface for the CInput class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_INPUT_H__D354FBA1_DC64_11D5_812C_5254AB37CDC9__INCLUDED_)
  5. #define AFX_INPUT_H__D354FBA1_DC64_11D5_812C_5254AB37CDC9__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #define  MOUSE_0  1
  10. #define  MOUSE_1  2
  11. class CInput  
  12. {
  13. public:
  14. CInput();
  15. virtual ~CInput();
  16. void   GetInput(int virtualKey,bool bKeyDown);
  17. static bool  *m_keys;
  18. static int    m_mousePosX;
  19. static int    m_mousePosY;
  20. static float  m_mouseSpeed;
  21. static bool   m_bShowMouse;
  22.     static bool   m_bAskTrans;
  23. private:
  24. int   TranslateKeyValue(int );
  25. static int    m_numUser;
  26. };
  27. #endif // !defined(AFX_INPUT_H__D354FBA1_DC64_11D5_812C_5254AB37CDC9__INCLUDED_)