author | antonc27 <antonc27@mail.ru> |
Thu, 22 Oct 2015 03:00:22 +0200 | |
branch | ios-revival |
changeset 11230 | 628ac6f8a41e |
parent 11148 | 064a53861759 |
child 11235 | bb3e57426a07 |
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 |
|
6870
f72cac290325
ios: refactor the code of the after-game statistics display using delegates
koda
parents:
6832
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 |
||
6870
f72cac290325
ios: refactor the code of the after-game statistics display using delegates
koda
parents:
6832
diff
changeset
|
38 |
-(id) init { |
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 |
|
3547 | 42 |
-(void) dealloc { |
6870
f72cac290325
ios: refactor the code of the after-game statistics display using delegates
koda
parents:
6832
diff
changeset
|
43 |
self.delegate = nil; |
5155
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
44 |
releaseAndNil(stream); |
3547 | 45 |
[super dealloc]; |
46 |
} |
|
47 |
||
5155
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
48 |
#pragma mark - |
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
49 |
#pragma mark Spawner functions |
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 |
-(void) spawnThread:(NSString *)onSaveFile withOptions:(NSDictionary *)dictionary { |
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
|
51 |
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
|
52 |
[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
|
53 |
|
6321 | 54 |
// +detachNewThreadSelector retain/release self automatically |
5156 | 55 |
[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
|
56 |
toTarget:self |
6321 | 57 |
withObject:dictionary]; |
58 |
} |
|
6265
a6944f94c19f
aaand remove also ipcport from the class interface as well
koda
parents:
6263
diff
changeset
|
59 |
|
3547 | 60 |
#pragma mark - |
61 |
#pragma mark Provider functions |
|
62 |
// unpacks team data from the selected team.plist to a sequence of engine commands |
|
63 |
-(void) provideTeamData:(NSString *)teamName forHogs:(NSInteger) numberOfPlayingHogs withHealth:(NSInteger) initialHealth ofColor:(NSNumber *)teamColor { |
|
64 |
/* |
|
65 |
addteam <32charsMD5hash> <color> <team name> |
|
66 |
addhh <level> <health> <hedgehog name> |
|
67 |
<level> is 0 for human, 1-5 for bots (5 is the most stupid) |
|
68 |
*/ |
|
3697 | 69 |
|
3547 | 70 |
NSString *teamFile = [[NSString alloc] initWithFormat:@"%@/%@", TEAMS_DIRECTORY(), teamName]; |
71 |
NSDictionary *teamData = [[NSDictionary alloc] initWithContentsOfFile:teamFile]; |
|
72 |
[teamFile release]; |
|
3697 | 73 |
|
74 |
NSString *teamHashColorAndName = [[NSString alloc] initWithFormat:@"eaddteam %@ %@ %@", |
|
3660 | 75 |
[teamData objectForKey:@"hash"], [teamColor stringValue], [teamName stringByDeletingPathExtension]]; |
3547 | 76 |
[self sendToEngine: teamHashColorAndName]; |
77 |
[teamHashColorAndName release]; |
|
3697 | 78 |
|
3547 | 79 |
NSString *grave = [[NSString alloc] initWithFormat:@"egrave %@", [teamData objectForKey:@"grave"]]; |
80 |
[self sendToEngine: grave]; |
|
81 |
[grave release]; |
|
3697 | 82 |
|
3547 | 83 |
NSString *fort = [[NSString alloc] initWithFormat:@"efort %@", [teamData objectForKey:@"fort"]]; |
84 |
[self sendToEngine: fort]; |
|
85 |
[fort release]; |
|
3697 | 86 |
|
3547 | 87 |
NSString *voicepack = [[NSString alloc] initWithFormat:@"evoicepack %@", [teamData objectForKey:@"voicepack"]]; |
88 |
[self sendToEngine: voicepack]; |
|
89 |
[voicepack release]; |
|
3697 | 90 |
|
3547 | 91 |
NSString *flag = [[NSString alloc] initWithFormat:@"eflag %@", [teamData objectForKey:@"flag"]]; |
92 |
[self sendToEngine: flag]; |
|
93 |
[flag release]; |
|
3697 | 94 |
|
3547 | 95 |
NSArray *hogs = [teamData objectForKey:@"hedgehogs"]; |
96 |
for (int i = 0; i < numberOfPlayingHogs; i++) { |
|
97 |
NSDictionary *hog = [hogs objectAtIndex:i]; |
|
3697 | 98 |
|
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
|
99 |
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
|
100 |
[hog objectForKey:@"level"], (long)initialHealth, [hog objectForKey:@"hogname"]]; |
3547 | 101 |
[self sendToEngine: hogLevelHealthAndName]; |
102 |
[hogLevelHealthAndName release]; |
|
3697 | 103 |
|
3547 | 104 |
NSString *hogHat = [[NSString alloc] initWithFormat:@"ehat %@", [hog objectForKey:@"hat"]]; |
105 |
[self sendToEngine: hogHat]; |
|
106 |
[hogHat release]; |
|
107 |
} |
|
3697 | 108 |
|
3547 | 109 |
[teamData release]; |
110 |
} |
|
111 |
||
112 |
// unpacks ammostore data from the selected ammo.plist to a sequence of engine commands |
|
113 |
-(void) provideAmmoData:(NSString *)ammostoreName forPlayingTeams:(NSInteger) numberOfTeams { |
|
114 |
NSString *weaponPath = [[NSString alloc] initWithFormat:@"%@/%@",WEAPONS_DIRECTORY(),ammostoreName]; |
|
115 |
NSDictionary *ammoData = [[NSDictionary alloc] initWithContentsOfFile:weaponPath]; |
|
116 |
[weaponPath release]; |
|
3697 | 117 |
|
3621 | 118 |
// if we're loading an older version of ammos fill the engine message with 0s |
3930 | 119 |
int diff = HW_getNumberOfWeapons() - [[ammoData objectForKey:@"ammostore_initialqt"] length]; |
120 |
NSString *update = @""; |
|
6908
896ed2afcfb8
ios: turn on more warning messages and start correcting them
koda
parents:
6870
diff
changeset
|
121 |
while ((int)[update length] < diff) |
3930 | 122 |
update = [update stringByAppendingString:@"0"]; |
3697 | 123 |
|
3621 | 124 |
NSString *ammloadt = [[NSString alloc] initWithFormat:@"eammloadt %@%@", [ammoData objectForKey:@"ammostore_initialqt"], update]; |
3547 | 125 |
[self sendToEngine: ammloadt]; |
126 |
[ammloadt release]; |
|
3697 | 127 |
|
3621 | 128 |
NSString *ammprob = [[NSString alloc] initWithFormat:@"eammprob %@%@", [ammoData objectForKey:@"ammostore_probability"], update]; |
3547 | 129 |
[self sendToEngine: ammprob]; |
130 |
[ammprob release]; |
|
3697 | 131 |
|
3621 | 132 |
NSString *ammdelay = [[NSString alloc] initWithFormat:@"eammdelay %@%@", [ammoData objectForKey:@"ammostore_delay"], update]; |
3547 | 133 |
[self sendToEngine: ammdelay]; |
134 |
[ammdelay release]; |
|
3697 | 135 |
|
3621 | 136 |
NSString *ammreinf = [[NSString alloc] initWithFormat:@"eammreinf %@%@", [ammoData objectForKey:@"ammostore_crate"], update]; |
3547 | 137 |
[self sendToEngine: ammreinf]; |
138 |
[ammreinf release]; |
|
3697 | 139 |
|
3930 | 140 |
// send this for each team so it applies the same ammostore to all teams |
3547 | 141 |
NSString *ammstore = [[NSString alloc] initWithString:@"eammstore"]; |
142 |
for (int i = 0; i < numberOfTeams; i++) |
|
143 |
[self sendToEngine: ammstore]; |
|
144 |
[ammstore release]; |
|
3697 | 145 |
|
3547 | 146 |
[ammoData release]; |
147 |
} |
|
148 |
||
149 |
// unpacks scheme data from the selected scheme.plist to a sequence of engine commands |
|
150 |
-(NSInteger) provideScheme:(NSString *)schemeName { |
|
151 |
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
|
152 |
NSDictionary *schemeDictionary = [[NSDictionary alloc] initWithContentsOfFile:schemePath]; |
3547 | 153 |
[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
|
154 |
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
|
155 |
NSArray *gamemodArray = [schemeDictionary objectForKey:@"gamemod"]; |
3547 | 156 |
int result = 0; |
4000
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
157 |
int mask = 0x00000004; |
3547 | 158 |
|
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
|
159 |
// 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
|
160 |
for (NSNumber *value in gamemodArray) { |
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
161 |
if ([value boolValue] == YES) |
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
162 |
result |= mask; |
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
163 |
mask <<= 1; |
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
164 |
} |
3547 | 165 |
NSString *flags = [[NSString alloc] initWithFormat:@"e$gmflags %d",result]; |
166 |
[self sendToEngine:flags]; |
|
167 |
[flags release]; |
|
3697 | 168 |
|
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
|
169 |
// basic game flags |
4605 | 170 |
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
|
171 |
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
|
172 |
|
6908
896ed2afcfb8
ios: turn on more warning messages and start correcting them
koda
parents:
6870
diff
changeset
|
173 |
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
|
174 |
NSDictionary *dict = [basic objectAtIndex:i]; |
4605 | 175 |
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
|
176 |
NSInteger value = [[basicArray objectAtIndex:i] intValue]; |
4605 | 177 |
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
|
178 |
value = 9999; |
4605 | 179 |
if ([[dict objectForKey:@"times1000"] boolValue]) |
180 |
value = value * 1000; |
|
4211
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
181 |
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
|
182 |
[self sendToEngine:strToSend]; |
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
183 |
[strToSend release]; |
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
184 |
} |
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
|
185 |
[basic release]; |
3697 | 186 |
|
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
|
187 |
[schemeDictionary release]; |
3547 | 188 |
return result; |
189 |
} |
|
190 |
||
191 |
#pragma mark - |
|
4547 | 192 |
#pragma mark Network relevant code |
4754 | 193 |
-(void) dumpRawData:(const char *)buffer ofSize:(uint8_t) length { |
5155
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
194 |
[self.stream write:&length maxLength:1]; |
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
195 |
[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
|
196 |
} |
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
|
197 |
|
3891 | 198 |
// wrapper that computes the length of the message and then sends the command string, saving the command on a file |
4512 | 199 |
-(int) sendToEngine:(NSString *)string { |
3547 | 200 |
uint8_t length = [string length]; |
3697 | 201 |
|
4754 | 202 |
[self dumpRawData:[string UTF8String] ofSize:length]; |
3902
3aac7ca07b0e
have Saves restart net when loaded, also resumes music
koda
parents:
3898
diff
changeset
|
203 |
SDLNet_TCP_Send(csd, &length, 1); |
3891 | 204 |
return SDLNet_TCP_Send(csd, [string UTF8String], length); |
205 |
} |
|
206 |
||
207 |
// wrapper that computes the length of the message and then sends the command string, skipping file writing |
|
4512 | 208 |
-(int) sendToEngineNoSave:(NSString *)string { |
3891 | 209 |
uint8_t length = [string length]; |
210 |
||
3902
3aac7ca07b0e
have Saves restart net when loaded, also resumes music
koda
parents:
3898
diff
changeset
|
211 |
SDLNet_TCP_Send(csd, &length, 1); |
3547 | 212 |
return SDLNet_TCP_Send(csd, [string UTF8String], length); |
213 |
} |
|
214 |
||
5154
851f36579ed4
initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
5002
diff
changeset
|
215 |
// this is launched as thread and handles all IPC with engine |
5155
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
216 |
-(void) engineProtocol:(id) object { |
11137
14f50dde3e8c
- Using of @autoreleasepool is better
Anton Malmygin <antonc27@mail.ru>
parents:
11107
diff
changeset
|
217 |
@autoreleasepool { |
14f50dde3e8c
- Using of @autoreleasepool is better
Anton Malmygin <antonc27@mail.ru>
parents:
11107
diff
changeset
|
218 |
|
6321 | 219 |
NSDictionary *gameConfig = (NSDictionary *)object; |
6870
f72cac290325
ios: refactor the code of the after-game statistics display using delegates
koda
parents:
6832
diff
changeset
|
220 |
NSMutableArray *statsArray = nil; |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
221 |
TCPsocket sd; |
3547 | 222 |
IPaddress ip; |
223 |
int eProto; |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
224 |
BOOL clientQuit; |
4754 | 225 |
char const buffer[BUFFER_SIZE]; |
3547 | 226 |
uint8_t msgSize; |
3697 | 227 |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
228 |
clientQuit = NO; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
229 |
csd = NULL; |
3547 | 230 |
|
231 |
if (SDLNet_Init() < 0) { |
|
232 |
DLog(@"SDLNet_Init: %s", SDLNet_GetError()); |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
233 |
clientQuit = YES; |
3547 | 234 |
} |
3697 | 235 |
|
3547 | 236 |
// Resolving the host using NULL make network interface to listen |
6321 | 237 |
if (SDLNet_ResolveHost(&ip, NULL, self.enginePort) < 0 && !clientQuit) { |
3547 | 238 |
DLog(@"SDLNet_ResolveHost: %s\n", SDLNet_GetError()); |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
239 |
clientQuit = YES; |
3547 | 240 |
} |
3697 | 241 |
|
242 |
// 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
|
243 |
if (!(sd = SDLNet_TCP_Open(&ip)) && !clientQuit) { |
11107 | 244 |
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
|
245 |
clientQuit = YES; |
3547 | 246 |
} |
3697 | 247 |
|
6321 | 248 |
DLog(@"Waiting for a client on port %d", self.enginePort); |
3697 | 249 |
while (csd == NULL) |
3547 | 250 |
csd = SDLNet_TCP_Accept(sd); |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
251 |
SDLNet_TCP_Close(sd); |
3697 | 252 |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
253 |
while (!clientQuit) { |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
254 |
msgSize = 0; |
4754 | 255 |
memset((void *)buffer, '\0', BUFFER_SIZE); |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
256 |
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
|
257 |
break; |
4754 | 258 |
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
|
259 |
break; |
3697 | 260 |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
261 |
switch (buffer[0]) { |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
262 |
case 'C': |
5155
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
263 |
DLog(@"Sending game config...\n%@", gameConfig); |
3697 | 264 |
|
5154
851f36579ed4
initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
5002
diff
changeset
|
265 |
/*if (isNetGame == YES) |
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
266 |
[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
|
267 |
else*/ |
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
268 |
[self sendToEngineNoSave:@"TL"]; |
3891 | 269 |
NSString *saveHeader = @"TS"; |
4754 | 270 |
[self dumpRawData:[saveHeader UTF8String] ofSize:[saveHeader length]]; |
3697 | 271 |
|
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
|
272 |
// 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
|
273 |
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
|
274 |
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
|
275 |
[self sendToEngine:script]; |
6084 | 276 |
// missions/tranings only need the script configuration set |
277 |
if ([gameConfig count] == 1) |
|
278 |
break; |
|
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
|
279 |
|
3547 | 280 |
// seed info |
5155
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
281 |
[self sendToEngine:[gameConfig objectForKey:@"seed_command"]]; |
3697 | 282 |
|
3547 | 283 |
// dimension of the map |
5155
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
284 |
[self sendToEngine:[gameConfig objectForKey:@"templatefilter_command"]]; |
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
285 |
[self sendToEngine:[gameConfig objectForKey:@"mapgen_command"]]; |
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
286 |
[self sendToEngine:[gameConfig objectForKey:@"mazesize_command"]]; |
3697 | 287 |
|
3642 | 288 |
// static land (if set) |
5155
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
289 |
NSString *staticMap = [gameConfig objectForKey:@"staticmap_command"]; |
3642 | 290 |
if ([staticMap length] != 0) |
291 |
[self sendToEngine:staticMap]; |
|
3697 | 292 |
|
3547 | 293 |
// theme info |
5155
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
294 |
[self sendToEngine:[gameConfig objectForKey:@"theme_command"]]; |
3697 | 295 |
|
3547 | 296 |
// scheme (returns initial health) |
5155
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
297 |
NSInteger health = [self provideScheme:[gameConfig objectForKey:@"scheme"]]; |
3697 | 298 |
|
4000
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
299 |
// send an ammostore for each team |
5155
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
300 |
NSArray *teamsConfig = [gameConfig objectForKey:@"teams_list"]; |
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
301 |
[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
|
302 |
|
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
303 |
// finally add hogs |
3547 | 304 |
for (NSDictionary *teamData in teamsConfig) { |
3697 | 305 |
[self provideTeamData:[teamData objectForKey:@"team"] |
3547 | 306 |
forHogs:[[teamData objectForKey:@"number"] intValue] |
307 |
withHealth:health |
|
308 |
ofColor:[teamData objectForKey:@"color"]]; |
|
309 |
} |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
310 |
break; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
311 |
case '?': |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
312 |
DLog(@"Ping? Pong!"); |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
313 |
[self sendToEngine:@"!"]; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
314 |
break; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
315 |
case 'E': |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
316 |
DLog(@"ERROR - last console line: [%s]", &buffer[1]); |
3547 | 317 |
clientQuit = YES; |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
318 |
break; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
319 |
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
|
320 |
[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
|
321 |
|
3902
3aac7ca07b0e
have Saves restart net when loaded, also resumes music
koda
parents:
3898
diff
changeset
|
322 |
sscanf((char *)buffer, "%*s %d", &eProto); |
4603 | 323 |
int netProto; |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
324 |
char *versionStr; |
3697 | 325 |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
326 |
HW_versionInfo(&netProto, &versionStr); |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
327 |
if (netProto == eProto) { |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
328 |
DLog(@"Setting protocol version %d (%s)", eProto, versionStr); |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
329 |
} else { |
4603 | 330 |
DLog(@"ERROR - wrong protocol number: %d (expecting %d)", netProto, eProto); |
3547 | 331 |
clientQuit = YES; |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
332 |
} |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
333 |
break; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
334 |
case 'i': |
6870
f72cac290325
ios: refactor the code of the after-game statistics display using delegates
koda
parents:
6832
diff
changeset
|
335 |
if (statsArray == nil) { |
f72cac290325
ios: refactor the code of the after-game statistics display using delegates
koda
parents:
6832
diff
changeset
|
336 |
statsArray = [[NSMutableArray alloc] initWithCapacity:10 - 2]; |
4856 | 337 |
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
|
338 |
[statsArray insertObject:ranking atIndex:0]; |
4856 | 339 |
[ranking release]; |
340 |
} |
|
4769 | 341 |
NSString *tempStr = [NSString stringWithUTF8String:&buffer[2]]; |
4856 | 342 |
NSArray *info = [tempStr componentsSeparatedByString:@" "]; |
343 |
NSString *arg = [info objectAtIndex:0]; |
|
4793 | 344 |
int index = [arg length] + 3; |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
345 |
switch (buffer[1]) { |
4760 | 346 |
case 'r': // winning team |
6870
f72cac290325
ios: refactor the code of the after-game statistics display using delegates
koda
parents:
6832
diff
changeset
|
347 |
[statsArray insertObject:[NSString stringWithUTF8String:&buffer[2]] atIndex:1]; |
3547 | 348 |
break; |
4760 | 349 |
case 'D': // best shot |
6870
f72cac290325
ios: refactor the code of the after-game statistics display using delegates
koda
parents:
6832
diff
changeset
|
350 |
[statsArray addObject:[NSString stringWithFormat:@"The best shot award won by %s (with %@ points)", &buffer[index], arg]]; |
4549 | 351 |
break; |
4760 | 352 |
case 'k': // best hedgehog |
6870
f72cac290325
ios: refactor the code of the after-game statistics display using delegates
koda
parents:
6832
diff
changeset
|
353 |
[statsArray addObject:[NSString stringWithFormat:@"The best killer is %s with %@ kill(s) in a turn", &buffer[index], arg]]; |
3902
3aac7ca07b0e
have Saves restart net when loaded, also resumes music
koda
parents:
3898
diff
changeset
|
354 |
break; |
4760 | 355 |
case 'K': // number of hogs killed |
6870
f72cac290325
ios: refactor the code of the after-game statistics display using delegates
koda
parents:
6832
diff
changeset
|
356 |
[statsArray addObject:[NSString stringWithFormat:@"%@ hedgehog(s) were killed during this round", arg]]; |
4549 | 357 |
break; |
4856 | 358 |
case 'H': // team health/graph |
4549 | 359 |
break; |
4760 | 360 |
case 'T': // local team stats |
4856 | 361 |
// still WIP in statsPage.cpp |
4549 | 362 |
break; |
4856 | 363 |
case 'P': // teams ranking |
6870
f72cac290325
ios: refactor the code of the after-game statistics display using delegates
koda
parents:
6832
diff
changeset
|
364 |
[[statsArray objectAtIndex:0] addObject:tempStr]; |
4549 | 365 |
break; |
4760 | 366 |
case 's': // self damage |
6870
f72cac290325
ios: refactor the code of the after-game statistics display using delegates
koda
parents:
6832
diff
changeset
|
367 |
[statsArray addObject:[NSString stringWithFormat:@"%s thought it's good to shoot his own hedgehogs with %@ points", &buffer[index], arg]]; |
4549 | 368 |
break; |
4760 | 369 |
case 'S': // friendly fire |
6870
f72cac290325
ios: refactor the code of the after-game statistics display using delegates
koda
parents:
6832
diff
changeset
|
370 |
[statsArray addObject:[NSString stringWithFormat:@"%s killed %@ of his own hedgehogs", &buffer[index], arg]]; |
4549 | 371 |
break; |
4760 | 372 |
case 'B': // turn skipped |
6870
f72cac290325
ios: refactor the code of the after-game statistics display using delegates
koda
parents:
6832
diff
changeset
|
373 |
[statsArray addObject:[NSString stringWithFormat:@"%s was scared and skipped turn %@ times", &buffer[index], arg]]; |
4549 | 374 |
break; |
3902
3aac7ca07b0e
have Saves restart net when loaded, also resumes music
koda
parents:
3898
diff
changeset
|
375 |
default: |
4549 | 376 |
DLog(@"Unhandled stat message, see statsPage.cpp"); |
3547 | 377 |
break; |
378 |
} |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
379 |
break; |
3902
3aac7ca07b0e
have Saves restart net when loaded, also resumes music
koda
parents:
3898
diff
changeset
|
380 |
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
|
381 |
// 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
|
382 |
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
|
383 |
[self.delegate gameEndedWithStatistics:statsArray]; |
f72cac290325
ios: refactor the code of the after-game statistics display using delegates
koda
parents:
6832
diff
changeset
|
384 |
[statsArray release]; |
6265
a6944f94c19f
aaand remove also ipcport from the class interface as well
koda
parents:
6263
diff
changeset
|
385 |
[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
|
386 |
// 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
|
387 |
break; |
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
|
388 |
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
|
389 |
// 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
|
390 |
[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
|
391 |
// same here, don't set clientQuit to YES |
3902
3aac7ca07b0e
have Saves restart net when loaded, also resumes music
koda
parents:
3898
diff
changeset
|
392 |
break; |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
393 |
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
|
394 |
[self dumpRawData:buffer ofSize:msgSize]; |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
395 |
break; |
3547 | 396 |
} |
397 |
} |
|
4510 | 398 |
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
|
399 |
|
5156 | 400 |
[self.stream close]; |
5175
a3da220dbb3f
finish overlay refactoring and some leak annihilation
koda
parents:
5174
diff
changeset
|
401 |
[self.stream release]; |
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
|
402 |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
403 |
// Close the client socket |
6822
206db098f8c5
ios headers cleanup, with tweaks to +randomPort and grenade timer handling in overlay
koda
parents:
6700
diff
changeset
|
404 |
[HWUtils freePort:self.enginePort]; |
3697 | 405 |
SDLNet_TCP_Close(csd); |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
406 |
SDLNet_Quit(); |
11137
14f50dde3e8c
- Using of @autoreleasepool is better
Anton Malmygin <antonc27@mail.ru>
parents:
11107
diff
changeset
|
407 |
|
14f50dde3e8c
- Using of @autoreleasepool is better
Anton Malmygin <antonc27@mail.ru>
parents:
11107
diff
changeset
|
408 |
} |
3697 | 409 |
|
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
|
410 |
// 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
|
411 |
// to clean up any resources it allocated during its execution. |
3547 | 412 |
//[NSThread exit]; |
413 |
} |
|
414 |
||
415 |
@end |