X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fgui%2Fmacosx%2Fvout.m;h=f9d84bbd9bf45e9802ba403dc7bc8c5a4f250e40;hb=df796fbf4e0fc6194e934fcc63a6f31bebfad003;hp=2ac420181cf255ce16312204e2022e17a3402454;hpb=94cdda13e8bbf6a3bccbaf2d81b424e61050e2d9;p=vlc diff --git a/modules/gui/macosx/vout.m b/modules/gui/macosx/vout.m index 2ac420181c..f9d84bbd9b 100644 --- a/modules/gui/macosx/vout.m +++ b/modules/gui/macosx/vout.m @@ -1,20 +1,22 @@ /***************************************************************************** * vout.m: MacOS X video output module ***************************************************************************** - * Copyright (C) 2001-2003 VideoLAN + * Copyright (C) 2001-2007 the VideoLAN team * $Id$ * * Authors: Colin Delacroix * Florian G. Pflug * Jon Lech Johansen - * Derk-Jan Hartman + * Derk-Jan Hartman * Eric Petit + * Benjamin Pracht + * Felix Kühne * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. - * + * * This program 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 @@ -22,7 +24,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ /***************************************************************************** @@ -30,1832 +32,1173 @@ *****************************************************************************/ #include /* ENOMEM */ #include /* free() */ -#include /* strerror() */ +#include +/* BeginFullScreen, EndFullScreen */ #include -#include -#include -#include - #include #include "intf.h" +#include "fspanel.h" #include "vout.h" - -#define QT_MAX_DIRECTBUFFERS 10 -#define VL_MAX_DISPLAYS 16 - -#define OPENGL_EFFECT_NONE 1 -#define OPENGL_EFFECT_CUBE 2 -#define OPENGL_EFFECT_TRANSPARENT_CUBE 4 - -struct picture_sys_t -{ - void *p_info; - unsigned int i_size; - - /* When using I420 output */ - PlanarPixmapInfoYUV420 pixmap_i420; -}; +#import "controls.h" +#import "embeddedwindow.h" /***************************************************************************** - * Local prototypes + * DeviceCallback: Callback triggered when the video-device variable is changed *****************************************************************************/ +int DeviceCallback( vlc_object_t *p_this, const char *psz_variable, + vlc_value_t old_val, vlc_value_t new_val, void *param ) +{ + vlc_value_t val; + vout_thread_t *p_vout = (vout_thread_t *)p_this; -static int InitVideo ( vout_thread_t * ); -static void EndVideo ( vout_thread_t * ); -static int ManageVideo ( vout_thread_t * ); -static void DisplayVideo ( vout_thread_t *, picture_t * ); -static int ControlVideo ( vout_thread_t *, int, va_list ); - -static int CoCreateWindow ( vout_thread_t * ); -static int CoDestroyWindow ( vout_thread_t * ); -static int CoToggleFullscreen ( vout_thread_t * ); + msg_Dbg( p_vout, "set %d", new_val.i_int ); + var_Create( p_vout->p_libvlc, "video-device", VLC_VAR_INTEGER ); + var_Set( p_vout->p_libvlc, "video-device", new_val ); -static void VLCHideMouse ( vout_thread_t *, BOOL ); + val.b_bool = VLC_TRUE; + var_Set( p_vout, "intf-change", val ); + return VLC_SUCCESS; +} -static void QTScaleMatrix ( vout_thread_t * ); -static int QTCreateSequence ( vout_thread_t * ); -static void QTDestroySequence ( vout_thread_t * ); -static int QTNewPicture ( vout_thread_t *, picture_t * ); -static void QTFreePicture ( vout_thread_t *, picture_t * ); /***************************************************************************** - * OpenVideo: allocates MacOS X video thread output method - ***************************************************************************** - * This function allocates and initializes a MacOS X vout method. + * VLCEmbeddedList implementation *****************************************************************************/ -int E_(OpenVideo) ( vlc_object_t *p_this ) -{ - vout_thread_t * p_vout = (vout_thread_t *)p_this; - vlc_value_t val; - OSErr err; - int i_timeout; +@implementation VLCEmbeddedList - p_vout->p_sys = malloc( sizeof( vout_sys_t ) ); - if( p_vout->p_sys == NULL ) - { - msg_Err( p_vout, "out of memory" ); - return( 1 ); - } +- (id)init +{ + [super init]; + o_embedded_array = [NSMutableArray array]; + return self; +} - memset( p_vout->p_sys, 0, sizeof( vout_sys_t ) ); +- (id)getEmbeddedVout +{ + unsigned int i; - /* Wait for a MacOS X interface to appear. Timeout is 2 seconds. */ - for( i_timeout = 20 ; i_timeout-- ; ) + for( i = 0; i < [o_embedded_array count]; i++ ) { - if( NSApp == NULL ) + id o_vout_view = [o_embedded_array objectAtIndex: i]; + if( ![o_vout_view isUsed] ) { - msleep( INTF_IDLE_SLEEP ); + [o_vout_view setUsed: YES]; + return o_vout_view; } } + return nil; +} - if( NSApp == NULL ) +- (void)releaseEmbeddedVout: (id)o_vout_view +{ + if( [o_embedded_array containsObject: o_vout_view] ) { - /* no MacOS X intf, unable to communicate with MT */ - msg_Err( p_vout, "no MacOS X interface present" ); - free( p_vout->p_sys ); - return( 1 ); + [o_vout_view setUsed: NO]; } - - p_vout->pf_init = InitVideo; - p_vout->pf_end = EndVideo; - p_vout->pf_manage = ManageVideo; - p_vout->pf_render = NULL; - p_vout->pf_display = DisplayVideo; - p_vout->pf_control = ControlVideo; - - p_vout->p_sys->o_pool = [[NSAutoreleasePool alloc] init]; - p_vout->p_sys->b_mouse_moved = VLC_TRUE; - p_vout->p_sys->i_time_mouse_last_moved = mdate(); - - /* set original window size */ - p_vout->p_sys->s_rect.size.width = p_vout->i_window_width; - p_vout->p_sys->s_rect.size.height = p_vout->i_window_height; - - var_Create( p_vout, "macosx-vout", VLC_VAR_STRING | VLC_VAR_DOINHERIT ); - var_Create( p_vout, "macosx-vdev", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT ); - var_Create( p_vout, "macosx-fill", VLC_VAR_BOOL | VLC_VAR_DOINHERIT ); - var_Create( p_vout, "macosx-stretch", VLC_VAR_BOOL | VLC_VAR_DOINHERIT ); - var_Create( p_vout, "macosx-opaqueness", VLC_VAR_FLOAT | VLC_VAR_DOINHERIT ); - var_Create( p_vout, "macosx-opengl-effect", VLC_VAR_STRING | VLC_VAR_DOINHERIT ); - - /* Check if we should use QuickTime or OpenGL */ - var_Get( p_vout, "macosx-vout", &val); - - if( !strncmp( val.psz_string, "auto", 4 ) ) + else { - p_vout->p_sys->i_opengl = CGDisplayUsesOpenGLAcceleration( kCGDirectMainDisplay ); + msg_Warn( VLCIntf, "cannot find Video Output"); } - else if( !strncmp( val.psz_string, "opengl", 6 ) ) +} + +- (void)addEmbeddedVout: (id)o_vout_view +{ + if( ![o_embedded_array containsObject: o_vout_view] ) { - p_vout->p_sys->i_opengl = VLC_TRUE; + [o_embedded_array addObject: o_vout_view]; } - else +} + +- (BOOL)windowContainsEmbedded: (id)o_window +{ +/* if( ![[o_window className] isEqualToString: @"VLCVoutWindow"] ) { - p_vout->p_sys->i_opengl = VLC_FALSE; - } - free( val.psz_string ); - - if( !p_vout->p_sys->i_opengl ) + NSLog( @"We were not given a VLCVoutWindow" ); + }*/ + return ([self getViewForWindow: o_window] == nil ? NO : YES ); +} + +- (id)getViewForWindow: (id)o_window +{ + id o_enumerator = [o_embedded_array objectEnumerator]; + id o_current_embedded; + + while( (o_current_embedded = [o_enumerator nextObject]) ) { - /* Initialize QuickTime */ - p_vout->p_sys->h_img_descr = - (ImageDescriptionHandle)NewHandleClear( sizeof(ImageDescription) ); - p_vout->p_sys->p_matrix = - (MatrixRecordPtr)malloc( sizeof(MatrixRecord) ); - p_vout->p_sys->p_fullscreen_state = NULL; - - if( ( err = EnterMovies() ) != noErr ) + if( [o_current_embedded getWindow] == o_window ) { - msg_Err( p_vout, "EnterMovies failed: %d", err ); - free( p_vout->p_sys->p_matrix ); - DisposeHandle( (Handle)p_vout->p_sys->h_img_descr ); - free( p_vout->p_sys ); - return VLC_EGENERIC; + return o_current_embedded; } + } + return nil; +} + +@end - /* Damn QT isn't thread safe. so keep a lock in the p_vlc object */ - vlc_mutex_lock( &p_vout->p_vlc->quicktime_lock ); +/***************************************************************************** + * VLCVoutView implementation + *****************************************************************************/ +@implementation VLCVoutView - /* Can we find the right chroma ? */ - err = FindCodec( kYUV420CodecType, bestSpeedCodec, - nil, &p_vout->p_sys->img_dc ); - - vlc_mutex_unlock( &p_vout->p_vlc->quicktime_lock ); - - if( err == noErr && p_vout->p_sys->img_dc != 0 ) - { - p_vout->output.i_chroma = VLC_FOURCC('I','4','2','0'); - p_vout->p_sys->i_codec = kYUV420CodecType; - } - else - { - msg_Err( p_vout, "failed to find an appropriate codec" ); - } +- (id)initWithFrame: (NSRect)frameRect +{ + [super initWithFrame: frameRect]; + p_vout = NULL; + o_view = nil; + s_frame = &frameRect; - if( p_vout->p_sys->img_dc == 0 ) - { - free( p_vout->p_sys->p_matrix ); - DisposeHandle( (Handle)p_vout->p_sys->h_img_descr ); - free( p_vout->p_sys ); - return VLC_EGENERIC; - } - msg_Dbg( p_vout, "using Quartz mode" ); + p_real_vout = NULL; + o_window = nil; + return self; +} + +- (BOOL)setVout: (vout_thread_t *) vout + subView: (NSView *) view + frame: (NSRect *) frame +{ + int i_device; + NSAutoreleasePool *o_pool = [[NSAutoreleasePool alloc] init]; + NSArray *o_screens = [NSScreen screens]; + + p_vout = vout; + o_view = view; + s_frame = frame; + + if( [o_screens count] <= 0 ) + { + msg_Err( p_vout, "no OSX screens available" ); + return NO; + } + + p_real_vout = [VLCVoutView getRealVout: p_vout]; + + /* Get the pref value when this is the first time, otherwise retrieve the device from the top level video-device var */ + if( var_Type( p_real_vout->p_libvlc, "video-device" ) == 0 ) + { + i_device = var_GetInteger( p_vout, "macosx-vdev" ); } else { - p_vout->output.i_chroma = VLC_FOURCC('Y','U','Y','2'); - msg_Dbg( p_vout, "using OpenGL mode" ); + i_device = var_GetInteger( p_real_vout->p_libvlc, "video-device" ); } - /* Setup the menuitem for the multiple displays. Read the vlc preference (macosx-vdev) for the primary display */ - NSArray * o_screens = [NSScreen screens]; - if( [o_screens count] > 0 && var_Type( p_vout, "video-device" ) == 0 ) + /* Setup the menuitem for the multiple displays. */ + if( var_Type( p_real_vout, "video-device" ) == 0 ) { int i = 1; vlc_value_t val2, text; NSScreen * o_screen; - var_Get( p_vout, "macosx-vdev", &val ); + var_Create( p_real_vout, "video-device", VLC_VAR_INTEGER | + VLC_VAR_HASCHOICE ); + text.psz_string = _("Video Device"); + var_Change( p_real_vout, "video-device", VLC_VAR_SETTEXT, &text, NULL ); - var_Create( p_vout, "video-device", VLC_VAR_INTEGER | - VLC_VAR_HASCHOICE ); - text.psz_string = _("Video device"); - var_Change( p_vout, "video-device", VLC_VAR_SETTEXT, &text, NULL ); - NSEnumerator * o_enumerator = [o_screens objectEnumerator]; + val2.i_int = 0; + text.psz_string = _("Default"); + var_Change( p_real_vout, "video-device", + VLC_VAR_ADDCHOICE, &val2, &text ); + var_Set( p_real_vout, "video-device", val2 ); + while( (o_screen = [o_enumerator nextObject]) != NULL ) { char psz_temp[255]; NSRect s_rect = [o_screen frame]; - snprintf( psz_temp, sizeof(psz_temp)/sizeof(psz_temp[0])-1, + snprintf( psz_temp, sizeof(psz_temp)/sizeof(psz_temp[0])-1, "%s %d (%dx%d)", _("Screen"), i, - (int)s_rect.size.width, (int)s_rect.size.height ); + (int)s_rect.size.width, (int)s_rect.size.height ); text.psz_string = psz_temp; - val2.i_int = i; - var_Change( p_vout, "video-device", + val2.i_int = (int)[o_screen displayID]; + var_Change( p_real_vout, "video-device", VLC_VAR_ADDCHOICE, &val2, &text ); - - if( ( i - 1 ) == val.i_int ) + if( (int)[o_screen displayID] == i_device ) { - var_Set( p_vout, "video-device", val2 ); + var_Set( p_real_vout, "video-device", val2 ); } i++; } - var_AddCallback( p_vout, "video-device", vout_VarCallback, + var_AddCallback( p_real_vout, "video-device", DeviceCallback, NULL ); val2.b_bool = VLC_TRUE; - var_Set( p_vout, "intf-change", val2 ); + var_Set( p_real_vout, "intf-change", val2 ); } - /* Spawn window */ - if( CoCreateWindow( p_vout ) ) - { - msg_Err( p_vout, "unable to create a window" ); - if( !p_vout->p_sys->i_opengl ) - { - free( p_vout->p_sys->p_matrix ); - DisposeHandle( (Handle)p_vout->p_sys->h_img_descr ); - } - free( p_vout->p_sys ); - return VLC_EGENERIC; - } + /* Add the view. It's automatically resized to fit the window */ + [self addSubview: o_view]; + [self setAutoresizesSubviews: YES]; + [o_pool release]; - return VLC_SUCCESS; + return YES; } -/***************************************************************************** - * CloseVideo: destroy video thread output method - *****************************************************************************/ -void E_(CloseVideo) ( vlc_object_t *p_this ) +- (void)resizeSubviewsWithOldSize:(NSSize)oldBoundsSize +{ + [super resizeSubviewsWithOldSize: oldBoundsSize]; + [o_view setFrameSize: [self frame].size]; +} + +- (void)drawRect:(NSRect)rect +{ + /* When there is no subview we draw a black background */ + [self lockFocus]; + [[NSColor blackColor] set]; + NSRectFill(rect); + [self unlockFocus]; +} + +- (void)closeVout +{ + [[[[VLCMain sharedInstance] getControls] getFSPanel] fadeOut]; + + /* Make sure we don't see a white flash */ + [[self window] disableScreenUpdatesUntilFlush]; + [o_view removeFromSuperview]; + o_view = nil; + p_vout = NULL; + s_frame = nil; + o_window = nil; + p_real_vout = NULL; +} + +- (void)updateTitle { - NSAutoreleasePool *o_pool = [[NSAutoreleasePool alloc] init]; - vout_thread_t * p_vout = (vout_thread_t *)p_this; + NSMutableString * o_title = nil, * o_mrl = nil; + input_thread_t * p_input; - if( CoDestroyWindow( p_vout ) ) + if( p_vout == NULL ) { - msg_Err( p_vout, "unable to destroy window" ); + return; } - if ( p_vout->p_sys->p_fullscreen_state != NULL ) + p_input = vlc_object_find( p_vout, VLC_OBJECT_INPUT, FIND_PARENT ); + + if( p_input == NULL ) { - EndFullScreen ( p_vout->p_sys->p_fullscreen_state, NULL ); + return; } - if( !p_vout->p_sys->i_opengl ) + char *psz_name = input_item_GetName( input_GetItem( p_input ) ); + char *psz_uri = input_item_GetURI( input_GetItem( p_input ) ); + if( psz_name != NULL ) + o_title = [NSMutableString stringWithUTF8String: psz_name]; + if( psz_uri != NULL ) + o_mrl = [NSMutableString stringWithUTF8String: psz_uri]; + free( psz_name ); + free( psz_uri ); + if( o_title == nil ) + o_title = o_mrl; + + if( o_mrl != nil ) { - /* Clean Up Quicktime environment */ - ExitMovies(); - free( p_vout->p_sys->p_matrix ); - DisposeHandle( (Handle)p_vout->p_sys->h_img_descr ); + /* FIXME once psz_access is exported, we could check if we are + * reading from a file in a smarter way. */ + + NSRange prefix_range = [o_mrl rangeOfString: @"file:"]; + if( prefix_range.location != NSNotFound ) + [o_mrl deleteCharactersInRange: prefix_range]; + + if( [o_mrl characterAtIndex:0] == '/' ) + { + /* it's a local file */ + [o_window setRepresentedFilename: o_mrl]; + } + else + { + /* it's from the network or somewhere else, + * we clear the previous path */ + [o_window setRepresentedFilename: @""]; + } + [o_window setTitle: o_title]; } else { - [p_vout->p_sys->o_glview cleanUp]; + [o_window setTitle: [NSString stringWithUTF8String: VOUT_TITLE]]; } - - [o_pool release]; - free( p_vout->p_sys ); + vlc_object_release( p_input ); } -/***************************************************************************** - * InitVideo: initialize video thread output method - *****************************************************************************/ -static int InitOpenGL ( vout_thread_t *p_vout ); -static int InitQuickTime( vout_thread_t *p_vout ); -static int InitVideo ( vout_thread_t *p_vout ) -{ - I_OUTPUTPICTURES = 0; - - /* Initialize the output structure; we already found a codec, - * and the corresponding chroma we will be using. Since we can - * arbitrary scale, stick to the coordinates and aspect. */ - p_vout->output.i_width = p_vout->render.i_width; - p_vout->output.i_height = p_vout->render.i_height; - p_vout->output.i_aspect = p_vout->render.i_aspect; - if( p_vout->p_sys->i_opengl ) +- (void)setOnTop:(BOOL)b_on_top +{ + if( b_on_top ) { - return InitOpenGL( p_vout ); + [o_window setLevel: NSStatusWindowLevel]; } else { - return InitQuickTime( p_vout ); + [o_window setLevel: NSNormalWindowLevel]; } } -static int InitOpenGL( vout_thread_t *p_vout ) -{ - picture_t *p_pic = NULL; - int i_bytes; - int i_index; - - /* Apple OpenGL extensions only accept YUV as YUY2 */ - p_vout->output.i_chroma = VLC_FOURCC('Y','U','Y','2'); - p_vout->output.i_rmask = 0xFF0000; - p_vout->output.i_gmask = 0x00FF00; - p_vout->output.i_bmask = 0x0000FF; - - /* Allocate our 2 picture buffers */ - i_bytes = 2 * p_vout->output.i_width * p_vout->output.i_height; - p_vout->p_sys->p_data[0] = vlc_memalign( - &p_vout->p_sys->p_data_orig[0], 16, i_bytes ); - p_vout->p_sys->p_data[1] = vlc_memalign( - &p_vout->p_sys->p_data_orig[1], 16, i_bytes ); - p_vout->p_sys->i_cur_pic = 1; - - /* We declare only one picture and will switch buffers manually */ - while( I_OUTPUTPICTURES < 1 ) +- (void)scaleWindowWithFactor: (float)factor animate: (BOOL)animate +{ + NSSize newsize; + int i_corrected_height, i_corrected_width; + NSPoint topleftbase; + NSPoint topleftscreen; + + if ( !p_vout->b_fullscreen ) { - /* Find an empty picture slot */ - for( i_index = 0; i_index < VOUT_MAX_PICTURES; i_index++ ) + NSView *mainView; + NSRect new_frame; + topleftbase.x = 0; + topleftbase.y = [o_window frame].size.height; + topleftscreen = [o_window convertBaseToScreen: topleftbase]; + + if( p_vout->render.i_height * p_vout->render.i_aspect > + p_vout->render.i_width * VOUT_ASPECT_FACTOR ) { - if( p_vout->p_picture[ i_index ].i_status == FREE_PICTURE ) - { - p_pic = p_vout->p_picture + i_index; - break; - } + i_corrected_width = p_vout->render.i_height * p_vout->render.i_aspect / + VOUT_ASPECT_FACTOR; + newsize.width = (int) ( i_corrected_width * factor ); + newsize.height = (int) ( p_vout->render.i_height * factor ); } - if( p_pic == NULL ) + else { - break; + i_corrected_height = p_vout->render.i_width * VOUT_ASPECT_FACTOR / + p_vout->render.i_aspect; + newsize.width = (int) ( p_vout->render.i_width * factor ); + newsize.height = (int) ( i_corrected_height * factor ); } - vout_InitPicture( VLC_OBJECT( p_vout ), p_pic, - p_vout->output.i_chroma, p_vout->output.i_width, - p_vout->output.i_height, p_vout->output.i_aspect ); - p_pic->p_data = p_vout->p_sys->p_data[0]; - p_pic->p[0].p_pixels = p_pic->p_data; - for( i_index = 1; i_index < p_pic->i_planes; i_index++ ) - { - p_pic->p[i_index].p_pixels = - p_pic->p[i_index-1].p_pixels + - p_pic->p[i_index-1].i_lines * - p_pic->p[i_index-1].i_pitch; - } + /* In fullscreen mode we need to use a view that is different from + * ourselves, with the VLCEmbeddedWindow */ + if([o_window isKindOfClass:[VLCEmbeddedWindow class]]) + mainView = [o_window mainView]; + else + mainView = self; - p_pic->i_status = DESTROYED_PICTURE; - p_pic->i_type = DIRECT_PICTURE; + /* Calculate the window's new size */ + new_frame.size.width = [o_window frame].size.width - + [mainView frame].size.width + newsize.width; + new_frame.size.height = [o_window frame].size.height - + [mainView frame].size.height + newsize.height; - PP_OUTPUTPICTURE[ I_OUTPUTPICTURES ] = p_pic; - I_OUTPUTPICTURES++; - } + new_frame.origin.x = topleftscreen.x; + new_frame.origin.y = topleftscreen.y - new_frame.size.height; - [p_vout->p_sys->o_glview lockFocus]; - [p_vout->p_sys->o_glview initTextures]; - [p_vout->p_sys->o_glview reshape]; - [p_vout->p_sys->o_glview unlockFocus]; + [o_window setFrame: new_frame display: animate animate: animate]; - return 0; + p_vout->i_changes |= VOUT_SIZE_CHANGE; + } } -static int InitQuickTime( vout_thread_t *p_vout ) +- (void)toggleFloatOnTop { - picture_t *p_pic; - int i_index; - - SetPort( p_vout->p_sys->p_qdport ); - QTScaleMatrix( p_vout ); + vlc_value_t val; - if( QTCreateSequence( p_vout ) ) + if( !p_real_vout ) return; + if( var_Get( p_real_vout, "video-on-top", &val )>=0 && val.b_bool) { - msg_Err( p_vout, "unable to create sequence" ); - return( 1 ); + val.b_bool = VLC_FALSE; } - - /* Try to initialize up to QT_MAX_DIRECTBUFFERS direct buffers */ - while( I_OUTPUTPICTURES < QT_MAX_DIRECTBUFFERS ) + else { - p_pic = NULL; - - /* Find an empty picture slot */ - for( i_index = 0; i_index < VOUT_MAX_PICTURES; i_index++ ) - { - if( p_vout->p_picture[ i_index ].i_status == FREE_PICTURE ) - { - p_pic = p_vout->p_picture + i_index; - break; - } - } + val.b_bool = VLC_TRUE; + } + var_Set( p_real_vout, "video-on-top", val ); +} - /* Allocate the picture */ - if( p_pic == NULL || QTNewPicture( p_vout, p_pic ) ) - { - break; - } +- (void)toggleFullscreen +{ + vlc_value_t val; + if( !p_real_vout ) return; + var_Get( p_real_vout, "fullscreen", &val ); + val.b_bool = !val.b_bool; + var_Set( p_real_vout, "fullscreen", val ); +} - p_pic->i_status = DESTROYED_PICTURE; - p_pic->i_type = DIRECT_PICTURE; +- (BOOL)isFullscreen +{ + vlc_value_t val; + if( !p_real_vout ) return NO; + var_Get( p_real_vout, "fullscreen", &val ); + return( val.b_bool ); +} - PP_OUTPUTPICTURE[ I_OUTPUTPICTURES ] = p_pic; - I_OUTPUTPICTURES++; - } - return 0; +- (void)snapshot +{ + vout_Control( p_real_vout, VOUT_SNAPSHOT ); } -/***************************************************************************** - * EndVideo: terminate video thread output method - *****************************************************************************/ -static void EndVideo( vout_thread_t *p_vout ) +- (void)manage { - int i_index; + /* Disable Screensaver, when we're playing something, but allow it on pause */ + if( VLCIntf->p_sys->i_play_status == PLAYING_S ) + UpdateSystemActivity( UsrActivity ); +} - if( !p_vout->p_sys->i_opengl ) - { - QTDestroySequence( p_vout ); - } +- (id)getWindow +{ + return o_window; +} - /* Free the direct buffers we allocated */ - for( i_index = I_OUTPUTPICTURES; i_index; ) - { - i_index--; - if( !p_vout->p_sys->i_opengl ) - { - QTFreePicture( p_vout, PP_OUTPUTPICTURE[ i_index ] ); - } - else - { - free( p_vout->p_sys->p_data_orig[0] ); - free( p_vout->p_sys->p_data_orig[1] ); - } - } +- (void)scrollWheel:(NSEvent *)theEvent +{ + VLCControls * o_controls = (VLCControls *)[[NSApp delegate] getControls]; + [o_controls scrollWheel: theEvent]; } -/***************************************************************************** - * ManageVideo: handle events - ***************************************************************************** - * This function should be called regularly by video output thread. It manages - * console events. It returns a non null value on error. - *****************************************************************************/ -static int ManageVideo( vout_thread_t *p_vout ) +- (void)keyDown:(NSEvent *)o_event { - if( p_vout->i_changes & VOUT_FULLSCREEN_CHANGE ) - { - if( CoToggleFullscreen( p_vout ) ) - { - return( 1 ); - } + unichar key = 0; + vlc_value_t val; + unsigned int i_pressed_modifiers = 0; + val.i_int = 0; - p_vout->i_changes &= ~VOUT_FULLSCREEN_CHANGE; - } + i_pressed_modifiers = [o_event modifierFlags]; - if( p_vout->i_changes & VOUT_SIZE_CHANGE ) - { - if( !p_vout->p_sys->i_opengl ) - { - QTScaleMatrix( p_vout ); - SetDSequenceMatrix( p_vout->p_sys->i_seq, - p_vout->p_sys->p_matrix ); - } - - p_vout->i_changes &= ~VOUT_SIZE_CHANGE; - } + if( i_pressed_modifiers & NSShiftKeyMask ) + val.i_int |= KEY_MODIFIER_SHIFT; + if( i_pressed_modifiers & NSControlKeyMask ) + val.i_int |= KEY_MODIFIER_CTRL; + if( i_pressed_modifiers & NSAlternateKeyMask ) + val.i_int |= KEY_MODIFIER_ALT; + if( i_pressed_modifiers & NSCommandKeyMask ) + val.i_int |= KEY_MODIFIER_COMMAND; - /* hide/show mouse cursor - * this code looks unnecessarily complicated, but is necessary like this. - * it has to deal with multiple monitors and therefore checks a lot */ - if( !p_vout->p_sys->b_mouse_moved && p_vout->b_fullscreen ) + key = [[o_event charactersIgnoringModifiers] characterAtIndex: 0]; + + if( key ) { - if( mdate() - p_vout->p_sys->i_time_mouse_last_moved > 3000000 ) + /* Escape should always get you out of fullscreen */ + if( key == (unichar) 0x1b ) { - VLCHideMouse( p_vout, YES ); + if( p_real_vout && [self isFullscreen] ) + { + [self toggleFullscreen]; + } } - } - else if ( p_vout->p_sys->b_mouse_moved && p_vout->b_fullscreen ) - { - VLCHideMouse( p_vout, NO ); - } - - /* disable screen saver */ - UpdateSystemActivity( UsrActivity ); - - return( 0 ); -} - -/***************************************************************************** - * vout_Display: displays previously rendered output - ***************************************************************************** - * This function sends the currently rendered image to the display. - *****************************************************************************/ -static void DisplayVideo( vout_thread_t *p_vout, picture_t *p_pic ) -{ - if( !p_vout->p_sys->i_opengl ) - { - OSErr err; - CodecFlags flags; - - if( ( err = DecompressSequenceFrameS( - p_vout->p_sys->i_seq, - p_pic->p_sys->p_info, - p_pic->p_sys->i_size, - codecFlagUseImageBuffer, &flags, nil ) != noErr ) ) + else if ( key == ' ' ) { - msg_Warn( p_vout, "DecompressSequenceFrameS failed: %d", err ); + vlc_value_t val; + val.i_int = config_GetInt( p_vout, "key-play-pause" ); + var_Set( p_vout->p_libvlc, "key-pressed", val ); } else { - QDFlushPortBuffer( p_vout->p_sys->p_qdport, nil ); + val.i_int |= CocoaKeyToVLC( key ); + var_Set( p_vout->p_libvlc, "key-pressed", val ); } } else { - if( [p_vout->p_sys->o_glview lockFocusIfCanDraw] ) + [super keyDown: o_event]; + } +} + +- (void)mouseDown:(NSEvent *)o_event +{ + vlc_value_t val; + + if( p_vout ) + { + if( ( [o_event type] == NSLeftMouseDown ) && + ( ! ( [o_event modifierFlags] & NSControlKeyMask ) ) ) { - int i_index; - int i_old = p_vout->p_sys->i_cur_pic; - int i_new = ( i_old + 1 ) % 2; - - /* Draw the new picture */ - p_vout->p_sys->i_cur_pic = i_new; - [p_vout->p_sys->o_glview drawRect: - [p_vout->p_sys->o_glview bounds]]; - - /* Reload the other texture. Textures have to be reloaded - before the buffer is filled (thanks to gcc from - arstechnica forums) */ - [p_vout->p_sys->o_glview reloadTexture: i_old]; - - /* Switch buffers */ - p_pic->p_data = p_vout->p_sys->p_data[i_old]; - p_pic->p[0].p_pixels = p_pic->p_data; - for( i_index = 1; i_index < p_pic->i_planes; i_index++ ) + if( [o_event clickCount] <= 1 ) + { + /* single clicking */ + var_Get( p_vout, "mouse-button-down", &val ); + val.i_int |= 1; + var_Set( p_vout, "mouse-button-down", val ); + } + else { - p_pic->p[i_index].p_pixels = - p_pic->p[i_index-1].p_pixels + - p_pic->p[i_index-1].i_lines * - p_pic->p[i_index-1].i_pitch; + /* multiple clicking */ + [self toggleFullscreen]; } - [p_vout->p_sys->o_glview unlockFocus]; + } + else if( ( [o_event type] == NSRightMouseDown ) || + ( ( [o_event type] == NSLeftMouseDown ) && + ( [o_event modifierFlags] & NSControlKeyMask ) ) ) + { + msg_Dbg( p_vout, "received NSRightMouseDown (generic method) or Ctrl clic" ); + [NSMenu popUpContextMenu: [[VLCMain sharedInstance] getVoutMenu] withEvent: o_event forView: [[[VLCMain sharedInstance] getControls] getVoutView]]; } } + + [super mouseDown: o_event]; } -/***************************************************************************** - * ControlVideo: control facility for the vout - *****************************************************************************/ -static int ControlVideo( vout_thread_t *p_vout, int i_query, va_list args ) +- (void)otherMouseDown:(NSEvent *)o_event { - switch( i_query ) + vlc_value_t val; + + if( p_vout && [o_event type] == NSOtherMouseDown ) { - case VOUT_SET_ZOOM: - return VLC_SUCCESS; + var_Get( p_vout, "mouse-button-down", &val ); + val.i_int |= 2; + var_Set( p_vout, "mouse-button-down", val ); + } - case VOUT_SET_STAY_ON_TOP: - return VLC_SUCCESS; + [super mouseDown: o_event]; +} - case VOUT_CLOSE: - case VOUT_REPARENT: - default: - return vout_vaControlDefault( p_vout, i_query, args ); +- (void)rightMouseDown:(NSEvent *)o_event +{ + if( p_vout && [o_event type] == NSRightMouseDown ) + { + msg_Dbg( p_vout, "received NSRightMouseDown (specific method)" ); + [NSMenu popUpContextMenu: [[VLCMain sharedInstance] getVoutMenu] withEvent: o_event forView: [[[VLCMain sharedInstance] getControls] getVoutView]]; } + + [super mouseDown: o_event]; } -/***************************************************************************** - * CoCreateWindow: create new window - ***************************************************************************** - * Returns 0 on success, 1 otherwise - *****************************************************************************/ -static int CoCreateWindow( vout_thread_t *p_vout ) +- (void)mouseUp:(NSEvent *)o_event { vlc_value_t val; - NSScreen * o_screen; - vlc_bool_t b_main_screen; - NSAutoreleasePool *o_pool = [[NSAutoreleasePool alloc] init]; - - /* Allocate the window. It will be autoreleased when it receives 'close' */ - p_vout->p_sys->o_window = [VLCWindow alloc]; - [p_vout->p_sys->o_window setReleasedWhenClosed: YES]; - /* Find out on which screen to open the window */ - var_Get( p_vout, "video-device", &val ); - if( val.i_int < 0 ) + if( p_vout && [o_event type] == NSLeftMouseUp ) { - /* No preference specified. Use the main screen */ - o_screen = [NSScreen mainScreen]; - b_main_screen = 1; + vlc_value_t b_val; + b_val.b_bool = VLC_TRUE; + var_Set( p_vout, "mouse-clicked", b_val ); + + var_Get( p_vout, "mouse-button-down", &val ); + val.i_int &= ~1; + var_Set( p_vout, "mouse-button-down", val ); } - else - { - NSArray *o_screens = [NSScreen screens]; - unsigned int i_index = val.i_int; - - if( [o_screens count] < i_index ) - { - o_screen = [NSScreen mainScreen]; - b_main_screen = 1; - } - else - { - i_index--; - o_screen = [o_screens objectAtIndex: i_index]; - val.i_int = i_index; - var_Set( p_vout, "macosx-vdev", val ); - b_main_screen = (i_index == 0); - } - } - if( p_vout->b_fullscreen ) - { - NSRect screen_rect = [o_screen frame]; - screen_rect.origin.x = screen_rect.origin.y = 0; + [super mouseUp: o_event]; +} - if ( b_main_screen && p_vout->p_sys->p_fullscreen_state == NULL ) - BeginFullScreen( &p_vout->p_sys->p_fullscreen_state, NULL, 0, 0, - NULL, NULL, fullScreenAllowEvents ); +- (void)otherMouseUp:(NSEvent *)o_event +{ + vlc_value_t val; - /* Creates a window with size: screen_rect on o_screen */ - [p_vout->p_sys->o_window - initWithContentRect: screen_rect - styleMask: NSBorderlessWindowMask - backing: NSBackingStoreBuffered - defer: NO screen: o_screen]; - - [p_vout->p_sys->o_window setVout: p_vout]; - p_vout->p_sys->b_mouse_moved = YES; - p_vout->p_sys->i_time_mouse_last_moved = mdate(); - } - else + if( p_vout && [o_event type] == NSOtherMouseUp ) { - unsigned int i_stylemask = NSTitledWindowMask | - NSMiniaturizableWindowMask | - NSClosableWindowMask | - NSResizableWindowMask; - - if ( p_vout->p_sys->p_fullscreen_state != NULL ) - EndFullScreen ( p_vout->p_sys->p_fullscreen_state, NULL ); - p_vout->p_sys->p_fullscreen_state = NULL; - - [p_vout->p_sys->o_window - initWithContentRect: p_vout->p_sys->s_rect - styleMask: i_stylemask - backing: NSBackingStoreBuffered - defer: NO screen: o_screen]; - - [p_vout->p_sys->o_window setVout: p_vout]; - var_Get( p_vout, "macosx-opaqueness", &val); - [p_vout->p_sys->o_window setAlphaValue: val.f_float]; - - var_Get( p_vout, "video-on-top", &val ); - if( val.b_bool ) [p_vout->p_sys->o_window setLevel: NSStatusWindowLevel]; - - if( !p_vout->p_sys->b_pos_saved ) [p_vout->p_sys->o_window center]; + var_Get( p_vout, "mouse-button-down", &val ); + val.i_int &= ~2; + var_Set( p_vout, "mouse-button-down", val ); } - if( !p_vout->p_sys->i_opengl ) - { -#define o_qtview p_vout->p_sys->o_qtview - o_qtview = [[VLCQTView alloc] init]; - [p_vout->p_sys->o_window setContentView: o_qtview]; - [o_qtview autorelease]; - - /* Retrieve the QuickDraw port */ - [o_qtview lockFocus]; - p_vout->p_sys->p_qdport = [o_qtview qdPort]; - [o_qtview unlockFocus]; -#undef o_qtview - } - else - { -#define o_glview p_vout->p_sys->o_glview - o_glview = [[VLCGLView alloc] initWithFrame: p_vout->p_sys->s_rect vout: p_vout]; - [p_vout->p_sys->o_window setContentView: o_glview]; - [o_glview autorelease]; -#undef o_glview - } - - [p_vout->p_sys->o_window updateTitle]; - [p_vout->p_sys->o_window makeKeyAndOrderFront: nil]; - - [o_pool release]; - return( 0); + [super mouseUp: o_event]; } -/***************************************************************************** - * CoDestroyWindow: destroy window - ***************************************************************************** - * Returns 0 on success, 1 otherwise - *****************************************************************************/ -static int CoDestroyWindow( vout_thread_t *p_vout ) +- (void)rightMouseUp:(NSEvent *)o_event { - NSAutoreleasePool *o_pool = [[NSAutoreleasePool alloc] init]; - VLCHideMouse( p_vout, NO ); - - if( !p_vout->b_fullscreen ) + if( p_vout && [o_event type] == NSRightMouseUp ) { - NSRect s_rect; + /* FIXME: this isn't the appropriate place, but we can't receive + * NSRightMouseDown some how */ + msg_Dbg( p_vout, "received NSRightMouseUp" ); + [NSMenu popUpContextMenu: [[VLCMain sharedInstance] getVoutMenu] withEvent: o_event forView: [[[VLCMain sharedInstance] getControls] getVoutView]]; + } - /* remember the window position before we enter fullscreen */ - s_rect = [[p_vout->p_sys->o_window contentView] frame]; - p_vout->p_sys->s_rect.size = s_rect.size; + [super mouseUp: o_event]; +} - s_rect = [p_vout->p_sys->o_window frame]; - p_vout->p_sys->s_rect.origin = s_rect.origin; +- (void)mouseDragged:(NSEvent *)o_event +{ + [self mouseMoved: o_event]; +} - p_vout->p_sys->b_pos_saved = YES; - } - - p_vout->p_sys->p_qdport = nil; - [p_vout->p_sys->o_window close]; - p_vout->p_sys->o_window = nil; - [o_pool release]; - return 0; +- (void)otherMouseDragged:(NSEvent *)o_event +{ + [self mouseMoved: o_event]; } -/***************************************************************************** - * CoToggleFullscreen: toggle fullscreen - ***************************************************************************** - * Returns 0 on success, 1 otherwise - *****************************************************************************/ -static int CoToggleFullscreen( vout_thread_t *p_vout ) +- (void)rightMouseDragged:(NSEvent *)o_event { - NSAutoreleasePool *o_pool = [[NSAutoreleasePool alloc] init]; + [self mouseMoved: o_event]; +} - if( !p_vout->p_sys->i_opengl ) - { - QTDestroySequence( p_vout ); - } +- (void)mouseMoved:(NSEvent *)o_event +{ + NSPoint ml; + NSRect s_rect; + BOOL b_inside; - if( CoDestroyWindow( p_vout ) ) + if( p_vout ) { - msg_Err( p_vout, "unable to destroy window" ); - return( 1 ); - } - - p_vout->b_fullscreen = !p_vout->b_fullscreen; + s_rect = [o_view bounds]; + ml = [o_view convertPoint: [o_event locationInWindow] fromView: nil]; + b_inside = [o_view mouse: ml inRect: s_rect]; - if( CoCreateWindow( p_vout ) ) - { - msg_Err( p_vout, "unable to create window" ); - return( 1 ); - } + if( b_inside ) + { + vlc_value_t val; + unsigned int i_width, i_height, i_x, i_y; - if( p_vout->p_sys->i_opengl ) - { - [p_vout->p_sys->o_glview lockFocus]; - [p_vout->p_sys->o_glview initTextures]; - [p_vout->p_sys->o_glview reshape]; - [p_vout->p_sys->o_glview drawRect: - [p_vout->p_sys->o_glview bounds]]; - [p_vout->p_sys->o_glview unlockFocus]; - } - else - { - SetPort( p_vout->p_sys->p_qdport ); - QTScaleMatrix( p_vout ); + vout_PlacePicture( p_vout, (unsigned int)s_rect.size.width, + (unsigned int)s_rect.size.height, + &i_x, &i_y, &i_width, &i_height ); - if( QTCreateSequence( p_vout ) ) - { - msg_Err( p_vout, "unable to create sequence" ); - return( 1 ); - } + val.i_int = ( ((int)ml.x) - i_x ) * + p_vout->render.i_width / i_width; + var_Set( p_vout, "mouse-x", val ); + + if( [[o_view className] isEqualToString: @"VLCGLView"] ) + { + val.i_int = ( ((int)(s_rect.size.height - ml.y)) - i_y ) * + p_vout->render.i_height / i_height; + } + else + { + val.i_int = ( ((int)ml.y) - i_y ) * + p_vout->render.i_height / i_height; + } + var_Set( p_vout, "mouse-y", val ); + + val.b_bool = VLC_TRUE; + var_Set( p_vout, "mouse-moved", val ); + } + if( [self isFullscreen] ) + [[[[VLCMain sharedInstance] getControls] getFSPanel] fadeIn]; } - [o_pool release]; - return( 0 ); + [super mouseMoved: o_event]; } -/***************************************************************************** - * VLCHideMouse: if b_hide then hide the cursor - *****************************************************************************/ -static void VLCHideMouse ( vout_thread_t *p_vout, BOOL b_hide ) +- (BOOL)acceptsFirstResponder { - BOOL b_inside; - NSRect s_rect; - NSPoint ml; - NSWindow *o_window = p_vout->p_sys->o_window; - NSView *o_contents = [o_window contentView]; - - s_rect = [o_contents bounds]; - ml = [o_window convertScreenToBase:[NSEvent mouseLocation]]; - ml = [o_contents convertPoint:ml fromView:nil]; - b_inside = [o_contents mouse: ml inRect: s_rect]; - - if ( b_hide && b_inside ) - { - /* only hide if mouse over VLCQTView */ - [NSCursor setHiddenUntilMouseMoves: YES]; - } - else if ( !b_hide ) - { - [NSCursor setHiddenUntilMouseMoves: NO]; - } - p_vout->p_sys->b_mouse_moved = NO; - p_vout->p_sys->i_time_mouse_last_moved = mdate(); - return; + return YES; } -/***************************************************************************** - * QTScaleMatrix: scale matrix - *****************************************************************************/ -static void QTScaleMatrix( vout_thread_t *p_vout ) +- (BOOL)becomeFirstResponder { - Rect s_rect; - vlc_value_t val; - unsigned int i_width, i_height; - Fixed factor_x, factor_y; - unsigned int i_offset_x = 0; - unsigned int i_offset_y = 0; + return YES; +} - GetPortBounds( p_vout->p_sys->p_qdport, &s_rect ); +- (BOOL)resignFirstResponder +{ + /* We need to stay the first responder or we'll miss some + events */ + return NO; +} - i_width = s_rect.right - s_rect.left; - i_height = s_rect.bottom - s_rect.top; +/* Class methods used by the different vout modules */ - var_Get( p_vout, "macosx-stretch", &val ); - if( val.b_bool ) ++ (vout_thread_t *)getRealVout: (vout_thread_t *)p_vout +{ + /* p_real_vout: the vout we have to use to check for video-on-top + and a few other things. If we are the QuickTime output, it's us. + It we are the OpenGL provider, it is our parent. */ + if( p_vout->i_object_type == VLC_OBJECT_OPENGL ) { - factor_x = FixDiv( Long2Fix( i_width ), - Long2Fix( p_vout->output.i_width ) ); - factor_y = FixDiv( Long2Fix( i_height ), - Long2Fix( p_vout->output.i_height ) ); - + return (vout_thread_t *) p_vout->p_parent; } - else if( i_height * p_vout->output.i_aspect < i_width * VOUT_ASPECT_FACTOR ) + else { - int i_adj_width = i_height * p_vout->output.i_aspect / - VOUT_ASPECT_FACTOR; + return p_vout; + } - factor_x = FixDiv( Long2Fix( i_adj_width ), - Long2Fix( p_vout->output.i_width ) ); - factor_y = FixDiv( Long2Fix( i_height ), - Long2Fix( p_vout->output.i_height ) ); +} - i_offset_x = (i_width - i_adj_width) / 2; - } - else ++ (id)getVoutView: (vout_thread_t *)p_vout subView: (NSView *)view + frame: (NSRect *)s_frame +{ + vlc_value_t value_drawable; + int i_timeout; + id o_return = nil; + + var_Get( p_vout->p_libvlc, "drawable", &value_drawable ); + + var_Create( p_vout, "macosx-vdev", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT ); + var_Create( p_vout, "macosx-stretch", VLC_VAR_BOOL | VLC_VAR_DOINHERIT ); + var_Create( p_vout, "macosx-opaqueness", VLC_VAR_FLOAT | VLC_VAR_DOINHERIT ); + var_Create( p_vout, "macosx-background", VLC_VAR_BOOL | VLC_VAR_DOINHERIT ); + var_Create( p_vout, "macosx-black", VLC_VAR_BOOL | VLC_VAR_DOINHERIT ); + var_Create( p_vout, "macosx-embedded", VLC_VAR_BOOL | VLC_VAR_DOINHERIT ); + + + /* We only wait for NSApp to initialise if we're not embedded (as in the + * case of the Mozilla plugin). We can tell whether we're embedded or not + * by examining the "drawable" value: if it's zero, we're running in the + * main Mac intf; if it's non-zero, we're embedded. */ + if( value_drawable.i_int == 0 ) { - int i_adj_height = i_width * VOUT_ASPECT_FACTOR / - p_vout->output.i_aspect; + /* Wait for a MacOS X interface to appear. Timeout is 2 seconds. */ + for( i_timeout = 20 ; i_timeout-- ; ) + { + if( NSApp == NULL ) + { + msleep( INTF_IDLE_SLEEP ); + } + } - factor_x = FixDiv( Long2Fix( i_width ), - Long2Fix( p_vout->output.i_width ) ); - factor_y = FixDiv( Long2Fix( i_adj_height ), - Long2Fix( p_vout->output.i_height ) ); + if( NSApp == NULL ) + { + /* No MacOS X intf, unable to communicate with MT */ + msg_Err( p_vout, "no MacOS X interface present" ); + return nil; + } + else + { + if ( VLCIntf && !(p_vout->b_fullscreen) && + !(var_GetBool( p_vout, "macosx-background" )) && + var_GetBool( p_vout, "macosx-embedded") ) + { + o_return = [[[VLCMain sharedInstance] getEmbeddedList] + getEmbeddedVout]; + } + } + } - i_offset_y = (i_height - i_adj_height) / 2; + /* No embedded vout is available */ + if( o_return == nil ) + { + NSRect null_rect; + bzero( &null_rect, sizeof( NSRect ) ); + o_return = [[VLCDetachedVoutView alloc] initWithFrame: null_rect ]; } - - SetIdentityMatrix( p_vout->p_sys->p_matrix ); + [o_return setVout: p_vout subView: view frame: s_frame]; + return o_return; +} + +- (void)enterFullscreen +{ + [[o_view class] performSelectorOnMainThread:@selector(resetVout:) withObject:[NSValue valueWithPointer:p_vout] waitUntilDone:YES]; + [[[[VLCMain sharedInstance] getControls] getFSPanel] setActive: nil]; +} - ScaleMatrix( p_vout->p_sys->p_matrix, - factor_x, factor_y, - Long2Fix(0), Long2Fix(0) ); - - TranslateMatrix( p_vout->p_sys->p_matrix, - Long2Fix(i_offset_x), Long2Fix(i_offset_y) ); +- (void)leaveFullscreen +{ + [[o_view class] performSelectorOnMainThread:@selector(resetVout:) withObject:[NSValue valueWithPointer:p_vout] waitUntilDone:YES]; + [[[[VLCMain sharedInstance] getControls] getFSPanel] setNonActive: nil]; } +@end + /***************************************************************************** - * QTCreateSequence: create a new sequence - ***************************************************************************** - * Returns 0 on success, 1 otherwise + * VLCDetachedVoutView implementation *****************************************************************************/ -static int QTCreateSequence( vout_thread_t *p_vout ) -{ - OSErr err; - ImageDescriptionPtr p_descr; - - HLock( (Handle)p_vout->p_sys->h_img_descr ); - p_descr = *p_vout->p_sys->h_img_descr; - - p_descr->idSize = sizeof(ImageDescription); - p_descr->cType = p_vout->p_sys->i_codec; - p_descr->version = 1; - p_descr->revisionLevel = 0; - p_descr->vendor = 'appl'; - p_descr->width = p_vout->output.i_width; - p_descr->height = p_vout->output.i_height; - p_descr->hRes = Long2Fix(72); - p_descr->vRes = Long2Fix(72); - p_descr->spatialQuality = codecLosslessQuality; - p_descr->frameCount = 1; - p_descr->clutID = -1; - p_descr->dataSize = 0; - p_descr->depth = 24; - - HUnlock( (Handle)p_vout->p_sys->h_img_descr ); - - if( ( err = DecompressSequenceBeginS( - &p_vout->p_sys->i_seq, - p_vout->p_sys->h_img_descr, - NULL, 0, - p_vout->p_sys->p_qdport, - NULL, NULL, - p_vout->p_sys->p_matrix, - 0, NULL, - codecFlagUseImageBuffer, - codecLosslessQuality, - p_vout->p_sys->img_dc ) ) ) +@implementation VLCDetachedVoutView + +- (id)initWithFrame: (NSRect)frameRect +{ + [super initWithFrame: frameRect]; + i_time_mouse_last_moved = 0; + return self; +} + +- (bool)setVout: (vout_thread_t *) p_arg_vout subView: (NSView *) view + frame: (NSRect *) s_arg_frame +{ + BOOL b_return = [super setVout: p_arg_vout subView: view frame:s_arg_frame]; + i_time_mouse_last_moved = mdate(); + o_window = [[VLCVoutWindow alloc] initWithVout: p_arg_vout view: self + frame: s_arg_frame]; + [self updateTitle]; + [view setFrame: [self frame]]; + + if( var_GetBool( p_real_vout, "video-on-top" ) ) { - msg_Err( p_vout, "DecompressSequenceBeginS failed: %d", err ); - return( 1 ); + [o_window setLevel: NSStatusWindowLevel]; } - return( 0 ); + + [o_window setAcceptsMouseMovedEvents: TRUE]; + return b_return; } -/***************************************************************************** - * QTDestroySequence: destroy sequence - *****************************************************************************/ -static void QTDestroySequence( vout_thread_t *p_vout ) +- (void)closeVout { - CDSequenceEnd( p_vout->p_sys->i_seq ); + [o_window closeWindow]; + [o_window setAcceptsMouseMovedEvents: NO]; + i_time_mouse_last_moved = 0; + [super closeVout]; } -/***************************************************************************** - * QTNewPicture: allocate a picture - ***************************************************************************** - * Returns 0 on success, 1 otherwise - *****************************************************************************/ -static int QTNewPicture( vout_thread_t *p_vout, picture_t *p_pic ) +- (void)mouseMoved:(NSEvent *)o_event { - int i_width = p_vout->output.i_width; - int i_height = p_vout->output.i_height; + i_time_mouse_last_moved = mdate(); + [super mouseMoved: o_event]; +} - /* We know the chroma, allocate a buffer which will be used - * directly by the decoder */ - p_pic->p_sys = malloc( sizeof( picture_sys_t ) ); +- (void)hideMouse:(BOOL)b_hide +{ + BOOL b_inside; + NSPoint ml; + NSView *o_contents = [o_window contentView]; - if( p_pic->p_sys == NULL ) + ml = [o_window convertScreenToBase:[NSEvent mouseLocation]]; + ml = [o_contents convertPoint:ml fromView:nil]; + b_inside = [o_contents mouse: ml inRect: [o_contents bounds]]; + + if( b_hide && b_inside ) { - return( -1 ); + [NSCursor setHiddenUntilMouseMoves: YES]; } - - switch( p_vout->output.i_chroma ) + else if( !b_hide ) { - case VLC_FOURCC('I','4','2','0'): - - p_pic->p_sys->p_info = (void *)&p_pic->p_sys->pixmap_i420; - p_pic->p_sys->i_size = sizeof(PlanarPixmapInfoYUV420); - - /* Allocate the memory buffer */ - p_pic->p_data = vlc_memalign( &p_pic->p_data_orig, - 16, i_width * i_height * 3 / 2 ); - - /* Y buffer */ - p_pic->Y_PIXELS = p_pic->p_data; - p_pic->p[Y_PLANE].i_lines = i_height; - p_pic->p[Y_PLANE].i_pitch = i_width; - p_pic->p[Y_PLANE].i_pixel_pitch = 1; - p_pic->p[Y_PLANE].i_visible_pitch = i_width; - - /* U buffer */ - p_pic->U_PIXELS = p_pic->Y_PIXELS + i_height * i_width; - p_pic->p[U_PLANE].i_lines = i_height / 2; - p_pic->p[U_PLANE].i_pitch = i_width / 2; - p_pic->p[U_PLANE].i_pixel_pitch = 1; - p_pic->p[U_PLANE].i_visible_pitch = i_width / 2; - - /* V buffer */ - p_pic->V_PIXELS = p_pic->U_PIXELS + i_height * i_width / 4; - p_pic->p[V_PLANE].i_lines = i_height / 2; - p_pic->p[V_PLANE].i_pitch = i_width / 2; - p_pic->p[V_PLANE].i_pixel_pitch = 1; - p_pic->p[V_PLANE].i_visible_pitch = i_width / 2; - - /* We allocated 3 planes */ - p_pic->i_planes = 3; - -#define P p_pic->p_sys->pixmap_i420 - P.componentInfoY.offset = (void *)p_pic->Y_PIXELS - - p_pic->p_sys->p_info; - P.componentInfoCb.offset = (void *)p_pic->U_PIXELS - - p_pic->p_sys->p_info; - P.componentInfoCr.offset = (void *)p_pic->V_PIXELS - - p_pic->p_sys->p_info; - - P.componentInfoY.rowBytes = i_width; - P.componentInfoCb.rowBytes = i_width / 2; - P.componentInfoCr.rowBytes = i_width / 2; -#undef P - - break; - - default: - /* Unknown chroma, tell the guy to get lost */ - free( p_pic->p_sys ); - msg_Err( p_vout, "never heard of chroma 0x%.8x (%4.4s)", - p_vout->output.i_chroma, (char*)&p_vout->output.i_chroma ); - p_pic->i_planes = 0; - return( -1 ); + [NSCursor setHiddenUntilMouseMoves: NO]; } - - return( 0 ); } -/***************************************************************************** - * QTFreePicture: destroy a picture allocated with QTNewPicture - *****************************************************************************/ -static void QTFreePicture( vout_thread_t *p_vout, picture_t *p_pic ) +- (void)manage { - switch( p_vout->output.i_chroma ) + [super manage]; + if( p_vout->b_fullscreen ) { - case VLC_FOURCC('I','4','2','0'): - free( p_pic->p_data_orig ); - break; + if( mdate() - i_time_mouse_last_moved > 3000000 ) + { + [self hideMouse: YES]; + } + } + else + { + [self hideMouse: NO]; } - - free( p_pic->p_sys ); } +@end + /***************************************************************************** - * VLCWindow implementation + * VLCEmbeddedVoutView implementation *****************************************************************************/ -@implementation VLCWindow -- (void)setVout:(vout_thread_t *)_p_vout -{ - p_vout = _p_vout; -} +@implementation VLCEmbeddedVoutView -- (vout_thread_t *)getVout +- (id)initWithFrame: (NSRect)frameRect { - return( p_vout ); + [super initWithFrame: frameRect]; + b_used = NO; + [[[VLCMain sharedInstance] getEmbeddedList] addEmbeddedVout: self]; + return self; } -- (void)scaleWindowWithFactor: (float)factor +- (BOOL)setVout: (vout_thread_t *) p_arg_vout subView: (NSView *) view + frame: (NSRect *)s_arg_frame showWindow: (BOOL)b_show_window { - NSSize newsize; - int i_corrected_height, i_corrected_width; - NSPoint topleftbase; - NSPoint topleftscreen; - - if ( !p_vout->b_fullscreen ) + BOOL b_return; + b_return = [super setVout: p_arg_vout subView: view frame: s_arg_frame]; + if( b_return ) { - topleftbase.x = 0; - topleftbase.y = [self frame].size.height; - topleftscreen = [self convertBaseToScreen: topleftbase]; - - if( p_vout->output.i_height * p_vout->output.i_aspect > - p_vout->output.i_width * VOUT_ASPECT_FACTOR ) - { - i_corrected_width = p_vout->output.i_height * p_vout->output.i_aspect / - VOUT_ASPECT_FACTOR; - newsize.width = (int) ( i_corrected_width * factor ); - newsize.height = (int) ( p_vout->render.i_height * factor ); - } - else + o_window = [self window]; + if (b_show_window) + [o_window makeKeyAndOrderFront: self]; + [o_window setAcceptsMouseMovedEvents: TRUE]; + + if( var_GetBool( p_real_vout, "video-on-top" ) ) { - i_corrected_height = p_vout->output.i_width * VOUT_ASPECT_FACTOR / - p_vout->output.i_aspect; - newsize.width = (int) ( p_vout->render.i_width * factor ); - newsize.height = (int) ( i_corrected_height * factor ); + [o_window setLevel: NSStatusWindowLevel]; } - - [self setContentSize: newsize]; - - [self setFrameTopLeftPoint: topleftscreen]; - p_vout->i_changes |= VOUT_SIZE_CHANGE; - } -} -- (void)toggleFloatOnTop -{ - vlc_value_t val; - if( var_Get( p_vout, "video-on-top", &val )>=0 && val.b_bool) - { - val.b_bool = VLC_FALSE; - var_Set( p_vout, "video-on-top", val ); - [p_vout->p_sys->o_window setLevel: NSNormalWindowLevel]; - } - else - { - val.b_bool = VLC_TRUE; - var_Set( p_vout, "video-on-top", val ); - [p_vout->p_sys->o_window setLevel: NSStatusWindowLevel]; + [view setFrameSize: [self frame].size]; } + return b_return; } -- (void)toggleFullscreen +- (BOOL)setVout: (vout_thread_t *) p_arg_vout subView: (NSView *) view + frame: (NSRect *) s_arg_frame + { - vlc_value_t val; - val.b_bool = !p_vout->b_fullscreen; - var_Set( p_vout, "fullscreen", val ); + return [self setVout: p_arg_vout subView: view frame:s_arg_frame showWindow: YES]; } -- (BOOL)isFullscreen +- (void)setUsed: (BOOL)b_new_used { - return( p_vout->b_fullscreen ); + b_used = b_new_used; } -- (BOOL)canBecomeKeyWindow +- (BOOL)isUsed { - return( YES ); + return b_used; } -/* -- (BOOL)performKeyEquivalent:(NSEvent *)o_event + +- (void)closeVout { - return [[VLCMain sharedInstance] hasDefinedShortcutKey:o_event]; + [super closeVout]; + [o_window setAcceptsMouseMovedEvents: NO]; + [[[VLCMain sharedInstance] getEmbeddedList] releaseEmbeddedVout: self]; } -*/ -- (void)keyDown:(NSEvent *)o_event -{ - unichar key = 0; - vlc_value_t val; - unsigned int i_pressed_modifiers = 0; - val.i_int = 0; - - i_pressed_modifiers = [o_event modifierFlags]; - if( i_pressed_modifiers & NSShiftKeyMask ) - val.i_int |= KEY_MODIFIER_SHIFT; - if( i_pressed_modifiers & NSControlKeyMask ) - val.i_int |= KEY_MODIFIER_CTRL; - if( i_pressed_modifiers & NSAlternateKeyMask ) - val.i_int |= KEY_MODIFIER_ALT; - if( i_pressed_modifiers & NSCommandKeyMask ) - val.i_int |= KEY_MODIFIER_COMMAND; - key = [[o_event charactersIgnoringModifiers] characterAtIndex: 0]; +@end - if( key ) - { - /* Escape should always get you out of fullscreen */ - if( key == (unichar) 0x1b ) - { - if( [self isFullscreen] ) - { - [self toggleFullscreen]; - } - } - else if ( key == ' ' ) - { - playlist_t *p_playlist = vlc_object_find( p_vout, VLC_OBJECT_PLAYLIST, - FIND_ANYWHERE ); - if ( p_playlist != NULL ) - { - playlist_Pause( p_playlist ); - vlc_object_release( p_playlist); - } - } - else - { - val.i_int |= CocoaKeyToVLC( key ); - var_Set( p_vout->p_vlc, "key-pressed", val ); - } - } - else - { - [super keyDown: o_event]; - } +@implementation VLCDetachedEmbeddedVoutView +- (void)awakeFromNib +{ + o_embeddedwindow = [self window]; } -- (void)updateTitle +- (BOOL)setVout: (vout_thread_t *) p_arg_vout subView: (NSView *) view + frame: (NSRect *) s_arg_frame { - NSMutableString * o_title; - playlist_t * p_playlist = vlc_object_find( p_vout, VLC_OBJECT_PLAYLIST, - FIND_ANYWHERE ); - - if( p_playlist == NULL ) + BOOL b_return = [super setVout: p_arg_vout subView: view frame: s_arg_frame showWindow: NO]; + + /* o_window needs to point to our o_embeddedwindow, super might have set it + * to the fullscreen window that o_embeddedwindow setups during fullscreen */ + o_window = o_embeddedwindow; + + if( b_return ) { - return; - } + [o_window lockFullscreenAnimation]; - vlc_mutex_lock( &p_playlist->object_lock ); - o_title = [NSMutableString stringWithUTF8String: - p_playlist->pp_items[p_playlist->i_index]->input.psz_uri]; - vlc_mutex_unlock( &p_playlist->object_lock ); + [o_window setAlphaValue: var_GetFloat( p_vout, "macosx-opaqueness" )]; - vlc_object_release( p_playlist ); + [self updateTitle]; - if( o_title != nil ) - { - NSRange prefix_range = [o_title rangeOfString: @"file:"]; - if( prefix_range.location != NSNotFound ) - { - [o_title deleteCharactersInRange: prefix_range]; - } + /* Make the window the front and key window before animating */ + if ([o_window isVisible] && (![o_window isFullscreen])) + [o_window makeKeyAndOrderFront: self]; + + [self scaleWindowWithFactor: 1.0 animate: [o_window isVisible] && (![o_window isFullscreen])]; + + [o_window setAspectRatio:NSMakeSize([o_window frame].size.width, [o_window frame].size.height)]; + + /* Make sure our window is visible, if we are not in fullscreen */ + if (![o_window isFullscreen]) + [o_window makeKeyAndOrderFront: self]; + [o_window unlockFullscreenAnimation]; - [self setTitleWithRepresentedFilename: o_title]; - } - else - { - [self setTitle: - [NSString stringWithCString: VOUT_TITLE " (QuickTime)"]]; } + return b_return; } -/* This is actually the same as VLCControls::stop. */ -- (BOOL)windowShouldClose:(id)sender +- (void)closeVout { - playlist_t * p_playlist = vlc_object_find( p_vout, VLC_OBJECT_PLAYLIST, - FIND_ANYWHERE ); - if( p_playlist == NULL ) - { - return NO; - } + playlist_t * p_playlist = pl_Yield( VLCIntf ); - playlist_Stop( p_playlist ); + if(!playlist_IsPlaying( p_playlist )) + [o_window performSelectorOnMainThread: @selector(orderOut:) withObject: self waitUntilDone: YES]; + vlc_object_release( p_playlist ); - /* The window will be closed by the intf later. */ - return NO; + [super closeVout]; } -@end - -/* Common QT and OpenGL code to catch mouse events */ -#define CATCH_MOUSE_EVENTS \ -- (BOOL)acceptsFirstResponder \ -{ \ - return( YES ); \ -} \ - \ -- (BOOL)becomeFirstResponder \ -{ \ - id o_window = [self window]; \ - \ - [o_window setAcceptsMouseMovedEvents: YES]; \ - return( YES ); \ -} \ - \ -- (BOOL)resignFirstResponder \ -{ \ - vout_thread_t * vout; \ - id o_window = [self window]; \ - vout = (vout_thread_t *)[o_window getVout]; \ - \ - [o_window setAcceptsMouseMovedEvents: NO]; \ - VLCHideMouse( vout, NO ); \ - return( YES ); \ -} \ - \ -- (void)mouseDown:(NSEvent *)o_event \ -{ \ - vout_thread_t * vout; \ - id o_window = [self window]; \ - vout = (vout_thread_t *)[o_window getVout]; \ - vlc_value_t val; \ - \ - switch( [o_event type] ) \ - { \ - case NSLeftMouseDown: \ - { \ - var_Get( vout, "mouse-button-down", &val ); \ - val.i_int |= 1; \ - var_Set( vout, "mouse-button-down", val ); \ - } \ - break; \ - \ - default: \ - [super mouseDown: o_event]; \ - break; \ - } \ -} \ - \ -- (void)otherMouseDown:(NSEvent *)o_event \ -{ \ - vout_thread_t * vout; \ - id o_window = [self window]; \ - vout = (vout_thread_t *)[o_window getVout]; \ - vlc_value_t val; \ - \ - switch( [o_event type] ) \ - { \ - case NSOtherMouseDown: \ - { \ - var_Get( vout, "mouse-button-down", &val ); \ - val.i_int |= 2; \ - var_Set( vout, "mouse-button-down", val ); \ - } \ - break; \ - \ - default: \ - [super mouseDown: o_event]; \ - break; \ - } \ -} \ - \ -- (void)rightMouseDown:(NSEvent *)o_event \ -{ \ - vout_thread_t * vout; \ - id o_window = [self window]; \ - vout = (vout_thread_t *)[o_window getVout]; \ - vlc_value_t val; \ - \ - switch( [o_event type] ) \ - { \ - case NSRightMouseDown: \ - { \ - var_Get( vout, "mouse-button-down", &val ); \ - val.i_int |= 4; \ - var_Set( vout, "mouse-button-down", val ); \ - } \ - break; \ - \ - default: \ - [super mouseDown: o_event]; \ - break; \ - } \ -} \ - \ -- (void)mouseUp:(NSEvent *)o_event \ -{ \ - vout_thread_t * vout; \ - id o_window = [self window]; \ - vout = (vout_thread_t *)[o_window getVout]; \ - vlc_value_t val; \ - \ - switch( [o_event type] ) \ - { \ - case NSLeftMouseUp: \ - { \ - vlc_value_t b_val; \ - b_val.b_bool = VLC_TRUE; \ - var_Set( vout, "mouse-clicked", b_val ); \ - \ - var_Get( vout, "mouse-button-down", &val ); \ - val.i_int &= ~1; \ - var_Set( vout, "mouse-button-down", val ); \ - } \ - break; \ - \ - default: \ - [super mouseUp: o_event]; \ - break; \ - } \ -} \ - \ -- (void)otherMouseUp:(NSEvent *)o_event \ -{ \ - vout_thread_t * vout; \ - id o_window = [self window]; \ - vout = (vout_thread_t *)[o_window getVout]; \ - vlc_value_t val; \ - \ - switch( [o_event type] ) \ - { \ - case NSOtherMouseUp: \ - { \ - var_Get( vout, "mouse-button-down", &val ); \ - val.i_int &= ~2; \ - var_Set( vout, "mouse-button-down", val ); \ - } \ - break; \ - \ - default: \ - [super mouseUp: o_event]; \ - break; \ - } \ -} \ - \ -- (void)rightMouseUp:(NSEvent *)o_event \ -{ \ - vout_thread_t * vout; \ - id o_window = [self window]; \ - vout = (vout_thread_t *)[o_window getVout]; \ - vlc_value_t val; \ - \ - switch( [o_event type] ) \ - { \ - case NSRightMouseUp: \ - { \ - var_Get( vout, "mouse-button-down", &val ); \ - val.i_int &= ~4; \ - var_Set( vout, "mouse-button-down", val ); \ - } \ - break; \ - \ - default: \ - [super mouseUp: o_event]; \ - break; \ - } \ -} \ - \ -- (void)mouseDragged:(NSEvent *)o_event \ -{ \ - [self mouseMoved:o_event]; \ -} \ - \ -- (void)otherMouseDragged:(NSEvent *)o_event \ -{ \ - [self mouseMoved:o_event]; \ -} \ - \ -- (void)rightMouseDragged:(NSEvent *)o_event \ -{ \ - [self mouseMoved:o_event]; \ +- (void)enterFullscreen +{ + /* We are in a VLCEmbeddedWindow */ + [o_embeddedwindow performSelectorOnMainThread: @selector(enterFullscreen) withObject: NULL waitUntilDone: YES]; } -/***************************************************************************** - * VLCQTView implementation - *****************************************************************************/ -@implementation VLCQTView - -- (void)drawRect:(NSRect)rect +- (void)leaveFullscreen { - vout_thread_t * p_vout; - id o_window = [self window]; - p_vout = (vout_thread_t *)[o_window getVout]; - - [[NSColor blackColor] set]; - NSRectFill( rect ); - [super drawRect: rect]; - - p_vout->i_changes |= VOUT_SIZE_CHANGE; + /* We are in a VLCEmbeddedWindow */ + [o_embeddedwindow performSelectorOnMainThread: @selector(leaveFullscreen) withObject: NULL waitUntilDone: YES]; } +@end -CATCH_MOUSE_EVENTS +/***************************************************************************** + * VLCVoutWindow implementation + *****************************************************************************/ +@implementation VLCVoutWindow -- (void)mouseMoved:(NSEvent *)o_event +- (id) initWithVout: (vout_thread_t *) vout view: (VLCVoutView *) view + frame: (NSRect *) frame { - NSPoint ml; - NSRect s_rect; - BOOL b_inside; - - vout_thread_t * p_vout; - id o_window = [self window]; - p_vout = (vout_thread_t *)[o_window getVout]; + p_vout = vout; + o_view = view; + s_frame = frame; - s_rect = [self bounds]; - ml = [self convertPoint: [o_event locationInWindow] fromView: nil]; - b_inside = [self mouse: ml inRect: s_rect]; + [self performSelectorOnMainThread: @selector(initReal:) + withObject: NULL waitUntilDone: YES]; - if( b_inside ) + if( !b_init_ok ) { - vlc_value_t val; - int i_width, i_height, i_x, i_y; - - vout_PlacePicture( p_vout, (unsigned int)s_rect.size.width, - (unsigned int)s_rect.size.height, - &i_x, &i_y, &i_width, &i_height ); - - val.i_int = ( ((int)ml.x) - i_x ) * - p_vout->render.i_width / i_width; - var_Set( p_vout, "mouse-x", val ); - - val.i_int = ( ((int)ml.y) - i_y ) * - p_vout->render.i_height / i_height; - var_Set( p_vout, "mouse-y", val ); - - val.b_bool = VLC_TRUE; - var_Set( p_vout, "mouse-moved", val ); - p_vout->p_sys->i_time_mouse_last_moved = mdate(); - p_vout->p_sys->b_mouse_moved = YES; + return NULL; } - [super mouseMoved: o_event]; + return self; } -@end - -/***************************************************************************** - * VLCGLView implementation - *****************************************************************************/ -@implementation VLCGLView - - -- (id) initWithFrame: (NSRect) frame vout: (vout_thread_t*) _p_vout +- (id)initReal: (id) sender { - vlc_value_t val; - p_vout = _p_vout; - - NSOpenGLPixelFormatAttribute attribs[] = - { - NSOpenGLPFAAccelerated, - NSOpenGLPFANoRecovery, - NSOpenGLPFAColorSize, 24, - NSOpenGLPFAAlphaSize, 8, - NSOpenGLPFADepthSize, 24, - NSOpenGLPFAWindow, - 0 - }; - - NSOpenGLPixelFormat * fmt = [[NSOpenGLPixelFormat alloc] - initWithAttributes: attribs]; - - if( !fmt ) - { - msg_Warn( p_vout, "Cannot create NSOpenGLPixelFormat" ); - return nil; - } + NSAutoreleasePool *o_pool = [[NSAutoreleasePool alloc] init]; + NSArray *o_screens = [NSScreen screens]; + NSScreen *o_screen; + vlc_bool_t b_menubar_screen = VLC_FALSE; + int i_device; - self = [super initWithFrame:frame pixelFormat: fmt]; - [fmt release]; + b_init_ok = VLC_FALSE; - [[self openGLContext] makeCurrentContext]; - [[self openGLContext] update]; + p_real_vout = [VLCVoutView getRealVout: p_vout]; + i_device = var_GetInteger( p_real_vout->p_libvlc, "video-device" ); + b_black = NO; + b_embedded = var_GetBool( p_vout, "macosx-embedded" ); - /* Black background */ - glClearColor( 0.0, 0.0, 0.0, 0.0 ); + /* Find out on which screen to open the window */ + o_screen = [NSScreen screenWithDisplayID: (CGDirectDisplayID)i_device]; - /* Check if the user asked for useless visual effects */ - var_Get( p_vout, "macosx-opengl-effect", &val ); - if( !val.psz_string || !strcmp( val.psz_string, "none" )) - { - i_effect = OPENGL_EFFECT_NONE; - } - else if( !strcmp( val.psz_string, "cube" ) ) - { - i_effect = OPENGL_EFFECT_CUBE; + if( !o_screen ) + o_screen = [NSScreen mainScreen]; - glEnable( GL_DEPTH_TEST ); - } - else if( !strcmp( val.psz_string, "transparent-cube" ) ) - { - i_effect = OPENGL_EFFECT_TRANSPARENT_CUBE; + if( [o_screen isMainScreen] ) + b_menubar_screen = VLC_TRUE; - glDisable( GL_DEPTH_TEST ); - glEnable( GL_BLEND ); - glBlendFunc( GL_SRC_ALPHA, GL_ONE ); - } - else + if( p_vout->b_fullscreen ) { - msg_Warn( p_vout, "no valid opengl effect provided, using " - "\"none\"" ); - i_effect = OPENGL_EFFECT_NONE; - } - if( val.psz_string ) free( val.psz_string ); + CGDisplayFadeReservationToken token; + NSRect screen_rect = [o_screen frame]; + screen_rect.origin.x = screen_rect.origin.y = 0; - if( i_effect & ( OPENGL_EFFECT_CUBE | - OPENGL_EFFECT_TRANSPARENT_CUBE ) ) - { - /* Set the perpective */ - glMatrixMode( GL_PROJECTION ); - glLoadIdentity(); - glFrustum( -1.0, 1.0, -1.0, 1.0, 3.0, 20.0 ); - glMatrixMode( GL_MODELVIEW ); - glLoadIdentity(); - glTranslatef( 0.0, 0.0, - 5.0 ); - } + b_black = var_GetBool( p_vout, "macosx-black" ); - pi_textures[0] = 0; - pi_textures[1] = 0; - initDone = 0; + /* move the FSPanel to front in case that it is currently shown + * this won't and is not supposed to work when it's fading right now */ + if( [[[[VLCMain sharedInstance] getControls] getFSPanel] isDisplayed] ) + [[[[VLCMain sharedInstance] getControls] getFSPanel] setActive: nil]; + + /* tell the fspanel to move itself to front next time it's triggered */ + [[[[VLCMain sharedInstance] getControls] getFSPanel] setVoutWasUpdated: i_device]; - return self; -} + /* Creates a window with size: screen_rect on o_screen */ + [self initWithContentRect: screen_rect + styleMask: NSBorderlessWindowMask + backing: NSBackingStoreBuffered + defer: YES screen: o_screen]; + + if( b_menubar_screen ) + { + SetSystemUIMode( kUIModeAllHidden, kUIOptionAutoShowMenuBar); + } + if( b_black == VLC_TRUE ) + { + CGAcquireDisplayFadeReservation(kCGMaxDisplayReservationInterval, &token); + CGDisplayFade( token, 0.6 , kCGDisplayBlendNormal, kCGDisplayBlendSolidColor, 0, 0, 0, YES ); -- (void)reshape -{ - vlc_value_t val; - NSRect bounds; + [o_screen blackoutOtherScreens]; - if( !initDone ) - { - return; + CGDisplayFade( token, 0.3 , kCGDisplayBlendSolidColor, kCGDisplayBlendNormal, 0, 0, 0, NO ); + CGReleaseDisplayFadeReservation( token); + } } - - [[self openGLContext] makeCurrentContext]; + else if( var_GetBool( p_vout, "macosx-background" ) ) + { + NSRect screen_rect = [o_screen frame]; + screen_rect.origin.x = screen_rect.origin.y = 0; - bounds = [self bounds]; - glViewport( 0, 0, (GLint) bounds.size.width, - (GLint) bounds.size.height ); + /* Creates a window with size: screen_rect on o_screen */ + [self initWithContentRect: screen_rect + styleMask: NSBorderlessWindowMask + backing: NSBackingStoreBuffered + defer: YES screen: o_screen]; - var_Get( p_vout, "macosx-stretch", &val ); - if( val.b_bool ) - { - f_x = 1.0; - f_y = 1.0; + [self setLevel: CGWindowLevelForKey(kCGDesktopWindowLevelKey)]; } else { - /* Quad size is set in order to preserve the aspect ratio */ - var_Get( p_vout, "macosx-fill", &val ); - int fill = ( val.b_bool && p_vout->b_fullscreen ); - int large = ( bounds.size.height * p_vout->output.i_aspect < - bounds.size.width * VOUT_ASPECT_FACTOR ); - if( ( large && !fill ) || ( !large && fill ) ) + unsigned int i_stylemask = NSTitledWindowMask | + NSMiniaturizableWindowMask | + NSClosableWindowMask | + NSResizableWindowMask; + + NSRect s_rect; + if( !s_frame ) { - f_x = bounds.size.height * p_vout->output.i_aspect / - VOUT_ASPECT_FACTOR / bounds.size.width; - f_y = 1.0; + s_rect.size.width = p_vout->i_window_width; + s_rect.size.height = p_vout->i_window_height; } else { - f_x = 1.0; - f_y = bounds.size.width * VOUT_ASPECT_FACTOR / - p_vout->output.i_aspect / bounds.size.height; + s_rect = *s_frame; } - } -} -- (void)initTextures -{ - int i; - [[self openGLContext] makeCurrentContext]; + [self initWithContentRect: s_rect + styleMask: i_stylemask + backing: NSBackingStoreBuffered + defer: YES screen: o_screen]; - /* Free previous texture if any */ - if( initDone ) - { - glDeleteTextures( 2, pi_textures ); + [self setAlphaValue: var_GetFloat( p_vout, "macosx-opaqueness" )]; + + if( !s_frame ) + { + [self center]; + } } - glEnable( GL_TEXTURE_RECTANGLE_EXT ); - glEnable( GL_UNPACK_CLIENT_STORAGE_APPLE ); + [self makeKeyAndOrderFront: nil]; + [self setReleasedWhenClosed: YES]; - glPixelStorei( GL_UNPACK_ALIGNMENT, 1 ); - glPixelStorei( GL_UNPACK_ROW_LENGTH, p_vout->output.i_width ); + /* We'll catch mouse events */ + [self makeFirstResponder: o_view]; - /* Tell the driver not to make a copy of the texture but to use - our buffer */ - glPixelStorei( GL_UNPACK_CLIENT_STORAGE_APPLE, GL_TRUE ); + /* Add the view. It's automatically resized to fit the window */ + [self setContentView: o_view]; - /* Create textures */ - glGenTextures( 2, pi_textures ); + [o_pool release]; - for( i = 0; i < 2; i++ ) - { - glBindTexture( GL_TEXTURE_RECTANGLE_EXT, pi_textures[i] ); - glTexEnvi( GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE ); - - /* Linear interpolation */ - glTexParameteri( GL_TEXTURE_RECTANGLE_EXT, - GL_TEXTURE_MIN_FILTER, GL_LINEAR ); - glTexParameteri( GL_TEXTURE_RECTANGLE_EXT, - GL_TEXTURE_MAG_FILTER, GL_LINEAR ); - - /* Use VRAM texturing */ - glTexParameteri( GL_TEXTURE_RECTANGLE_EXT, - GL_TEXTURE_STORAGE_HINT_APPLE, GL_STORAGE_CACHED_APPLE ); - - glTexImage2D( GL_TEXTURE_RECTANGLE_EXT, 0, GL_RGB8, - p_vout->output.i_width, p_vout->output.i_height, 0, - GL_YCBCR_422_APPLE, GL_UNSIGNED_SHORT_8_8_APPLE, - p_vout->p_sys->p_data[i] ); - } + b_init_ok = VLC_TRUE; + return self; +} - /* Swap buffers only during the vertical retrace of the monitor. - http://developer.apple.com/documentation/GraphicsImaging/ - Conceptual/OpenGL/chap5/chapter_5_section_44.html */ - long params[] = { 1 }; - CGLSetParameter( CGLGetCurrentContext(), kCGLCPSwapInterval, - params ); +- (void)close +{ + [o_view closeVout]; +} - initDone = 1; +- (void)closeWindow +{ + /* XXX waitUntilDone = NO to avoid a possible deadlock when hitting + Command-Q */ + [self performSelectorOnMainThread: @selector(closeReal:) + withObject: NULL waitUntilDone: NO]; } -- (void)reloadTexture: (int) index +- (id)closeReal:(id)sender { - if( !initDone ) + if( b_black == VLC_TRUE ) { - return; - } - - [[self openGLContext] makeCurrentContext]; - - glBindTexture( GL_TEXTURE_RECTANGLE_EXT, pi_textures[index] ); - glPixelStorei( GL_UNPACK_ROW_LENGTH, p_vout->output.i_width ); - - /* glTexSubImage2D is faster than glTexImage2D - http://developer.apple.com/samplecode/Sample_Code/Graphics_3D/ - TextureRange/MainOpenGLView.m.htm */ - glTexSubImage2D( GL_TEXTURE_RECTANGLE_EXT, 0, 0, 0, - p_vout->output.i_width, p_vout->output.i_height, - GL_YCBCR_422_APPLE, GL_UNSIGNED_SHORT_8_8_APPLE, - p_vout->p_sys->p_data[index] ); -} - -- (void) cleanUp -{ - initDone = 0; -} - -- (void) drawQuad -{ - glBegin( GL_QUADS ); - /* Top left */ - glTexCoord2f( 0.0, 0.0 ); - glVertex2f( - f_x, f_y ); - /* Bottom left */ - glTexCoord2f( 0.0, (float) p_vout->output.i_height ); - glVertex2f( - f_x, - f_y ); - /* Bottom right */ - glTexCoord2f( (float) p_vout->output.i_width, - (float) p_vout->output.i_height ); - glVertex2f( f_x, - f_y ); - /* Top right */ - glTexCoord2f( (float) p_vout->output.i_width, 0.0 ); - glVertex2f( f_x, f_y ); - glEnd(); -} - -- (void) drawCube -{ - glBegin( GL_QUADS ); - /* Front */ - glTexCoord2f( 0.0, 0.0 ); - glVertex3f( - 1.0, 1.0, 1.0 ); - glTexCoord2f( 0.0, (float) p_vout->output.i_height ); - glVertex3f( - 1.0, - 1.0, 1.0 ); - glTexCoord2f( (float) p_vout->output.i_width, - (float) p_vout->output.i_height ); - glVertex3f( 1.0, - 1.0, 1.0 ); - glTexCoord2f( (float) p_vout->output.i_width, 0.0 ); - glVertex3f( 1.0, 1.0, 1.0 ); - - /* Left */ - glTexCoord2f( 0.0, 0.0 ); - glVertex3f( - 1.0, 1.0, - 1.0 ); - glTexCoord2f( 0.0, (float) p_vout->output.i_height ); - glVertex3f( - 1.0, - 1.0, - 1.0 ); - glTexCoord2f( (float) p_vout->output.i_width, - (float) p_vout->output.i_height ); - glVertex3f( - 1.0, - 1.0, 1.0 ); - glTexCoord2f( (float) p_vout->output.i_width, 0.0 ); - glVertex3f( - 1.0, 1.0, 1.0 ); - - /* Back */ - glTexCoord2f( 0.0, 0.0 ); - glVertex3f( 1.0, 1.0, - 1.0 ); - glTexCoord2f( 0.0, (float) p_vout->output.i_height ); - glVertex3f( 1.0, - 1.0, - 1.0 ); - glTexCoord2f( (float) p_vout->output.i_width, - (float) p_vout->output.i_height ); - glVertex3f( - 1.0, - 1.0, - 1.0 ); - glTexCoord2f( (float) p_vout->output.i_width, 0.0 ); - glVertex3f( - 1.0, 1.0, - 1.0 ); - - /* Right */ - glTexCoord2f( 0.0, 0.0 ); - glVertex3f( 1.0, 1.0, 1.0 ); - glTexCoord2f( 0.0, (float) p_vout->output.i_height ); - glVertex3f( 1.0, - 1.0, 1.0 ); - glTexCoord2f( (float) p_vout->output.i_width, - (float) p_vout->output.i_height ); - glVertex3f( 1.0, - 1.0, - 1.0 ); - glTexCoord2f( (float) p_vout->output.i_width, 0.0 ); - glVertex3f( 1.0, 1.0, - 1.0 ); - - /* Top */ - glTexCoord2f( 0.0, 0.0 ); - glVertex3f( - 1.0, 1.0, - 1.0 ); - glTexCoord2f( 0.0, (float) p_vout->output.i_height ); - glVertex3f( - 1.0, 1.0, 1.0 ); - glTexCoord2f( (float) p_vout->output.i_width, - (float) p_vout->output.i_height ); - glVertex3f( 1.0, 1.0, 1.0 ); - glTexCoord2f( (float) p_vout->output.i_width, 0.0 ); - glVertex3f( 1.0, 1.0, - 1.0 ); - - /* Bottom */ - glTexCoord2f( 0.0, 0.0 ); - glVertex3f( - 1.0, - 1.0, 1.0 ); - glTexCoord2f( 0.0, (float) p_vout->output.i_height ); - glVertex3f( - 1.0, - 1.0, - 1.0 ); - glTexCoord2f( (float) p_vout->output.i_width, - (float) p_vout->output.i_height ); - glVertex3f( 1.0, - 1.0, - 1.0 ); - glTexCoord2f( (float) p_vout->output.i_width, 0.0 ); - glVertex3f( 1.0, - 1.0, 1.0 ); - glEnd(); -} - -- (void) drawRect: (NSRect) rect -{ - [[self openGLContext] makeCurrentContext]; - - /* Black background */ - glClear( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT ); - - if( !initDone ) - { - glFlush(); - return; - } + CGDisplayFadeReservationToken token; + CGAcquireDisplayFadeReservation(kCGMaxDisplayReservationInterval, &token); + CGDisplayFade( token, 0.3 , kCGDisplayBlendNormal, kCGDisplayBlendSolidColor, 0, 0, 0, YES ); + + [self disableScreenUpdatesUntilFlush]; + [self orderOut: self]; - /* Draw */ - glBindTexture( GL_TEXTURE_RECTANGLE_EXT, - pi_textures[p_vout->p_sys->i_cur_pic] ); - if( i_effect & ( OPENGL_EFFECT_CUBE | - OPENGL_EFFECT_TRANSPARENT_CUBE ) ) - { - glRotatef( 1.0, 0.3, 0.5, 0.7 ); - [self drawCube]; - } - else - { - [self drawQuad]; + CGDisplayFade( token, 0.6 , kCGDisplayBlendSolidColor, kCGDisplayBlendNormal, 0, 0, 0, YES ); + CGReleaseDisplayFadeReservation( token); + CGDisplayRestoreColorSyncSettings(); } + [NSScreen unblackoutScreens]; - /* Draw */ - glFlush(); + SetSystemUIMode( kUIModeNormal, 0); + [super close]; + /* this does only work in embedded mode */ + if( b_embedded == VLC_TRUE ) + [[[[VLCMain sharedInstance] getControls] getFSPanel] orderOut: self]; + + return NULL; } -CATCH_MOUSE_EVENTS +- (id)getVoutView +{ + return o_view; +} -- (void)mouseMoved:(NSEvent *)o_event +- (BOOL)canBecomeKeyWindow { - NSPoint ml; - NSRect s_rect; - BOOL b_inside; + return YES; +} - s_rect = [self bounds]; - ml = [self convertPoint: [o_event locationInWindow] fromView: nil]; - b_inside = [self mouse: ml inRect: s_rect]; +/* Sometimes crashes VLC.... +- (BOOL)performKeyEquivalent:(NSEvent *)o_event +{ + return [[VLCMain sharedInstance] hasDefinedShortcutKey:o_event]; +}*/ + +/* This is actually the same as VLCControls::stop. */ - if( b_inside ) +- (BOOL)windowShouldClose:(id)sender +{ + playlist_t * p_playlist = vlc_object_find( p_vout, VLC_OBJECT_PLAYLIST, + FIND_ANYWHERE ); + if( p_playlist == NULL ) { - vlc_value_t val; - int i_width, i_height, i_x, i_y; - - vout_PlacePicture( p_vout, (unsigned int)s_rect.size.width, - (unsigned int)s_rect.size.height, - &i_x, &i_y, &i_width, &i_height ); - - val.i_int = ( (int)ml.x - i_x ) * - p_vout->render.i_width / i_width; - var_Set( p_vout, "mouse-x", val ); - - /* Y coordinate is inverted in OpenGL */ - val.i_int = ( ((int)(s_rect.size.height - ml.y)) - i_y ) * - p_vout->render.i_height / i_height; - var_Set( p_vout, "mouse-y", val ); - - val.b_bool = VLC_TRUE; - var_Set( p_vout, "mouse-moved", val ); - p_vout->p_sys->i_time_mouse_last_moved = mdate(); - p_vout->p_sys->b_mouse_moved = YES; + return NO; } - [super mouseMoved: o_event]; + playlist_Stop( p_playlist ); + vlc_object_release( p_playlist ); + + /* The window will be closed by the intf later. */ + return NO; } + @end