This repository has been archived on 2024-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
DX11Starter/Input.h
Chris Cascioli 18824021cb Updated input class to return "code analysis" warnings.
Added initialization to description structs.
2021-09-02 11:49:54 -04:00

86 lines
1.5 KiB
C++

#pragma once
#include <Windows.h>
class Input
{
#pragma region Singleton
public:
// Gets the one and only instance of this class
static Input& GetInstance()
{
if (!instance)
{
instance = new Input();
}
return *instance;
}
// Remove these functions (C++ 11 version)
Input(Input const&) = delete;
void operator=(Input const&) = delete;
private:
static Input* instance;
Input() {};
#pragma endregion
public:
~Input();
void Initialize(HWND windowHandle);
void Update();
void EndOfFrame();
int GetMouseX();
int GetMouseY();
int GetMouseXDelta();
int GetMouseYDelta();
float GetMouseWheel();
void SetWheelDelta(float delta);
bool KeyDown(int key);
bool KeyUp(int key);
bool KeyPress(int key);
bool KeyRelease(int key);
bool GetKeyArray(bool* keyArray, int size = 256);
bool MouseLeftDown();
bool MouseRightDown();
bool MouseMiddleDown();
bool MouseLeftUp();
bool MouseRightUp();
bool MouseMiddleUp();
bool MouseLeftPress();
bool MouseLeftRelease();
bool MouseRightPress();
bool MouseRightRelease();
bool MouseMiddlePress();
bool MouseMiddleRelease();
private:
// Arrays for the current and previous key states
unsigned char* kbState {0};
unsigned char* prevKbState {0};
// Mouse position and wheel data
int mouseX {0};
int mouseY {0};
int prevMouseX {0};
int prevMouseY {0};
int mouseXDelta {0};
int mouseYDelta {0};
float wheelDelta {0};
// The window's handle (id) from the OS, so
// we can get the cursor's position
HWND windowHandle {0};
};