瀏覽代碼

Improved gestures system

pull/109/head
raysan5 9 年之前
父節點
當前提交
17eefed08f
共有 5 個檔案被更改,包括 12 行新增14 行删除
  1. +3
    -5
      examples/core_gestures_detection.c
  2. +2
    -2
      src/core.c
  3. +3
    -3
      src/gestures.c
  4. +2
    -2
      src/gestures.h
  5. +2
    -2
      src/raylib.h

+ 3
- 5
examples/core_gestures_detection.c 查看文件

@ -43,12 +43,11 @@ int main()
// Update // Update
//---------------------------------------------------------------------------------- //----------------------------------------------------------------------------------
lastGesture = currentGesture; lastGesture = currentGesture;
currentGesture = GetGestureDetected();
touchPosition = GetTouchPosition(0); touchPosition = GetTouchPosition(0);
if (CheckCollisionPointRec(touchPosition, touchArea) && IsGestureDetected())
if (CheckCollisionPointRec(touchPosition, touchArea) && (currentGesture != GESTURE_NONE))
{ {
currentGesture = GetGestureType();
if (currentGesture != lastGesture) if (currentGesture != lastGesture)
{ {
// Store gesture string // Store gesture string
@ -78,7 +77,6 @@ int main()
} }
} }
} }
else currentGesture = GESTURE_NONE;
//---------------------------------------------------------------------------------- //----------------------------------------------------------------------------------
// Draw // Draw

+ 2
- 2
src/core.c 查看文件

@ -1193,7 +1193,7 @@ bool IsMouseButtonPressed(int button)
bool pressed = false; bool pressed = false;
#if defined(PLATFORM_ANDROID) #if defined(PLATFORM_ANDROID)
if (IsGestureDetected(p">) && (GetGestureType() == GESTURE_TAP)) pressed = true;
if (IsGestureDetected(GESTURE_TAP)) pressed = true;
#else #else
if ((currentMouseState[button] != previousMouseState[button]) && (currentMouseState[button] == 1)) pressed = true; if ((currentMouseState[button] != previousMouseState[button]) && (currentMouseState[button] == 1)) pressed = true;
#endif #endif
@ -1207,7 +1207,7 @@ bool IsMouseButtonDown(int button)
bool down = false; bool down = false;
#if defined(PLATFORM_ANDROID) #if defined(PLATFORM_ANDROID)
if (IsGestureDetected(p">) && (GetGestureType() == GESTURE_HOLD)) down = true;
if (IsGestureDetected(GESTURE_HOLD)) down = true;
#else #else
if (GetMouseButtonStatus(button) == 1) down = true; if (GetMouseButtonStatus(button) == 1) down = true;
#endif #endif

+ 3
- 3
src/gestures.c 查看文件

@ -292,14 +292,14 @@ void UpdateGestures(void)
} }
// Check if a gesture have been detected // Check if a gesture have been detected
bool IsGestureDetected(void)
bool IsGestureDetected(int gesture)
{ {
if ((enabledGestures & currentGesture) != GESTURE_NONE) return true;
if ((enabledGestures & currentGesture) == gesture) return true;
else return false; else return false;
} }
// Check gesture type // Check gesture type
int GetGestureType(void)
int GetGestureDetected(void)
{ {
// Get current gesture only if enabled // Get current gesture only if enabled
return (enabledGestures & currentGesture); return (enabledGestures & currentGesture);

+ 2
- 2
src/gestures.h 查看文件

@ -92,8 +92,8 @@ extern "C" { // Prevents name mangling of functions
//---------------------------------------------------------------------------------- //----------------------------------------------------------------------------------
void ProcessGestureEvent(GestureEvent event); // Process gesture event and translate it into gestures void ProcessGestureEvent(GestureEvent event); // Process gesture event and translate it into gestures
void UpdateGestures(void); // Update gestures detected (must be called every frame) void UpdateGestures(void); // Update gestures detected (must be called every frame)
bool IsGestureDetected(void); // Check if a gesture have been detected
int GetGestureType(void); // Get latest detected gesture
bool IsGestureDetected(int gesture); // Check if a gesture have been detected
int GetGestureDetected(void); // Get latest detected gesture
void SetGesturesEnabled(unsigned int gestureFlags); // Enable a set of gestures using flags void SetGesturesEnabled(unsigned int gestureFlags); // Enable a set of gestures using flags
int GetTouchPointsCount(void); // Get touch points count int GetTouchPointsCount(void); // Get touch points count

+ 2
- 2
src/raylib.h 查看文件

@ -647,8 +647,8 @@ bool IsButtonReleased(int button); // Detect if an android
//------------------------------------------------------------------------------------ //------------------------------------------------------------------------------------
void ProcessGestureEvent(GestureEvent event); // Process gesture event and translate it into gestures void ProcessGestureEvent(GestureEvent event); // Process gesture event and translate it into gestures
void UpdateGestures(void); // Update gestures detected (called automatically in PollInputEvents()) void UpdateGestures(void); // Update gestures detected (called automatically in PollInputEvents())
bool IsGestureDetected(void); // Check if a gesture have been detected
int GetGestureType(void); // Get latest detected gesture
bool IsGestureDetected(int gesture); // Check if a gesture have been detected
int GetGestureDetected(void); // Get latest detected gesture
void SetGesturesEnabled(unsigned int gestureFlags); // Enable a set of gestures using flags void SetGesturesEnabled(unsigned int gestureFlags); // Enable a set of gestures using flags
int GetTouchPointsCount(void); // Get touch points count int GetTouchPointsCount(void); // Get touch points count

Loading…
取消
儲存