Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
162 lines (121 loc) · 8.94 KB

README.iOS

File metadata and controls

162 lines (121 loc) · 8.94 KB
 
Jun 22, 2011
Jun 22, 2011
1
2
3
4
5
6
7
==============================================================================
Building the Simple DirectMedia Layer for iPhone OS 2.0
==============================================================================
Requirements: Mac OS X v10.5 or later and the iPhone SDK.
Instructions:
Jan 6, 2012
Jan 6, 2012
8
9
1. Open SDL.xcodeproj (located in Xcode-iOS/SDL) in XCode.
2. Select your desired target, and hit build.
Jun 22, 2011
Jun 22, 2011
10
11
There are three build targets:
Jan 6, 2012
Jan 6, 2012
12
13
14
15
- libSDL.a:
Build SDL as a statically linked library
- testsdl
Build a test program (there are known test failures which are fine)
Jun 22, 2011
Jun 22, 2011
16
17
18
- Template:
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.
Jun 19, 2012
Jun 19, 2012
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
==============================================================================
Build SDL for iOS from the command line
==============================================================================
1. cd (PATH WHERE THE SDL CODE IS)/build-scripts
2. ./iosbuild.sh
If everything goes fine, you should see a build/ios directory, inside there's
two directories "lib" and "include".
"include" contains a copy of the SDL headers that you'll need for your project,
make sure to configure XCode to look for headers there.
"lib" contains find two files, libSDL2.a and libSDL2main.a, you have to add both
to your XCode project. These libraries contain three architectures in them,
armv6 for legacy devices, armv7, and i386 (for the simulator).
By default, iosbuild.sh will autodetect the SDK version you have installed using
xcodebuild -showsdks, and build for iOS >= 3.0, you can override this behaviour
by setting the MIN_OS_VERSION variable, ie:
MIN_OS_VERSION=4.2 ./iosbuild.sh
Jun 22, 2011
Jun 22, 2011
39
==============================================================================
Jan 6, 2012
Jan 6, 2012
40
Using the Simple DirectMedia Layer for iOS
Jun 22, 2011
Jun 22, 2011
41
42
==============================================================================
Jan 6, 2012
Jan 6, 2012
43
44
FIXME: This needs to be updated for the latest methods
Jun 22, 2011
Jun 22, 2011
45
Here is the easiest method:
Jan 6, 2012
Jan 6, 2012
46
47
1. Build the SDL libraries (libSDL.a and libSDLSimulator.a) and the iPhone SDL Application template.
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/iOS.platform/Developer/Library/XCode/Project Templates/" and placing it there.
Jun 22, 2011
Jun 22, 2011
48
49
50
51
2. Start a new project using the template. The project should be immediately ready for use with SDL.
Here is a more manual method:
1. Create a new iPhone view based application.
Jan 6, 2012
Jan 6, 2012
52
2. Build the SDL static libraries (libSDL.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.
Jun 22, 2011
Jun 22, 2011
53
3. Include the SDL header files in your project.
54
55
56
4. Remove the AppDelegate.h and AppDelegate.m files -- SDL for iPhone provides its own UIApplicationDelegate. Remove ViewController.h, ViewController.m, and ViewController.xib -- SDL for iPhone produces its user interface programmatically.
5. Make sure your project links to the following, iOS-provided frameworks: OpenGLES.framework, AudioToolbox.framework, and QuartzCore.framework
6. 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.
Jun 22, 2011
Jun 22, 2011
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
==============================================================================
Notes -- Accelerometer as Joystick
==============================================================================
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.
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.
==============================================================================
Notes -- OpenGL ES
==============================================================================
Your SDL application for iPhone uses OpenGL ES for video by default.
OpenGL ES for iPhone 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.
If your application doesn't use OpenGL's depth buffer, you may find significant performance improvement by setting SDL_GL_DEPTH_SIZE to 0.
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.
==============================================================================
Notes -- Keyboard
==============================================================================
Aug 11, 2012
Aug 11, 2012
82
The SDL keyboard API has been extended to support on-screen keyboards:
Jun 22, 2011
Jun 22, 2011
83
Aug 11, 2012
Aug 11, 2012
84
int SDL_ShowScreenKeyboard(SDL_Window * window)
Jun 22, 2011
Jun 22, 2011
85
-- reveals the onscreen keyboard. Returns 0 on success and -1 on error.
Aug 11, 2012
Aug 11, 2012
86
int SDL_HideScreenKeyboard(SDL_Window * window)
Jun 22, 2011
Jun 22, 2011
87
-- hides the onscreen keyboard. Returns 0 on success and -1 on error.
Aug 11, 2012
Aug 11, 2012
88
SDL_bool SDL_IsScreenKeyboardShown(SDL_Window * window)
Jun 22, 2011
Jun 22, 2011
89
-- returns whether or not the onscreen keyboard is currently visible.
Aug 11, 2012
Aug 11, 2012
90
int SDL_ToggleScreenKeyboard(SDL_Window * window)
Jun 22, 2011
Jun 22, 2011
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
-- toggles the visibility of the onscreen keyboard. Returns 0 on success and -1 on error.
==============================================================================
Notes -- Reading and Writing files
==============================================================================
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.
Once your application is installed its directory tree looks like:
MySDLApp Home/
MySDLApp.app
Documents/
Library/
Preferences/
tmp/
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".
More information on this subject is available here:
Jan 6, 2012
Jan 6, 2012
111
http://developer.apple.com/library/ios/#documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/Introduction/Introduction.html
Jun 22, 2011
Jun 22, 2011
112
113
114
115
116
117
==============================================================================
Notes -- iPhone SDL limitations
==============================================================================
Windows:
Oct 14, 2012
Oct 14, 2012
118
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).
Jun 22, 2011
Jun 22, 2011
119
120
Textures:
Oct 14, 2012
Oct 14, 2012
121
The optimal texture formats on iOS are SDL_PIXELFORMAT_ABGR8888, SDL_PIXELFORMAT_ABGR8888, SDL_PIXELFORMAT_BGR888, and SDL_PIXELFORMAT_RGB24 pixel formats.
Jun 22, 2011
Jun 22, 2011
122
123
124
125
Loading Shared Objects:
This is disabled by default since it seems to break the terms of the iPhone SDK agreement. It can be re-enabled in SDL_config_iphoneos.h.
Oct 2, 2012
Oct 2, 2012
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
==============================================================================
Game Center
==============================================================================
Game Center integration requires 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:
int SDL_iPhoneSetAnimationCallback(SDL_Window * window, int interval, void (*callback)(void*), void *callbackParam);
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.
e.g.
extern "C"
void ShowFrame(void*)
{
Oct 14, 2012
Oct 14, 2012
141
... do event handling, frame logic and rendering
Oct 2, 2012
Oct 2, 2012
142
143
144
145
146
147
148
149
150
151
152
153
}
int main(int argc, char *argv[])
{
... initialize game ...
#if __IPHONEOS__
// Initialize the Game Center for scoring and matchmaking
InitGameCenter();
// Set up the game to run in the window animation callback on iOS
// so that Game Center and so forth works correctly.
Oct 14, 2012
Oct 14, 2012
154
SDL_iPhoneSetAnimationCallback(window, 1, ShowFrame, NULL);
Oct 2, 2012
Oct 2, 2012
155
#else
Oct 14, 2012
Oct 14, 2012
156
while ( running ) {
Oct 2, 2012
Oct 2, 2012
157
158
159
160
161
ShowFrame(0);
DelayFrame();
}
#endif
return 0;
Oct 14, 2012
Oct 14, 2012
162
}