/* SDL - Simple DirectMedia Layer Copyright (C) 1997, 1998, 1999, 2000, 2001 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; if not, write to the Free Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Sam Lantinga slouken@libsdl.org */ #ifdef SAVE_RCSID static char rcsid = "@(#) $Id$"; #endif /* Handle the event stream, converting photon events into SDL events */ #define DISABLE_X11 #include #include #include #include #include #include "SDL.h" #include "SDL_syswm.h" #include "SDL_sysevents.h" #include "SDL_sysvideo.h" #include "SDL_events_c.h" #include "SDL_ph_video.h" #include "SDL_ph_modes_c.h" #include "SDL_ph_image_c.h" #include "SDL_ph_events_c.h" /* The translation tables from a photon keysym to a SDL keysym */ static SDLKey ODD_keymap[256]; static SDLKey MISC_keymap[0xFF + 1]; SDL_keysym *ph_TranslateKey(PhKeyEvent_t *key, SDL_keysym *keysym); /* Check to see if this is a repeated key. (idea shamelessly lifted from GII -- thanks guys! :) */ /* static int ph_KeyRepeat(_THIS, PhKeyEvent_t* keyevent) { // PhEvent_t* peekevent; PhKeyEvent_t* keyEvent; int repeated; repeated = 0; switch (PhEventPeek( peekevent, EVENT_SIZE )) { case Ph_EVENT_MSG: { if(peekevent->type == Ph_EV_KEY) { keyEvent = PhGetData( peekevent ); if ( !(Pk_KF_Key_Down & keyEvent->key_flags) && (keyEvent->key_cap == keyevent->key_cap) && (peekevent->timestamp == event->timestamp) ) { repeated = 1; //PhEventNext( peekevent, EVENT_SIZE ); } } } break; case -1: { perror( "PhEventPeek failed" ); } break; default: // no events pending } return(repeated); } */ /* Note: The X server buffers and accumulates mouse motion events, so the motion event generated by the warp may not appear exactly as we expect it to. We work around this (and improve performance) by only warping the pointer when it reaches the edge, and then wait for it. */ /* #define MOUSE_FUDGE_FACTOR 8 static inline int X11_WarpedMotion(_THIS, XEvent *xevent) { int w, h, i; int deltax, deltay; int posted; w = SDL_VideoSurface->w; h = SDL_VideoSurface->h; deltax = xevent->xmotion.x - mouse_last.x; deltay = xevent->xmotion.y - mouse_last.y; #ifdef DEBUG_MOTION printf("Warped mouse motion: %d,%d\n", deltax, deltay); #endif mouse_last.x = xevent->xmotion.x; mouse_last.y = xevent->xmotion.y; posted = SDL_PrivateMouseMotion(0, 1, deltax, deltay); if ( (xevent->xmotion.x < MOUSE_FUDGE_FACTOR) || (xevent->xmotion.x > (w-MOUSE_FUDGE_FACTOR)) || (xevent->xmotion.y < MOUSE_FUDGE_FACTOR) || (xevent->xmotion.y > (h-MOUSE_FUDGE_FACTOR)) ) { // Get the events that have accumulated /* while ( XCheckTypedEvent(SDL_Display, MotionNotify, xevent) ) { deltax = xevent->xmotion.x - mouse_last.x; deltay = xevent->xmotion.y - mouse_last.y; #ifdef DEBUG_MOTION printf("Extra mouse motion: %d,%d\n", deltax, deltay); #endif mouse_last.x = xevent->xmotion.x; mouse_last.y = xevent->xmotion.y; posted += SDL_PrivateMouseMotion(0, 1, deltax, deltay); } mouse_last.x = w/2; mouse_last.y = h/2; XWarpPointer(SDL_Display, None, SDL_Window, 0, 0, 0, 0, mouse_last.x, mouse_last.y); for ( i=0; i<10; ++i ) { XMaskEvent(SDL_Display, PointerMotionMask, xevent); if ( (xevent->xmotion.x > (mouse_last.x-MOUSE_FUDGE_FACTOR)) && (xevent->xmotion.x < (mouse_last.x+MOUSE_FUDGE_FACTOR)) && (xevent->xmotion.y > (mouse_last.y-MOUSE_FUDGE_FACTOR)) && (xevent->xmotion.y < (mouse_last.y+MOUSE_FUDGE_FACTOR)) ) { break; } #ifdef DEBUG_XEVENTS printf("Lost mouse motion: %d,%d\n", xevent->xmotion.x, xevent->xmotion.y); #endif } #ifdef DEBUG_XEVENTS if ( i == 10 ) { printf("Warning: didn't detect mouse warp motion\n"); } #endif } return(posted); } */ /* Control which motion flags the window has set, a flags value of -1 sets * MOTION_BUTTON and MOTION_NOBUTTON */ static void set_motion_sensitivity(_THIS, unsigned int flags) { int rid, fields = Ph_EV_PTR_MOTION_BUTTON | Ph_EV_PTR_MOTION_NOBUTTON; PhRegion_t region; if( window ) { rid = PtWidgetRid( window ); if( rid != 0 && PhRegionQuery( rid, ®ion, NULL, NULL, 0 ) == 0 ) { region.events_sense = ( region.events_sense & ~fields ) | ( flags & fields ); PhRegionChange( Ph_REGION_EV_SENSE, 0, ®ion, NULL, NULL ); } } } /* Convert the photon button state value to an SDL value */ static Uint8 ph2sdl_mousebutton( unsigned short button_state ) { Uint8 mouse_button = 0; if( button_state & Ph_BUTTON_SELECT ) mouse_button |= SDL_BUTTON_LEFT; if( button_state & Ph_BUTTON_MENU ) mouse_button |= SDL_BUTTON_RIGHT; if( button_state & Ph_BUTTON_ADJUST ) mouse_button |= SDL_BUTTON_MIDDLE; return( mouse_button ); } static int ph_DispatchEvent(_THIS) { int posted; PhRect_t* rect; PhPointerEvent_t* pointerEvent; PhKeyEvent_t* keyEvent; PhWindowEvent_t* winEvent; int i, buttons; SDL_Rect sdlrects[50]; posted = 0; switch (event->type) { case Ph_EV_BOUNDARY: { if (event->subtype == Ph_EV_PTR_ENTER) posted = SDL_PrivateAppActive(1, SDL_APPMOUSEFOCUS); else if (event->subtype ==Ph_EV_PTR_LEAVE) posted = SDL_PrivateAppActive(0, SDL_APPMOUSEFOCUS); } break; case Ph_EV_PTR_MOTION_BUTTON: case Ph_EV_PTR_MOTION_NOBUTTON: { if ( SDL_VideoSurface ) { pointerEvent = PhGetData( event ); rect = PhGetRects( event ); posted = SDL_PrivateMouseMotion(0, 0, rect->ul.x, rect->ul.y); } } break; case Ph_EV_BUT_PRESS: { pointerEvent = PhGetData( event ); buttons = ph2sdl_mousebutton( pointerEvent->buttons ); if( buttons != 0 ) posted = SDL_PrivateMouseButton( SDL_PRESSED, buttons, 0, 0 ); } break; case Ph_EV_BUT_RELEASE: { pointerEvent = PhGetData(event); buttons = ph2sdl_mousebutton(pointerEvent->buttons); if( event->subtype == Ph_EV_RELEASE_REAL && buttons != 0 ) { posted = SDL_PrivateMouseButton( SDL_RELEASED, buttons, 0, 0 ); } else if( event->subtype == Ph_EV_RELEASE_PHANTOM ) { /* If the mouse is outside the window, * only a phantom release event is sent, so * check if the window doesn't have mouse focus. * Not perfect, maybe checking the mouse button * state for Ph_EV_BOUNDARY events would be * better. */ if( ( SDL_GetAppState() & SDL_APPMOUSEFOCUS ) == 0 ) { posted = SDL_PrivateMouseButton( SDL_RELEASED, buttons, 0, 0 ); } } } break; case Ph_EV_WM: { winEvent = PhGetData( event ); /* losing focus */ if ((winEvent->event_f==Ph_WM_FOCUS)&& (winEvent->event_state==Ph_WM_EVSTATE_FOCUSLOST)) { set_motion_sensitivity(this, Ph_EV_PTR_MOTION_BUTTON); posted = SDL_PrivateAppActive(0, SDL_APPINPUTFOCUS); /* Queue leaving fullscreen mode */ switch_waiting = 0x01; switch_time = SDL_GetTicks() + 200; } /* gaining focus */ else if ((winEvent->event_f==Ph_WM_FOCUS)&& (winEvent->event_state==Ph_WM_EVSTATE_FOCUS)) { set_motion_sensitivity(this, -1); posted = SDL_PrivateAppActive(1, SDL_APPINPUTFOCUS); /* Queue entry into fullscreen mode */ switch_waiting = 0x01 | SDL_FULLSCREEN; switch_time = SDL_GetTicks() + 1500; } /* request to quit */ else if (winEvent->event_f==Ph_WM_CLOSE) { posted = SDL_PrivateQuit(); } } break; /* window has been resized, moved or removed */ case Ph_EV_EXPOSE: { if (SDL_VideoSurface) { rect = PhGetRects( event ); //PgSetClipping(1, rect ); for(i=0;inum_rects;i++) { sdlrects[i].x = rect[i].ul.x; sdlrects[i].y = rect[i].ul.y; sdlrects[i].w = rect[i].lr.x - rect[i].ul.x + 1; sdlrects[i].h = rect[i].lr.y - rect[i].ul.y + 1; } this->UpdateRects(this, event->num_rects, sdlrects); } } break; case Ph_EV_KEY: { SDL_keysym keysym; posted = 0; keyEvent = PhGetData( event ); if (Pk_KF_Key_Down & keyEvent->key_flags) { posted = SDL_PrivateKeyboard(SDL_PRESSED, ph_TranslateKey( keyEvent, &keysym)); } else /* must be key release */ { /* Ignore repeated key release events */ /*if (! Pk_KF_Key_Repeat & keyEvent->key_flags )*/ posted = SDL_PrivateKeyboard(SDL_RELEASED, ph_TranslateKey( keyEvent, &keysym)); /*}*/ } } break; } return(posted); } /* perform a blocking read if no events available */ int ph_Pending(_THIS) { /* Flush the display connection and look to see if events are queued */ PgFlush(); while( 1 ) { //note this is a non-blocking call switch( PhEventPeek( event, EVENT_SIZE ) ) { case Ph_EVENT_MSG: return 1; break; case -1: perror( "PhEventNext failed" ); break; default: return 0; } } /* Oh well, nothing is ready .. */ return(0); } /* SAMPLE EVENT PUMP ================= static void update( int block ){ int ch,fl; PhKeyEvent_t *key; for( ;; ){ if( block ){ do{ fl=PhEventNext( event,EVENT_SIZE ); }while( fl!=Ph_EVENT_MSG ); block=0; }else{ do{ fl=PhEventPeek( event,EVENT_SIZE ); if( !fl ) return; }while( fl!=Ph_EVENT_MSG ); } switch( event->type ){ case Ph_EV_KEY: key=PhGetData( event ); ch=key->key_cap; // & 127; fl=key->key_flags; if( ch<32 || ch>127 ) break; if( fl & Pk_KF_Key_Down ){ if( !(fl & Pk_KF_Key_Repeat) ){ if( queput-queget= switch_time ) { Uint32 go_fullscreen; go_fullscreen = switch_waiting & SDL_FULLSCREEN; switch_waiting = 0; if ( SDL_VideoSurface->flags & SDL_FULLSCREEN ) { if ( go_fullscreen ) { ph_EnterFullScreen(this); } else { ph_LeaveFullScreen(this); } } /* Handle focus in/out when grabbed */ /* if ( go_fullscreen ) { ph_GrabInputNoLock(this, this->input_grab); } else { ph_GrabInputNoLock(this, SDL_GRAB_OFF); } */ } } } void ph_InitKeymap(void) { int i; /* Odd keys used in international keyboards */ for ( i=0; ikey_cap; switch (cap>>8) { case 0x00: /* Latin 1 */ case 0x01: /* Latin 2 */ case 0x02: /* Latin 3 */ case 0x03: /* Latin 4 */ case 0x04: /* Katakana */ case 0x05: /* Arabic */ case 0x06: /* Cyrillic */ case 0x07: /* Greek */ case 0x08: /* Technical */ case 0x0A: /* Publishing */ case 0x0C: /* Hebrew */ case 0x0D: /* Thai */ keysym->sym = (SDLKey)(cap&0xFF); /* Map capital letter syms to lowercase */ if ((keysym->sym >= 'A')&&(keysym->sym <= 'Z')) keysym->sym += ('a'-'A'); break; // case 0xFE: // keysym->sym = ODD_keymap[sym&0xFF]; // break; case 0xF0: keysym->sym = MISC_keymap[cap&0xFF]; break; default: fprintf(stderr,"Photon: Unknown key_cap, cap = 0x%.4x\n", (unsigned int)cap); break; } keysym->scancode = key->key_scan; return (keysym); } void ph_InitOSKeymap(_THIS) { ph_InitKeymap(); }