Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Minimized functionality of gestureSDLTest.
  • Loading branch information
jimtla committed Aug 3, 2010
1 parent 810b062 commit 3e963a5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 24 deletions.
15 changes: 5 additions & 10 deletions src/events/SDL_gesture.c
Expand Up @@ -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;
}

Expand Down Expand Up @@ -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;
Expand Down
21 changes: 7 additions & 14 deletions touchTest/gestureSDLTest.c
Expand Up @@ -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<MAXFINGERS;i++)
if(finger[i].p.x >= 0 && finger[i].p.y >= 0)
if(finger[i].pressure > 0)
Expand All @@ -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;
Expand Down Expand Up @@ -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;i<MAXFINGERS;i++)
if(index2fingerid[i] == event.tfinger.fingerId)
break;
Expand All @@ -388,6 +379,7 @@ int main(int argc, char* argv[])
finger[i].pressure =
((float)event.tfinger.pressure)/inTouch->pressureres;
*/
/*
printf("Finger: %i, Pressure: %f Pressureres: %i\n",
event.tfinger.fingerId,
Expand All @@ -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<MAXFINGERS;i++)
if(index2fingerid[i] == -1) {
index2fingerid[i] = event.tfinger.fingerId;
Expand All @@ -419,6 +411,7 @@ int main(int argc, char* argv[])
}
finger[i].p.x = -1;
finger[i].p.y = -1;
*/
break;
case SDL_MULTIGESTURE:
printf("Multi Gesture: x = %f, y = %f, dAng = %f, dR = %f\n",
Expand Down

0 comments on commit 3e963a5

Please sign in to comment.