author | Wuzzy <Wuzzy2@mail.ru> |
Wed, 01 May 2019 00:09:01 +0200 | |
changeset 14867 | 8bba7492558d |
parent 12872 | 00215a7ec5f5 |
permissions | -rw-r--r-- |
3829 | 1 |
/* |
2 |
* Hedgewars-iOS, a Hedgewars port for iOS devices |
|
6700 | 3 |
* Copyright (c) 2009-2012 Vittorio Giovara <vittorio.giovara@gmail.com> |
3829 | 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 |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
6908
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
3829 | 17 |
*/ |
18 |
||
3547 | 19 |
|
5154
851f36579ed4
initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
5002
diff
changeset
|
20 |
#import "EngineProtocolNetwork.h" |
3547 | 21 |
|
6078
8c0cc07731e5
headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents:
5370
diff
changeset
|
22 |
|
3902
3aac7ca07b0e
have Saves restart net when loaded, also resumes music
koda
parents:
3898
diff
changeset
|
23 |
#define BUFFER_SIZE 255 // like in original frontend |
3547 | 24 |
|
5154
851f36579ed4
initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
5002
diff
changeset
|
25 |
@implementation EngineProtocolNetwork |
6870
f72cac290325
ios: refactor the code of the after-game statistics display using delegates
koda
parents:
6832
diff
changeset
|
26 |
@synthesize delegate, stream, csd, enginePort; |
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3941
diff
changeset
|
27 |
|
12872
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11572
diff
changeset
|
28 |
- (id)initWithPort:(NSInteger)port { |
6908
896ed2afcfb8
ios: turn on more warning messages and start correcting them
koda
parents:
6870
diff
changeset
|
29 |
if ((self = [super init])) { |
6870
f72cac290325
ios: refactor the code of the after-game statistics display using delegates
koda
parents:
6832
diff
changeset
|
30 |
self.delegate = nil; |
5155
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
31 |
self.csd = NULL; |
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
32 |
self.stream = nil; |
6870
f72cac290325
ios: refactor the code of the after-game statistics display using delegates
koda
parents:
6832
diff
changeset
|
33 |
self.enginePort = port; |
3697 | 34 |
} |
3547 | 35 |
return self; |
36 |
} |
|
37 |
||
12872
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11572
diff
changeset
|
38 |
- (id)init { |
6870
f72cac290325
ios: refactor the code of the after-game statistics display using delegates
koda
parents:
6832
diff
changeset
|
39 |
return [self initWithPort:[HWUtils randomPort]]; |
f72cac290325
ios: refactor the code of the after-game statistics display using delegates
koda
parents:
6832
diff
changeset
|
40 |
} |
f72cac290325
ios: refactor the code of the after-game statistics display using delegates
koda
parents:
6832
diff
changeset
|
41 |
|
5155
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
42 |
#pragma mark - |
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
43 |
#pragma mark Spawner functions |
12872
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11572
diff
changeset
|
44 |
- (void)spawnThread:(NSString *)onSaveFile withOptions:(NSDictionary *)dictionary { |
6353
d8f62c805619
restore displaying statistics at the end of a game and restore warning lower views that they are going to appear
koda
parents:
6337
diff
changeset
|
45 |
self.stream = (onSaveFile) ? [[NSOutputStream alloc] initToFileAtPath:onSaveFile append:YES] : nil; |
d8f62c805619
restore displaying statistics at the end of a game and restore warning lower views that they are going to appear
koda
parents:
6337
diff
changeset
|
46 |
[self.stream open]; |
5154
851f36579ed4
initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
5002
diff
changeset
|
47 |
|
6321 | 48 |
// +detachNewThreadSelector retain/release self automatically |
5156 | 49 |
[NSThread detachNewThreadSelector:@selector(engineProtocol:) |
6353
d8f62c805619
restore displaying statistics at the end of a game and restore warning lower views that they are going to appear
koda
parents:
6337
diff
changeset
|
50 |
toTarget:self |
6321 | 51 |
withObject:dictionary]; |
52 |
} |
|
6265
a6944f94c19f
aaand remove also ipcport from the class interface as well
koda
parents:
6263
diff
changeset
|
53 |
|
3547 | 54 |
#pragma mark - |
55 |
#pragma mark Provider functions |
|
56 |
// unpacks team data from the selected team.plist to a sequence of engine commands |
|
12872
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11572
diff
changeset
|
57 |
- (void)provideTeamData:(NSString *)teamName forHogs:(NSInteger)numberOfPlayingHogs withHealth:(NSInteger)initialHealth ofColor:(NSNumber *)teamColor { |
3547 | 58 |
/* |
59 |
addteam <32charsMD5hash> <color> <team name> |
|
60 |
addhh <level> <health> <hedgehog name> |
|
61 |
<level> is 0 for human, 1-5 for bots (5 is the most stupid) |
|
62 |
*/ |
|
3697 | 63 |
|
3547 | 64 |
NSString *teamFile = [[NSString alloc] initWithFormat:@"%@/%@", TEAMS_DIRECTORY(), teamName]; |
65 |
NSDictionary *teamData = [[NSDictionary alloc] initWithContentsOfFile:teamFile]; |
|
3697 | 66 |
|
67 |
NSString *teamHashColorAndName = [[NSString alloc] initWithFormat:@"eaddteam %@ %@ %@", |
|
3660 | 68 |
[teamData objectForKey:@"hash"], [teamColor stringValue], [teamName stringByDeletingPathExtension]]; |
3547 | 69 |
[self sendToEngine: teamHashColorAndName]; |
3697 | 70 |
|
3547 | 71 |
NSString *grave = [[NSString alloc] initWithFormat:@"egrave %@", [teamData objectForKey:@"grave"]]; |
72 |
[self sendToEngine: grave]; |
|
3697 | 73 |
|
3547 | 74 |
NSString *fort = [[NSString alloc] initWithFormat:@"efort %@", [teamData objectForKey:@"fort"]]; |
75 |
[self sendToEngine: fort]; |
|
3697 | 76 |
|
3547 | 77 |
NSString *voicepack = [[NSString alloc] initWithFormat:@"evoicepack %@", [teamData objectForKey:@"voicepack"]]; |
78 |
[self sendToEngine: voicepack]; |
|
3697 | 79 |
|
3547 | 80 |
NSString *flag = [[NSString alloc] initWithFormat:@"eflag %@", [teamData objectForKey:@"flag"]]; |
81 |
[self sendToEngine: flag]; |
|
3697 | 82 |
|
3547 | 83 |
NSArray *hogs = [teamData objectForKey:@"hedgehogs"]; |
84 |
for (int i = 0; i < numberOfPlayingHogs; i++) { |
|
85 |
NSDictionary *hog = [hogs objectAtIndex:i]; |
|
3697 | 86 |
|
11148
064a53861759
- Refactoring in order to remove some warning related to using of int instead of NSInteger
antonc27 <antonc27@mail.ru>
parents:
11137
diff
changeset
|
87 |
NSString *hogLevelHealthAndName = [[NSString alloc] initWithFormat:@"eaddhh %@ %ld %@", |
064a53861759
- Refactoring in order to remove some warning related to using of int instead of NSInteger
antonc27 <antonc27@mail.ru>
parents:
11137
diff
changeset
|
88 |
[hog objectForKey:@"level"], (long)initialHealth, [hog objectForKey:@"hogname"]]; |
3547 | 89 |
[self sendToEngine: hogLevelHealthAndName]; |
3697 | 90 |
|
3547 | 91 |
NSString *hogHat = [[NSString alloc] initWithFormat:@"ehat %@", [hog objectForKey:@"hat"]]; |
92 |
[self sendToEngine: hogHat]; |
|
93 |
} |
|
94 |
} |
|
95 |
||
96 |
// unpacks ammostore data from the selected ammo.plist to a sequence of engine commands |
|
12872
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11572
diff
changeset
|
97 |
- (void)provideAmmoData:(NSString *)ammostoreName forPlayingTeams:(NSInteger)numberOfTeams { |
3547 | 98 |
NSString *weaponPath = [[NSString alloc] initWithFormat:@"%@/%@",WEAPONS_DIRECTORY(),ammostoreName]; |
99 |
NSDictionary *ammoData = [[NSDictionary alloc] initWithContentsOfFile:weaponPath]; |
|
3697 | 100 |
|
3621 | 101 |
// if we're loading an older version of ammos fill the engine message with 0s |
3930 | 102 |
int diff = HW_getNumberOfWeapons() - [[ammoData objectForKey:@"ammostore_initialqt"] length]; |
103 |
NSString *update = @""; |
|
6908
896ed2afcfb8
ios: turn on more warning messages and start correcting them
koda
parents:
6870
diff
changeset
|
104 |
while ((int)[update length] < diff) |
3930 | 105 |
update = [update stringByAppendingString:@"0"]; |
3697 | 106 |
|
3621 | 107 |
NSString *ammloadt = [[NSString alloc] initWithFormat:@"eammloadt %@%@", [ammoData objectForKey:@"ammostore_initialqt"], update]; |
3547 | 108 |
[self sendToEngine: ammloadt]; |
3697 | 109 |
|
3621 | 110 |
NSString *ammprob = [[NSString alloc] initWithFormat:@"eammprob %@%@", [ammoData objectForKey:@"ammostore_probability"], update]; |
3547 | 111 |
[self sendToEngine: ammprob]; |
3697 | 112 |
|
3621 | 113 |
NSString *ammdelay = [[NSString alloc] initWithFormat:@"eammdelay %@%@", [ammoData objectForKey:@"ammostore_delay"], update]; |
3547 | 114 |
[self sendToEngine: ammdelay]; |
3697 | 115 |
|
3621 | 116 |
NSString *ammreinf = [[NSString alloc] initWithFormat:@"eammreinf %@%@", [ammoData objectForKey:@"ammostore_crate"], update]; |
3547 | 117 |
[self sendToEngine: ammreinf]; |
3697 | 118 |
|
3930 | 119 |
// send this for each team so it applies the same ammostore to all teams |
3547 | 120 |
NSString *ammstore = [[NSString alloc] initWithString:@"eammstore"]; |
12872
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11572
diff
changeset
|
121 |
for (int i = 0; i < numberOfTeams; i++) { |
3547 | 122 |
[self sendToEngine: ammstore]; |
12872
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11572
diff
changeset
|
123 |
} |
3547 | 124 |
} |
125 |
||
126 |
// unpacks scheme data from the selected scheme.plist to a sequence of engine commands |
|
12872
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11572
diff
changeset
|
127 |
- (NSInteger)provideScheme:(NSString *)schemeName { |
3547 | 128 |
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
|
129 |
NSDictionary *schemeDictionary = [[NSDictionary alloc] initWithContentsOfFile:schemePath]; |
12872
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11572
diff
changeset
|
130 |
|
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
|
131 |
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
|
132 |
NSArray *gamemodArray = [schemeDictionary objectForKey:@"gamemod"]; |
3547 | 133 |
int result = 0; |
4000
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
134 |
int mask = 0x00000004; |
3547 | 135 |
|
5185
7607a64e1853
remove the trailing _en from scheme data and use the macros available instead of creating a string every time
koda
parents:
5181
diff
changeset
|
136 |
// pack the game modifiers in a single var and send it |
4000
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
137 |
for (NSNumber *value in gamemodArray) { |
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
138 |
if ([value boolValue] == YES) |
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
139 |
result |= mask; |
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
140 |
mask <<= 1; |
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
141 |
} |
3547 | 142 |
NSString *flags = [[NSString alloc] initWithFormat:@"e$gmflags %d",result]; |
143 |
[self sendToEngine:flags]; |
|
3697 | 144 |
|
5185
7607a64e1853
remove the trailing _en from scheme data and use the macros available instead of creating a string every time
koda
parents:
5181
diff
changeset
|
145 |
// basic game flags |
4605 | 146 |
result = [[basicArray objectAtIndex:0] intValue]; |
5185
7607a64e1853
remove the trailing _en from scheme data and use the macros available instead of creating a string every time
koda
parents:
5181
diff
changeset
|
147 |
NSArray *basic = [[NSArray alloc] initWithContentsOfFile:BASICFLAGS_FILE()]; |
4211
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
148 |
|
6908
896ed2afcfb8
ios: turn on more warning messages and start correcting them
koda
parents:
6870
diff
changeset
|
149 |
for (NSUInteger i = 1; i < [basicArray count]; i++) { |
5185
7607a64e1853
remove the trailing _en from scheme data and use the macros available instead of creating a string every time
koda
parents:
5181
diff
changeset
|
150 |
NSDictionary *dict = [basic objectAtIndex:i]; |
4605 | 151 |
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
|
152 |
NSInteger value = [[basicArray objectAtIndex:i] intValue]; |
4605 | 153 |
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
|
154 |
value = 9999; |
4605 | 155 |
if ([[dict objectForKey:@"times1000"] boolValue]) |
156 |
value = value * 1000; |
|
4211
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
157 |
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
|
158 |
[self sendToEngine:strToSend]; |
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
159 |
} |
3697 | 160 |
|
3547 | 161 |
return result; |
162 |
} |
|
163 |
||
164 |
#pragma mark - |
|
4547 | 165 |
#pragma mark Network relevant code |
12872
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11572
diff
changeset
|
166 |
- (void)dumpRawData:(const char *)buffer ofSize:(uint8_t) length { |
5155
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
167 |
[self.stream write:&length maxLength:1]; |
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
168 |
[self.stream 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
|
169 |
} |
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
|
170 |
|
3891 | 171 |
// wrapper that computes the length of the message and then sends the command string, saving the command on a file |
4512 | 172 |
-(int) sendToEngine:(NSString *)string { |
11240
57891137ffef
- Fix for sending to engine non-english characters
antonc27 <antonc27@mail.ru>
parents:
11231
diff
changeset
|
173 |
uint8_t length = [string lengthOfBytesUsingEncoding:NSUTF8StringEncoding]; |
3697 | 174 |
|
4754 | 175 |
[self dumpRawData:[string UTF8String] ofSize:length]; |
3902
3aac7ca07b0e
have Saves restart net when loaded, also resumes music
koda
parents:
3898
diff
changeset
|
176 |
SDLNet_TCP_Send(csd, &length, 1); |
3891 | 177 |
return SDLNet_TCP_Send(csd, [string UTF8String], length); |
178 |
} |
|
179 |
||
180 |
// wrapper that computes the length of the message and then sends the command string, skipping file writing |
|
4512 | 181 |
-(int) sendToEngineNoSave:(NSString *)string { |
11240
57891137ffef
- Fix for sending to engine non-english characters
antonc27 <antonc27@mail.ru>
parents:
11231
diff
changeset
|
182 |
uint8_t length = [string lengthOfBytesUsingEncoding:NSUTF8StringEncoding]; |
3891 | 183 |
|
3902
3aac7ca07b0e
have Saves restart net when loaded, also resumes music
koda
parents:
3898
diff
changeset
|
184 |
SDLNet_TCP_Send(csd, &length, 1); |
3547 | 185 |
return SDLNet_TCP_Send(csd, [string UTF8String], length); |
186 |
} |
|
187 |
||
5154
851f36579ed4
initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
5002
diff
changeset
|
188 |
// this is launched as thread and handles all IPC with engine |
12872
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11572
diff
changeset
|
189 |
- (void)engineProtocol:(id)object { |
11137
14f50dde3e8c
- Using of @autoreleasepool is better
Anton Malmygin <antonc27@mail.ru>
parents:
11107
diff
changeset
|
190 |
@autoreleasepool { |
14f50dde3e8c
- Using of @autoreleasepool is better
Anton Malmygin <antonc27@mail.ru>
parents:
11107
diff
changeset
|
191 |
|
6321 | 192 |
NSDictionary *gameConfig = (NSDictionary *)object; |
6870
f72cac290325
ios: refactor the code of the after-game statistics display using delegates
koda
parents:
6832
diff
changeset
|
193 |
NSMutableArray *statsArray = nil; |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
194 |
TCPsocket sd; |
3547 | 195 |
IPaddress ip; |
196 |
int eProto; |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
197 |
BOOL clientQuit; |
4754 | 198 |
char const buffer[BUFFER_SIZE]; |
3547 | 199 |
uint8_t msgSize; |
3697 | 200 |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
201 |
clientQuit = NO; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
202 |
csd = NULL; |
3547 | 203 |
|
204 |
if (SDLNet_Init() < 0) { |
|
205 |
DLog(@"SDLNet_Init: %s", SDLNet_GetError()); |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
206 |
clientQuit = YES; |
3547 | 207 |
} |
3697 | 208 |
|
3547 | 209 |
// Resolving the host using NULL make network interface to listen |
6321 | 210 |
if (SDLNet_ResolveHost(&ip, NULL, self.enginePort) < 0 && !clientQuit) { |
3547 | 211 |
DLog(@"SDLNet_ResolveHost: %s\n", SDLNet_GetError()); |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
212 |
clientQuit = YES; |
3547 | 213 |
} |
3697 | 214 |
|
215 |
// 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
|
216 |
if (!(sd = SDLNet_TCP_Open(&ip)) && !clientQuit) { |
11107 | 217 |
DLog(@"SDLNet_TCP_Open: %s %d\n", SDLNet_GetError(), self.enginePort); |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
218 |
clientQuit = YES; |
3547 | 219 |
} |
3697 | 220 |
|
6321 | 221 |
DLog(@"Waiting for a client on port %d", self.enginePort); |
3697 | 222 |
while (csd == NULL) |
3547 | 223 |
csd = SDLNet_TCP_Accept(sd); |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
224 |
SDLNet_TCP_Close(sd); |
3697 | 225 |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
226 |
while (!clientQuit) { |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
227 |
msgSize = 0; |
4754 | 228 |
memset((void *)buffer, '\0', BUFFER_SIZE); |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
229 |
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
|
230 |
break; |
4754 | 231 |
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
|
232 |
break; |
3697 | 233 |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
234 |
switch (buffer[0]) { |
12872
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11572
diff
changeset
|
235 |
case 'C': { |
5155
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
236 |
DLog(@"Sending game config...\n%@", gameConfig); |
3697 | 237 |
|
5154
851f36579ed4
initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
5002
diff
changeset
|
238 |
/*if (isNetGame == YES) |
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
239 |
[self sendToEngineNoSave:@"TN"]; |
5154
851f36579ed4
initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
5002
diff
changeset
|
240 |
else*/ |
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
241 |
[self sendToEngineNoSave:@"TL"]; |
3891 | 242 |
NSString *saveHeader = @"TS"; |
4754 | 243 |
[self dumpRawData:[saveHeader UTF8String] ofSize:[saveHeader length]]; |
3697 | 244 |
|
5370
a3f87be7b09a
ios: disble logging, stop music correctly in preferences, move script command before seed, try using reatin instead of if
koda
parents:
5185
diff
changeset
|
245 |
// lua script (if set) |
a3f87be7b09a
ios: disble logging, stop music correctly in preferences, move script command before seed, try using reatin instead of if
koda
parents:
5185
diff
changeset
|
246 |
NSString *script = [gameConfig objectForKey:@"mission_command"]; |
a3f87be7b09a
ios: disble logging, stop music correctly in preferences, move script command before seed, try using reatin instead of if
koda
parents:
5185
diff
changeset
|
247 |
if ([script length] != 0) |
a3f87be7b09a
ios: disble logging, stop music correctly in preferences, move script command before seed, try using reatin instead of if
koda
parents:
5185
diff
changeset
|
248 |
[self sendToEngine:script]; |
11555
b96080df19d0
- Send also some seed when loading missions on iOS (same behavior as on desktop)
antonc27 <antonc27@mail.ru>
parents:
11241
diff
changeset
|
249 |
|
3547 | 250 |
// seed info |
5155
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
251 |
[self sendToEngine:[gameConfig objectForKey:@"seed_command"]]; |
3697 | 252 |
|
11572
28afdaa159cb
- Campaign for iOS: Finally can launch campaign's mission game from list!
antonc27 <antonc27@mail.ru>
parents:
11555
diff
changeset
|
253 |
// missions/tranings/campaign only need the script configuration set and seed |
28afdaa159cb
- Campaign for iOS: Finally can launch campaign's mission game from list!
antonc27 <antonc27@mail.ru>
parents:
11555
diff
changeset
|
254 |
TGameType currentGameType = [HWUtils gameType]; |
28afdaa159cb
- Campaign for iOS: Finally can launch campaign's mission game from list!
antonc27 <antonc27@mail.ru>
parents:
11555
diff
changeset
|
255 |
if (currentGameType == gtMission || currentGameType == gtCampaign) |
11555
b96080df19d0
- Send also some seed when loading missions on iOS (same behavior as on desktop)
antonc27 <antonc27@mail.ru>
parents:
11241
diff
changeset
|
256 |
break; |
b96080df19d0
- Send also some seed when loading missions on iOS (same behavior as on desktop)
antonc27 <antonc27@mail.ru>
parents:
11241
diff
changeset
|
257 |
|
3547 | 258 |
// dimension of the map |
5155
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
259 |
[self sendToEngine:[gameConfig objectForKey:@"templatefilter_command"]]; |
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
260 |
[self sendToEngine:[gameConfig objectForKey:@"mapgen_command"]]; |
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
261 |
[self sendToEngine:[gameConfig objectForKey:@"mazesize_command"]]; |
3697 | 262 |
|
3642 | 263 |
// static land (if set) |
5155
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
264 |
NSString *staticMap = [gameConfig objectForKey:@"staticmap_command"]; |
3642 | 265 |
if ([staticMap length] != 0) |
266 |
[self sendToEngine:staticMap]; |
|
3697 | 267 |
|
3547 | 268 |
// theme info |
5155
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
269 |
[self sendToEngine:[gameConfig objectForKey:@"theme_command"]]; |
3697 | 270 |
|
3547 | 271 |
// scheme (returns initial health) |
5155
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
272 |
NSInteger health = [self provideScheme:[gameConfig objectForKey:@"scheme"]]; |
3697 | 273 |
|
4000
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
274 |
// send an ammostore for each team |
5155
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
275 |
NSArray *teamsConfig = [gameConfig objectForKey:@"teams_list"]; |
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
276 |
[self provideAmmoData:[gameConfig objectForKey:@"weapon"] forPlayingTeams:[teamsConfig count]]; |
4000
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
277 |
|
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
278 |
// finally add hogs |
3547 | 279 |
for (NSDictionary *teamData in teamsConfig) { |
3697 | 280 |
[self provideTeamData:[teamData objectForKey:@"team"] |
3547 | 281 |
forHogs:[[teamData objectForKey:@"number"] intValue] |
282 |
withHealth:health |
|
283 |
ofColor:[teamData objectForKey:@"color"]]; |
|
284 |
} |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
285 |
break; |
12872
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11572
diff
changeset
|
286 |
} |
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11572
diff
changeset
|
287 |
case '?': { |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
288 |
DLog(@"Ping? Pong!"); |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
289 |
[self sendToEngine:@"!"]; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
290 |
break; |
12872
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11572
diff
changeset
|
291 |
} |
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11572
diff
changeset
|
292 |
case 'E': { |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
293 |
DLog(@"ERROR - last console line: [%s]", &buffer[1]); |
3547 | 294 |
clientQuit = YES; |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
295 |
break; |
12872
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11572
diff
changeset
|
296 |
} |
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11572
diff
changeset
|
297 |
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
|
298 |
[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
|
299 |
|
3902
3aac7ca07b0e
have Saves restart net when loaded, also resumes music
koda
parents:
3898
diff
changeset
|
300 |
sscanf((char *)buffer, "%*s %d", &eProto); |
4603 | 301 |
int netProto; |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
302 |
char *versionStr; |
3697 | 303 |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
304 |
HW_versionInfo(&netProto, &versionStr); |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
305 |
if (netProto == eProto) { |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
306 |
DLog(@"Setting protocol version %d (%s)", eProto, versionStr); |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
307 |
} else { |
4603 | 308 |
DLog(@"ERROR - wrong protocol number: %d (expecting %d)", netProto, eProto); |
3547 | 309 |
clientQuit = YES; |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
310 |
} |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
311 |
break; |
12872
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11572
diff
changeset
|
312 |
} |
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11572
diff
changeset
|
313 |
case 'i': { |
6870
f72cac290325
ios: refactor the code of the after-game statistics display using delegates
koda
parents:
6832
diff
changeset
|
314 |
if (statsArray == nil) { |
f72cac290325
ios: refactor the code of the after-game statistics display using delegates
koda
parents:
6832
diff
changeset
|
315 |
statsArray = [[NSMutableArray alloc] initWithCapacity:10 - 2]; |
4856 | 316 |
NSMutableArray *ranking = [[NSMutableArray alloc] initWithCapacity:4]; |
6870
f72cac290325
ios: refactor the code of the after-game statistics display using delegates
koda
parents:
6832
diff
changeset
|
317 |
[statsArray insertObject:ranking atIndex:0]; |
4856 | 318 |
} |
4769 | 319 |
NSString *tempStr = [NSString stringWithUTF8String:&buffer[2]]; |
4856 | 320 |
NSArray *info = [tempStr componentsSeparatedByString:@" "]; |
321 |
NSString *arg = [info objectAtIndex:0]; |
|
11241
e7bae160b73b
- Fix for formatting non-english characters, received from engine
antonc27 <antonc27@mail.ru>
parents:
11240
diff
changeset
|
322 |
int index = [arg lengthOfBytesUsingEncoding:NSUTF8StringEncoding] + 3; |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
323 |
switch (buffer[1]) { |
12872
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11572
diff
changeset
|
324 |
case 'r': { // winning team |
6870
f72cac290325
ios: refactor the code of the after-game statistics display using delegates
koda
parents:
6832
diff
changeset
|
325 |
[statsArray insertObject:[NSString stringWithUTF8String:&buffer[2]] atIndex:1]; |
3547 | 326 |
break; |
12872
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11572
diff
changeset
|
327 |
} |
4760 | 328 |
case 'D': // best shot |
11241
e7bae160b73b
- Fix for formatting non-english characters, received from engine
antonc27 <antonc27@mail.ru>
parents:
11240
diff
changeset
|
329 |
{ |
e7bae160b73b
- Fix for formatting non-english characters, received from engine
antonc27 <antonc27@mail.ru>
parents:
11240
diff
changeset
|
330 |
NSString *hogName = [NSString stringWithUTF8String:&buffer[index]]; |
e7bae160b73b
- Fix for formatting non-english characters, received from engine
antonc27 <antonc27@mail.ru>
parents:
11240
diff
changeset
|
331 |
[statsArray addObject:[NSString stringWithFormat:NSLocalizedString(@"The best shot award won by %@ (with %@ points)", nil), hogName, arg]]; |
4549 | 332 |
break; |
11241
e7bae160b73b
- Fix for formatting non-english characters, received from engine
antonc27 <antonc27@mail.ru>
parents:
11240
diff
changeset
|
333 |
} |
4760 | 334 |
case 'k': // best hedgehog |
11241
e7bae160b73b
- Fix for formatting non-english characters, received from engine
antonc27 <antonc27@mail.ru>
parents:
11240
diff
changeset
|
335 |
{ |
e7bae160b73b
- Fix for formatting non-english characters, received from engine
antonc27 <antonc27@mail.ru>
parents:
11240
diff
changeset
|
336 |
NSString *hogName = [NSString stringWithUTF8String:&buffer[index]]; |
e7bae160b73b
- Fix for formatting non-english characters, received from engine
antonc27 <antonc27@mail.ru>
parents:
11240
diff
changeset
|
337 |
[statsArray addObject:[NSString stringWithFormat:NSLocalizedString(@"The best killer is %@ with %@ kill(s) in a turn", nil), hogName, arg]]; |
3902
3aac7ca07b0e
have Saves restart net when loaded, also resumes music
koda
parents:
3898
diff
changeset
|
338 |
break; |
11241
e7bae160b73b
- Fix for formatting non-english characters, received from engine
antonc27 <antonc27@mail.ru>
parents:
11240
diff
changeset
|
339 |
} |
4760 | 340 |
case 'K': // number of hogs killed |
11231
bb3e57426a07
- Localization for missed strings in StatsPage (for both eng and rus)
antonc27 <antonc27@mail.ru>
parents:
11148
diff
changeset
|
341 |
[statsArray addObject:[NSString stringWithFormat:NSLocalizedString(@"%@ hedgehog(s) were killed during this round", nil), arg]]; |
4549 | 342 |
break; |
4856 | 343 |
case 'H': // team health/graph |
4549 | 344 |
break; |
4760 | 345 |
case 'T': // local team stats |
4856 | 346 |
// still WIP in statsPage.cpp |
4549 | 347 |
break; |
4856 | 348 |
case 'P': // teams ranking |
6870
f72cac290325
ios: refactor the code of the after-game statistics display using delegates
koda
parents:
6832
diff
changeset
|
349 |
[[statsArray objectAtIndex:0] addObject:tempStr]; |
4549 | 350 |
break; |
4760 | 351 |
case 's': // self damage |
11241
e7bae160b73b
- Fix for formatting non-english characters, received from engine
antonc27 <antonc27@mail.ru>
parents:
11240
diff
changeset
|
352 |
{ |
e7bae160b73b
- Fix for formatting non-english characters, received from engine
antonc27 <antonc27@mail.ru>
parents:
11240
diff
changeset
|
353 |
NSString *hogName = [NSString stringWithUTF8String:&buffer[index]]; |
e7bae160b73b
- Fix for formatting non-english characters, received from engine
antonc27 <antonc27@mail.ru>
parents:
11240
diff
changeset
|
354 |
[statsArray addObject:[NSString stringWithFormat:NSLocalizedString(@"%@ thought it's good to shoot his own hedgehogs with %@ points", nil), hogName, arg]]; |
4549 | 355 |
break; |
11241
e7bae160b73b
- Fix for formatting non-english characters, received from engine
antonc27 <antonc27@mail.ru>
parents:
11240
diff
changeset
|
356 |
} |
4760 | 357 |
case 'S': // friendly fire |
11241
e7bae160b73b
- Fix for formatting non-english characters, received from engine
antonc27 <antonc27@mail.ru>
parents:
11240
diff
changeset
|
358 |
{ |
e7bae160b73b
- Fix for formatting non-english characters, received from engine
antonc27 <antonc27@mail.ru>
parents:
11240
diff
changeset
|
359 |
NSString *hogName = [NSString stringWithUTF8String:&buffer[index]]; |
e7bae160b73b
- Fix for formatting non-english characters, received from engine
antonc27 <antonc27@mail.ru>
parents:
11240
diff
changeset
|
360 |
[statsArray addObject:[NSString stringWithFormat:NSLocalizedString(@"%@ killed %@ of his own hedgehogs", nil), hogName, arg]]; |
4549 | 361 |
break; |
11241
e7bae160b73b
- Fix for formatting non-english characters, received from engine
antonc27 <antonc27@mail.ru>
parents:
11240
diff
changeset
|
362 |
} |
4760 | 363 |
case 'B': // turn skipped |
11241
e7bae160b73b
- Fix for formatting non-english characters, received from engine
antonc27 <antonc27@mail.ru>
parents:
11240
diff
changeset
|
364 |
{ |
e7bae160b73b
- Fix for formatting non-english characters, received from engine
antonc27 <antonc27@mail.ru>
parents:
11240
diff
changeset
|
365 |
NSString *hogName = [NSString stringWithUTF8String:&buffer[index]]; |
e7bae160b73b
- Fix for formatting non-english characters, received from engine
antonc27 <antonc27@mail.ru>
parents:
11240
diff
changeset
|
366 |
[statsArray addObject:[NSString stringWithFormat:NSLocalizedString(@"%@ was scared and skipped turn %@ times", nil), hogName, arg]]; |
4549 | 367 |
break; |
11241
e7bae160b73b
- Fix for formatting non-english characters, received from engine
antonc27 <antonc27@mail.ru>
parents:
11240
diff
changeset
|
368 |
} |
3902
3aac7ca07b0e
have Saves restart net when loaded, also resumes music
koda
parents:
3898
diff
changeset
|
369 |
default: |
4549 | 370 |
DLog(@"Unhandled stat message, see statsPage.cpp"); |
3547 | 371 |
break; |
372 |
} |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
373 |
break; |
12872
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11572
diff
changeset
|
374 |
} |
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11572
diff
changeset
|
375 |
case 'q': { |
6353
d8f62c805619
restore displaying statistics at the end of a game and restore warning lower views that they are going to appear
koda
parents:
6337
diff
changeset
|
376 |
// game ended and match finished, statsArray is full of delicious statistics |
6870
f72cac290325
ios: refactor the code of the after-game statistics display using delegates
koda
parents:
6832
diff
changeset
|
377 |
if (self.delegate != nil && [self.delegate respondsToSelector:@selector(gameEndedWithStatistics:)]) |
f72cac290325
ios: refactor the code of the after-game statistics display using delegates
koda
parents:
6832
diff
changeset
|
378 |
[self.delegate gameEndedWithStatistics:statsArray]; |
6265
a6944f94c19f
aaand remove also ipcport from the class interface as well
koda
parents:
6263
diff
changeset
|
379 |
[HWUtils setGameStatus:gsEnded]; |
6353
d8f62c805619
restore displaying statistics at the end of a game and restore warning lower views that they are going to appear
koda
parents:
6337
diff
changeset
|
380 |
// closing connection here would trigger a "IPC connection lost" error, so we have to wait until recv fails |
4861
91f889289a47
(ios) perform a small change about how to close the game window, should hopefully save memory and avoid crashes (who am i kidding? that's the usual PR talk...)
koda
parents:
4856
diff
changeset
|
381 |
break; |
12872
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11572
diff
changeset
|
382 |
} |
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11572
diff
changeset
|
383 |
case 'Q': { |
6353
d8f62c805619
restore displaying statistics at the end of a game and restore warning lower views that they are going to appear
koda
parents:
6337
diff
changeset
|
384 |
// game exited but not completed, skip this message in the savefile |
d8f62c805619
restore displaying statistics at the end of a game and restore warning lower views that they are going to appear
koda
parents:
6337
diff
changeset
|
385 |
[HWUtils setGameStatus:gsInterrupted]; |
d8f62c805619
restore displaying statistics at the end of a game and restore warning lower views that they are going to appear
koda
parents:
6337
diff
changeset
|
386 |
// same here, don't set clientQuit to YES |
3902
3aac7ca07b0e
have Saves restart net when loaded, also resumes music
koda
parents:
3898
diff
changeset
|
387 |
break; |
12872
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11572
diff
changeset
|
388 |
} |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
389 |
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
|
390 |
[self dumpRawData:buffer ofSize:msgSize]; |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
391 |
break; |
3547 | 392 |
} |
393 |
} |
|
4510 | 394 |
DLog(@"Engine exited, ending thread"); |
6353
d8f62c805619
restore displaying statistics at the end of a game and restore warning lower views that they are going to appear
koda
parents:
6337
diff
changeset
|
395 |
|
5156 | 396 |
[self.stream close]; |
4861
91f889289a47
(ios) perform a small change about how to close the game window, should hopefully save memory and avoid crashes (who am i kidding? that's the usual PR talk...)
koda
parents:
4856
diff
changeset
|
397 |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
398 |
// Close the client socket |
6822
206db098f8c5
ios headers cleanup, with tweaks to +randomPort and grenade timer handling in overlay
koda
parents:
6700
diff
changeset
|
399 |
[HWUtils freePort:self.enginePort]; |
3697 | 400 |
SDLNet_TCP_Close(csd); |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
401 |
SDLNet_Quit(); |
11137
14f50dde3e8c
- Using of @autoreleasepool is better
Anton Malmygin <antonc27@mail.ru>
parents:
11107
diff
changeset
|
402 |
|
14f50dde3e8c
- Using of @autoreleasepool is better
Anton Malmygin <antonc27@mail.ru>
parents:
11107
diff
changeset
|
403 |
} |
3697 | 404 |
|
4861
91f889289a47
(ios) perform a small change about how to close the game window, should hopefully save memory and avoid crashes (who am i kidding? that's the usual PR talk...)
koda
parents:
4856
diff
changeset
|
405 |
// Invoking this method should be avoided as it does not give your thread a chance |
91f889289a47
(ios) perform a small change about how to close the game window, should hopefully save memory and avoid crashes (who am i kidding? that's the usual PR talk...)
koda
parents:
4856
diff
changeset
|
406 |
// to clean up any resources it allocated during its execution. |
3547 | 407 |
//[NSThread exit]; |
408 |
} |
|
409 |
||
410 |
@end |