Initial commit: client source
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
#pragma once
|
||||
|
||||
#ifndef SAFE_RELEASE
|
||||
#define SAFE_RELEASE(p) { if (p) { (p)->Release(); (p)=NULL; } }
|
||||
#endif
|
||||
|
||||
class CInputDevice
|
||||
{
|
||||
public:
|
||||
CInputDevice();
|
||||
virtual ~CInputDevice();
|
||||
|
||||
HRESULT CreateDevice(HWND hWnd);
|
||||
|
||||
protected:
|
||||
static LPDIRECTINPUT8 ms_lpDI;
|
||||
};
|
||||
|
||||
class CInputKeyboard : public CInputDevice
|
||||
{
|
||||
public:
|
||||
CInputKeyboard();
|
||||
virtual ~CInputKeyboard();
|
||||
|
||||
bool InitializeKeyboard(HWND hWnd);
|
||||
void UpdateKeyboard();
|
||||
void ResetKeyboard();
|
||||
|
||||
bool IsPressed(int iIndex);
|
||||
void KeyDown(int iIndex);
|
||||
void KeyUp(int iIndex);
|
||||
|
||||
protected:
|
||||
virtual void OnKeyDown(int iIndex) = 0;
|
||||
virtual void OnKeyUp(int iIndex) = 0;
|
||||
|
||||
protected:
|
||||
static LPDIRECTINPUTDEVICE8 ms_lpKeyboard;
|
||||
static bool ms_bPressedKey[256];
|
||||
static char ms_diks[256];
|
||||
};
|
||||
Reference in New Issue
Block a user