input.cpp
上传用户:maxiaolivb
上传日期:2022-06-07
资源大小:915k
文件大小:5k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. /*
  2. ** Haaf's Game Engine 1.5
  3. ** Copyright (C) 2003-2004, Relish Games
  4. ** hge.relishgames.com
  5. **
  6. ** Core functions implementation: input
  7. */
  8. #include "hge_impl.h"
  9. char *KeyNames[] =
  10. {
  11.  "?",
  12.  "Left Mouse Button", "Right Mouse Button", "?", "Middle Mouse Button",
  13.  "?", "?", "?", "Backspace", "Tab", "?", "?", "?", "Enter", "?", "?",
  14.  "Shift", "Ctrl", "Alt", "Pause", "Caps Lock", "?", "?", "?", "?", "?", "?",
  15.  "Escape", "?", "?", "?", "?",
  16.  "Space", "Page Up", "Page Down", "End", "Home",
  17.  "Left Arrow", "Up Arrow", "Right Arrow", "Down Arrow",
  18.  "?", "?", "?", "?", "Insert", "Delete", "?",
  19.  "0", "1", "2", "3", "4", "5", "6", "7", "8", "9",
  20.  "?", "?", "?", "?", "?", "?", "?",
  21.  "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M",
  22.  "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z",
  23.  "Left Win", "Right Win", "Application", "?", "?",
  24.  "NumPad 0", "NumPad 1", "NumPad 2", "NumPad 3", "NumPad 4",
  25.  "NumPad 5", "NumPad 6", "NumPad 7", "NumPad 8", "NumPad 9",
  26.  "Multiply", "Add", "?", "Subtract", "Decimal", "Divide",
  27.  "F1", "F2", "F3", "F4", "F5", "F6", "F7", "F8", "F9", "F10", "F11", "F12",
  28.  "?", "?", "?", "?", "?", "?", "?", "?", "?", "?",
  29.  "?", "?", "?", "?", "?", "?", "?", "?", "?", "?",
  30.  "Num Lock", "Scroll Lock",
  31.  "?", "?", "?", "?", "?", "?", "?", "?", "?", "?",
  32.  "?", "?", "?", "?", "?", "?", "?", "?", "?", "?",
  33.  "?", "?", "?", "?", "?", "?", "?", "?", "?", "?",
  34.  "?", "?", "?", "?", "?", "?", "?", "?", "?", "?",
  35.  "Semicolon", "Equals", "Comma", "Minus", "Period", "Slash", "Grave",
  36.  "?", "?", "?", "?", "?", "?", "?", "?", "?", "?",
  37.  "?", "?", "?", "?", "?", "?", "?", "?", "?", "?",
  38.  "?", "?", "?", "?", "?", "?",
  39.  "Left bracket", "Backslash", "Right bracket", "Apostrophe",
  40.  "?", "?", "?", "?", "?", "?", "?", "?", "?", "?",
  41.  "?", "?", "?", "?", "?", "?", "?", "?", "?", "?",
  42.  "?", "?", "?", "?", "?", "?", "?", "?", "?", "?",
  43.  "?", "?", "?"
  44. };
  45. bool CALL HGE_Impl::Input_GetEvent(hgeInputEvent *event)
  46. {
  47. CInputEventList *eptr;
  48. if(queue)
  49. {
  50. eptr=queue;
  51. memcpy(event, &eptr->event, sizeof(hgeInputEvent));
  52. queue=eptr->next;
  53. delete eptr;
  54. return true;
  55. }
  56. return false;
  57. }
  58. void CALL HGE_Impl::Input_GetMousePos(float *x, float *y)
  59. {
  60. *x=Xpos; *y=Ypos;
  61. }
  62. void CALL HGE_Impl::Input_SetMousePos(float x, float y)
  63. {
  64. POINT pt;
  65. pt.x=(long)x; pt.y=(long)y;
  66. ClientToScreen(hwnd, &pt);
  67. SetCursorPos(pt.x,pt.y);
  68. }
  69. int CALL HGE_Impl::Input_GetMouseWheel()
  70. {
  71. return Zpos;
  72. }
  73. bool CALL HGE_Impl::Input_IsMouseOver()
  74. {
  75. return bMouseOver;
  76. }
  77. bool CALL HGE_Impl::Input_GetKeyState(int key)
  78. {
  79. if(bActive) return ((GetAsyncKeyState(key) & 0x8000) != 0);
  80. else return 0;
  81. }
  82. char* CALL HGE_Impl::Input_GetKeyName(int key)
  83. {
  84. return KeyNames[key];
  85. }
  86. int CALL HGE_Impl::Input_GetKey()
  87. {
  88. return VKey;
  89. }
  90. int CALL HGE_Impl::Input_GetChar()
  91. {
  92. return Char;
  93. }
  94. //////// Implementation ////////
  95. void HGE_Impl::_BuildEvent(int type, int key, int scan, int flags, int x, int y)
  96. {
  97. CInputEventList *last, *eptr=new CInputEventList;
  98. unsigned char kbstate[256];
  99. POINT pt;
  100. eptr->event.type=type;
  101. eptr->event.chr=0;
  102. pt.x=x; pt.y=y;
  103. GetKeyboardState(kbstate);
  104. if(type==INPUT_KEYDOWN || type==INPUT_KEYUP)
  105. {
  106. ToAscii(key, scan, kbstate, (unsigned short *)&eptr->event.chr, 0);
  107. }
  108. if(type==INPUT_MOUSEWHEEL)
  109. {
  110. eptr->event.key=0; eptr->event.wheel=key;
  111. ScreenToClient(hwnd,&pt);
  112. }
  113. else { eptr->event.key=key; eptr->event.wheel=0; }
  114. if(type==INPUT_MBUTTONDOWN)
  115. {
  116. SetCapture(hwnd);
  117. bCaptured=true;
  118. }
  119. if(type==INPUT_MBUTTONUP)
  120. {
  121. ReleaseCapture();
  122. Input_SetMousePos(Xpos, Ypos);
  123. pt.x=(int)Xpos; pt.y=(int)Ypos;
  124. bCaptured=false;
  125. }
  126. if(kbstate[VK_SHIFT] & 0x80) flags|=HGEINP_SHIFT;
  127. if(kbstate[VK_CONTROL] & 0x80) flags|=HGEINP_CTRL;
  128. if(kbstate[VK_MENU] & 0x80) flags|=HGEINP_ALT;
  129. if(kbstate[VK_CAPITAL] & 0x1) flags|=HGEINP_CAPSLOCK;
  130. if(kbstate[VK_SCROLL] & 0x1) flags|=HGEINP_SCROLLLOCK;
  131. if(kbstate[VK_NUMLOCK] & 0x1) flags|=HGEINP_NUMLOCK;
  132. eptr->event.flags=flags;
  133. if(pt.x==-1) { eptr->event.x=Xpos;eptr->event.y=Ypos; }
  134. else
  135. {
  136. if(pt.x<0) pt.x=0;
  137. if(pt.y<0) pt.y=0;
  138. if(pt.x>=nScreenWidth) pt.x=nScreenWidth-1;
  139. if(pt.y>=nScreenHeight) pt.y=nScreenHeight-1;
  140. eptr->event.x=(float)pt.x;
  141. eptr->event.y=(float)pt.y;
  142. }
  143. eptr->next=0; 
  144. if(!queue) queue=eptr;
  145. else
  146. {
  147. last=queue;
  148. while(last->next) last=last->next;
  149. last->next=eptr;
  150. }
  151. if(eptr->event.type==INPUT_KEYDOWN || eptr->event.type==INPUT_MBUTTONDOWN)
  152. {
  153. VKey=eptr->event.key;Char=eptr->event.chr;
  154. }
  155. else if(eptr->event.type==INPUT_MOUSEMOVE)
  156. {
  157. Xpos=eptr->event.x;Ypos=eptr->event.y;
  158. }
  159. else if(eptr->event.type==INPUT_MOUSEWHEEL)
  160. {
  161. Zpos+=eptr->event.wheel;
  162. }
  163. }
  164. void HGE_Impl::_ClearQueue()
  165. {
  166. CInputEventList *nexteptr, *eptr=queue;
  167. while(eptr)
  168. {
  169. nexteptr=eptr->next;
  170. delete eptr;
  171. eptr=nexteptr;
  172. }
  173. queue=0; VKey=0; Char=0; Zpos=0;
  174. }