comparison README.iphoneos @ 2459:c330dcd78e3a gsoc2008_iphone

Grammar, spelling, clarity.
author Holmes Futrell <hfutrell@umail.ucsb.edu>
date Mon, 18 Aug 2008 18:01:24 +0000
parents ed6a41cc2bce
children f429ccf8e35f
comparison
equal deleted inserted replaced
2458:b32df598e599 2459:c330dcd78e3a
2 Building the Simple DirectMedia Layer for iPhone OS 2.0 2 Building the Simple DirectMedia Layer for iPhone OS 2.0
3 ============================================================================== 3 ==============================================================================
4 4
5 Requirements: Mac OS X v10.5 or later and the iPhone SDK. 5 Requirements: Mac OS X v10.5 or later and the iPhone SDK.
6 6
7 To build SDL for iPhone, simply open the XCode Project (XCodeiPhoneOS/SDL/SDLiPhoneOS.xcodeproj), select the target you wish to build, and hit 'build'. You can also build in a CLI environment using the xcodebuild command line tool, if you wish. 7 To build SDL for iPhone, just open the XCode Project (XCodeiPhoneOS/SDL/SDLiPhoneOS.xcodeproj), select the target you wish to build, and hit 'build'. You can also build in a CLI environment using the xcodebuild command line tool, if you wish.
8 8
9 There are three build targets: 9 There are three build targets:
10 - StaticLibiPhoneOS: 10 - StaticLibiPhoneOS:
11 Build SDL as a statically linked (armv6) library for iPhone OS 2.0. 11 Build SDL as a statically linked (armv6) library for iPhone OS 2.0.
12 - StaticLibSimulator: 12 - StaticLibSimulator:
13 Build SDL as a statically linked (x86) library for the iPhone Simulator 13 Build SDL as a statically linked (x86) library for the iPhone Simulator
14 - Template: 14 - Template:
15 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, skeleton code for a basic SDL program, and placeholder graphics for the application icon and startup screen. 15 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.
16
17 Be advised that you'll most likely need to build both StaticLibiPhoneOS.a and StaticLibSimulator.a before you compile any projects that use SDL for iPhone.
18 16
19 ============================================================================== 17 ==============================================================================
20 Using the Simple DirectMedia Layer for iPhone OS 2.0 18 Using the Simple DirectMedia Layer for iPhone OS 2.0
21 ============================================================================== 19 ==============================================================================
22 20
23 Here's probably the easiest method: 21 Here is the easiest method:
24 1. Build the SDL libraries (libSDLiPhoneOS.a and libSDLSimulator.a) and the iPhone SDL Application template. 22 1. Build the SDL libraries (libSDLiPhoneOS.a and libSDLSimulator.a) and the iPhone SDL Application template.
25 1. Install the iPhone SDL Application template (recommended directory is /Developer/Platforms/iPhoneOS.platform/Developer/Library/XCode/Project Templates/SDL Application/) 23 1. 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/iPhoneOS.platform/Developer/Library/XCode/Project Templates/" and placing it there.
26 2. Start a new project using the template (SDL will be automatically included in your project) 24 2. Start a new project using the template. The project should be immediately ready for use with SDL.
27 25
28 Here's a more manual method: 26 Here is a more manual method:
29 1. Create a new iPhone project 27 1. Create a new iPhone view based application.
30 2. Build the SDL libraries (libSDLiPhoneOS.a and libSDLSimulator.a) 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 iPhone and in the iPhone Simulator. 28 2. Build the SDL static libraries (libSDLiPhoneOS.a and libSDLSimulator.a) for iPhone 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 iPhone and in the iPhone Simulator.
31 3. include the SDL header files in your project. 29 3. Include the SDL header files in your project.
32 4. Remove main.m and replace it with a new main.m (or main.c) which is coded like a normal SDL program. To replace main.m with a main.c, you must tell XCode not to use the project prefix file, which includes references to Cocoa Touch. 30 4. Remove the ApplicationDelegate.h and ApplicationDelegate.m files -- SDL for iPhone provides its own UIApplicationDelegate. Remove MainWindow.xib -- SDL for iPhone produces its user interface programmatically.
31 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.
33 32
34 ============================================================================== 33 ==============================================================================
35 Notes -- Touch Input 34 Notes -- Touch Input
36 ============================================================================== 35 ==============================================================================
37 36
38 Touch input in SDL for iPhone OS is presently exposed through SDL's mouse input API. Multi-touch input is reported as multiple mice, with each touch associated with a specific mouse. This association stays coherent from the time the touch starts to the time a touch ends. 37 Touch input in SDL for iPhone OS is presently exposed through SDL's mouse input API. Multi-touch input is reported as multiple mice, with each touch associated with a specific mouse. This association stays coherent from the time the touch starts to the time a touch ends.
39 38
40 By default, multi-touch is turned ON. This requires some care, because if you simply respond to mouse events without checking which mouse caused the event, you may end up fetching data from the wrong mouse, ie, an incorrect or invalid touch. To turn multi-touch OFF, you can recompile SDL for iPhone with the macro SDL_IPHONE_MULTIPLE_MICE (found in SDL_config_iphoneos.h) set to 0. 39 By default, multi-touch is turned ON. This requires some care, because if you simply respond to mouse events without checking which mouse caused the event, you may end up fetching data from the wrong mouse, ie, from an incorrect or invalid touch. To turn multi-touch OFF, you can recompile SDL for iPhone with the macro SDL_IPHONE_MULTIPLE_MICE (found in SDL_config_iphoneos.h) set to 0.
41 40
42 ============================================================================== 41 ==============================================================================
43 Notes -- Accelerometer as Joystick 42 Notes -- Accelerometer as Joystick
44 ============================================================================== 43 ==============================================================================
45 44
49 48
50 ============================================================================== 49 ==============================================================================
51 Notes -- OpenGL ES 50 Notes -- OpenGL ES
52 ============================================================================== 51 ==============================================================================
53 52
54 Your SDL application for iPhone uses OpenGL ES by default. 53 Your SDL application for iPhone uses OpenGL ES for video by default.
55 54
56 OpenGL ES for iPhone supports two display pixel formats, RGBA8 and RGB565. By default, the implementation uses RGB565, but you may use RGBA8 by setting each color component to 8 bits in SDL_GL_SetAttribute. 55 OpenGL ES for iPhone supports two display pixel formats, 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.
57 56
58 If your application doesn't use the depth buffer, you may also find significant performance improvement by setting SDL_GL_DEPTH_SIZE to 0. 57 If your application doesn't use OpenGL's depth buffer, you may find significant performance improvement by setting SDL_GL_DEPTH_SIZE to 0.
59 58
60 Finally, if your application completely redraws the screen each from, you may find significant performance improvement by setting the attribute SDL_GL_RETAINED_BACKING to 1. 59 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 1.
61 60
62 ============================================================================== 61 ==============================================================================
63 Notes -- Keyboard 62 Notes -- Keyboard
64 ============================================================================== 63 ==============================================================================
65 64
66 SDL for iPhone contains several additional functions related to keyboard functionality. These functions are not part of the SDL standard API, but are necessary for revealing and hiding the iPhone's virtual onscreen keyboard. You can use them in your own applications by including a copy of the SDL_uikitkeyboard.h header in your project. 65 SDL for iPhone contains several additional functions related to keyboard visibility. These functions are not part of the SDL standard API, but are necessary for revealing and hiding the iPhone's virtual onscreen keyboard. You can use them in your own applications by including a copy of the SDL_uikitkeyboard.h header (located in src/video/uikit) in your project.
67 66
68 int SDL_iPhoneKeyboardShow(SDL_WindowID windowID) 67 int SDL_iPhoneKeyboardShow(SDL_WindowID windowID)
69 -- reveals the onscreen keyboard. Returns 0 on success and -1 on error. 68 -- reveals the onscreen keyboard. Returns 0 on success and -1 on error.
70 int SDL_iPhoneKeyboardHide(SDL_WindowID windowID) 69 int SDL_iPhoneKeyboardHide(SDL_WindowID windowID)
71 -- hides the onscreen keyboard. Returns 0 on success and -1 on error. 70 -- hides the onscreen keyboard. Returns 0 on success and -1 on error.
76 75
77 ============================================================================== 76 ==============================================================================
78 Notes -- Reading and Writing files 77 Notes -- Reading and Writing files
79 ============================================================================== 78 ==============================================================================
80 79
81 Each application installed on iPhone resides in a sandbox which includes its own Application Home directory. For each installed application, the system generates a unique name for the application home director, which appears as a long, incomprehensible string of numbers. 80 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.
82 81
83 Once your application is installed, the directory tree looks like: 82 Once your application is installed its directory tree looks like:
84 83
85 MySDLApp Home/ 84 MySDLApp Home/
86 MySDLApp.app 85 MySDLApp.app
87 Documents/ 86 Documents/
88 Library/ 87 Library/
89 Preferences/ 88 Preferences/
90 tmp/ 89 tmp/
91 90
92 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, however -- instead, I advise you to write document files to "../Documents/" and preferences to "../Library/Preferences". 91 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".
93 92
94 More information on this subject is available here: 93 More information on this subject is available here:
95 http://developer.apple.com/iphone/library/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/ApplicationEnvironment/chapter_6_section_3.html#//apple_ref/doc/uid/TP40007072-CH7-SW21 94 http://developer.apple.com/iphone/library/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/ApplicationEnvironment/chapter_6_section_3.html#//apple_ref/doc/uid/TP40007072-CH7-SW21
96 95
97 ============================================================================== 96 ==============================================================================