aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/input_common.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2015-07-24 00:50:58 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2015-07-24 00:59:27 -0700
commitb4f53143b0e05fd3061cdf2e65e17a6a2904090b (patch)
tree4785bf31f7b89fc2420aa740d9a6967dc6c6f9b1 /src/input_common.h
parent9c2fdc6da57032c4448b59de5872086eea626b74 (diff)
Migrate source files into src/ directory
This change moves source files into a src/ directory, and puts object files into an obj/ directory. The Makefile and xcode project are updated accordingly. Fixes #1866
Diffstat (limited to 'src/input_common.h')
-rw-r--r--src/input_common.h66
1 files changed, 66 insertions, 0 deletions
diff --git a/src/input_common.h b/src/input_common.h
new file mode 100644
index 00000000..46430af4
--- /dev/null
+++ b/src/input_common.h
@@ -0,0 +1,66 @@
+/** \file input_common.h
+
+Header file for the low level input library
+
+*/
+#ifndef INPUT_COMMON_H
+#define INPUT_COMMON_H
+
+#include <wchar.h>
+
+/**
+ Use unencoded private-use keycodes for internal characters
+*/
+#define INPUT_COMMON_RESERVED 0xe000
+
+enum
+{
+ /**
+ R_NULL is sometimes returned by the input when a character was
+ requested but none could be delivered, or when an exception
+ happened.
+ */
+ R_NULL = INPUT_COMMON_RESERVED,
+ R_EOF
+}
+;
+
+/**
+ Init the library
+*/
+void input_common_init(int (*ih)());
+
+/**
+ Free memory used by the library
+*/
+void input_common_destroy();
+
+/**
+ Function used by input_readch to read bytes from stdin until enough
+ bytes have been read to convert them to a wchar_t. Conversion is
+ done using mbrtowc. If a character has previously been read and
+ then 'unread' using \c input_common_unreadch, that character is
+ returned. If timed is true, readch2 will wait at most
+ WAIT_ON_ESCAPE milliseconds for a character to be available for
+ reading before returning with the value WEOF.
+*/
+wchar_t input_common_readch(int timed);
+
+/**
+ Enqueue a character or a readline function to the queue of unread
+ characters that input_readch will return before actually reading from fd
+ 0.
+*/
+void input_common_queue_ch(wint_t ch);
+
+/**
+ Add a character or a readline function to the front of the queue of unread
+ characters. This will be the first character returned by input_readch
+ (unless this function is called more than once).
+*/
+void input_common_next_ch(wint_t ch);
+
+/** Adds a callback to be invoked at the next turn of the "event loop." The callback function will be invoked and passed arg. */
+void input_common_add_callback(void (*callback)(void *), void *arg);
+
+#endif