Imported Upstream version 2.0.14
[platform/upstream/SDL.git] / docs / README-ios.md
1 iOS\r
2 ======\r
3 \r
4 ==============================================================================\r
5 Building the Simple DirectMedia Layer for iOS 5.1+\r
6 ==============================================================================\r
7 \r
8 Requirements: Mac OS X 10.8 or later and the iOS 7+ SDK.\r
9 \r
10 Instructions:\r
11 \r
12 1.  Open SDL.xcodeproj (located in Xcode-iOS/SDL) in Xcode.\r
13 2.  Select your desired target, and hit build.\r
14 \r
15 There are three build targets:\r
16 - libSDL.a:\r
17         Build SDL as a statically linked library\r
18 - testsdl:\r
19         Build a test program (there are known test failures which are fine)\r
20 - Template:\r
21         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.\r
22 \r
23 \r
24 ==============================================================================\r
25 Build SDL for iOS from the command line\r
26 ==============================================================================\r
27 \r
28 1. cd (PATH WHERE THE SDL CODE IS)/build-scripts\r
29 2. ./iosbuild.sh\r
30 \r
31 If everything goes fine, you should see a build/ios directory, inside there's\r
32 two directories "lib" and "include". \r
33 "include" contains a copy of the SDL headers that you'll need for your project,\r
34 make sure to configure XCode to look for headers there.\r
35 "lib" contains find two files, libSDL2.a and libSDL2main.a, you have to add both \r
36 to your XCode project. These libraries contain three architectures in them,\r
37 armv6 for legacy devices, armv7, and i386 (for the simulator).\r
38 By default, iosbuild.sh will autodetect the SDK version you have installed using \r
39 xcodebuild -showsdks, and build for iOS >= 3.0, you can override this behaviour \r
40 by setting the MIN_OS_VERSION variable, ie:\r
41 \r
42 MIN_OS_VERSION=4.2 ./iosbuild.sh\r
43 \r
44 ==============================================================================\r
45 Using the Simple DirectMedia Layer for iOS\r
46 ==============================================================================\r
47 \r
48 FIXME: This needs to be updated for the latest methods\r
49 \r
50 Here is the easiest method:\r
51 1.  Build the SDL library (libSDL2.a) and the iPhone SDL Application template.\r
52 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.\r
53 3.  Start a new project using the template.  The project should be immediately ready for use with SDL.\r
54 \r
55 Here is a more manual method:\r
56 1.  Create a new iOS view based application.\r
57 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.\r
58 3.  Include the SDL header files in your project.\r
59 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.\r
60 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.\r
61 \r
62 ==============================================================================\r
63 Notes -- Retina / High-DPI and window sizes\r
64 ==============================================================================\r
65 \r
66 Window and display mode sizes in SDL are in "screen coordinates" (or "points",\r
67 in Apple's terminology) rather than in pixels. On iOS this means that a window\r
68 created on an iPhone 6 will have a size in screen coordinates of 375 x 667,\r
69 rather than a size in pixels of 750 x 1334. All iOS apps are expected to\r
70 size their content based on screen coordinates / points rather than pixels,\r
71 as this allows different iOS devices to have different pixel densities\r
72 (Retina versus non-Retina screens, etc.) without apps caring too much.\r
73 \r
74 By default SDL will not use the full pixel density of the screen on\r
75 Retina/high-dpi capable devices. Use the SDL_WINDOW_ALLOW_HIGHDPI flag when\r
76 creating your window to enable high-dpi support.\r
77 \r
78 When high-dpi support is enabled, SDL_GetWindowSize() and display mode sizes\r
79 will still be in "screen coordinates" rather than pixels, but the window will\r
80 have a much greater pixel density when the device supports it, and the\r
81 SDL_GL_GetDrawableSize() or SDL_GetRendererOutputSize() functions (depending on\r
82 whether raw OpenGL or the SDL_Render API is used) can be queried to determine\r
83 the size in pixels of the drawable screen framebuffer.\r
84 \r
85 Some OpenGL ES functions such as glViewport expect sizes in pixels rather than\r
86 sizes in screen coordinates. When doing 2D rendering with OpenGL ES, an\r
87 orthographic projection matrix using the size in screen coordinates\r
88 (SDL_GetWindowSize()) can be used in order to display content at the same scale\r
89 no matter whether a Retina device is used or not.\r
90 \r
91 ==============================================================================\r
92 Notes -- Application events\r
93 ==============================================================================\r
94 \r
95 On iOS the application goes through a fixed life cycle and you will get\r
96 notifications of state changes via application events. When these events\r
97 are delivered you must handle them in an event callback because the OS may\r
98 not give you any processing time after the events are delivered.\r
99 \r
100 e.g.\r
101 \r
102     int HandleAppEvents(void *userdata, SDL_Event *event)\r
103     {\r
104         switch (event->type)\r
105         {\r
106         case SDL_APP_TERMINATING:\r
107             /* Terminate the app.\r
108                Shut everything down before returning from this function.\r
109             */\r
110             return 0;\r
111         case SDL_APP_LOWMEMORY:\r
112             /* You will get this when your app is paused and iOS wants more memory.\r
113                Release as much memory as possible.\r
114             */\r
115             return 0;\r
116         case SDL_APP_WILLENTERBACKGROUND:\r
117             /* Prepare your app to go into the background.  Stop loops, etc.\r
118                This gets called when the user hits the home button, or gets a call.\r
119             */\r
120             return 0;\r
121         case SDL_APP_DIDENTERBACKGROUND:\r
122             /* This will get called if the user accepted whatever sent your app to the background.\r
123                If the user got a phone call and canceled it, you'll instead get an SDL_APP_DIDENTERFOREGROUND event and restart your loops.\r
124                When you get this, you have 5 seconds to save all your state or the app will be terminated.\r
125                Your app is NOT active at this point.\r
126             */\r
127             return 0;\r
128         case SDL_APP_WILLENTERFOREGROUND:\r
129             /* This call happens when your app is coming back to the foreground.\r
130                Restore all your state here.\r
131             */\r
132             return 0;\r
133         case SDL_APP_DIDENTERFOREGROUND:\r
134             /* Restart your loops here.\r
135                Your app is interactive and getting CPU again.\r
136             */\r
137             return 0;\r
138         default:\r
139             /* No special processing, add it to the event queue */\r
140             return 1;\r
141         }\r
142     }\r
143     \r
144     int main(int argc, char *argv[])\r
145     {\r
146         SDL_SetEventFilter(HandleAppEvents, NULL);\r
147     \r
148         ... run your main loop\r
149     \r
150         return 0;\r
151     }\r
152 \r
153     \r
154 ==============================================================================\r
155 Notes -- Accelerometer as Joystick\r
156 ==============================================================================\r
157 \r
158 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.\r
159 \r
160 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.\r
161 \r
162 ==============================================================================\r
163 Notes -- OpenGL ES\r
164 ==============================================================================\r
165 \r
166 Your SDL application for iOS uses OpenGL ES for video by default.\r
167 \r
168 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().\r
169 \r
170 If your application doesn't use OpenGL's depth buffer, you may find significant performance improvement by setting SDL_GL_DEPTH_SIZE to 0.\r
171 \r
172 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.\r
173 \r
174 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:\r
175 \r
176 - The drawable Renderbuffer must be bound to the GL_RENDERBUFFER binding point when SDL_GL_SwapWindow() is called.\r
177 - The drawable Framebuffer Object must be bound while rendering to the screen and when SDL_GL_SwapWindow() is called.\r
178 - 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.\r
179 \r
180 The above objects can be obtained via SDL_GetWindowWMInfo() (in SDL_syswm.h).\r
181 \r
182 ==============================================================================\r
183 Notes -- Keyboard\r
184 ==============================================================================\r
185 \r
186 The SDL keyboard API has been extended to support on-screen keyboards:\r
187 \r
188 void SDL_StartTextInput()\r
189         -- enables text events and reveals the onscreen keyboard.\r
190 \r
191 void SDL_StopTextInput()\r
192         -- disables text events and hides the onscreen keyboard.\r
193 \r
194 SDL_bool SDL_IsTextInputActive()\r
195         -- returns whether or not text events are enabled (and the onscreen keyboard is visible)\r
196 \r
197 \r
198 ==============================================================================\r
199 Notes -- Reading and Writing files\r
200 ==============================================================================\r
201 \r
202 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.\r
203 \r
204 Once your application is installed its directory tree looks like:\r
205 \r
206     MySDLApp Home/\r
207         MySDLApp.app\r
208         Documents/\r
209         Library/\r
210             Preferences/\r
211         tmp/\r
212 \r
213 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".  \r
214 \r
215 More information on this subject is available here:\r
216 http://developer.apple.com/library/ios/#documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/Introduction/Introduction.html\r
217 \r
218 ==============================================================================\r
219 Notes -- iPhone SDL limitations\r
220 ==============================================================================\r
221 \r
222 Windows:\r
223         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).\r
224 \r
225 Textures:\r
226         The optimal texture formats on iOS are SDL_PIXELFORMAT_ABGR8888, SDL_PIXELFORMAT_ABGR8888, SDL_PIXELFORMAT_BGR888, and SDL_PIXELFORMAT_RGB24 pixel formats.\r
227 \r
228 Loading Shared Objects:\r
229         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.\r
230 \r
231 ==============================================================================\r
232 Notes -- CoreBluetooth.framework\r
233 ==============================================================================\r
234 \r
235 SDL_JOYSTICK_HIDAPI is disabled by default. It can give you access to a lot\r
236 more game controller devices, but it requires permission from the user before\r
237 your app will be able to talk to the Bluetooth hardware. "Made For iOS"\r
238 branded controllers do not need this as we don't have to speak to them\r
239 directly with raw bluetooth, so many apps can live without this.\r
240 \r
241 You'll need to link with CoreBluetooth.framework and add something like this\r
242 to your Info.plist:\r
243 \r
244 <key>NSBluetoothPeripheralUsageDescription</key>\r
245 <string>MyApp would like to remain connected to nearby bluetooth Game Controllers and Game Pads even when you're not using the app.</string>\r
246 \r
247 ==============================================================================\r
248 Game Center \r
249 ==============================================================================\r
250 \r
251 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:\r
252 \r
253     int SDL_iPhoneSetAnimationCallback(SDL_Window * window, int interval, void (*callback)(void*), void *callbackParam);\r
254 \r
255 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.\r
256 \r
257 e.g.\r
258 \r
259     extern "C"\r
260     void ShowFrame(void*)\r
261     {\r
262         ... do event handling, frame logic and rendering ...\r
263     }\r
264     \r
265     int main(int argc, char *argv[])\r
266     {\r
267         ... initialize game ...\r
268     \r
269     #if __IPHONEOS__\r
270         // Initialize the Game Center for scoring and matchmaking\r
271         InitGameCenter();\r
272     \r
273         // Set up the game to run in the window animation callback on iOS\r
274         // so that Game Center and so forth works correctly.\r
275         SDL_iPhoneSetAnimationCallback(window, 1, ShowFrame, NULL);\r
276     #else\r
277         while ( running ) {\r
278             ShowFrame(0);\r
279             DelayFrame();\r
280         }\r
281     #endif\r
282         return 0;\r
283     }\r
284 \r
285 ==============================================================================\r
286 Deploying to older versions of iOS\r
287 ==============================================================================\r
288 \r
289 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\r
290 \r
291 In order to do that you need to download an older version of Xcode:\r
292 https://developer.apple.com/download/more/?name=Xcode\r
293 \r
294 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\r
295 \r
296 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\r
297 \r
298 Open your project and set your deployment target to the desired version of iOS\r
299 \r
300 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\r