SDL  2.0
SDL_cocoavideo.m
Go to the documentation of this file.
1 /*
2  Simple DirectMedia Layer
3  Copyright (C) 1997-2018 Sam Lantinga <slouken@libsdl.org>
4 
5  This software is provided 'as-is', without any express or implied
6  warranty. In no event will the authors be held liable for any damages
7  arising from the use of this software.
8 
9  Permission is granted to anyone to use this software for any purpose,
10  including commercial applications, and to alter it and redistribute it
11  freely, subject to the following restrictions:
12 
13  1. The origin of this software must not be misrepresented; you must not
14  claim that you wrote the original software. If you use this software
15  in a product, an acknowledgment in the product documentation would be
16  appreciated but is not required.
17  2. Altered source versions must be plainly marked as such, and must not be
18  misrepresented as being the original software.
19  3. This notice may not be removed or altered from any source distribution.
20 */
21 #include "../../SDL_internal.h"
22 
23 #if SDL_VIDEO_DRIVER_COCOA
24 
25 #include "SDL.h"
26 #include "SDL_endian.h"
27 #include "SDL_cocoavideo.h"
28 #include "SDL_cocoashape.h"
29 #include "SDL_cocoavulkan.h"
30 #include "SDL_assert.h"
31 
32 /* Initialization/Query functions */
33 static int Cocoa_VideoInit(_THIS);
34 static void Cocoa_VideoQuit(_THIS);
35 
36 /* Cocoa driver bootstrap functions */
37 
38 static int
39 Cocoa_Available(void)
40 {
41  return (1);
42 }
43 
44 static void
45 Cocoa_DeleteDevice(SDL_VideoDevice * device)
46 {
47  SDL_free(device->driverdata);
48  SDL_free(device);
49 }
50 
51 static SDL_VideoDevice *
52 Cocoa_CreateDevice(int devindex)
53 {
56 
58 
59  /* Initialize all variables that we clean on shutdown */
60  device = (SDL_VideoDevice *) SDL_calloc(1, sizeof(SDL_VideoDevice));
61  if (device) {
62  data = (struct SDL_VideoData *) SDL_calloc(1, sizeof(SDL_VideoData));
63  } else {
64  data = NULL;
65  }
66  if (!data) {
68  SDL_free(device);
69  return NULL;
70  }
71  device->driverdata = data;
72 
73  /* Set the function pointers */
74  device->VideoInit = Cocoa_VideoInit;
75  device->VideoQuit = Cocoa_VideoQuit;
81  device->PumpEvents = Cocoa_PumpEvents;
83 
93  device->ShowWindow = Cocoa_ShowWindow;
94  device->HideWindow = Cocoa_HideWindow;
109 
113 
114 #if SDL_VIDEO_OPENGL_CGL
115  device->GL_LoadLibrary = Cocoa_GL_LoadLibrary;
116  device->GL_GetProcAddress = Cocoa_GL_GetProcAddress;
117  device->GL_UnloadLibrary = Cocoa_GL_UnloadLibrary;
118  device->GL_CreateContext = Cocoa_GL_CreateContext;
119  device->GL_MakeCurrent = Cocoa_GL_MakeCurrent;
120  device->GL_GetDrawableSize = Cocoa_GL_GetDrawableSize;
121  device->GL_SetSwapInterval = Cocoa_GL_SetSwapInterval;
122  device->GL_GetSwapInterval = Cocoa_GL_GetSwapInterval;
123  device->GL_SwapWindow = Cocoa_GL_SwapWindow;
124  device->GL_DeleteContext = Cocoa_GL_DeleteContext;
125 #elif SDL_VIDEO_OPENGL_EGL
126  device->GL_LoadLibrary = Cocoa_GLES_LoadLibrary;
127  device->GL_GetProcAddress = Cocoa_GLES_GetProcAddress;
128  device->GL_UnloadLibrary = Cocoa_GLES_UnloadLibrary;
129  device->GL_CreateContext = Cocoa_GLES_CreateContext;
130  device->GL_MakeCurrent = Cocoa_GLES_MakeCurrent;
131  device->GL_SetSwapInterval = Cocoa_GLES_SetSwapInterval;
132  device->GL_GetSwapInterval = Cocoa_GLES_GetSwapInterval;
133  device->GL_SwapWindow = Cocoa_GLES_SwapWindow;
134  device->GL_DeleteContext = Cocoa_GLES_DeleteContext;
135 #endif
136 
137 #if SDL_VIDEO_VULKAN
138  device->Vulkan_LoadLibrary = Cocoa_Vulkan_LoadLibrary;
139  device->Vulkan_UnloadLibrary = Cocoa_Vulkan_UnloadLibrary;
140  device->Vulkan_GetInstanceExtensions = Cocoa_Vulkan_GetInstanceExtensions;
141  device->Vulkan_CreateSurface = Cocoa_Vulkan_CreateSurface;
142  device->Vulkan_GetDrawableSize = Cocoa_Vulkan_GetDrawableSize;
143 #endif
144 
148 
152 
153  device->free = Cocoa_DeleteDevice;
154 
155  return device;
156 }
157 
159  "cocoa", "SDL Cocoa video driver",
160  Cocoa_Available, Cocoa_CreateDevice
161 };
162 
163 
164 int
165 Cocoa_VideoInit(_THIS)
166 {
168 
172 
173  data->allow_spaces = ((floor(NSAppKitVersionNumber) > NSAppKitVersionNumber10_6) && SDL_GetHintBoolean(SDL_HINT_VIDEO_MAC_FULLSCREEN_SPACES, SDL_TRUE));
174 
175  /* The IOPM assertion API can disable the screensaver as of 10.7. */
176  data->screensaver_use_iopm = floor(NSAppKitVersionNumber) > NSAppKitVersionNumber10_6;
177 
178  data->swaplock = SDL_CreateMutex();
179  if (!data->swaplock) {
180  return -1;
181  }
182 
183  return 0;
184 }
185 
186 void
187 Cocoa_VideoQuit(_THIS)
188 {
193  SDL_DestroyMutex(data->swaplock);
194  data->swaplock = NULL;
195 }
196 
197 /* This function assumes that it's called from within an autorelease pool */
198 NSImage *
200 {
201  SDL_Surface *converted;
202  NSBitmapImageRep *imgrep;
203  Uint8 *pixels;
204  int i;
205  NSImage *img;
206 
207  converted = SDL_ConvertSurfaceFormat(surface, SDL_PIXELFORMAT_RGBA32, 0);
208  if (!converted) {
209  return nil;
210  }
211 
212  imgrep = [[[NSBitmapImageRep alloc] initWithBitmapDataPlanes: NULL
213  pixelsWide: converted->w
214  pixelsHigh: converted->h
215  bitsPerSample: 8
216  samplesPerPixel: 4
217  hasAlpha: YES
218  isPlanar: NO
219  colorSpaceName: NSDeviceRGBColorSpace
220  bytesPerRow: converted->pitch
221  bitsPerPixel: converted->format->BitsPerPixel] autorelease];
222  if (imgrep == nil) {
223  SDL_FreeSurface(converted);
224  return nil;
225  }
226 
227  /* Copy the pixels */
228  pixels = [imgrep bitmapData];
229  SDL_memcpy(pixels, converted->pixels, converted->h * converted->pitch);
230  SDL_FreeSurface(converted);
231 
232  /* Premultiply the alpha channel */
233  for (i = (surface->h * surface->w); i--; ) {
234  Uint8 alpha = pixels[3];
235  pixels[0] = (Uint8)(((Uint16)pixels[0] * alpha) / 255);
236  pixels[1] = (Uint8)(((Uint16)pixels[1] * alpha) / 255);
237  pixels[2] = (Uint8)(((Uint16)pixels[2] * alpha) / 255);
238  pixels += 4;
239  }
240 
241  img = [[[NSImage alloc] initWithSize: NSMakeSize(surface->w, surface->h)] autorelease];
242  if (img != nil) {
243  [img addRepresentation: imgrep];
244  }
245  return img;
246 }
247 
248 /*
249  * Mac OS X log support.
250  *
251  * This doesn't really have aything to do with the interfaces of the SDL video
252  * subsystem, but we need to stuff this into an Objective-C source code file.
253  */
254 
255 void SDL_NSLog(const char *text)
256 {
257  NSLog(@"%s", text);
258 }
259 
260 #endif /* SDL_VIDEO_DRIVER_COCOA */
261 
262 /* vim: set ts=4 sw=4 expandtab: */