4 * The PC side of the video support (responsible for actually displaying /
7 * Copyright (c) 2005 Nathan Keynes.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
20 #include <gdk/gdkkeysyms.h>
25 #include "dckeysyms.h"
26 #include "drivers/video_gl.h"
27 #include "drivers/joy_linux.h"
28 #include "pvr2/pvr2.h"
29 #include "gtkui/gtkui.h"
34 #include "drivers/video_glx.h"
36 /************* X11-specificness **********/
38 guint gdk_keycode_to_modifier( GdkDisplay *display, guint keycode )
42 Display *xdisplay = GDK_DISPLAY_XDISPLAY (display);
43 XModifierKeymap *keymap = XGetModifierMapping( xdisplay );
44 for( i=0; i<8*keymap->max_keypermod; i++ ) {
45 if( keymap->modifiermap[i] == keycode ) {
46 result = 1 << (i/keymap->max_keypermod);
50 XFreeModifiermap(keymap);
54 #if !(GTK_CHECK_VERSION(2,8,0))
55 /* gdk_display_warp_pointer was added in GTK 2.8. If we're using an earlier
56 * version, include the code here. (Can't just set the dependency on 2.8 as
57 * it still hasn't been included in fink yet...) Original copyright statement
61 /* GDK - The GIMP Drawing Kit
62 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
64 * This library is free software; you can redistribute it and/or
65 * modify it under the terms of the GNU Lesser General Public
66 * License as published by the Free Software Foundation; either
67 * version 2 of the License, or (at your option) any later version.
69 * This library is distributed in the hope that it will be useful,
70 * but WITHOUT ANY WARRANTY; without even the implied warranty of
71 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
72 * Lesser General Public License for more details.
74 * You should have received a copy of the GNU Lesser General Public
75 * License along with this library; if not, write to the
76 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
77 * Boston, MA 02111-1307, USA.
81 * Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
82 * file for a list of people on the GTK+ Team. See the ChangeLog
83 * files for a list of changes. These files are distributed with
84 * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
86 void gdk_display_warp_pointer (GdkDisplay *display,
94 xdisplay = GDK_DISPLAY_XDISPLAY (display);
95 dest = GDK_WINDOW_XWINDOW (gdk_screen_get_root_window (screen));
97 XWarpPointer (xdisplay, None, dest, 0, 0, 0, 0, x, y);
105 #include "drivers/video_nsgl.h"
107 // Include this prototype as some systems don't have gdkquartz.h installed
108 NSView *gdk_quartz_window_get_nsview( GdkWindow *window);
110 guint gdk_keycode_to_modifier( GdkDisplay *display, guint keycode )
119 GtkWidget *gtk_video_drawable = NULL;
120 int video_width = 640;
121 int video_height = 480;
123 gboolean video_gtk_init();
124 void video_gtk_shutdown();
125 void video_gtk_display_blank( uint32_t colour );
126 uint16_t video_gtk_resolve_keysym( const gchar *keysym );
127 uint16_t video_gtk_keycode_to_dckeysym(uint16_t keycode);
129 struct display_driver display_gtk_driver = { "gtk", video_gtk_init, video_gtk_shutdown,
130 video_gtk_resolve_keysym,
131 video_gtk_keycode_to_dckeysym,
133 NULL, NULL, NULL, NULL, NULL,
134 video_gtk_display_blank, NULL };
136 uint16_t video_gtk_resolve_keysym( const gchar *keysym )
138 int val = gdk_keyval_from_name( keysym );
139 if( val == GDK_VoidSymbol )
141 return (uint16_t)val;
144 gboolean video_gtk_expose_callback(GtkWidget *widget, GdkEventExpose *event, gpointer data )
146 pvr2_redraw_display();
150 gboolean video_gtk_resize_callback(GtkWidget *widget, GdkEventConfigure *event, gpointer data )
152 video_width = event->width;
153 video_height = event->height;
154 pvr2_redraw_display();
158 uint16_t video_gtk_keycode_to_dckeysym(uint16_t keycode)
160 if( keycode >= 'a' && keycode <= 'z' ) {
161 return (keycode - 'a') + DCKB_a;
162 } else if( keycode >= '1' && keycode <= '9' ) {
163 return (keycode - '1') + DCKB_1;
166 case GDK_0: return DCKB_0;
167 case GDK_Return: return DCKB_Return;
168 case GDK_Escape: return DCKB_Escape;
169 case GDK_BackSpace: return DCKB_BackSpace;
170 case GDK_Tab: return DCKB_Tab;
171 case GDK_space: return DCKB_space;
172 case GDK_minus: return DCKB_minus;
173 case GDK_equal: return DCKB_equal;
174 case GDK_bracketleft: return DCKB_bracketleft;
175 case GDK_bracketright: return DCKB_bracketright;
176 case GDK_semicolon: return DCKB_semicolon;
177 case GDK_apostrophe:return DCKB_apostrophe;
178 case GDK_grave : return DCKB_grave;
179 case GDK_comma: return DCKB_comma;
180 case GDK_period: return DCKB_period;
181 case GDK_slash: return DCKB_slash;
182 case GDK_Caps_Lock: return DCKB_Caps_Lock;
183 case GDK_F1: return DCKB_F1;
184 case GDK_F2: return DCKB_F2;
185 case GDK_F3: return DCKB_F3;
186 case GDK_F4: return DCKB_F4;
187 case GDK_F5: return DCKB_F5;
188 case GDK_F6: return DCKB_F6;
189 case GDK_F7: return DCKB_F7;
190 case GDK_F8: return DCKB_F8;
191 case GDK_F9: return DCKB_F9;
192 case GDK_F10: return DCKB_F10;
193 case GDK_F11: return DCKB_F11;
194 case GDK_F12: return DCKB_F12;
195 case GDK_Scroll_Lock: return DCKB_Scroll_Lock;
196 case GDK_Pause: return DCKB_Pause;
197 case GDK_Insert: return DCKB_Insert;
198 case GDK_Home: return DCKB_Home;
199 case GDK_Page_Up: return DCKB_Page_Up;
200 case GDK_Delete: return DCKB_Delete;
201 case GDK_End: return DCKB_nd;
202 case GDK_Page_Down: return DCKB_Page_Down;
203 case GDK_Right: return DCKB_Right;
204 case GDK_Left: return DCKB_Left;
205 case GDK_Down: return DCKB_Down;
206 case GDK_Up: return DCKB_Up;
207 case GDK_Num_Lock: return DCKB_Num_Lock;
208 case GDK_KP_Divide: return DCKB_KP_Divide;
209 case GDK_KP_Multiply: return DCKB_KP_Multiply;
210 case GDK_KP_Subtract: return DCKB_KP_Subtract;
211 case GDK_KP_Add: return DCKB_KP_Add;
212 case GDK_KP_Enter: return DCKB_KP_Enter;
213 case GDK_KP_End: return DCKB_KP_End;
214 case GDK_KP_Down: return DCKB_KP_Down;
215 case GDK_KP_Page_Down: return DCKB_KP_Page_Down;
216 case GDK_KP_Left: return DCKB_KP_Left;
217 case GDK_KP_Begin: return DCKB_KP_Begin;
218 case GDK_KP_Right: return DCKB_KP_Right;
219 case GDK_KP_Home: return DCKB_KP_Home;
220 case GDK_KP_Up: return DCKB_KP_Up;
221 case GDK_KP_Page_Up:return DCKB_KP_Page_Up;
222 case GDK_KP_Insert: return DCKB_KP_Insert;
223 case GDK_KP_Delete: return DCKB_KP_Delete;
224 case GDK_backslash: return DCKB_backslash;
225 case GDK_Control_L: return DCKB_Control_L;
226 case GDK_Shift_L: return DCKB_Shift_L;
227 case GDK_Alt_L: return DCKB_Alt_L;
228 case GDK_Meta_L: return DCKB_Meta_L;
229 case GDK_Control_R: return DCKB_Control_R;
230 case GDK_Shift_R: return DCKB_Shift_R;
231 case GDK_Alt_R: return DCKB_Alt_R;
232 case GDK_Meta_R: return DCKB_Meta_R;
237 GtkWidget *video_gtk_create_drawable()
239 GtkWidget *drawable = gtk_drawing_area_new();
240 GTK_WIDGET_SET_FLAGS(drawable, GTK_CAN_FOCUS|GTK_CAN_DEFAULT);
242 g_signal_connect( drawable, "expose_event",
243 G_CALLBACK(video_gtk_expose_callback), NULL );
244 g_signal_connect( drawable, "configure_event",
245 G_CALLBACK(video_gtk_resize_callback), NULL );
248 Display *display = gdk_x11_display_get_xdisplay( gtk_widget_get_display(drawable));
249 Screen *screen = gdk_x11_screen_get_xscreen( gtk_widget_get_screen(drawable));
250 int screen_no = XScreenNumberOfScreen(screen);
251 if( !video_glx_init(display, screen_no) ) {
252 ERROR( "Unable to initialize GLX, aborting" );
256 XVisualInfo *visual = video_glx_get_visual();
257 if( visual != NULL ) {
258 GdkVisual *gdkvis = gdk_x11_screen_lookup_visual( gtk_widget_get_screen(drawable), visual->visualid );
259 GdkColormap *colormap = gdk_colormap_new( gdkvis, FALSE );
260 gtk_widget_set_colormap( drawable, colormap );
263 gtk_video_drawable = drawable;
267 gboolean video_gtk_init()
270 if( gtk_video_drawable == NULL ) {
274 video_width = gtk_video_drawable->allocation.width;
275 video_height = gtk_video_drawable->allocation.height;
277 video_gdk_init_driver( &display_gtk_driver );
280 Display *display = gdk_x11_display_get_xdisplay( gtk_widget_get_display(GTK_WIDGET(gtk_video_drawable)));
281 Window window = GDK_WINDOW_XWINDOW( GTK_WIDGET(gtk_video_drawable)->window );
282 if( ! video_glx_init_context( display, window ) ||
283 ! video_glx_init_driver( &display_gtk_driver ) ) {
288 NSView *view = gdk_quartz_window_get_nsview(gtk_video_drawable->window);
289 if( ! video_nsgl_init_driver( view, &display_gtk_driver ) ) {
296 pvr2_setup_gl_context();
298 #ifdef HAVE_LINUX_JOYSTICK
299 linux_joystick_init();
304 void video_gtk_display_blank( uint32_t colour )
306 GdkGC *gc = gdk_gc_new(gtk_video_drawable->window);
307 GdkColor color = {0, ((colour>>16)&0xFF)*257, ((colour>>8)&0xFF)*257, ((colour)&0xFF)*257 };
308 GdkColormap *cmap = gdk_colormap_get_system();
309 gdk_colormap_alloc_color( cmap, &color, TRUE, TRUE );
310 gdk_gc_set_foreground( gc, &color );
311 gdk_gc_set_background( gc, &color );
312 gdk_draw_rectangle( gtk_video_drawable->window, gc, TRUE, 0, 0, video_width, video_height );
314 gdk_colormap_free_colors( cmap, &color, 1 );
317 void video_gtk_shutdown()
319 if( gtk_video_drawable != NULL ) {
321 video_gdk_shutdown();
324 video_glx_shutdown();
327 video_nsgl_shutdown();
332 #ifdef HAVE_LINUX_JOYSTICK
333 linux_joystick_shutdown();
.