From 3e963a5b0d4a0e80bcead7e9947a95a341ddc4c0 Mon Sep 17 00:00:00 2001 From: Jim Grandpre Date: Tue, 3 Aug 2010 00:18:00 -0400 Subject: [PATCH] Minimized functionality of gestureSDLTest. --- src/events/SDL_gesture.c | 15 +++++---------- touchTest/gestureSDLTest.c | 21 +++++++-------------- 2 files changed, 12 insertions(+), 24 deletions(-) diff --git a/src/events/SDL_gesture.c b/src/events/SDL_gesture.c index b625dedc9..de5a0ea83 100644 --- a/src/events/SDL_gesture.c +++ b/src/events/SDL_gesture.c @@ -117,17 +117,12 @@ static int SaveTemplate(DollarTemplate *templ, SDL_RWops * src) { int i; //No Longer storing the Hash, rehash on load - //fprintf(fp,"%lu ",templ->hash); //if(SDL_RWops.write(src,&(templ->hash),sizeof(templ->hash),1) != 1) return 0; - - /* - for(i = 0;i < DOLLARNPOINTS;i++) { - fprintf(fp,"%i %i ",(int)templ->path[i].x,(int)templ->path[i].y); - } - fprintf(fp,"\n"); - */ - if(SDL_RWwrite(src,templ->path,sizeof(templ->path[0]),DOLLARNPOINTS) != DOLLARNPOINTS) return 0; + if(SDL_RWwrite(src,templ->path, + sizeof(templ->path[0]),DOLLARNPOINTS) != DOLLARNPOINTS) + return 0; + return 1; } @@ -499,7 +494,7 @@ void SDL_GestureProcessEvent(SDL_Event* event) j = -1; break; } - else { + else if(event->type == SDL_FINGERMOTION) { float dx = x - inTouch->gestureLast[j].f.p.x; float dy = y - inTouch->gestureLast[j].f.p.y; DollarPath* path = &inTouch->gestureLast[j].dollarPath; diff --git a/touchTest/gestureSDLTest.c b/touchTest/gestureSDLTest.c index 75479b106..d1bc798f5 100644 --- a/touchTest/gestureSDLTest.c +++ b/touchTest/gestureSDLTest.c @@ -240,19 +240,10 @@ void DrawScreen(SDL_Surface* screen, int h) drawCircle(screen,x*screen->w,y*screen->h,5,col); else if(event.type == SDL_FINGERDOWN) drawCircle(screen,x*screen->w,y*screen->h,-10,col); - /* - //if there is a centroid, draw it - if(numDownFingers > 1) { - unsigned int col = - ((unsigned int)(0xFFFFFF)) | - ((unsigned int)((0xFF*(1-((float)age)/EVENT_BUF_SIZE))) & 0xFF)<<24; - drawCircle(screen,centroid.x*screen->w,centroid.y*screen->h,5,col); - } - */ } } - + /* for(i=0;i= 0 && finger[i].p.y >= 0) if(finger[i].pressure > 0) @@ -261,7 +252,7 @@ void DrawScreen(SDL_Surface* screen, int h) else drawCircle(screen,finger[i].p.x*screen->w,finger[i].p.y*screen->h ,20,0xFF); - + */ keystat[32] = 0; @@ -375,7 +366,7 @@ int main(int argc, char* argv[]) // event.tfinger.x,event.tfinger.y); SDL_Touch* inTouch = SDL_GetTouch(event.tfinger.touchId); SDL_Finger* inFinger = SDL_GetFinger(inTouch,event.tfinger.fingerId); - + /* for(i = 0;ipressureres; + */ /* printf("Finger: %i, Pressure: %f Pressureres: %i\n", event.tfinger.fingerId, @@ -396,12 +388,12 @@ int main(int argc, char* argv[]) */ //printf("Finger: %i, pressure: %f\n",event.tfinger.fingerId, // finger[event.tfinger.fingerId].pressure); - } + //} break; case SDL_FINGERDOWN: //printf("Finger: %"PRIs64" down - x: %i, y: %i\n",event.tfinger.fingerId,event.tfinger.x,event.tfinger.y); - + /* for(i = 0;i