From 616951a353caf398908e6e6ce7dddf34a65513e5 Mon Sep 17 00:00:00 2001 From: jonas Date: Wed, 26 Dec 2018 21:18:09 +0100 Subject: Added cInput input handler class cRender: +setConsoleCursor(bool) to disable console cursor main: Example workign with cInput cInput: Input handler class --- AmpelJonas/cInput.h | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 AmpelJonas/cInput.h (limited to 'AmpelJonas/cInput.h') diff --git a/AmpelJonas/cInput.h b/AmpelJonas/cInput.h new file mode 100644 index 0000000..8e3481c --- /dev/null +++ b/AmpelJonas/cInput.h @@ -0,0 +1,48 @@ +/* +* cInput is responsible for Handling everything related to setting up and managing the console window +* as well as decoding keyboard and mouse events. +* Compatible with xterm compatible terminal emulators +*/ + +#ifndef CINPUT_H_ +#define CINPUT_H_ + +#include +#include +#include +#include + +#ifdef __linux__ +#elif _WIN32 + #error "Platforn not supported" +#else + #error "Platforn not supported" +#endif + +#define _EVENT_NULL 0 +#define _EVENT_CHAR 1 +#define _EVENT_KEY 2 +#define _EVENT_MOUSE 3 + +struct sInputEvent +{ + unsigned int type; + unsigned char c; + unsigned int b; + unsigned int x, y; +}; + +class cInput +{ +public: + cInput(); + + ~cInput(); + + sInputEvent poll(); + +private: + struct termios original, raw; +}; + +#endif /* end of include guard: */ -- cgit v1.2.3