author | koda |
Fri, 31 Dec 2010 03:22:30 +0100 | |
changeset 4769 | 42adc7c11980 |
parent 4760 | 224c31b3ce7d |
child 4793 | 5ea3d182415e |
permissions | -rw-r--r-- |
3829 | 1 |
/* |
2 |
* Hedgewars-iOS, a Hedgewars port for iOS devices |
|
3 |
* Copyright (c) 2009-2010 Vittorio Giovara <vittorio.giovara@gmail.com> |
|
4 |
* |
|
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
17 |
* |
|
18 |
* File created on 10/01/2010. |
|
19 |
*/ |
|
20 |
||
3547 | 21 |
|
22 |
#import "GameSetup.h" |
|
23 |
#import "SDL_uikitappdelegate.h" |
|
24 |
#import "PascalImports.h" |
|
25 |
#import "CommodityFunctions.h" |
|
3904
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3902
diff
changeset
|
26 |
#import "OverlayViewController.h" |
3547 | 27 |
|
3902
3aac7ca07b0e
have Saves restart net when loaded, also resumes music
koda
parents:
3898
diff
changeset
|
28 |
#define BUFFER_SIZE 255 // like in original frontend |
3547 | 29 |
|
30 |
@implementation GameSetup |
|
4760 | 31 |
@synthesize systemSettings, gameConfig, statsArray, savePath, menuStyle; |
3547 | 32 |
|
3616
85d69ddb41b6
tackling the iphoneos todo (another trial for the beginning sporadic bug, remove curl animation, don't need to go to detail page)
koda
parents:
3613
diff
changeset
|
33 |
-(id) initWithDictionary:(NSDictionary *)gameDictionary { |
3547 | 34 |
if (self = [super init]) { |
35 |
ipcPort = randomPort(); |
|
3697 | 36 |
|
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3941
diff
changeset
|
37 |
// the general settings file + menu style (read by the overlay) |
3547 | 38 |
NSDictionary *dictSett = [[NSDictionary alloc] initWithContentsOfFile:SETTINGS_FILE()]; |
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3941
diff
changeset
|
39 |
self.menuStyle = [[dictSett objectForKey:@"menu"] boolValue]; |
3547 | 40 |
self.systemSettings = dictSett; |
41 |
[dictSett release]; |
|
3697 | 42 |
|
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3941
diff
changeset
|
43 |
// this game run settings |
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
44 |
self.gameConfig = [gameDictionary objectForKey:@"game_dictionary"]; |
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3941
diff
changeset
|
45 |
|
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3941
diff
changeset
|
46 |
// is it a netgame? |
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
47 |
isNetGame = [[gameDictionary objectForKey:@"netgame"] boolValue]; |
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3941
diff
changeset
|
48 |
|
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3941
diff
changeset
|
49 |
// is it a Save? |
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
50 |
NSString *path = [gameDictionary objectForKey:@"savefile"]; |
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3941
diff
changeset
|
51 |
// if path is empty it means that you have to create a new file, otherwise read from that file |
3898 | 52 |
if ([path isEqualToString:@""] == YES) { |
53 |
NSDateFormatter *outputFormatter = [[NSDateFormatter alloc] init]; |
|
3978 | 54 |
[outputFormatter setDateFormat:@"yyyy-MM-dd '@' HH.mm"]; |
3898 | 55 |
NSString *newDateString = [outputFormatter stringFromDate:[NSDate date]]; |
56 |
self.savePath = [SAVES_DIRECTORY() stringByAppendingFormat:@"%@.hws", newDateString]; |
|
57 |
[outputFormatter release]; |
|
58 |
} else |
|
59 |
self.savePath = path; |
|
4754 | 60 |
|
4760 | 61 |
self.statsArray = nil; |
3697 | 62 |
} |
3547 | 63 |
return self; |
64 |
} |
|
65 |
||
66 |
-(void) dealloc { |
|
4760 | 67 |
[statsArray release]; |
3547 | 68 |
[gameConfig release]; |
69 |
[systemSettings release]; |
|
3891 | 70 |
[savePath release]; |
3547 | 71 |
[super dealloc]; |
72 |
} |
|
73 |
||
74 |
#pragma mark - |
|
75 |
#pragma mark Provider functions |
|
76 |
// unpacks team data from the selected team.plist to a sequence of engine commands |
|
77 |
-(void) provideTeamData:(NSString *)teamName forHogs:(NSInteger) numberOfPlayingHogs withHealth:(NSInteger) initialHealth ofColor:(NSNumber *)teamColor { |
|
78 |
/* |
|
79 |
addteam <32charsMD5hash> <color> <team name> |
|
80 |
addhh <level> <health> <hedgehog name> |
|
81 |
<level> is 0 for human, 1-5 for bots (5 is the most stupid) |
|
82 |
*/ |
|
3697 | 83 |
|
3547 | 84 |
NSString *teamFile = [[NSString alloc] initWithFormat:@"%@/%@", TEAMS_DIRECTORY(), teamName]; |
85 |
NSDictionary *teamData = [[NSDictionary alloc] initWithContentsOfFile:teamFile]; |
|
86 |
[teamFile release]; |
|
3697 | 87 |
|
88 |
NSString *teamHashColorAndName = [[NSString alloc] initWithFormat:@"eaddteam %@ %@ %@", |
|
3660 | 89 |
[teamData objectForKey:@"hash"], [teamColor stringValue], [teamName stringByDeletingPathExtension]]; |
3547 | 90 |
[self sendToEngine: teamHashColorAndName]; |
91 |
[teamHashColorAndName release]; |
|
3697 | 92 |
|
3547 | 93 |
NSString *grave = [[NSString alloc] initWithFormat:@"egrave %@", [teamData objectForKey:@"grave"]]; |
94 |
[self sendToEngine: grave]; |
|
95 |
[grave release]; |
|
3697 | 96 |
|
3547 | 97 |
NSString *fort = [[NSString alloc] initWithFormat:@"efort %@", [teamData objectForKey:@"fort"]]; |
98 |
[self sendToEngine: fort]; |
|
99 |
[fort release]; |
|
3697 | 100 |
|
3547 | 101 |
NSString *voicepack = [[NSString alloc] initWithFormat:@"evoicepack %@", [teamData objectForKey:@"voicepack"]]; |
102 |
[self sendToEngine: voicepack]; |
|
103 |
[voicepack release]; |
|
3697 | 104 |
|
3547 | 105 |
NSString *flag = [[NSString alloc] initWithFormat:@"eflag %@", [teamData objectForKey:@"flag"]]; |
106 |
[self sendToEngine: flag]; |
|
107 |
[flag release]; |
|
3697 | 108 |
|
3547 | 109 |
NSArray *hogs = [teamData objectForKey:@"hedgehogs"]; |
110 |
for (int i = 0; i < numberOfPlayingHogs; i++) { |
|
111 |
NSDictionary *hog = [hogs objectAtIndex:i]; |
|
3697 | 112 |
|
113 |
NSString *hogLevelHealthAndName = [[NSString alloc] initWithFormat:@"eaddhh %@ %d %@", |
|
3547 | 114 |
[hog objectForKey:@"level"], initialHealth, [hog objectForKey:@"hogname"]]; |
115 |
[self sendToEngine: hogLevelHealthAndName]; |
|
116 |
[hogLevelHealthAndName release]; |
|
3697 | 117 |
|
3547 | 118 |
NSString *hogHat = [[NSString alloc] initWithFormat:@"ehat %@", [hog objectForKey:@"hat"]]; |
119 |
[self sendToEngine: hogHat]; |
|
120 |
[hogHat release]; |
|
121 |
} |
|
3697 | 122 |
|
3547 | 123 |
[teamData release]; |
124 |
} |
|
125 |
||
126 |
// unpacks ammostore data from the selected ammo.plist to a sequence of engine commands |
|
127 |
-(void) provideAmmoData:(NSString *)ammostoreName forPlayingTeams:(NSInteger) numberOfTeams { |
|
128 |
NSString *weaponPath = [[NSString alloc] initWithFormat:@"%@/%@",WEAPONS_DIRECTORY(),ammostoreName]; |
|
129 |
NSDictionary *ammoData = [[NSDictionary alloc] initWithContentsOfFile:weaponPath]; |
|
130 |
[weaponPath release]; |
|
3697 | 131 |
|
3621 | 132 |
// if we're loading an older version of ammos fill the engine message with 0s |
3930 | 133 |
int diff = HW_getNumberOfWeapons() - [[ammoData objectForKey:@"ammostore_initialqt"] length]; |
134 |
NSString *update = @""; |
|
135 |
while ([update length] < diff) |
|
136 |
update = [update stringByAppendingString:@"0"]; |
|
3697 | 137 |
|
3621 | 138 |
NSString *ammloadt = [[NSString alloc] initWithFormat:@"eammloadt %@%@", [ammoData objectForKey:@"ammostore_initialqt"], update]; |
3547 | 139 |
[self sendToEngine: ammloadt]; |
140 |
[ammloadt release]; |
|
3697 | 141 |
|
3621 | 142 |
NSString *ammprob = [[NSString alloc] initWithFormat:@"eammprob %@%@", [ammoData objectForKey:@"ammostore_probability"], update]; |
3547 | 143 |
[self sendToEngine: ammprob]; |
144 |
[ammprob release]; |
|
3697 | 145 |
|
3621 | 146 |
NSString *ammdelay = [[NSString alloc] initWithFormat:@"eammdelay %@%@", [ammoData objectForKey:@"ammostore_delay"], update]; |
3547 | 147 |
[self sendToEngine: ammdelay]; |
148 |
[ammdelay release]; |
|
3697 | 149 |
|
3621 | 150 |
NSString *ammreinf = [[NSString alloc] initWithFormat:@"eammreinf %@%@", [ammoData objectForKey:@"ammostore_crate"], update]; |
3547 | 151 |
[self sendToEngine: ammreinf]; |
152 |
[ammreinf release]; |
|
3697 | 153 |
|
3930 | 154 |
// send this for each team so it applies the same ammostore to all teams |
3547 | 155 |
NSString *ammstore = [[NSString alloc] initWithString:@"eammstore"]; |
156 |
for (int i = 0; i < numberOfTeams; i++) |
|
157 |
[self sendToEngine: ammstore]; |
|
158 |
[ammstore release]; |
|
3697 | 159 |
|
3547 | 160 |
[ammoData release]; |
161 |
} |
|
162 |
||
163 |
// unpacks scheme data from the selected scheme.plist to a sequence of engine commands |
|
164 |
-(NSInteger) provideScheme:(NSString *)schemeName { |
|
165 |
NSString *schemePath = [[NSString alloc] initWithFormat:@"%@/%@",SCHEMES_DIRECTORY(),schemeName]; |
|
3781
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3779
diff
changeset
|
166 |
NSDictionary *schemeDictionary = [[NSDictionary alloc] initWithContentsOfFile:schemePath]; |
3547 | 167 |
[schemePath release]; |
3781
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3779
diff
changeset
|
168 |
NSArray *basicArray = [schemeDictionary objectForKey:@"basic"]; |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3779
diff
changeset
|
169 |
NSArray *gamemodArray = [schemeDictionary objectForKey:@"gamemod"]; |
3547 | 170 |
int result = 0; |
4000
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
171 |
int mask = 0x00000004; |
3547 | 172 |
|
4000
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
173 |
// pack the gameflags in a single var and send it |
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
174 |
for (NSNumber *value in gamemodArray) { |
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
175 |
if ([value boolValue] == YES) |
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
176 |
result |= mask; |
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
177 |
mask <<= 1; |
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
178 |
} |
3547 | 179 |
NSString *flags = [[NSString alloc] initWithFormat:@"e$gmflags %d",result]; |
180 |
[self sendToEngine:flags]; |
|
181 |
[flags release]; |
|
3697 | 182 |
|
4211
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
183 |
/* basic game flags */ |
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
184 |
NSString *path = [[NSString alloc] initWithFormat:@"%@/basicFlags_en.plist",IFRONTEND_DIRECTORY()]; |
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
185 |
NSArray *mods = [[NSArray alloc] initWithContentsOfFile:path]; |
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
186 |
[path release]; |
3697 | 187 |
|
4605 | 188 |
result = [[basicArray objectAtIndex:0] intValue]; |
4211
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
189 |
|
4605 | 190 |
for (int i = 1; i < [basicArray count]; i++) { |
191 |
NSDictionary *dict = [mods objectAtIndex:i]; |
|
192 |
NSString *command = [dict objectForKey:@"command"]; |
|
4211
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
193 |
NSInteger value = [[basicArray objectAtIndex:i] intValue]; |
4605 | 194 |
if ([[dict objectForKey:@"checkOverMax"] boolValue] && value >= [[dict objectForKey:@"max"] intValue]) |
4211
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
195 |
value = 9999; |
4605 | 196 |
if ([[dict objectForKey:@"times1000"] boolValue]) |
197 |
value = value * 1000; |
|
4211
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
198 |
NSString *strToSend = [[NSString alloc] initWithFormat:@"%@ %d",command,value]; |
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
199 |
[self sendToEngine:strToSend]; |
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
200 |
[strToSend release]; |
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
201 |
} |
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
202 |
[mods release]; |
3697 | 203 |
|
3781
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3779
diff
changeset
|
204 |
[schemeDictionary release]; |
3547 | 205 |
return result; |
206 |
} |
|
207 |
||
208 |
#pragma mark - |
|
4547 | 209 |
#pragma mark Network relevant code |
4754 | 210 |
-(void) dumpRawData:(const char *)buffer ofSize:(uint8_t) length { |
3912
e11df2de6af2
have engine try for a second position when map loading fails (in this way it's possible to move Missions data to any path)
koda
parents:
3911
diff
changeset
|
211 |
// is it performant to reopen the stream every time? |
e11df2de6af2
have engine try for a second position when map loading fails (in this way it's possible to move Missions data to any path)
koda
parents:
3911
diff
changeset
|
212 |
NSOutputStream *os = [[NSOutputStream alloc] initToFileAtPath:self.savePath append:YES]; |
e11df2de6af2
have engine try for a second position when map loading fails (in this way it's possible to move Missions data to any path)
koda
parents:
3911
diff
changeset
|
213 |
[os open]; |
e11df2de6af2
have engine try for a second position when map loading fails (in this way it's possible to move Missions data to any path)
koda
parents:
3911
diff
changeset
|
214 |
[os write:&length maxLength:1]; |
4754 | 215 |
[os write:(const uint8_t *)buffer maxLength:length]; |
3912
e11df2de6af2
have engine try for a second position when map loading fails (in this way it's possible to move Missions data to any path)
koda
parents:
3911
diff
changeset
|
216 |
[os close]; |
e11df2de6af2
have engine try for a second position when map loading fails (in this way it's possible to move Missions data to any path)
koda
parents:
3911
diff
changeset
|
217 |
[os release]; |
e11df2de6af2
have engine try for a second position when map loading fails (in this way it's possible to move Missions data to any path)
koda
parents:
3911
diff
changeset
|
218 |
} |
e11df2de6af2
have engine try for a second position when map loading fails (in this way it's possible to move Missions data to any path)
koda
parents:
3911
diff
changeset
|
219 |
|
3891 | 220 |
// wrapper that computes the length of the message and then sends the command string, saving the command on a file |
4512 | 221 |
-(int) sendToEngine:(NSString *)string { |
3547 | 222 |
uint8_t length = [string length]; |
3697 | 223 |
|
4754 | 224 |
[self dumpRawData:[string UTF8String] ofSize:length]; |
3902
3aac7ca07b0e
have Saves restart net when loaded, also resumes music
koda
parents:
3898
diff
changeset
|
225 |
SDLNet_TCP_Send(csd, &length, 1); |
3891 | 226 |
return SDLNet_TCP_Send(csd, [string UTF8String], length); |
227 |
} |
|
228 |
||
229 |
// wrapper that computes the length of the message and then sends the command string, skipping file writing |
|
4512 | 230 |
-(int) sendToEngineNoSave:(NSString *)string { |
3891 | 231 |
uint8_t length = [string length]; |
232 |
||
3902
3aac7ca07b0e
have Saves restart net when loaded, also resumes music
koda
parents:
3898
diff
changeset
|
233 |
SDLNet_TCP_Send(csd, &length, 1); |
3547 | 234 |
return SDLNet_TCP_Send(csd, [string UTF8String], length); |
235 |
} |
|
236 |
||
237 |
// method that handles net setup with engine and keeps connection alive |
|
238 |
-(void) engineProtocol { |
|
239 |
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
240 |
TCPsocket sd; |
3547 | 241 |
IPaddress ip; |
242 |
int eProto; |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
243 |
BOOL clientQuit; |
4754 | 244 |
char const buffer[BUFFER_SIZE]; |
3547 | 245 |
uint8_t msgSize; |
4757 | 246 |
int statMaxCapacity = 10-3; |
3697 | 247 |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
248 |
clientQuit = NO; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
249 |
csd = NULL; |
3547 | 250 |
|
251 |
if (SDLNet_Init() < 0) { |
|
252 |
DLog(@"SDLNet_Init: %s", SDLNet_GetError()); |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
253 |
clientQuit = YES; |
3547 | 254 |
} |
3697 | 255 |
|
3547 | 256 |
// Resolving the host using NULL make network interface to listen |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
257 |
if (SDLNet_ResolveHost(&ip, NULL, ipcPort) < 0 && !clientQuit) { |
3547 | 258 |
DLog(@"SDLNet_ResolveHost: %s\n", SDLNet_GetError()); |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
259 |
clientQuit = YES; |
3547 | 260 |
} |
3697 | 261 |
|
262 |
// Open a connection with the IP provided (listen on the host's port) |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
263 |
if (!(sd = SDLNet_TCP_Open(&ip)) && !clientQuit) { |
3547 | 264 |
DLog(@"SDLNet_TCP_Open: %s %\n", SDLNet_GetError(), ipcPort); |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
265 |
clientQuit = YES; |
3547 | 266 |
} |
3697 | 267 |
|
3547 | 268 |
DLog(@"Waiting for a client on port %d", ipcPort); |
3697 | 269 |
while (csd == NULL) |
3547 | 270 |
csd = SDLNet_TCP_Accept(sd); |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
271 |
SDLNet_TCP_Close(sd); |
3697 | 272 |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
273 |
while (!clientQuit) { |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
274 |
msgSize = 0; |
4754 | 275 |
memset((void *)buffer, '\0', BUFFER_SIZE); |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
276 |
if (SDLNet_TCP_Recv(csd, &msgSize, sizeof(uint8_t)) <= 0) |
3902
3aac7ca07b0e
have Saves restart net when loaded, also resumes music
koda
parents:
3898
diff
changeset
|
277 |
break; |
4754 | 278 |
if (SDLNet_TCP_Recv(csd, (void *)buffer, msgSize) <= 0) |
3902
3aac7ca07b0e
have Saves restart net when loaded, also resumes music
koda
parents:
3898
diff
changeset
|
279 |
break; |
3697 | 280 |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
281 |
switch (buffer[0]) { |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
282 |
case 'C': |
3626 | 283 |
DLog(@"sending game config...\n%@",self.gameConfig); |
3697 | 284 |
|
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
285 |
if (isNetGame == YES) |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
286 |
[self sendToEngineNoSave:@"TN"]; |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
287 |
else |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
288 |
[self sendToEngineNoSave:@"TL"]; |
3891 | 289 |
NSString *saveHeader = @"TS"; |
4754 | 290 |
[self dumpRawData:[saveHeader UTF8String] ofSize:[saveHeader length]]; |
3697 | 291 |
|
3547 | 292 |
// seed info |
293 |
[self sendToEngine:[self.gameConfig objectForKey:@"seed_command"]]; |
|
3697 | 294 |
|
3547 | 295 |
// dimension of the map |
296 |
[self sendToEngine:[self.gameConfig objectForKey:@"templatefilter_command"]]; |
|
297 |
[self sendToEngine:[self.gameConfig objectForKey:@"mapgen_command"]]; |
|
298 |
[self sendToEngine:[self.gameConfig objectForKey:@"mazesize_command"]]; |
|
3697 | 299 |
|
3642 | 300 |
// static land (if set) |
301 |
NSString *staticMap = [self.gameConfig objectForKey:@"staticmap_command"]; |
|
302 |
if ([staticMap length] != 0) |
|
303 |
[self sendToEngine:staticMap]; |
|
3697 | 304 |
|
3910
dd47efbdec46
move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents:
3904
diff
changeset
|
305 |
// lua script (if set) |
3911
46d7a5cf8ac6
further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents:
3910
diff
changeset
|
306 |
NSString *script = [self.gameConfig objectForKey:@"mission_command"]; |
3910
dd47efbdec46
move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents:
3904
diff
changeset
|
307 |
if ([script length] != 0) |
dd47efbdec46
move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents:
3904
diff
changeset
|
308 |
[self sendToEngine:script]; |
dd47efbdec46
move all preview drawing code into its own class (for a simplified and more readable MapConfigViewController)
koda
parents:
3904
diff
changeset
|
309 |
|
3547 | 310 |
// theme info |
311 |
[self sendToEngine:[self.gameConfig objectForKey:@"theme_command"]]; |
|
3697 | 312 |
|
3547 | 313 |
// scheme (returns initial health) |
314 |
NSInteger health = [self provideScheme:[self.gameConfig objectForKey:@"scheme"]]; |
|
3697 | 315 |
|
4000
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
316 |
// send an ammostore for each team |
3547 | 317 |
NSArray *teamsConfig = [self.gameConfig objectForKey:@"teams_list"]; |
4000
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
318 |
[self provideAmmoData:[self.gameConfig objectForKey:@"weapon"] forPlayingTeams:[teamsConfig count]]; |
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
319 |
|
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
320 |
// finally add hogs |
3547 | 321 |
for (NSDictionary *teamData in teamsConfig) { |
3697 | 322 |
[self provideTeamData:[teamData objectForKey:@"team"] |
3547 | 323 |
forHogs:[[teamData objectForKey:@"number"] intValue] |
324 |
withHealth:health |
|
325 |
ofColor:[teamData objectForKey:@"color"]]; |
|
326 |
} |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
327 |
break; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
328 |
case '?': |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
329 |
DLog(@"Ping? Pong!"); |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
330 |
[self sendToEngine:@"!"]; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
331 |
break; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
332 |
case 'E': |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
333 |
DLog(@"ERROR - last console line: [%s]", &buffer[1]); |
3547 | 334 |
clientQuit = YES; |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
335 |
break; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
336 |
case 'e': |
3912
e11df2de6af2
have engine try for a second position when map loading fails (in this way it's possible to move Missions data to any path)
koda
parents:
3911
diff
changeset
|
337 |
[self dumpRawData:buffer ofSize:msgSize]; |
e11df2de6af2
have engine try for a second position when map loading fails (in this way it's possible to move Missions data to any path)
koda
parents:
3911
diff
changeset
|
338 |
|
3902
3aac7ca07b0e
have Saves restart net when loaded, also resumes music
koda
parents:
3898
diff
changeset
|
339 |
sscanf((char *)buffer, "%*s %d", &eProto); |
4603 | 340 |
int netProto; |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
341 |
char *versionStr; |
3697 | 342 |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
343 |
HW_versionInfo(&netProto, &versionStr); |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
344 |
if (netProto == eProto) { |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
345 |
DLog(@"Setting protocol version %d (%s)", eProto, versionStr); |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
346 |
} else { |
4603 | 347 |
DLog(@"ERROR - wrong protocol number: %d (expecting %d)", netProto, eProto); |
3547 | 348 |
clientQuit = YES; |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
349 |
} |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
350 |
break; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
351 |
case 'i': |
4760 | 352 |
if (self.statsArray == nil) |
353 |
self.statsArray = [[NSMutableArray alloc] initWithCapacity:statMaxCapacity]; |
|
4769 | 354 |
NSString *tempStr = [NSString stringWithUTF8String:&buffer[2]]; |
355 |
NSString *srg = [[tempStr componentsSeparatedByString:@" "] objectAtIndex:0]; |
|
356 |
int index = [srg length] + 3; |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
357 |
switch (buffer[1]) { |
4760 | 358 |
case 'r': // winning team |
359 |
[self.statsArray insertObject:[NSString stringWithUTF8String:&buffer[2]] atIndex:0]; |
|
3547 | 360 |
break; |
4760 | 361 |
case 'D': // best shot |
4769 | 362 |
[self.statsArray addObject:[NSString stringWithFormat:@"The best shot award was won by %s with %@ points", &buffer[index], srg]]; |
4549 | 363 |
break; |
4760 | 364 |
case 'k': // best hedgehog |
4769 | 365 |
[self.statsArray addObject:[NSString stringWithFormat:@"The best killer is %s with %@ kills in a turn", &buffer[index], srg]]; |
3902
3aac7ca07b0e
have Saves restart net when loaded, also resumes music
koda
parents:
3898
diff
changeset
|
366 |
break; |
4760 | 367 |
case 'K': // number of hogs killed |
4769 | 368 |
[self.statsArray addObject:[NSString stringWithFormat:@"A total of %@ hedgehog(s) were killed during this round", srg]]; |
4549 | 369 |
break; |
4760 | 370 |
case 'H': //something about team health |
4549 | 371 |
break; |
4760 | 372 |
case 'T': // local team stats |
4549 | 373 |
break; |
4760 | 374 |
case 'P': // player postion |
4549 | 375 |
break; |
4760 | 376 |
case 's': // self damage |
4769 | 377 |
[self.statsArray addObject:[NSString stringWithFormat:@"%s thought it's good to shoot his own hedgehogs with %@ points", &buffer[index], srg]]; |
4549 | 378 |
break; |
4760 | 379 |
case 'S': // friendly fire |
4769 | 380 |
[self.statsArray addObject:[NSString stringWithFormat:@"%s killed %@ of his own hedgehogs", &buffer[2], srg]]; |
4549 | 381 |
break; |
4760 | 382 |
case 'B': // turn skipped |
4769 | 383 |
[self.statsArray addObject:[NSString stringWithFormat:@"%s was scared and skipped turn %@ times", &buffer[2], srg]]; |
4549 | 384 |
break; |
3902
3aac7ca07b0e
have Saves restart net when loaded, also resumes music
koda
parents:
3898
diff
changeset
|
385 |
default: |
4549 | 386 |
DLog(@"Unhandled stat message, see statsPage.cpp"); |
3547 | 387 |
break; |
388 |
} |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
389 |
break; |
3902
3aac7ca07b0e
have Saves restart net when loaded, also resumes music
koda
parents:
3898
diff
changeset
|
390 |
case 'q': |
3aac7ca07b0e
have Saves restart net when loaded, also resumes music
koda
parents:
3898
diff
changeset
|
391 |
// game ended, can remove the savefile |
3aac7ca07b0e
have Saves restart net when loaded, also resumes music
koda
parents:
3898
diff
changeset
|
392 |
[[NSFileManager defaultManager] removeItemAtPath:self.savePath error:nil]; |
3930 | 393 |
// and remove + disable the overlay |
394 |
[[NSNotificationCenter defaultCenter] postNotificationName:@"remove overlay" object:nil]; |
|
3902
3aac7ca07b0e
have Saves restart net when loaded, also resumes music
koda
parents:
3898
diff
changeset
|
395 |
break; |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
396 |
default: |
3912
e11df2de6af2
have engine try for a second position when map loading fails (in this way it's possible to move Missions data to any path)
koda
parents:
3911
diff
changeset
|
397 |
[self dumpRawData:buffer ofSize:msgSize]; |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
398 |
break; |
3547 | 399 |
} |
400 |
} |
|
4510 | 401 |
DLog(@"Engine exited, ending thread"); |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
402 |
// wait a little to let the client close cleanly |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
403 |
[NSThread sleepForTimeInterval:2]; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
404 |
// Close the client socket |
3697 | 405 |
SDLNet_TCP_Close(csd); |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
406 |
SDLNet_Quit(); |
3697 | 407 |
|
3547 | 408 |
[pool release]; |
409 |
//Invoking this method should be avoided as it does not give your thread a chance to clean up any resources it allocated during its execution. |
|
410 |
//[NSThread exit]; |
|
411 |
} |
|
412 |
||
413 |
#pragma mark - |
|
414 |
#pragma mark Setting methods |
|
415 |
// returns an array of c-strings that are read by engine at startup |
|
4754 | 416 |
-(const char **)getGameSettings:(NSString *)recordFile { |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3916
diff
changeset
|
417 |
NSInteger width, height; |
3547 | 418 |
NSString *ipcString = [[NSString alloc] initWithFormat:@"%d", ipcPort]; |
419 |
NSString *localeString = [[NSString alloc] initWithFormat:@"%@.txt", [[NSLocale currentLocale] objectForKey:NSLocaleLanguageCode]]; |
|
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3916
diff
changeset
|
420 |
NSString *rotation; |
3941 | 421 |
if (IS_DUALHEAD()) { |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3916
diff
changeset
|
422 |
CGRect screenBounds = [[[UIScreen screens] objectAtIndex:1] bounds]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3916
diff
changeset
|
423 |
width = (int) screenBounds.size.width; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3916
diff
changeset
|
424 |
height = (int) screenBounds.size.height; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3916
diff
changeset
|
425 |
rotation = @"0"; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3916
diff
changeset
|
426 |
} else { |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3916
diff
changeset
|
427 |
CGRect screenBounds = [[UIScreen mainScreen] bounds]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3916
diff
changeset
|
428 |
width = (int) screenBounds.size.height; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3916
diff
changeset
|
429 |
height = (int) screenBounds.size.width; |
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3941
diff
changeset
|
430 |
UIDeviceOrientation orientation = (UIDeviceOrientation) [[self.gameConfig objectForKey:@"orientation"] intValue]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3941
diff
changeset
|
431 |
if (orientation == UIDeviceOrientationLandscapeLeft) |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3941
diff
changeset
|
432 |
rotation = @"-90"; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3941
diff
changeset
|
433 |
else |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3941
diff
changeset
|
434 |
rotation = @"90"; |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3916
diff
changeset
|
435 |
} |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3916
diff
changeset
|
436 |
|
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3916
diff
changeset
|
437 |
NSString *horizontalSize = [[NSString alloc] initWithFormat:@"%d", width]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3916
diff
changeset
|
438 |
NSString *verticalSize = [[NSString alloc] initWithFormat:@"%d", height]; |
4754 | 439 |
const char **gameArgs = (const char **)malloc(sizeof(char *) * 10); |
4540
9b614e420de5
add two preferences for enabling/disabling blurry land and multitasking
koda
parents:
4512
diff
changeset
|
440 |
BOOL enhanced = [[self.systemSettings objectForKey:@"enhanced"] boolValue]; |
3697 | 441 |
|
3670
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3660
diff
changeset
|
442 |
NSString *modelId = modelType(); |
4754 | 443 |
NSInteger tmpQuality; |
4540
9b614e420de5
add two preferences for enabling/disabling blurry land and multitasking
koda
parents:
4512
diff
changeset
|
444 |
if ([modelId hasPrefix:@"iPhone1"] || [modelId hasPrefix:@"iPod1,1"] || [modelId hasPrefix:@"iPod2,1"]) // = iPhone and iPhone 3G or iPod Touch or iPod Touch 2G |
9b614e420de5
add two preferences for enabling/disabling blurry land and multitasking
koda
parents:
4512
diff
changeset
|
445 |
tmpQuality = 0x00000001 | 0x00000002 | 0x00000008 | 0x00000040; // rqLowRes | rqBlurryLand | rqSimpleRope | rqKillFlakes |
9b614e420de5
add two preferences for enabling/disabling blurry land and multitasking
koda
parents:
4512
diff
changeset
|
446 |
else if ([modelId hasPrefix:@"iPhone2"] || [modelId hasPrefix:@"iPod3"]) // = iPhone 3GS or iPod Touch 3G |
9b614e420de5
add two preferences for enabling/disabling blurry land and multitasking
koda
parents:
4512
diff
changeset
|
447 |
tmpQuality = 0x00000002 | 0x00000040; // rqBlurryLand | rqKillFlakes |
4574 | 448 |
else if ([modelId hasPrefix:@"iPad1"] || [modelId hasPrefix:@"iPod4"] || enhanced == NO) // = iPad 1G or iPod Touch 4G or not enhanced mode |
4540
9b614e420de5
add two preferences for enabling/disabling blurry land and multitasking
koda
parents:
4512
diff
changeset
|
449 |
tmpQuality = 0x00000002; // rqBlurryLand |
9b614e420de5
add two preferences for enabling/disabling blurry land and multitasking
koda
parents:
4512
diff
changeset
|
450 |
else // = everything else |
9b614e420de5
add two preferences for enabling/disabling blurry land and multitasking
koda
parents:
4512
diff
changeset
|
451 |
tmpQuality = 0; // full quality |
9b614e420de5
add two preferences for enabling/disabling blurry land and multitasking
koda
parents:
4512
diff
changeset
|
452 |
|
9b614e420de5
add two preferences for enabling/disabling blurry land and multitasking
koda
parents:
4512
diff
changeset
|
453 |
if (IS_IPAD() == NO) // = disable tooltips on phone |
3634 | 454 |
tmpQuality = tmpQuality | 0x00000400; |
3697 | 455 |
|
3547 | 456 |
// prevents using an empty nickname |
457 |
NSString *username; |
|
458 |
NSString *originalUsername = [self.systemSettings objectForKey:@"username"]; |
|
459 |
if ([originalUsername length] == 0) |
|
460 |
username = [[NSString alloc] initWithFormat:@"MobileUser-%@",ipcString]; |
|
461 |
else |
|
462 |
username = [[NSString alloc] initWithString:originalUsername]; |
|
3697 | 463 |
|
3779
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3752
diff
changeset
|
464 |
gameArgs[ 0] = [ipcString UTF8String]; //ipcPort |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3916
diff
changeset
|
465 |
gameArgs[ 1] = [horizontalSize UTF8String]; //cScreenWidth |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3916
diff
changeset
|
466 |
gameArgs[ 2] = [verticalSize UTF8String]; //cScreenHeight |
3779
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3752
diff
changeset
|
467 |
gameArgs[ 3] = [[[NSNumber numberWithInteger:tmpQuality] stringValue] UTF8String]; //quality |
3825 | 468 |
gameArgs[ 4] = "en.txt";//[localeString UTF8String]; //cLocaleFName |
3779
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3752
diff
changeset
|
469 |
gameArgs[ 5] = [username UTF8String]; //UserNick |
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3752
diff
changeset
|
470 |
gameArgs[ 6] = [[[self.systemSettings objectForKey:@"sound"] stringValue] UTF8String]; //isSoundEnabled |
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3752
diff
changeset
|
471 |
gameArgs[ 7] = [[[self.systemSettings objectForKey:@"music"] stringValue] UTF8String]; //isMusicEnabled |
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3752
diff
changeset
|
472 |
gameArgs[ 8] = [[[self.systemSettings objectForKey:@"alternate"] stringValue] UTF8String]; //cAltDamage |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3916
diff
changeset
|
473 |
gameArgs[ 9] = [rotation UTF8String]; //rotateQt |
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
474 |
gameArgs[10] = [recordFile UTF8String]; //recordFileName |
3697 | 475 |
|
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3916
diff
changeset
|
476 |
[verticalSize release]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3916
diff
changeset
|
477 |
[horizontalSize release]; |
3547 | 478 |
[localeString release]; |
479 |
[ipcString release]; |
|
480 |
[username release]; |
|
481 |
return gameArgs; |
|
482 |
} |
|
483 |
||
484 |
||
485 |
@end |