🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

307 lines
16 KiB

  1. iOS
  2. ======
  3. Building the Simple DirectMedia Layer for iOS 9.0+
  4. ==============================================================================
  5. Requirements: Mac OS X 10.9 or later and the iOS 9.0 or newer SDK.
  6. Instructions:
  7. 1. Open SDL.xcodeproj (located in Xcode/SDL) in Xcode.
  8. 2. Select your desired target, and hit build.
  9. Using the Simple DirectMedia Layer for iOS
  10. ==============================================================================
  11. 1. Run Xcode and create a new project using the iOS Game template, selecting the Objective C language and Metal game technology.
  12. 2. In the main view, delete all files except for Assets and LaunchScreen
  13. 3. Right click the project in the main view, select "Add Files...", and add the SDL project, Xcode/SDL/SDL.xcodeproj
  14. 4. Select the project in the main view, go to the "Info" tab and under "Custom iOS Target Properties" remove the line "Main storyboard file base name"
  15. 5. Select the project in the main view, go to the "Build Settings" tab, select "All", and edit "Header Search Path" and drag over the SDL "Public Headers" folder from the left
  16. 6. Select the project in the main view, go to the "Build Phases" tab, select "Link Binary With Libraries", and add SDL2.framework from "Framework-iOS"
  17. 7. Select the project in the main view, go to the "General" tab, scroll down to "Frameworks, Libraries, and Embedded Content", and select "Embed & Sign" for the SDL library.
  18. 8. In the main view, expand SDL -> Library Source -> main -> uikit and drag SDL_uikit_main.c into your game files
  19. 9. Add the source files that you would normally have for an SDL program, making sure to have #include "SDL.h" at the top of the file containing your main() function.
  20. 10. Add any assets that your application needs.
  21. 11. Enjoy!
  22. TODO: Add information regarding App Store requirements such as icons, etc.
  23. Notes -- Retina / High-DPI and window sizes
  24. ==============================================================================
  25. Window and display mode sizes in SDL are in "screen coordinates" (or "points",
  26. in Apple's terminology) rather than in pixels. On iOS this means that a window
  27. created on an iPhone 6 will have a size in screen coordinates of 375 x 667,
  28. rather than a size in pixels of 750 x 1334. All iOS apps are expected to
  29. size their content based on screen coordinates / points rather than pixels,
  30. as this allows different iOS devices to have different pixel densities
  31. (Retina versus non-Retina screens, etc.) without apps caring too much.
  32. By default SDL will not use the full pixel density of the screen on
  33. Retina/high-dpi capable devices. Use the SDL_WINDOW_ALLOW_HIGHDPI flag when
  34. creating your window to enable high-dpi support.
  35. When high-dpi support is enabled, SDL_GetWindowSize() and display mode sizes
  36. will still be in "screen coordinates" rather than pixels, but the window will
  37. have a much greater pixel density when the device supports it, and the
  38. SDL_GL_GetDrawableSize() or SDL_GetRendererOutputSize() functions (depending on
  39. whether raw OpenGL or the SDL_Render API is used) can be queried to determine
  40. the size in pixels of the drawable screen framebuffer.
  41. Some OpenGL ES functions such as glViewport expect sizes in pixels rather than
  42. sizes in screen coordinates. When doing 2D rendering with OpenGL ES, an
  43. orthographic projection matrix using the size in screen coordinates
  44. (SDL_GetWindowSize()) can be used in order to display content at the same scale
  45. no matter whether a Retina device is used or not.
  46. Notes -- Application events
  47. ==============================================================================
  48. On iOS the application goes through a fixed life cycle and you will get
  49. notifications of state changes via application events. When these events
  50. are delivered you must handle them in an event callback because the OS may
  51. not give you any processing time after the events are delivered.
  52. e.g.
  53. int HandleAppEvents(void *userdata, SDL_Event *event)
  54. {
  55. switch (event->type)
  56. {
  57. case SDL_APP_TERMINATING:
  58. /* Terminate the app.
  59. Shut everything down before returning from this function.
  60. */
  61. return 0;
  62. case SDL_APP_LOWMEMORY:
  63. /* You will get this when your app is paused and iOS wants more memory.
  64. Release as much memory as possible.
  65. */
  66. return 0;
  67. case SDL_APP_WILLENTERBACKGROUND:
  68. /* Prepare your app to go into the background. Stop loops, etc.
  69. This gets called when the user hits the home button, or gets a call.
  70. */
  71. return 0;
  72. case SDL_APP_DIDENTERBACKGROUND:
  73. /* This will get called if the user accepted whatever sent your app to the background.
  74. If the user got a phone call and canceled it, you'll instead get an SDL_APP_DIDENTERFOREGROUND event and restart your loops.
  75. When you get this, you have 5 seconds to save all your state or the app will be terminated.
  76. Your app is NOT active at this point.
  77. */
  78. return 0;
  79. case SDL_APP_WILLENTERFOREGROUND:
  80. /* This call happens when your app is coming back to the foreground.
  81. Restore all your state here.
  82. */
  83. return 0;
  84. case SDL_APP_DIDENTERFOREGROUND:
  85. /* Restart your loops here.
  86. Your app is interactive and getting CPU again.
  87. */
  88. return 0;
  89. default:
  90. /* No special processing, add it to the event queue */
  91. return 1;
  92. }
  93. }
  94. int main(int argc, char *argv[])
  95. {
  96. SDL_SetEventFilter(HandleAppEvents, NULL);
  97. ... run your main loop
  98. return 0;
  99. }
  100. Notes -- Accelerometer as Joystick
  101. ==============================================================================
  102. SDL for iPhone supports polling the built in accelerometer as a joystick device. For an example on how to do this, see the accelerometer.c in the demos directory.
  103. The main thing to note when using the accelerometer with SDL is that while the iPhone natively reports accelerometer as floating point values in units of g-force, SDL_JoystickGetAxis() reports joystick values as signed integers. Hence, in order to convert between the two, some clamping and scaling is necessary on the part of the iPhone SDL joystick driver. To convert SDL_JoystickGetAxis() reported values BACK to units of g-force, simply multiply the values by SDL_IPHONE_MAX_GFORCE / 0x7FFF.
  104. Notes -- OpenGL ES
  105. ==============================================================================
  106. Your SDL application for iOS uses OpenGL ES for video by default.
  107. OpenGL ES for iOS supports several display pixel formats, such as RGBA8 and RGB565, which provide a 32 bit and 16 bit color buffer respectively. By default, the implementation uses RGB565, but you may use RGBA8 by setting each color component to 8 bits in SDL_GL_SetAttribute().
  108. If your application doesn't use OpenGL's depth buffer, you may find significant performance improvement by setting SDL_GL_DEPTH_SIZE to 0.
  109. Finally, if your application completely redraws the screen each frame, you may find significant performance improvement by setting the attribute SDL_GL_RETAINED_BACKING to 0.
  110. OpenGL ES on iOS doesn't use the traditional system-framebuffer setup provided in other operating systems. Special care must be taken because of this:
  111. - The drawable Renderbuffer must be bound to the GL_RENDERBUFFER binding point when SDL_GL_SwapWindow() is called.
  112. - The drawable Framebuffer Object must be bound while rendering to the screen and when SDL_GL_SwapWindow() is called.
  113. - If multisample antialiasing (MSAA) is used and glReadPixels is used on the screen, the drawable framebuffer must be resolved to the MSAA resolve framebuffer (via glBlitFramebuffer or glResolveMultisampleFramebufferAPPLE), and the MSAA resolve framebuffer must be bound to the GL_READ_FRAMEBUFFER binding point, before glReadPixels is called.
  114. The above objects can be obtained via SDL_GetWindowWMInfo() (in SDL_syswm.h).
  115. Notes -- Keyboard
  116. ==============================================================================
  117. The SDL keyboard API has been extended to support on-screen keyboards:
  118. void SDL_StartTextInput()
  119. -- enables text events and reveals the onscreen keyboard.
  120. void SDL_StopTextInput()
  121. -- disables text events and hides the onscreen keyboard.
  122. SDL_bool SDL_IsTextInputActive()
  123. -- returns whether or not text events are enabled (and the onscreen keyboard is visible)
  124. Notes -- Mouse
  125. ==============================================================================
  126. iOS now supports Bluetooth mice on iPad, but by default will provide the mouse input as touch. In order for SDL to see the real mouse events, you should set the key UIApplicationSupportsIndirectInputEvents to true in your Info.plist
  127. Notes -- Reading and Writing files
  128. ==============================================================================
  129. Each application installed on iPhone resides in a sandbox which includes its own Application Home directory. Your application may not access files outside this directory.
  130. Once your application is installed its directory tree looks like:
  131. MySDLApp Home/
  132. MySDLApp.app
  133. Documents/
  134. Library/
  135. Preferences/
  136. tmp/
  137. When your SDL based iPhone application starts up, it sets the working directory to the main bundle (MySDLApp Home/MySDLApp.app), where your application resources are stored. You cannot write to this directory. Instead, I advise you to write document files to "../Documents/" and preferences to "../Library/Preferences".
  138. More information on this subject is available here:
  139. http://developer.apple.com/library/ios/#documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/Introduction/Introduction.html
  140. Notes -- xcFramework
  141. ==============================================================================
  142. The SDL.xcodeproj file now includes a target to build SDL2.xcframework. An xcframework is a new (Xcode 11) uber-framework which can handle any combination of processor type and target OS platform.
  143. In the past, iOS devices were always an ARM variant processor, and the simulator was always i386 or x86_64, and thus libraries could be combined into a single framework for both simulator and device. With the introduction of the Apple Silicon ARM-based machines, regular frameworks would collide as CPU type was no longer sufficient to differentiate the platform. So Apple created the new xcframework library package.
  144. The xcframework target builds into a Products directory alongside the SDL.xcodeproj file, as SDL2.xcframework. This can be brought in to any iOS project and will function properly for both simulator and device, no matter their CPUs. Note that Intel Macs cannot cross-compile for Apple Silicon Macs. If you need AS compatibility, perform this build on an Apple Silicon Mac.
  145. This target requires Xcode 11 or later. The target will simply fail to build if attempted on older Xcodes.
  146. In addition, on Apple platforms, main() cannot be in a dynamically loaded library. This means that iOS apps which used the statically-linked libSDL2.lib and now link with the xcframwork will need to define their own main() to call SDL_UIKitRunApp(), like this:
  147. #ifndef SDL_MAIN_HANDLED
  148. #ifdef main
  149. #undef main
  150. #endif
  151. int
  152. main(int argc, char *argv[])
  153. {
  154. return SDL_UIKitRunApp(argc, argv, SDL_main);
  155. }
  156. #endif /* !SDL_MAIN_HANDLED */
  157. Using an xcFramework is similar to using a regular framework. However, issues have been seen with the build system not seeing the headers in the xcFramework. To remedy this, add the path to the xcFramework in your app's target ==> Build Settings ==> Framework Search Paths and mark it recursive (this is critical). Also critical is to remove "*.framework" from Build Settings ==> Sub-Directories to Exclude in Recursive Searches. Clean the build folder, and on your next build the build system should be able to see any of these in your code, as expected:
  158. #include "SDL_main.h"
  159. #include <SDL.h>
  160. #include <SDL_main.h>
  161. Notes -- iPhone SDL limitations
  162. ==============================================================================
  163. Windows:
  164. Full-size, single window applications only. You cannot create multi-window SDL applications for iPhone OS. The application window will fill the display, though you have the option of turning on or off the menu-bar (pass SDL_CreateWindow() the flag SDL_WINDOW_BORDERLESS).
  165. Textures:
  166. The optimal texture formats on iOS are SDL_PIXELFORMAT_ABGR8888, SDL_PIXELFORMAT_ABGR8888, SDL_PIXELFORMAT_BGR888, and SDL_PIXELFORMAT_RGB24 pixel formats.
  167. Loading Shared Objects:
  168. This is disabled by default since it seems to break the terms of the iOS SDK agreement for iOS versions prior to iOS 8. It can be re-enabled in SDL_config_iphoneos.h.
  169. Notes -- CoreBluetooth.framework
  170. ==============================================================================
  171. SDL_JOYSTICK_HIDAPI is disabled by default. It can give you access to a lot
  172. more game controller devices, but it requires permission from the user before
  173. your app will be able to talk to the Bluetooth hardware. "Made For iOS"
  174. branded controllers do not need this as we don't have to speak to them
  175. directly with raw bluetooth, so many apps can live without this.
  176. You'll need to link with CoreBluetooth.framework and add something like this
  177. to your Info.plist:
  178. <key>NSBluetoothPeripheralUsageDescription</key>
  179. <string>MyApp would like to remain connected to nearby bluetooth Game Controllers and Game Pads even when you're not using the app.</string>
  180. Game Center
  181. ==============================================================================
  182. Game Center integration might require that you break up your main loop in order to yield control back to the system. In other words, instead of running an endless main loop, you run each frame in a callback function, using:
  183. int SDL_iPhoneSetAnimationCallback(SDL_Window * window, int interval, void (*callback)(void*), void *callbackParam);
  184. This will set up the given function to be called back on the animation callback, and then you have to return from main() to let the Cocoa event loop run.
  185. e.g.
  186. extern "C"
  187. void ShowFrame(void*)
  188. {
  189. ... do event handling, frame logic and rendering ...
  190. }
  191. int main(int argc, char *argv[])
  192. {
  193. ... initialize game ...
  194. #if __IPHONEOS__
  195. // Initialize the Game Center for scoring and matchmaking
  196. InitGameCenter();
  197. // Set up the game to run in the window animation callback on iOS
  198. // so that Game Center and so forth works correctly.
  199. SDL_iPhoneSetAnimationCallback(window, 1, ShowFrame, NULL);
  200. #else
  201. while ( running ) {
  202. ShowFrame(0);
  203. DelayFrame();
  204. }
  205. #endif
  206. return 0;
  207. }
  208. Deploying to older versions of iOS
  209. ==============================================================================
  210. SDL supports deploying to older versions of iOS than are supported by the latest version of Xcode, all the way back to iOS 8.0
  211. In order to do that you need to download an older version of Xcode:
  212. https://developer.apple.com/download/more/?name=Xcode
  213. Open the package contents of the older Xcode and your newer version of Xcode and copy over the folders in Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport
  214. Then open the file Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/SDKSettings.plist and add the versions of iOS you want to deploy to the key Root/DefaultProperties/DEPLOYMENT_TARGET_SUGGESTED_VALUES
  215. Open your project and set your deployment target to the desired version of iOS
  216. Finally, remove GameController from the list of frameworks linked by your application and edit the build settings for "Other Linker Flags" and add -weak_framework GameController