2009-02-26 00:06:58 +00:00
|
|
|
/*
|
|
|
|
* GStreamer
|
|
|
|
* Copyright (C) 2008 Julien Isorce <julien.isorce@gmail.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2009-07-17 14:47:41 +00:00
|
|
|
* modify it un der the terms of the GNU Library General Public
|
2009-02-26 00:06:58 +00:00
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
2012-11-08 11:53:56 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2009-02-26 00:06:58 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2012-11-16 06:13:03 +00:00
|
|
|
#include <Cocoa/Cocoa.h>
|
2009-02-26 00:06:58 +00:00
|
|
|
|
2013-08-15 07:09:04 +00:00
|
|
|
#include "gstgl_cocoa_private.h"
|
2009-02-26 00:06:58 +00:00
|
|
|
|
2009-07-17 14:47:41 +00:00
|
|
|
/* =============================================================*/
|
|
|
|
/* */
|
|
|
|
/* GstGLNSWindow declaration */
|
|
|
|
/* */
|
|
|
|
/* =============================================================*/
|
2009-02-26 00:06:58 +00:00
|
|
|
|
|
|
|
@interface GstGLNSWindow: NSWindow {
|
|
|
|
BOOL m_isClosed;
|
2012-11-16 06:13:03 +00:00
|
|
|
GstGLWindowCocoa *m_cocoa;
|
2009-02-26 00:06:58 +00:00
|
|
|
}
|
|
|
|
- (id)initWithContentRect:(NSRect)contentRect
|
2009-07-17 14:47:41 +00:00
|
|
|
styleMask: (unsigned int) styleMask
|
|
|
|
backing: (NSBackingStoreType) bufferingType
|
|
|
|
defer: (BOOL) flag screen: (NSScreen *) aScreen
|
2012-11-16 06:13:03 +00:00
|
|
|
gstWin: (GstGLWindowCocoa *) window;
|
2009-07-24 08:12:07 +00:00
|
|
|
- (void) setClosed;
|
2009-07-17 14:47:41 +00:00
|
|
|
- (BOOL) isClosed;
|
2009-07-24 08:12:07 +00:00
|
|
|
- (BOOL) canBecomeMainWindow;
|
|
|
|
- (BOOL) canBecomeKeyWindow;
|
2009-02-26 00:06:58 +00:00
|
|
|
@end
|
|
|
|
|
2009-07-17 14:47:41 +00:00
|
|
|
/* =============================================================*/
|
|
|
|
/* */
|
|
|
|
/* GstGLWindow */
|
|
|
|
/* */
|
|
|
|
/* =============================================================*/
|
2009-02-26 00:06:58 +00:00
|
|
|
|
|
|
|
#ifndef GNUSTEP
|
2009-04-13 05:24:06 +00:00
|
|
|
static BOOL GSRegisterCurrentThread(void) { return TRUE; };
|
|
|
|
static void GSUnregisterCurrentThread(void) {};
|
2009-02-26 00:06:58 +00:00
|
|
|
#endif
|
|
|
|
|
2012-11-16 06:13:03 +00:00
|
|
|
#define GST_GL_WINDOW_COCOA_GET_PRIVATE(o) \
|
|
|
|
(G_TYPE_INSTANCE_GET_PRIVATE((o), GST_GL_TYPE_WINDOW_COCOA, GstGLWindowCocoaPrivate))
|
|
|
|
|
|
|
|
#define GST_CAT_DEFAULT gst_gl_window_cocoa_debug
|
|
|
|
GST_DEBUG_CATEGORY_STATIC (GST_CAT_DEFAULT);
|
|
|
|
|
|
|
|
#define DEBUG_INIT \
|
|
|
|
GST_DEBUG_CATEGORY_GET (GST_CAT_DEFAULT, "glwindow");
|
|
|
|
#define gst_gl_window_cocoa_parent_class parent_class
|
|
|
|
G_DEFINE_TYPE_WITH_CODE (GstGLWindowCocoa, gst_gl_window_cocoa, GST_GL_TYPE_WINDOW, DEBUG_INIT);
|
|
|
|
|
2013-08-15 07:09:04 +00:00
|
|
|
static guintptr gst_gl_window_cocoa_get_window_handle (GstGLWindow * window);
|
|
|
|
static void gst_gl_window_cocoa_set_window_handle (GstGLWindow * window,
|
2012-11-16 06:13:03 +00:00
|
|
|
guintptr handle);
|
2013-08-15 07:09:04 +00:00
|
|
|
static void gst_gl_window_cocoa_draw (GstGLWindow * window, guint width, guint height);
|
|
|
|
static void gst_gl_window_cocoa_run (GstGLWindow * window);
|
|
|
|
static void gst_gl_window_cocoa_quit (GstGLWindow * window);
|
2013-09-25 02:26:57 +00:00
|
|
|
static void gst_gl_window_cocoa_send_message_async (GstGLWindow * window,
|
|
|
|
GstGLWindowCB callback, gpointer data, GDestroyNotify destroy);
|
2012-11-16 06:13:03 +00:00
|
|
|
|
|
|
|
struct _GstGLWindowCocoaPrivate
|
2009-02-26 00:06:58 +00:00
|
|
|
{
|
|
|
|
GstGLNSWindow *internal_win_id;
|
|
|
|
gboolean visible;
|
|
|
|
NSWindow *parent;
|
2009-07-17 14:47:41 +00:00
|
|
|
NSThread *thread;
|
|
|
|
gboolean running;
|
2009-02-26 00:06:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
2012-11-16 06:13:03 +00:00
|
|
|
gst_gl_window_cocoa_class_init (GstGLWindowCocoaClass * klass)
|
2009-02-26 00:06:58 +00:00
|
|
|
{
|
2012-11-16 06:13:03 +00:00
|
|
|
GstGLWindowClass *window_class;
|
2013-07-10 14:47:23 +00:00
|
|
|
|
|
|
|
#ifndef GNUSTEP
|
|
|
|
NSAutoreleasePool* pool = nil;
|
|
|
|
#endif
|
2009-02-26 00:06:58 +00:00
|
|
|
|
2012-11-16 06:13:03 +00:00
|
|
|
window_class = (GstGLWindowClass *) klass;
|
|
|
|
|
|
|
|
g_type_class_add_private (klass, sizeof (GstGLWindowCocoaPrivate));
|
|
|
|
|
2013-08-15 07:09:04 +00:00
|
|
|
window_class->get_window_handle =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_gl_window_cocoa_get_window_handle);
|
2012-11-16 06:13:03 +00:00
|
|
|
window_class->set_window_handle =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_gl_window_cocoa_set_window_handle);
|
|
|
|
window_class->draw_unlocked = GST_DEBUG_FUNCPTR (gst_gl_window_cocoa_draw);
|
|
|
|
window_class->draw = GST_DEBUG_FUNCPTR (gst_gl_window_cocoa_draw);
|
|
|
|
window_class->run = GST_DEBUG_FUNCPTR (gst_gl_window_cocoa_run);
|
|
|
|
window_class->quit = GST_DEBUG_FUNCPTR (gst_gl_window_cocoa_quit);
|
2013-09-25 02:26:57 +00:00
|
|
|
window_class->send_message_async =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_gl_window_cocoa_send_message_async);
|
2012-11-16 06:13:03 +00:00
|
|
|
|
|
|
|
#ifndef GNUSTEP
|
2013-07-10 14:47:23 +00:00
|
|
|
pool = [[NSAutoreleasePool alloc] init];
|
2012-11-16 06:13:03 +00:00
|
|
|
[NSApplication sharedApplication];
|
2013-07-10 14:47:23 +00:00
|
|
|
|
2012-11-16 06:13:03 +00:00
|
|
|
[pool release];
|
|
|
|
#endif
|
2009-02-26 00:06:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-11-16 06:13:03 +00:00
|
|
|
gst_gl_window_cocoa_init (GstGLWindowCocoa * window)
|
2009-02-26 00:06:58 +00:00
|
|
|
{
|
2012-11-16 06:13:03 +00:00
|
|
|
window->priv = GST_GL_WINDOW_COCOA_GET_PRIVATE (window);
|
2009-02-26 00:06:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Must be called in the gl thread */
|
2012-11-16 06:13:03 +00:00
|
|
|
GstGLWindowCocoa *
|
2013-02-12 12:48:36 +00:00
|
|
|
gst_gl_window_cocoa_new (void)
|
2009-02-26 00:06:58 +00:00
|
|
|
{
|
2012-11-16 06:13:03 +00:00
|
|
|
GstGLWindowCocoa *window = g_object_new (GST_GL_TYPE_WINDOW_COCOA, NULL);
|
2013-02-12 12:48:36 +00:00
|
|
|
|
|
|
|
return window;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
2013-08-15 07:09:04 +00:00
|
|
|
gst_gl_window_cocoa_create_window (GstGLWindowCocoa *window_cocoa)
|
2013-02-12 12:48:36 +00:00
|
|
|
{
|
2013-08-15 07:09:04 +00:00
|
|
|
GstGLWindow *window = GST_GL_WINDOW (window_cocoa);
|
|
|
|
GstGLContext *context = gst_gl_window_get_context (window);
|
|
|
|
GstGLContextCocoa *context_cocoa = GST_GL_CONTEXT_COCOA (context);
|
2013-02-12 12:48:36 +00:00
|
|
|
GstGLWindowCocoaPrivate *priv = window_cocoa->priv;
|
2013-08-15 07:09:04 +00:00
|
|
|
NSRect rect = context_cocoa->priv->rect;
|
2009-02-26 00:06:58 +00:00
|
|
|
|
2009-07-17 14:47:41 +00:00
|
|
|
priv->internal_win_id =[[GstGLNSWindow alloc] initWithContentRect:rect styleMask:
|
|
|
|
(NSTitledWindowMask | NSClosableWindowMask |
|
2009-07-24 08:12:07 +00:00
|
|
|
NSResizableWindowMask | NSMiniaturizableWindowMask)
|
2013-02-12 12:48:36 +00:00
|
|
|
backing: NSBackingStoreBuffered defer: NO screen: nil gstWin: window_cocoa];
|
2009-02-26 00:06:58 +00:00
|
|
|
|
2013-07-17 09:22:02 +00:00
|
|
|
GST_DEBUG ("NSWindow id: %lud\n", (guintptr) priv->internal_win_id);
|
2013-08-15 07:09:04 +00:00
|
|
|
|
2009-07-17 14:47:41 +00:00
|
|
|
priv->thread = [NSThread currentThread];
|
2012-11-16 06:13:03 +00:00
|
|
|
|
2009-07-17 14:47:41 +00:00
|
|
|
[NSApp setDelegate: priv->internal_win_id];
|
2009-03-07 02:13:38 +00:00
|
|
|
|
2013-08-15 07:09:04 +00:00
|
|
|
gst_object_unref (context);
|
2009-02-26 00:06:58 +00:00
|
|
|
|
2013-02-12 12:48:36 +00:00
|
|
|
return TRUE;
|
2009-02-26 00:06:58 +00:00
|
|
|
}
|
|
|
|
|
2013-08-15 07:09:04 +00:00
|
|
|
static guintptr
|
|
|
|
gst_gl_window_cocoa_get_window_handle (GstGLWindow *window)
|
2009-10-26 10:44:35 +00:00
|
|
|
{
|
2013-08-15 07:09:04 +00:00
|
|
|
return (guintptr) GST_GL_WINDOW_COCOA (window)->priv->internal_win_id;
|
2009-10-26 10:44:35 +00:00
|
|
|
}
|
|
|
|
|
2013-08-15 07:09:04 +00:00
|
|
|
static void
|
2012-11-16 06:13:03 +00:00
|
|
|
gst_gl_window_cocoa_set_window_handle (GstGLWindow * window, guintptr handle)
|
2009-02-26 00:06:58 +00:00
|
|
|
{
|
2012-11-16 06:13:03 +00:00
|
|
|
GstGLWindowCocoa *window_cocoa;
|
|
|
|
GstGLWindowCocoaPrivate *priv;
|
|
|
|
|
|
|
|
window_cocoa = GST_GL_WINDOW_COCOA (window);
|
|
|
|
priv = window_cocoa->priv;
|
2013-11-30 16:38:13 +00:00
|
|
|
|
2013-07-11 19:22:57 +00:00
|
|
|
if (priv->internal_win_id) {
|
2013-09-25 02:26:57 +00:00
|
|
|
GstGLContextCocoa *context = (GstGLContextCocoa *) gst_gl_window_get_context (window);
|
|
|
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
|
|
|
AppThreadPerformer* app_thread_performer = [[AppThreadPerformer alloc] init:window_cocoa];
|
2009-02-26 00:06:58 +00:00
|
|
|
|
2013-09-25 02:26:57 +00:00
|
|
|
GSRegisterCurrentThread();
|
2009-02-26 00:06:58 +00:00
|
|
|
|
2013-09-25 02:26:57 +00:00
|
|
|
if (context) {
|
2013-11-30 16:38:13 +00:00
|
|
|
if (context->priv->source_id) {
|
|
|
|
g_source_remove (context->priv->source_id);
|
|
|
|
context->priv->source_id = 0;
|
|
|
|
}
|
2013-09-25 02:26:57 +00:00
|
|
|
gst_object_unref (context);
|
2013-07-11 19:22:57 +00:00
|
|
|
}
|
2013-09-25 02:26:57 +00:00
|
|
|
|
2013-11-30 16:38:13 +00:00
|
|
|
if (handle) {
|
|
|
|
priv->parent = (NSWindow*) handle;
|
|
|
|
priv->visible = TRUE;
|
|
|
|
} else {
|
|
|
|
/* bring back our internal window */
|
|
|
|
priv->parent = priv->internal_win_id;
|
|
|
|
priv->visible = FALSE;
|
|
|
|
}
|
|
|
|
|
2013-09-25 02:26:57 +00:00
|
|
|
[app_thread_performer performSelectorOnMainThread:@selector(setWindow)
|
|
|
|
withObject:0 waitUntilDone:YES];
|
|
|
|
|
|
|
|
[pool release];
|
2013-11-30 16:38:13 +00:00
|
|
|
} else {
|
|
|
|
/* not internal window yet so delay it to the next drawing */
|
|
|
|
priv->parent = (NSWindow*) handle;
|
|
|
|
priv->visible = FALSE;
|
2009-02-26 00:06:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Thread safe */
|
2013-08-15 07:09:04 +00:00
|
|
|
static void
|
2012-11-16 06:13:03 +00:00
|
|
|
gst_gl_window_cocoa_draw (GstGLWindow * window, guint width, guint height)
|
2009-02-26 00:06:58 +00:00
|
|
|
{
|
2012-11-16 06:13:03 +00:00
|
|
|
GstGLWindowCocoa *window_cocoa;
|
|
|
|
GstGLWindowCocoaPrivate *priv;
|
2013-09-25 02:26:57 +00:00
|
|
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
|
|
|
AppThreadPerformer* app_thread_performer;
|
2012-11-16 06:13:03 +00:00
|
|
|
|
|
|
|
window_cocoa = GST_GL_WINDOW_COCOA (window);
|
|
|
|
priv = window_cocoa->priv;
|
2009-02-26 00:06:58 +00:00
|
|
|
|
2013-09-25 02:26:57 +00:00
|
|
|
GSRegisterCurrentThread();
|
2009-02-26 00:06:58 +00:00
|
|
|
|
2013-09-25 02:26:57 +00:00
|
|
|
app_thread_performer = [[AppThreadPerformer alloc] init:window_cocoa];
|
|
|
|
[app_thread_performer performSelector:@selector(updateWindow)
|
2009-07-17 14:47:41 +00:00
|
|
|
onThread:priv->thread withObject:nil waitUntilDone:YES];
|
2009-10-26 10:44:35 +00:00
|
|
|
|
2013-11-30 16:38:13 +00:00
|
|
|
/* useful when set_window_handle is called before
|
|
|
|
* the internal NSWindow */
|
|
|
|
if (priv->parent && !priv->visible) {
|
|
|
|
gst_gl_window_cocoa_set_window_handle (window, (guintptr) priv->parent);
|
|
|
|
priv->visible = TRUE;
|
|
|
|
}
|
|
|
|
|
2013-09-25 02:26:57 +00:00
|
|
|
if (!priv->parent && !priv->visible) {
|
|
|
|
static gint x = 0;
|
|
|
|
static gint y = 0;
|
|
|
|
|
|
|
|
NSRect mainRect = [[NSScreen mainScreen] visibleFrame];
|
|
|
|
NSRect windowRect = [priv->internal_win_id frame];
|
2009-10-26 10:44:35 +00:00
|
|
|
|
2013-09-25 02:26:57 +00:00
|
|
|
GST_DEBUG ("main screen rect: %d %d %d %d\n", (int) mainRect.origin.x,
|
|
|
|
(int) mainRect.origin.y, (int) mainRect.size.width,
|
|
|
|
(int) mainRect.size.height);
|
2009-10-26 10:44:35 +00:00
|
|
|
|
2013-09-25 02:26:57 +00:00
|
|
|
windowRect.origin.x += x;
|
|
|
|
windowRect.origin.y += mainRect.size.height > y ? (mainRect.size.height - y) * 0.5 : y;
|
|
|
|
windowRect.size.width = width;
|
|
|
|
windowRect.size.height = height;
|
2009-10-26 10:44:35 +00:00
|
|
|
|
2013-09-25 02:26:57 +00:00
|
|
|
GST_DEBUG ("window rect: %d %d %d %d\n", (int) windowRect.origin.x,
|
|
|
|
(int) windowRect.origin.y, (int) windowRect.size.width,
|
|
|
|
(int) windowRect.size.height);
|
2009-10-26 10:44:35 +00:00
|
|
|
|
2013-09-25 02:26:57 +00:00
|
|
|
x += 20;
|
|
|
|
y += 20;
|
2009-10-26 10:44:35 +00:00
|
|
|
|
2010-01-05 23:13:46 +00:00
|
|
|
#ifndef GNUSTEP
|
2013-09-25 02:26:57 +00:00
|
|
|
[priv->internal_win_id setFrame:windowRect display:NO];
|
|
|
|
GST_DEBUG ("make the window available\n");
|
|
|
|
[priv->internal_win_id makeMainWindow];
|
2010-01-05 23:13:46 +00:00
|
|
|
#endif
|
2013-09-25 02:26:57 +00:00
|
|
|
[app_thread_performer performSelector:@selector(orderFront)
|
|
|
|
onThread:priv->thread withObject:nil waitUntilDone:YES];
|
2012-11-16 06:13:03 +00:00
|
|
|
|
2013-09-25 02:26:57 +00:00
|
|
|
/*[priv->internal_win_id setViewsNeedDisplay:YES]; */
|
|
|
|
priv->visible = TRUE;
|
2009-02-26 00:06:58 +00:00
|
|
|
}
|
2013-09-25 02:26:57 +00:00
|
|
|
|
|
|
|
[pool release];
|
2009-02-26 00:06:58 +00:00
|
|
|
}
|
|
|
|
|
2013-08-15 07:09:04 +00:00
|
|
|
static void
|
2012-11-16 06:13:03 +00:00
|
|
|
gst_gl_window_cocoa_run (GstGLWindow * window)
|
2009-02-26 00:06:58 +00:00
|
|
|
{
|
2012-11-16 06:13:03 +00:00
|
|
|
GstGLWindowCocoa *window_cocoa;
|
|
|
|
GstGLWindowCocoaPrivate *priv;
|
2009-02-26 00:06:58 +00:00
|
|
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
2009-07-17 14:47:41 +00:00
|
|
|
NSRunLoop *run_loop = [NSRunLoop currentRunLoop];
|
2010-01-05 23:13:46 +00:00
|
|
|
|
2012-11-16 06:13:03 +00:00
|
|
|
window_cocoa = GST_GL_WINDOW_COCOA (window);
|
|
|
|
priv = window_cocoa->priv;
|
|
|
|
|
2013-09-25 02:26:57 +00:00
|
|
|
[run_loop addPort:[NSPort port] forMode:NSDefaultRunLoopMode];
|
|
|
|
|
2012-11-16 06:13:03 +00:00
|
|
|
GST_DEBUG ("begin loop\n");
|
2013-09-25 02:26:57 +00:00
|
|
|
|
2009-02-26 00:06:58 +00:00
|
|
|
if (priv->internal_win_id != nil) {
|
2013-08-15 07:09:04 +00:00
|
|
|
priv->running = TRUE;
|
2010-01-05 23:13:46 +00:00
|
|
|
while (priv->running)
|
2009-08-03 08:13:02 +00:00
|
|
|
[run_loop runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]];
|
2012-11-16 06:13:03 +00:00
|
|
|
|
2009-02-26 00:06:58 +00:00
|
|
|
[priv->internal_win_id release];
|
2009-07-17 14:47:41 +00:00
|
|
|
priv->internal_win_id = nil;
|
2009-02-26 00:06:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
[pool release];
|
|
|
|
|
2012-11-16 06:13:03 +00:00
|
|
|
GST_DEBUG ("end loop\n");
|
2009-02-26 00:06:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Thread safe */
|
2013-08-15 07:09:04 +00:00
|
|
|
static void
|
2013-07-15 13:58:04 +00:00
|
|
|
gst_gl_window_cocoa_quit (GstGLWindow * window)
|
2009-02-26 00:06:58 +00:00
|
|
|
{
|
2012-11-16 06:13:03 +00:00
|
|
|
GstGLWindowCocoa *window_cocoa;
|
|
|
|
GstGLWindowCocoaPrivate *priv;
|
|
|
|
|
|
|
|
window_cocoa = GST_GL_WINDOW_COCOA (window);
|
|
|
|
priv = window_cocoa->priv;
|
|
|
|
|
2009-02-26 00:06:58 +00:00
|
|
|
if (window) {
|
2010-01-05 23:13:46 +00:00
|
|
|
if (GSRegisterCurrentThread() || 1) {
|
2009-02-26 00:06:58 +00:00
|
|
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
2009-07-17 14:47:41 +00:00
|
|
|
|
2013-08-15 07:09:04 +00:00
|
|
|
AppThreadPerformer* app_thread_performer = [[AppThreadPerformer alloc]
|
|
|
|
initWithAll:window_cocoa callback:NULL userData:NULL];
|
|
|
|
[app_thread_performer performSelector:@selector(stopApp)
|
|
|
|
onThread:priv->thread withObject:nil waitUntilDone:YES];
|
2009-02-26 00:06:58 +00:00
|
|
|
|
|
|
|
[pool release];
|
|
|
|
|
|
|
|
GSUnregisterCurrentThread();
|
|
|
|
}
|
|
|
|
else
|
2012-11-16 06:13:03 +00:00
|
|
|
GST_DEBUG ("failed to register current thread, application thread is lost\n");
|
2009-02-26 00:06:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Thread safe */
|
2013-08-15 07:09:04 +00:00
|
|
|
static void
|
2013-09-25 02:26:57 +00:00
|
|
|
gst_gl_window_cocoa_send_message_async (GstGLWindow * window,
|
|
|
|
GstGLWindowCB callback, gpointer data, GDestroyNotify destroy)
|
2009-02-26 00:06:58 +00:00
|
|
|
{
|
2012-11-16 06:13:03 +00:00
|
|
|
GstGLWindowCocoa *window_cocoa;
|
|
|
|
GstGLWindowCocoaPrivate *priv;
|
|
|
|
|
|
|
|
window_cocoa = GST_GL_WINDOW_COCOA (window);
|
|
|
|
priv = window_cocoa->priv;
|
|
|
|
|
2013-09-25 02:26:57 +00:00
|
|
|
GSRegisterCurrentThread ();
|
|
|
|
|
2009-02-26 00:06:58 +00:00
|
|
|
if (window) {
|
2013-09-25 02:26:57 +00:00
|
|
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
2009-02-26 00:06:58 +00:00
|
|
|
|
2013-09-25 02:26:57 +00:00
|
|
|
AppThreadPerformer* app_thread_performer = [[AppThreadPerformer alloc]
|
|
|
|
initWithAll:window_cocoa callback:callback userData:data];
|
2009-02-26 00:06:58 +00:00
|
|
|
|
2013-09-25 02:26:57 +00:00
|
|
|
[app_thread_performer performSelector:@selector(sendToApp) onThread:priv->thread
|
|
|
|
withObject:nil waitUntilDone:NO];
|
2009-02-26 00:06:58 +00:00
|
|
|
|
2013-09-25 02:26:57 +00:00
|
|
|
[pool release];
|
2009-02-26 00:06:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-17 14:47:41 +00:00
|
|
|
/* =============================================================*/
|
|
|
|
/* */
|
|
|
|
/* GstGLNSWindow implementation */
|
|
|
|
/* */
|
|
|
|
/* =============================================================*/
|
2009-02-26 00:06:58 +00:00
|
|
|
|
|
|
|
@implementation GstGLNSWindow
|
|
|
|
|
|
|
|
- (id) initWithContentRect: (NSRect) contentRect
|
2009-07-17 14:47:41 +00:00
|
|
|
styleMask: (unsigned int) styleMask
|
2009-02-26 00:06:58 +00:00
|
|
|
backing: (NSBackingStoreType) bufferingType
|
|
|
|
defer: (BOOL) flag screen: (NSScreen *) aScreen
|
2012-11-16 06:13:03 +00:00
|
|
|
gstWin: (GstGLWindowCocoa *) cocoa {
|
2009-02-26 00:06:58 +00:00
|
|
|
|
2009-04-13 05:24:06 +00:00
|
|
|
m_isClosed = NO;
|
2012-11-16 06:13:03 +00:00
|
|
|
m_cocoa = cocoa;
|
2009-04-13 05:24:06 +00:00
|
|
|
|
2009-02-26 00:06:58 +00:00
|
|
|
self = [super initWithContentRect: contentRect
|
2009-07-17 14:47:41 +00:00
|
|
|
styleMask: styleMask backing: bufferingType
|
|
|
|
defer: flag screen:aScreen];
|
2009-02-26 00:06:58 +00:00
|
|
|
|
|
|
|
[self setReleasedWhenClosed:NO];
|
|
|
|
|
2012-11-16 06:13:03 +00:00
|
|
|
GST_DEBUG ("initializing GstGLNSWindow\n");
|
2009-02-26 00:06:58 +00:00
|
|
|
|
|
|
|
[self setTitle:@"OpenGL renderer"];
|
2013-09-25 02:26:57 +00:00
|
|
|
|
2009-07-17 14:47:41 +00:00
|
|
|
[self setBackgroundColor:[NSColor clearColor]];
|
2013-09-25 02:26:57 +00:00
|
|
|
|
2012-11-16 06:13:03 +00:00
|
|
|
[self orderOut:m_cocoa->priv->internal_win_id];
|
2009-02-26 00:06:58 +00:00
|
|
|
|
2013-07-11 19:22:57 +00:00
|
|
|
if (m_cocoa->priv->parent) {
|
|
|
|
NSWindow *window = m_cocoa->priv->parent;
|
|
|
|
[window setContentView: [m_cocoa->priv->internal_win_id contentView]];
|
|
|
|
}
|
|
|
|
|
2009-02-26 00:06:58 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2009-07-24 08:12:07 +00:00
|
|
|
- (void) setClosed {
|
|
|
|
m_isClosed = YES;
|
|
|
|
}
|
|
|
|
|
2009-02-26 00:06:58 +00:00
|
|
|
- (BOOL) isClosed {
|
|
|
|
return m_isClosed;
|
|
|
|
}
|
|
|
|
|
2009-07-24 08:12:07 +00:00
|
|
|
- (BOOL) canBecomeMainWindow {
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL) canBecomeKeyWindow {
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Called in the main thread which is never the gl thread */
|
2009-02-26 00:06:58 +00:00
|
|
|
- (BOOL) windowShouldClose:(id)sender {
|
2009-07-24 08:12:07 +00:00
|
|
|
|
|
|
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
|
|
|
AppThreadPerformer* app_thread_performer = [[AppThreadPerformer alloc]
|
2012-11-16 06:13:03 +00:00
|
|
|
init:m_cocoa];
|
2010-01-05 23:13:46 +00:00
|
|
|
|
2012-11-16 06:13:03 +00:00
|
|
|
GST_DEBUG ("user clicked the close button\n");
|
2009-07-24 08:12:07 +00:00
|
|
|
|
2012-11-16 06:13:03 +00:00
|
|
|
[app_thread_performer performSelector:@selector(closeWindow) onThread:m_cocoa->priv->thread
|
2009-07-24 08:12:07 +00:00
|
|
|
withObject:nil waitUntilDone:YES];
|
|
|
|
|
|
|
|
[pool release];
|
|
|
|
|
2009-02-26 00:06:58 +00:00
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) applicationDidFinishLaunching: (NSNotification *) not {
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) applicationWillFinishLaunching: (NSNotification *) not {
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL) applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)app {
|
|
|
|
/* the application is manually stopped by calling stopApp on the AppThreadPerformer */
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) applicationWillTerminate:(NSNotification *)aNotification {
|
2012-11-17 14:16:44 +00:00
|
|
|
#ifdef GNUSTEP
|
|
|
|
/* fixes segfault with gst-launch-1.0 -e ... and sending SIGINT (Ctrl-C)
|
|
|
|
* which causes GNUstep to run a signal handler in the main thread.
|
|
|
|
* However that thread has never been 'registered' with GNUstep so
|
|
|
|
* the autorelease magic of objective-c causes a segfault from accessing
|
|
|
|
* a null NSThread object somewhere deep in GNUstep.
|
|
|
|
*
|
|
|
|
* I put it here because this is the first time we can register the thread.
|
|
|
|
*/
|
|
|
|
GSRegisterCurrentThread();
|
|
|
|
#endif
|
2009-02-26 00:06:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
2009-07-17 14:47:41 +00:00
|
|
|
/* =============================================================*/
|
|
|
|
/* */
|
|
|
|
/* GstGLNSOpenGLView implementation */
|
|
|
|
/* */
|
|
|
|
/* =============================================================*/
|
|
|
|
|
|
|
|
@implementation GstGLNSOpenGLView
|
|
|
|
|
2012-11-16 06:13:03 +00:00
|
|
|
- (id)initWithFrame:(GstGLWindowCocoa *)window rect:(NSRect)contentRect pixelFormat:(NSOpenGLPixelFormat *)fmt {
|
2013-08-15 07:09:04 +00:00
|
|
|
|
2009-07-17 14:47:41 +00:00
|
|
|
self = [super initWithFrame: contentRect pixelFormat: fmt];
|
2013-08-15 07:09:04 +00:00
|
|
|
|
2012-11-16 06:13:03 +00:00
|
|
|
m_cocoa = window;
|
2013-08-15 07:09:04 +00:00
|
|
|
|
2010-01-05 23:13:46 +00:00
|
|
|
#ifndef GNUSTEP
|
2009-08-03 08:13:02 +00:00
|
|
|
[self setWantsLayer:NO];
|
2010-01-05 23:13:46 +00:00
|
|
|
#endif
|
2013-08-15 07:09:04 +00:00
|
|
|
|
|
|
|
return self;
|
2009-07-17 14:47:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)reshape {
|
2012-11-16 06:13:03 +00:00
|
|
|
GstGLWindow *window;
|
|
|
|
|
|
|
|
window = GST_GL_WINDOW (m_cocoa);
|
2010-01-05 23:13:46 +00:00
|
|
|
|
2013-11-08 12:12:26 +00:00
|
|
|
if (window->resize) {
|
2013-08-15 07:09:04 +00:00
|
|
|
|
2013-11-08 12:12:26 +00:00
|
|
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
|
|
|
NSRect bounds = [self bounds];
|
|
|
|
AppThreadPerformer* app_thread_performer = [[AppThreadPerformer alloc]
|
|
|
|
initWithSize:m_cocoa callback:window->resize userData:window->resize_data
|
|
|
|
toSize:bounds.size];
|
2012-11-16 06:13:03 +00:00
|
|
|
|
2013-11-08 12:12:26 +00:00
|
|
|
[app_thread_performer performSelector:@selector(resizeWindow) onThread:m_cocoa->priv->thread
|
|
|
|
withObject:nil waitUntilDone:YES];
|
2009-07-17 14:47:41 +00:00
|
|
|
|
2013-11-08 12:12:26 +00:00
|
|
|
[pool release];
|
2009-07-17 14:47:41 +00:00
|
|
|
}
|
2009-08-03 08:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void) update {
|
2009-07-17 14:47:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
/* =============================================================*/
|
|
|
|
/* */
|
|
|
|
/* AppThreadPerformer implementation */
|
|
|
|
/* */
|
|
|
|
/* =============================================================*/
|
2009-02-26 00:06:58 +00:00
|
|
|
|
|
|
|
@implementation AppThreadPerformer
|
|
|
|
|
2012-11-16 06:13:03 +00:00
|
|
|
- (id) init: (GstGLWindowCocoa *) window {
|
|
|
|
m_cocoa = window;
|
2009-02-26 00:06:58 +00:00
|
|
|
m_callback = NULL;
|
2009-07-17 14:47:41 +00:00
|
|
|
m_callback2 = NULL;
|
2009-02-26 00:06:58 +00:00
|
|
|
m_data = NULL;
|
2009-07-17 14:47:41 +00:00
|
|
|
m_width = 0;
|
|
|
|
m_height = 0;
|
2009-02-26 00:06:58 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2012-11-16 06:13:03 +00:00
|
|
|
- (id) initWithCallback:(GstGLWindowCocoa *)window callback:(GstGLWindowCB)callback userData:(gpointer)data {
|
|
|
|
m_cocoa = window;
|
2009-02-26 00:06:58 +00:00
|
|
|
m_callback = callback;
|
2009-07-17 14:47:41 +00:00
|
|
|
m_callback2 = NULL;
|
|
|
|
m_data = data;
|
|
|
|
m_width = 0;
|
|
|
|
m_height = 0;
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2012-11-16 06:13:03 +00:00
|
|
|
- (id) initWithSize: (GstGLWindowCocoa *) window
|
|
|
|
callback:(GstGLWindowResizeCB)callback userData:(gpointer)data
|
|
|
|
toSize:(NSSize)size {
|
|
|
|
m_cocoa = window;
|
2009-07-17 14:47:41 +00:00
|
|
|
m_callback = NULL;
|
|
|
|
m_callback2 = callback;
|
2009-02-26 00:06:58 +00:00
|
|
|
m_data = data;
|
2009-07-17 14:47:41 +00:00
|
|
|
m_width = size.width;
|
|
|
|
m_height = size.height;
|
2009-02-26 00:06:58 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2012-11-16 06:13:03 +00:00
|
|
|
- (id) initWithAll: (GstGLWindowCocoa *) window
|
|
|
|
callback:(GstGLWindowCB) callback userData: (gpointer) data {
|
|
|
|
m_cocoa = window;
|
2009-02-26 00:06:58 +00:00
|
|
|
m_callback = callback;
|
2009-07-17 14:47:41 +00:00
|
|
|
m_callback2 = NULL;
|
2009-02-26 00:06:58 +00:00
|
|
|
m_data = data;
|
2009-07-17 14:47:41 +00:00
|
|
|
m_width = 0;
|
|
|
|
m_height = 0;
|
2009-02-26 00:06:58 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) updateWindow {
|
2012-11-16 06:13:03 +00:00
|
|
|
if (m_cocoa->priv->running) {
|
2009-02-26 00:06:58 +00:00
|
|
|
|
2012-11-16 06:13:03 +00:00
|
|
|
if (![m_cocoa->priv->internal_win_id isClosed]) {
|
2009-02-26 00:06:58 +00:00
|
|
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
|
|
|
|
2009-08-03 08:13:02 +00:00
|
|
|
/* draw opengl scene in the back buffer */
|
2012-11-16 06:13:03 +00:00
|
|
|
GST_GL_WINDOW (m_cocoa)->draw (GST_GL_WINDOW (m_cocoa)->draw_data);
|
2009-08-03 08:13:02 +00:00
|
|
|
/* Copy the back buffer to the front buffer */
|
2012-11-16 06:13:03 +00:00
|
|
|
[[[m_cocoa->priv->internal_win_id contentView] openGLContext] flushBuffer];
|
2009-02-26 00:06:58 +00:00
|
|
|
|
|
|
|
[pool release];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-17 14:47:41 +00:00
|
|
|
- (void) resizeWindow {
|
2012-11-16 06:13:03 +00:00
|
|
|
if (m_cocoa->priv->running && ![m_cocoa->priv->internal_win_id isClosed]) {
|
2009-07-17 14:47:41 +00:00
|
|
|
m_callback2 (m_data, m_width, m_height);
|
2012-11-16 06:13:03 +00:00
|
|
|
[[[m_cocoa->priv->internal_win_id contentView] openGLContext] update];
|
|
|
|
GST_GL_WINDOW (m_cocoa)->draw (GST_GL_WINDOW (m_cocoa)->draw_data);
|
|
|
|
[[[m_cocoa->priv->internal_win_id contentView] openGLContext] flushBuffer];
|
2009-07-24 08:12:07 +00:00
|
|
|
}
|
2009-02-26 00:06:58 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 14:47:41 +00:00
|
|
|
- (void) sendToApp {
|
2013-09-25 02:26:57 +00:00
|
|
|
if (m_callback)
|
2009-07-17 14:47:41 +00:00
|
|
|
m_callback (m_data);
|
2009-02-26 00:06:58 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 14:47:41 +00:00
|
|
|
- (void) setWindow {
|
2009-02-26 00:06:58 +00:00
|
|
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
2012-11-16 06:13:03 +00:00
|
|
|
NSWindow *window = m_cocoa->priv->parent;
|
2013-11-30 16:38:13 +00:00
|
|
|
|
2012-11-16 06:13:03 +00:00
|
|
|
[m_cocoa->priv->internal_win_id orderOut:m_cocoa->priv->internal_win_id];
|
2013-11-30 16:38:13 +00:00
|
|
|
|
2012-11-16 06:13:03 +00:00
|
|
|
[window setContentView: [m_cocoa->priv->internal_win_id contentView]];
|
2009-07-24 08:12:07 +00:00
|
|
|
|
2009-02-26 00:06:58 +00:00
|
|
|
[pool release];
|
|
|
|
}
|
|
|
|
|
2009-07-17 14:47:41 +00:00
|
|
|
- (void) stopApp {
|
2013-07-10 14:47:23 +00:00
|
|
|
#ifdef GNUSTEP
|
|
|
|
NSAutoreleasePool *pool = nil;
|
|
|
|
#endif
|
2012-11-16 06:13:03 +00:00
|
|
|
|
|
|
|
m_cocoa->priv->running = FALSE;
|
2013-07-02 12:45:08 +00:00
|
|
|
if (m_callback)
|
|
|
|
m_callback (m_data);
|
|
|
|
|
2012-11-16 06:13:03 +00:00
|
|
|
#ifdef GNUSTEP
|
|
|
|
pool = [[NSAutoreleasePool alloc] init];
|
2010-01-05 23:13:46 +00:00
|
|
|
if ([NSApp isRunning])
|
|
|
|
[NSApp stop:self];
|
|
|
|
[pool release];
|
|
|
|
#endif
|
2009-07-24 08:12:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void) closeWindow {
|
2012-11-16 06:13:03 +00:00
|
|
|
GstGLWindow *window;
|
|
|
|
|
|
|
|
window = GST_GL_WINDOW (m_cocoa);
|
|
|
|
|
|
|
|
[m_cocoa->priv->internal_win_id setClosed];
|
|
|
|
if (window->close) {
|
|
|
|
window->close (window->close_data);
|
2009-07-24 08:12:07 +00:00
|
|
|
}
|
2012-11-16 06:13:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void) orderFront {
|
|
|
|
[m_cocoa->priv->internal_win_id orderFront:m_cocoa->priv->internal_win_id];
|
2009-07-17 14:47:41 +00:00
|
|
|
}
|
|
|
|
|
2009-02-26 00:06:58 +00:00
|
|
|
@end
|