]> git.sesse.net Git - vlc/blob - plugins/directx/vout_events.c
* ALL: changed "struct foo_s" into "struct foo_t" to make greppers happy.
[vlc] / plugins / directx / vout_events.c
1 /*****************************************************************************
2  * vout_events.c: Windows DirectX video output events handler
3  *****************************************************************************
4  * Copyright (C) 2001 VideoLAN
5  * $Id: vout_events.c,v 1.23 2002/06/04 00:11:12 sam Exp $
6  *
7  * Authors: Gildas Bazin <gbazin@netcourrier.com>
8  *
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.
13  *
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.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24
25 /*****************************************************************************
26  * Preamble: This file contains the functions related to the creation of
27  *             a window and the handling of its messages (events).
28  *****************************************************************************/
29 #include <errno.h>                                                 /* ENOMEM */
30 #include <stdlib.h>                                                /* free() */
31 #include <string.h>                                            /* strerror() */
32
33 #include <vlc/vlc.h>
34 #include <vlc/intf.h>
35 #include <vlc/vout.h>
36
37 #include "netutils.h"
38
39 #include <windows.h>
40 #include <windowsx.h>
41 #include <shellapi.h>
42
43 #include <ddraw.h>
44
45 #include "vout_directx.h"
46
47 /*****************************************************************************
48  * Local prototypes.
49  *****************************************************************************/
50 static int  DirectXCreateWindow( vout_thread_t *p_vout );
51 static void DirectXCloseWindow ( vout_thread_t *p_vout );
52 static void DirectXUpdateRects( vout_thread_t *p_vout );
53 static long FAR PASCAL DirectXEventProc ( HWND hwnd, UINT message,
54                                           WPARAM wParam, LPARAM lParam );
55
56 /*****************************************************************************
57  * DirectXEventThread: Create video window & handle its messages
58  *****************************************************************************
59  * This function creates a video window and then enters an infinite loop
60  * that handles the messages sent to that window.
61  * The main goal of this thread is to isolate the Win32 PeekMessage function
62  * because this one can block for a long time.
63  *****************************************************************************/
64 void DirectXEventThread( event_thread_t *p_event )
65 {
66     MSG msg;
67     POINT old_mouse_pos;
68
69     /* Initialisation */
70
71     /* Create a window for the video */
72     /* Creating a window under Windows also initializes the thread's event
73      * message qeue */
74     if( DirectXCreateWindow( p_event->p_vout ) )
75     {
76         msg_Err( p_event, "out of memory" );
77         p_event->b_dead = 1;
78     }
79
80     /* signal the creation of the window */
81     vlc_thread_ready( p_event );
82
83     /* Main loop */
84     /* GetMessage will sleep if there's no message in the queue */
85     while( !p_event->b_die
86            && GetMessage( &msg, p_event->p_vout->p_sys->hwnd, 0, 0 ) )
87     {
88         /* Check if we are asked to exit */
89         if( p_event->b_die )
90             break;
91
92         switch( msg.message )
93         {
94
95         case WM_NCMOUSEMOVE:
96         case WM_MOUSEMOVE:
97             if( (abs(GET_X_LPARAM(msg.lParam) - old_mouse_pos.x) > 2 ||
98                 (abs(GET_Y_LPARAM(msg.lParam) - old_mouse_pos.y)) > 2 ) )
99             {
100                 GetCursorPos( &old_mouse_pos );
101                 p_event->p_vout->p_sys->i_lastmoved = mdate();
102
103                 if( p_event->p_vout->p_sys->b_cursor_hidden )
104                 {
105                     p_event->p_vout->p_sys->b_cursor_hidden = 0;
106                     ShowCursor( TRUE );
107                 }
108             }
109             break;
110
111         case WM_VLC_HIDE_MOUSE:
112             GetCursorPos( &old_mouse_pos );
113             ShowCursor( FALSE );
114             break;
115
116         case WM_RBUTTONUP:
117             {
118                 intf_thread_t *p_intf;
119                 p_intf = vlc_object_find( p_event, VLC_OBJECT_INTF,
120                                                    FIND_ANYWHERE );
121                 if( p_intf )
122                 {
123                     p_intf->b_menu_change = 1;
124                     vlc_object_release( p_intf );
125                 }
126             }
127             break;
128
129         case WM_LBUTTONDOWN:
130             break;
131
132         case WM_LBUTTONDBLCLK:
133             p_event->p_vout->p_sys->i_changes |= VOUT_FULLSCREEN_CHANGE;
134             break;
135
136         case WM_KEYDOWN:
137             /* the key events are first processed here. The next
138              * message processed by this main message loop will be the
139              * char translation of the key event */
140             msg_Dbg( p_event, "WM_KEYDOWN" );
141             switch( msg.wParam )
142             {
143             case VK_ESCAPE:
144                 /* exit application */
145                 p_event->p_vlc->b_die = 1;
146                 break;
147
148             case VK_F1: network_ChannelJoin( p_event, 1 ); break;
149             case VK_F2: network_ChannelJoin( p_event, 2 ); break;
150             case VK_F3: network_ChannelJoin( p_event, 3 ); break;
151             case VK_F4: network_ChannelJoin( p_event, 4 ); break;
152             case VK_F5: network_ChannelJoin( p_event, 5 ); break;
153             case VK_F6: network_ChannelJoin( p_event, 6 ); break;
154             case VK_F7: network_ChannelJoin( p_event, 7 ); break;
155             case VK_F8: network_ChannelJoin( p_event, 8 ); break;
156             case VK_F9: network_ChannelJoin( p_event, 9 ); break;
157             case VK_F10: network_ChannelJoin( p_event, 10 ); break;
158             case VK_F11: network_ChannelJoin( p_event, 11 ); break;
159             case VK_F12: network_ChannelJoin( p_event, 12 ); break;
160             }
161             TranslateMessage(&msg);
162             break;
163
164         case WM_CHAR:
165             switch( msg.wParam )
166             {
167             case 'q':
168             case 'Q':
169                 /* exit application */
170                 p_event->p_vlc->b_die = 1;
171                 break;
172
173             case 'f':                            /* switch to fullscreen */
174             case 'F':
175                 p_event->p_vout->p_sys->i_changes |= VOUT_FULLSCREEN_CHANGE;
176                 break;
177
178             case 'c':                                /* toggle grayscale */
179             case 'C':
180                 p_event->p_vout->b_grayscale = ! p_event->p_vout->b_grayscale;
181                 p_event->p_vout->p_sys->i_changes |= VOUT_GRAYSCALE_CHANGE;
182                 break;
183
184             case 'i':                                     /* toggle info */
185             case 'I':
186                 p_event->p_vout->b_info = ! p_event->p_vout->b_info;
187                 p_event->p_vout->p_sys->i_changes |= VOUT_INFO_CHANGE;
188                 break;
189
190             case 's':                                  /* toggle scaling */
191             case 'S':
192                 p_event->p_vout->b_scale = ! p_event->p_vout->b_scale;
193                 p_event->p_vout->p_sys->i_changes |= VOUT_SCALE_CHANGE;
194                 break;
195
196             case ' ':                                /* toggle interface */
197                 p_event->p_vout->b_interface = ! p_event->p_vout->b_interface;
198                 p_event->p_vout->p_sys->i_changes |= VOUT_INTF_CHANGE;
199                 break;
200
201             default:
202                 break;
203             }
204
205         default:
206             /* Messages we don't handle directly are dispatched to the
207              * window procedure */
208             TranslateMessage(&msg);
209             DispatchMessage(&msg);
210             break;
211
212         } /* End Switch */
213
214     } /* End Main loop */
215
216     if( msg.message == WM_QUIT )
217     {
218         msg_Warn( p_event, "WM_QUIT... should not happen!!" );
219         p_event->p_vout->p_sys->hwnd = NULL; /* Window already destroyed */
220     }
221
222     msg_Dbg( p_event, "DirectXEventThread Terminating" );
223
224     /* clear the changes formerly signaled */
225     p_event->p_vout->p_sys->i_changes = 0;
226
227     DirectXCloseWindow( p_event->p_vout );
228 }
229
230
231 /* following functions are local */
232
233 /*****************************************************************************
234  * DirectXCreateWindow: create a window for the video.
235  *****************************************************************************
236  * Before creating a direct draw surface, we need to create a window in which
237  * the video will be displayed. This window will also allow us to capture the
238  * events.
239  *****************************************************************************/
240 static int DirectXCreateWindow( vout_thread_t *p_vout )
241 {
242     HINSTANCE  hInstance;
243     WNDCLASSEX wc;                                /* window class components */
244     RECT       rect_window;
245     COLORREF   colorkey; 
246     HDC        hdc;
247     HICON      vlc_icon = NULL;
248     char       vlc_path[_MAX_PATH+1];
249
250     msg_Dbg( p_vout, "DirectXCreateWindow" );
251
252     /* get this module's instance */
253     hInstance = GetModuleHandle(NULL);
254
255     /* Create a BRUSH that will be used by Windows to paint the window
256      * background.
257      * This window background is important for us as it will be used by the
258      * graphics card to display the overlay.
259      * This is why we carefully choose the color for this background, the goal
260      * being to choose a color which isn't complete black but nearly. We
261      * obviously don't want to use black as a colorkey for the overlay because
262      * black is one of the most used color and thus would give us undesirable
263      * effects */
264     /* the first step is to find the colorkey we want to use. The difficulty
265      * comes from the potential dithering (depends on the display depth)
266      * because we need to know the real RGB value of the chosen colorkey */
267     hdc = GetDC( NULL );
268     for( colorkey = 5; colorkey < 0xFF /*all shades of red*/; colorkey++ )
269     {
270         if( colorkey == GetNearestColor( hdc, colorkey ) )
271           break;
272     }
273     msg_Dbg( p_vout, "background color: %i", colorkey );
274
275     /* create the actual brush */  
276     p_vout->p_sys->hbrush = CreateSolidBrush(colorkey);
277     p_vout->p_sys->i_rgb_colorkey = (int)colorkey;
278
279     /* Get the current size of the display and its colour depth */
280     p_vout->p_sys->rect_display.right = GetDeviceCaps( hdc, HORZRES );
281     p_vout->p_sys->rect_display.bottom = GetDeviceCaps( hdc, VERTRES );
282     p_vout->p_sys->i_display_depth = GetDeviceCaps( hdc, BITSPIXEL );
283     msg_Dbg( p_vout, "screen dimensions %ix%i colour depth %i",
284                       p_vout->p_sys->rect_display.right,
285                       p_vout->p_sys->rect_display.bottom,
286                       p_vout->p_sys->i_display_depth );
287
288     ReleaseDC( p_vout->p_sys->hwnd, hdc );
289
290     /* Get the Icon from the main app */
291     vlc_icon = NULL;
292     if( GetModuleFileName( NULL, vlc_path, _MAX_PATH ) )
293     {
294         vlc_icon = ExtractIcon( hInstance, vlc_path, 0 );
295     }
296
297
298     /* fill in the window class structure */
299     wc.cbSize        = sizeof(WNDCLASSEX);
300     wc.style         = CS_DBLCLKS;                       /* style: dbl click */
301     wc.lpfnWndProc   = (WNDPROC)DirectXEventProc;           /* event handler */
302     wc.cbClsExtra    = 0;                             /* no extra class data */
303     wc.cbWndExtra    = 0;                            /* no extra window data */
304     wc.hInstance     = hInstance;                                /* instance */
305     wc.hIcon         = vlc_icon;                        /* load the vlc icon */
306     wc.hCursor       = LoadCursor(NULL, IDC_ARROW); /* load a default cursor */
307     wc.hbrBackground = p_vout->p_sys->hbrush;            /* background color */
308     wc.lpszMenuName  = NULL;                                      /* no menu */
309     wc.lpszClassName = "VLC DirectX";                 /* use a special class */
310     wc.hIconSm       = vlc_icon;                        /* load the vlc icon */
311
312     /* register the window class */
313     if (!RegisterClassEx(&wc))
314     {
315         WNDCLASS wndclass;
316
317         /* free window background brush */
318         if( p_vout->p_sys->hbrush )
319         {
320             DeleteObject( p_vout->p_sys->hbrush );
321             p_vout->p_sys->hbrush = NULL;
322         }
323
324         if( vlc_icon )
325             DestroyIcon( vlc_icon );
326
327         /* Check why it failed. If it's because one already exists then fine */
328         if( !GetClassInfo( hInstance, "VLC DirectX", &wndclass ) )
329         {
330             msg_Err( p_vout, "DirectXCreateWindow RegisterClass FAILED" );
331             return (1);
332         }
333     }
334
335     /* when you create a window you give the dimensions you wish it to have.
336      * Unfortunatly these dimensions will include the borders and title bar.
337      * We use the following function to find out the size of the window
338      * corresponding to the useable surface we want */
339     rect_window.top    = 10;
340     rect_window.left   = 10;
341     rect_window.right  = rect_window.left + p_vout->p_sys->i_window_width;
342     rect_window.bottom = rect_window.top + p_vout->p_sys->i_window_height;
343     AdjustWindowRect( &rect_window, WS_OVERLAPPEDWINDOW|WS_SIZEBOX, 0 );
344
345     /* create the window */
346     p_vout->p_sys->hwnd = CreateWindow("VLC DirectX",/* name of window class */
347                     "VLC DirectX",                  /* window title bar text */
348                     WS_OVERLAPPEDWINDOW
349                     | WS_SIZEBOX,               /* window style */
350                     CW_USEDEFAULT,                   /* default X coordinate */
351                     0,                               /* default Y coordinate */
352                     rect_window.right - rect_window.left,    /* window width */
353                     rect_window.bottom - rect_window.top,   /* window height */
354                     NULL,                                /* no parent window */
355                     NULL,                          /* no menu in this window */
356                     hInstance,            /* handle of this program instance */
357                     NULL);                        /* no additional arguments */
358
359     if (p_vout->p_sys->hwnd == NULL) {
360         msg_Warn( p_vout, "DirectXCreateWindow create window FAILED" );
361         return (1);
362     }
363
364     /* store a p_vout pointer into the window local storage (for later use
365      * in DirectXEventProc).
366      * We need to use SetWindowLongPtr when it is available in mingw */
367     SetWindowLong( p_vout->p_sys->hwnd, GWL_USERDATA, (LONG)p_vout );
368
369     /* now display the window */
370     ShowWindow(p_vout->p_sys->hwnd, SW_SHOW);
371
372     return ( 0 );
373 }
374
375 /*****************************************************************************
376  * DirectXCloseWindow: close the window created by DirectXCreateWindow
377  *****************************************************************************
378  * This function returns all resources allocated by DirectXCreateWindow.
379  *****************************************************************************/
380 static void DirectXCloseWindow( vout_thread_t *p_vout )
381 {
382     msg_Dbg( p_vout, "DirectXCloseWindow" );
383
384     if( p_vout->p_sys->hwnd != NULL )
385     {
386         DestroyWindow( p_vout->p_sys->hwnd );
387         p_vout->p_sys->hwnd = NULL;
388     }
389
390     /* We don't unregister the Window Class because it could lead to race
391      * conditions and it will be done anyway by the system when the app will
392      * exit */
393 }
394
395 /*****************************************************************************
396  * DirectXUpdateRects: 
397  *****************************************************************************
398  * This function is called when the window position and size is changed, and
399  * its job is to update the source and destination RECTs used to display the
400  * picture.
401  *****************************************************************************/
402 static void DirectXUpdateRects( vout_thread_t *p_vout )
403 {
404     int i_width, i_height, i_x, i_y;
405
406 #define rect_src p_vout->p_sys->rect_src
407 #define rect_src_clipped p_vout->p_sys->rect_src_clipped
408 #define rect_dest p_vout->p_sys->rect_dest
409 #define rect_dest_clipped p_vout->p_sys->rect_dest_clipped
410 #define rect_display p_vout->p_sys->rect_display
411
412     vout_PlacePicture( p_vout, p_vout->p_sys->i_window_width,
413                        p_vout->p_sys->i_window_height,
414                        &i_x, &i_y, &i_width, &i_height );
415
416     /* Destination image position and dimensions */
417     rect_dest.left = i_x + p_vout->p_sys->i_window_x;
418     rect_dest.top = i_y + p_vout->p_sys->i_window_y;
419     rect_dest.right = rect_dest.left + i_width;
420     rect_dest.bottom = rect_dest.top + i_height;
421
422
423     /* UpdateOverlay directdraw function doesn't automatically clip to the
424      * display size so we need to do it otherwise it will fails */
425
426     /* Clip the destination window */
427     IntersectRect( &rect_dest_clipped, &rect_dest, &rect_display );
428
429 #if 0
430     msg_Dbg( p_vout, "DirectXUpdateRects image_dst_clipped coords:"
431                      " %i,%i,%i,%i",
432                      rect_dest_clipped.left, rect_dest_clipped.top,
433                      rect_dest_clipped.right, rect_dest_clipped.bottom );
434 #endif
435
436     /* the 2 following lines are to fix a bug when clicking on the desktop */
437     if( (rect_dest_clipped.right - rect_dest_clipped.left)==0 ||
438         (rect_dest_clipped.bottom - rect_dest_clipped.top)==0 )
439     {
440         SetRectEmpty( &rect_src_clipped );
441         return;
442     }
443
444     /* src image dimensions */
445     rect_src.left = 0;
446     rect_src.top = 0;
447     rect_src.right = p_vout->render.i_width;
448     rect_src.bottom = p_vout->render.i_height;
449
450     /* Clip the source image */
451     rect_src_clipped.left = (rect_dest_clipped.left - rect_dest.left) *
452       p_vout->render.i_width / (rect_dest.right - rect_dest.left);
453     rect_src_clipped.right = p_vout->render.i_width - 
454       (rect_dest.right - rect_dest_clipped.right) * p_vout->render.i_width /
455       (rect_dest.right - rect_dest.left);
456     rect_src_clipped.top = (rect_dest_clipped.top - rect_dest.top) *
457       p_vout->render.i_height / (rect_dest.bottom - rect_dest.top);
458     rect_src_clipped.bottom = p_vout->render.i_height -
459       (rect_dest.bottom - rect_dest_clipped.bottom) * p_vout->render.i_height /
460       (rect_dest.bottom - rect_dest.top);
461
462 #if 0
463     msg_Dbg( p_vout, "DirectXUpdateRects image_src_clipped"
464                      " coords: %i,%i,%i,%i",
465                      rect_src_clipped.left, rect_src_clipped.top,
466                      rect_src_clipped.right, rect_src_clipped.bottom );
467 #endif
468
469 #undef rect_src
470 #undef rect_src_clipped
471 #undef rect_dest
472 #undef rect_dest_clipped
473 #undef rect_display
474 }
475
476 /*****************************************************************************
477  * DirectXEventProc: This is the window event processing function.
478  *****************************************************************************
479  * On Windows, when you create a window you have to attach an event processing
480  * function to it. The aim of this function is to manage "Queued Messages" and
481  * "Nonqueued Messages".
482  * Queued Messages are those picked up and retransmitted by vout_Manage
483  * (using the GetMessage and DispatchMessage functions).
484  * Nonqueued Messages are those that Windows will send directly to this
485  * procedure (like WM_DESTROY, WM_WINDOWPOSCHANGED...)
486  *****************************************************************************/
487 static long FAR PASCAL DirectXEventProc( HWND hwnd, UINT message,
488                                          WPARAM wParam, LPARAM lParam )
489 {
490     vout_thread_t *p_vout =
491             (vout_thread_t *)GetWindowLong( hwnd, GWL_USERDATA );
492
493     switch( message )
494     {
495
496     case WM_WINDOWPOSCHANGED:
497         {
498         RECT     rect_window;
499         POINT    point_window;
500
501         /* update the window position */
502         point_window.x = 0;
503         point_window.y = 0;
504         ClientToScreen( hwnd, &point_window );
505         p_vout->p_sys->i_window_x = point_window.x;
506         p_vout->p_sys->i_window_y = point_window.y;
507
508         /* update the window size */
509         GetClientRect( hwnd, &rect_window );
510         p_vout->p_sys->i_window_width = rect_window.right;
511         p_vout->p_sys->i_window_height = rect_window.bottom;
512
513         DirectXUpdateRects( p_vout );
514         if( p_vout->p_sys->b_using_overlay &&
515             !p_vout->p_sys->b_event_thread_die )
516             DirectXUpdateOverlay( p_vout );
517
518         /* signal the size change */
519         if( !p_vout->p_sys->b_using_overlay &&
520             !p_vout->p_sys->b_event_thread_die )
521             p_vout->p_sys->i_changes |= VOUT_SIZE_CHANGE;
522
523         return 0;
524         }
525         break;
526
527     /* the user wants to close the window */
528     case WM_CLOSE:
529         msg_Dbg( p_vout, "WinProc WM_CLOSE" );
530         /* exit application */
531         p_vout->p_vlc->b_die = 1;
532         return 0;
533         break;
534
535     /* the window has been closed so shut down everything now */
536     case WM_DESTROY:
537         msg_Dbg( p_vout, "WinProc WM_DESTROY" );
538         /* just destroy the window */
539         PostQuitMessage( 0 );
540         return 0;
541         break;
542
543     case WM_SYSCOMMAND:
544         switch (wParam)
545         {
546             case SC_SCREENSAVE:                     /* catch the screensaver */
547             case SC_MONITORPOWER:              /* catch the monitor turn-off */
548             msg_Dbg( p_vout, "WinProc WM_SYSCOMMAND" );
549             return 0;                      /* this stops them from happening */
550         }
551         break;
552
553     case WM_ERASEBKGND:
554         if( !p_vout->p_sys->b_using_overlay )
555         {
556             /* We want to eliminate unnecessary background redraws which create
557              * an annoying flickering */
558             int i_width, i_height, i_x, i_y;
559             RECT rect_temp;
560             GetClipBox( (HDC)wParam, &rect_temp );
561 #if 0
562             msg_Dbg( p_vout, "WinProc WM_ERASEBKGND %i,%i,%i,%i",
563                           rect_temp.left, rect_temp.top,
564                           rect_temp.right, rect_temp.bottom );
565 #endif
566             vout_PlacePicture( p_vout, p_vout->p_sys->i_window_width,
567                                p_vout->p_sys->i_window_height,
568                                &i_x, &i_y, &i_width, &i_height );
569             ExcludeClipRect( (HDC)wParam, i_x, i_y,
570                              i_x + i_width, i_y + i_height );
571         }
572         break;
573
574     default:
575         //msg_Dbg( p_vout, "WinProc WM Default %i", message );
576         break;
577     }
578
579     return DefWindowProc(hwnd, message, wParam, lParam);
580 }