🛠️🐜 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.

284 lines
14 KiB

  1. iOS
  2. ======
  3. ==============================================================================
  4. Building the Simple DirectMedia Layer for iOS 5.1+
  5. ==============================================================================
  6. Requirements: Mac OS X 10.8 or later and the iOS 7+ SDK.
  7. Instructions:
  8. 1. Open SDL.xcodeproj (located in Xcode-iOS/SDL) in Xcode.
  9. 2. Select your desired target, and hit build.
  10. There are three build targets:
  11. - libSDL.a:
  12. Build SDL as a statically linked library
  13. - testsdl:
  14. Build a test program (there are known test failures which are fine)
  15. - Template:
  16. Package a project template together with the SDL for iPhone static libraries and copies of the SDL headers. The template includes proper references to the SDL library and headers, skeleton code for a basic SDL program, and placeholder graphics for the application icon and startup screen.
  17. ==============================================================================
  18. Build SDL for iOS from the command line
  19. ==============================================================================
  20. 1. cd (PATH WHERE THE SDL CODE IS)/build-scripts
  21. 2. ./iosbuild.sh
  22. If everything goes fine, you should see a build/ios directory, inside there's
  23. two directories "lib" and "include".
  24. "include" contains a copy of the SDL headers that you'll need for your project,
  25. make sure to configure XCode to look for headers there.
  26. "lib" contains find two files, libSDL2.a and libSDL2main.a, you have to add both
  27. to your XCode project. These libraries contain three architectures in them,
  28. armv6 for legacy devices, armv7, and i386 (for the simulator).
  29. By default, iosbuild.sh will autodetect the SDK version you have installed using
  30. xcodebuild -showsdks, and build for iOS >= 3.0, you can override this behaviour
  31. by setting the MIN_OS_VERSION variable, ie:
  32. MIN_OS_VERSION=4.2 ./iosbuild.sh
  33. ==============================================================================
  34. Using the Simple DirectMedia Layer for iOS
  35. ==============================================================================
  36. FIXME: This needs to be updated for the latest methods
  37. Here is the easiest method:
  38. 1. Build the SDL library (libSDL2.a) and the iPhone SDL Application template.
  39. 2. Install the iPhone SDL Application template by copying it to one of Xcode's template directories. I recommend creating a directory called "SDL" in "/Developer/Platforms/iOS.platform/Developer/Library/Xcode/Project Templates/" and placing it there.
  40. 3. Start a new project using the template. The project should be immediately ready for use with SDL.
  41. Here is a more manual method:
  42. 1. Create a new iOS view based application.
  43. 2. Build the SDL static library (libSDL2.a) for iOS and include them in your project. Xcode will ignore the library that is not currently of the correct architecture, hence your app will work both on iOS and in the iOS Simulator.
  44. 3. Include the SDL header files in your project.
  45. 4. Remove the ApplicationDelegate.h and ApplicationDelegate.m files -- SDL for iOS provides its own UIApplicationDelegate. Remove MainWindow.xib -- SDL for iOS produces its user interface programmatically.
  46. 5. Delete the contents of main.m and program your app as a regular SDL program instead. You may replace main.m with your own main.c, but you must tell Xcode not to use the project prefix file, as it includes Objective-C code.
  47. ==============================================================================
  48. Notes -- Retina / High-DPI and window sizes
  49. ==============================================================================
  50. Window and display mode sizes in SDL are in "screen coordinates" (or "points",
  51. in Apple's terminology) rather than in pixels. On iOS this means that a window
  52. created on an iPhone 6 will have a size in screen coordinates of 375 x 667,
  53. rather than a size in pixels of 750 x 1334. All iOS apps are expected to
  54. size their content based on screen coordinates / points rather than pixels,
  55. as this allows different iOS devices to have different pixel densities
  56. (Retina versus non-Retina screens, etc.) without apps caring too much.
  57. By default SDL will not use the full pixel density of the screen on
  58. Retina/high-dpi capable devices. Use the SDL_WINDOW_ALLOW_HIGHDPI flag when
  59. creating your window to enable high-dpi support.
  60. When high-dpi support is enabled, SDL_GetWindowSize() and display mode sizes
  61. will still be in "screen coordinates" rather than pixels, but the window will
  62. have a much greater pixel density when the device supports it, and the
  63. SDL_GL_GetDrawableSize() or SDL_GetRendererOutputSize() functions (depending on
  64. whether raw OpenGL or the SDL_Render API is used) can be queried to determine
  65. the size in pixels of the drawable screen framebuffer.
  66. Some OpenGL ES functions such as glViewport expect sizes in pixels rather than
  67. sizes in screen coordinates. When doing 2D rendering with OpenGL ES, an
  68. orthographic projection matrix using the size in screen coordinates
  69. (SDL_GetWindowSize()) can be used in order to display content at the same scale
  70. no matter whether a Retina device is used or not.
  71. ==============================================================================
  72. Notes -- Application events
  73. ==============================================================================
  74. On iOS the application goes through a fixed life cycle and you will get
  75. notifications of state changes via application events. When these events
  76. are delivered you must handle them in an event callback because the OS may
  77. not give you any processing time after the events are delivered.
  78. e.g.
  79. int HandleAppEvents(void *userdata, SDL_Event *event)
  80. {
  81. switch (event->type)
  82. {
  83. case SDL_APP_TERMINATING:
  84. /* Terminate the app.
  85. Shut everything down before returning from this function.
  86. */
  87. return 0;
  88. case SDL_APP_LOWMEMORY:
  89. /* You will get this when your app is paused and iOS wants more memory.
  90. Release as much memory as possible.
  91. */
  92. return 0;
  93. case SDL_APP_WILLENTERBACKGROUND:
  94. /* Prepare your app to go into the background. Stop loops, etc.
  95. This gets called when the user hits the home button, or gets a call.
  96. */
  97. return 0;
  98. case SDL_APP_DIDENTERBACKGROUND:
  99. /* This will get called if the user accepted whatever sent your app to the background.
  100. If the user got a phone call and canceled it, you'll instead get an SDL_APP_DIDENTERFOREGROUND event and restart your loops.
  101. When you get this, you have 5 seconds to save all your state or the app will be terminated.
  102. Your app is NOT active at this point.
  103. */
  104. return 0;
  105. case SDL_APP_WILLENTERFOREGROUND:
  106. /* This call happens when your app is coming back to the foreground.
  107. Restore all your state here.
  108. */
  109. return 0;
  110. case SDL_APP_DIDENTERFOREGROUND:
  111. /* Restart your loops here.
  112. Your app is interactive and getting CPU again.
  113. */
  114. return 0;
  115. default:
  116. /* No special processing, add it to the event queue */
  117. return 1;
  118. }
  119. }
  120. int main(int argc, char *argv[])
  121. {
  122. SDL_SetEventFilter(HandleAppEvents, NULL);
  123. ... run your main loop
  124. return 0;
  125. }
  126. ==============================================================================
  127. Notes -- Accelerometer as Joystick
  128. ==============================================================================
  129. 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.
  130. 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.
  131. ==============================================================================
  132. Notes -- OpenGL ES
  133. ==============================================================================
  134. Your SDL application for iOS uses OpenGL ES for video by default.
  135. 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().
  136. If your application doesn't use OpenGL's depth buffer, you may find significant performance improvement by setting SDL_GL_DEPTH_SIZE to 0.
  137. 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.
  138. 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:
  139. - The drawable Renderbuffer must be bound to the GL_RENDERBUFFER binding point when SDL_GL_SwapWindow() is called.
  140. - The drawable Framebuffer Object must be bound while rendering to the screen and when SDL_GL_SwapWindow() is called.
  141. - 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.
  142. The above objects can be obtained via SDL_GetWindowWMInfo() (in SDL_syswm.h).
  143. ==============================================================================
  144. Notes -- Keyboard
  145. ==============================================================================
  146. The SDL keyboard API has been extended to support on-screen keyboards:
  147. void SDL_StartTextInput()
  148. -- enables text events and reveals the onscreen keyboard.
  149. void SDL_StopTextInput()
  150. -- disables text events and hides the onscreen keyboard.
  151. SDL_bool SDL_IsTextInputActive()
  152. -- returns whether or not text events are enabled (and the onscreen keyboard is visible)
  153. ==============================================================================
  154. Notes -- Reading and Writing files
  155. ==============================================================================
  156. 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.
  157. Once your application is installed its directory tree looks like:
  158. MySDLApp Home/
  159. MySDLApp.app
  160. Documents/
  161. Library/
  162. Preferences/
  163. tmp/
  164. 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".
  165. More information on this subject is available here:
  166. http://developer.apple.com/library/ios/#documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/Introduction/Introduction.html
  167. ==============================================================================
  168. Notes -- iPhone SDL limitations
  169. ==============================================================================
  170. Windows:
  171. 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).
  172. Textures:
  173. The optimal texture formats on iOS are SDL_PIXELFORMAT_ABGR8888, SDL_PIXELFORMAT_ABGR8888, SDL_PIXELFORMAT_BGR888, and SDL_PIXELFORMAT_RGB24 pixel formats.
  174. Loading Shared Objects:
  175. 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.
  176. ==============================================================================
  177. Game Center
  178. ==============================================================================
  179. 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:
  180. int SDL_iPhoneSetAnimationCallback(SDL_Window * window, int interval, void (*callback)(void*), void *callbackParam);
  181. 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.
  182. e.g.
  183. extern "C"
  184. void ShowFrame(void*)
  185. {
  186. ... do event handling, frame logic and rendering ...
  187. }
  188. int main(int argc, char *argv[])
  189. {
  190. ... initialize game ...
  191. #if __IPHONEOS__
  192. // Initialize the Game Center for scoring and matchmaking
  193. InitGameCenter();
  194. // Set up the game to run in the window animation callback on iOS
  195. // so that Game Center and so forth works correctly.
  196. SDL_iPhoneSetAnimationCallback(window, 1, ShowFrame, NULL);
  197. #else
  198. while ( running ) {
  199. ShowFrame(0);
  200. DelayFrame();
  201. }
  202. #endif
  203. return 0;
  204. }
  205. ==============================================================================
  206. Deploying to older versions of iOS
  207. ==============================================================================
  208. SDL supports deploying to older versions of iOS than are supported by the latest version of Xcode, all the way back to iOS 6.1
  209. In order to do that you need to download an older version of Xcode:
  210. https://developer.apple.com/download/more/?name=Xcode
  211. 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
  212. 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
  213. Open your project and set your deployment target to the desired version of iOS
  214. 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