aboutsummaryrefslogtreecommitdiff
path: root/AmpelJonas/cInput.h
diff options
context:
space:
mode:
authorGravatar jonas <himself@jonasgunz.de> 2018-12-27 00:26:34 +0100
committerGravatar jonas <himself@jonasgunz.de> 2018-12-27 00:26:34 +0100
commit7015245de4af673af3e6fa62d5d0f9c2e0c2a8a1 (patch)
tree8bec5d1716eebb0fedc75dcc036385443b1ecea5 /AmpelJonas/cInput.h
parent616951a353caf398908e6e6ce7dddf34a65513e5 (diff)
downloadtermgl-7015245de4af673af3e6fa62d5d0f9c2e0c2a8a1.tar.gz
cleaned working tree
Diffstat (limited to 'AmpelJonas/cInput.h')
-rw-r--r--AmpelJonas/cInput.h48
1 files changed, 0 insertions, 48 deletions
diff --git a/AmpelJonas/cInput.h b/AmpelJonas/cInput.h
deleted file mode 100644
index 8e3481c..0000000
--- a/AmpelJonas/cInput.h
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
-* 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 <stdio.h>
-#include <unistd.h>
-#include <termios.h>
-#include <sys/select.h>
-
-#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: */