00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #if !defined(_INPUT_H)
00014 #define _INPUT_H
00015
00016 #include "s3ePointer.h"
00017 #include "s3eKeyboard.h"
00018
00019 #define MAX_TOUCHES 10
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043 class Input
00044 {
00045 public:
00046 int m_X, m_Y;
00047 bool m_Touched;
00048 bool m_PrevTouched;
00049
00050 public:
00051 Input();
00052
00058 void Update();
00064 void Reset();
00065
00066
00067 static void TouchButtonCB(s3ePointerEvent* event);
00068 static void TouchMotionCB(s3ePointerMotionEvent* event);
00069 static void MultiTouchButtonCB(s3ePointerTouchEvent* event);
00070 static void MultiTouchMotionCB(s3ePointerTouchMotionEvent* event);
00071 };
00072
00073 extern Input* g_pInput;
00074
00075
00076 #endif // _INPUT_H