author | Wuzzy <Wuzzy2@mail.ru> |
Thu, 16 May 2019 06:41:56 +0200 | |
changeset 14967 | 9939134b566d |
parent 12872 | 00215a7ec5f5 |
permissions | -rw-r--r-- |
4547 | 1 |
/* |
2 |
* Hedgewars-iOS, a Hedgewars port for iOS devices |
|
6700 | 3 |
* Copyright (c) 2009-2012 Vittorio Giovara <vittorio.giovara@gmail.com> |
4547 | 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:
8835
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
4547 | 17 |
*/ |
18 |
||
19 |
||
6246 | 20 |
#import "ServerProtocolNetwork.h" |
8835 | 21 |
#import "hwconsts.h" |
6832 | 22 |
|
4547 | 23 |
#define BUFFER_SIZE 256 |
24 |
||
6246 | 25 |
static ServerProtocolNetwork *serverConnection; |
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:
5483
diff
changeset
|
26 |
|
6246 | 27 |
@implementation ServerProtocolNetwork |
6320 | 28 |
@synthesize serverPort, serverAddress, ssd; |
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:
5483
diff
changeset
|
29 |
|
6320 | 30 |
#pragma mark - |
31 |
#pragma mark init and class methods |
|
12872
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11240
diff
changeset
|
32 |
- (id)init:(NSInteger)onPort withAddress:(NSString *)address { |
6908
896ed2afcfb8
ios: turn on more warning messages and start correcting them
koda
parents:
6832
diff
changeset
|
33 |
if ((self = [super init])) { |
6320 | 34 |
self.serverPort = onPort; |
35 |
self.serverAddress = address; |
|
4547 | 36 |
} |
6246 | 37 |
serverConnection = self; |
4547 | 38 |
return self; |
39 |
} |
|
40 |
||
12872
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11240
diff
changeset
|
41 |
- (id)init { |
6320 | 42 |
return [self init:NETGAME_DEFAULT_PORT withAddress:@"netserver.hedgewars.org"]; |
43 |
} |
|
44 |
||
12872
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11240
diff
changeset
|
45 |
- (id)initOnPort:(NSInteger)port { |
6320 | 46 |
return [self init:port withAddress:@"netserver.hedgewars.org"]; |
47 |
} |
|
48 |
||
12872
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11240
diff
changeset
|
49 |
- (id)initToAddress:(NSString *)address { |
6320 | 50 |
return [self init:NETGAME_DEFAULT_PORT withAddress:address]; |
51 |
} |
|
52 |
||
12872
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11240
diff
changeset
|
53 |
- (void)dealloc { |
6320 | 54 |
serverConnection = nil; |
4547 | 55 |
} |
56 |
||
6337
84e7d1a5e3df
in class methods you can call [self alloc], as per objc specifications
koda
parents:
6320
diff
changeset
|
57 |
+(id) openServerConnection { |
84e7d1a5e3df
in class methods you can call [self alloc], as per objc specifications
koda
parents:
6320
diff
changeset
|
58 |
id connection = [[self alloc] init]; |
6320 | 59 |
[NSThread detachNewThreadSelector:@selector(serverProtocol) |
60 |
toTarget:connection |
|
61 |
withObject:nil]; |
|
12872
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11240
diff
changeset
|
62 |
// retain count here is +2 |
6320 | 63 |
return connection; |
64 |
} |
|
65 |
||
66 |
#pragma mark - |
|
67 |
#pragma mark Communication layer |
|
4547 | 68 |
-(int) sendToServer:(NSString *)command { |
69 |
NSString *message = [[NSString alloc] initWithFormat:@"%@\n\n",command]; |
|
11240
57891137ffef
- Fix for sending to engine non-english characters
antonc27 <antonc27@mail.ru>
parents:
11137
diff
changeset
|
70 |
int result = SDLNet_TCP_Send(self.ssd, [message UTF8String], [message lengthOfBytesUsingEncoding:NSUTF8StringEncoding]); |
4547 | 71 |
return result; |
72 |
} |
|
73 |
||
74 |
-(int) sendToServer:(NSString *)command withArgument:(NSString *)argument { |
|
75 |
NSString *message = [[NSString alloc] initWithFormat:@"%@\n%@\n\n",command,argument]; |
|
11240
57891137ffef
- Fix for sending to engine non-english characters
antonc27 <antonc27@mail.ru>
parents:
11137
diff
changeset
|
76 |
int result = SDLNet_TCP_Send(self.ssd, [message UTF8String], [message lengthOfBytesUsingEncoding:NSUTF8StringEncoding]); |
4547 | 77 |
return result; |
78 |
} |
|
79 |
||
12872
00215a7ec5f5
- BIG CHANGE: Convert iOS project to use ARC
antonc27 <antonc27@mail.ru>
parents:
11240
diff
changeset
|
80 |
- (void)serverProtocol { |
11137
14f50dde3e8c
- Using of @autoreleasepool is better
Anton Malmygin <antonc27@mail.ru>
parents:
10108
diff
changeset
|
81 |
@autoreleasepool { |
14f50dde3e8c
- Using of @autoreleasepool is better
Anton Malmygin <antonc27@mail.ru>
parents:
10108
diff
changeset
|
82 |
|
4547 | 83 |
IPaddress ip; |
84 |
BOOL clientQuit = NO; |
|
85 |
char *buffer = (char *)malloc(sizeof(char)*BUFFER_SIZE); |
|
86 |
int dim = BUFFER_SIZE; |
|
87 |
uint8_t msgSize; |
|
6246 | 88 |
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; |
4547 | 89 |
|
90 |
if (SDLNet_Init() < 0) { |
|
91 |
DLog(@"SDLNet_Init: %s", SDLNet_GetError()); |
|
92 |
clientQuit = YES; |
|
93 |
} |
|
94 |
||
95 |
// Resolving the host using NULL make network interface to listen |
|
6246 | 96 |
if (SDLNet_ResolveHost(&ip, [self.serverAddress UTF8String] , self.serverPort) < 0 && !clientQuit) { |
97 |
DLog(@"SDLNet_ResolveHost: %s", SDLNet_GetError()); |
|
4547 | 98 |
clientQuit = YES; |
99 |
} |
|
100 |
||
101 |
// Open a connection with the IP provided (listen on the host's port) |
|
6320 | 102 |
if (!(self.ssd = SDLNet_TCP_Open(&ip)) && !clientQuit) { |
6246 | 103 |
DLog(@"SDLNet_TCP_Open: %s %d", SDLNet_GetError(), self.serverPort); |
4547 | 104 |
clientQuit = YES; |
105 |
} |
|
106 |
||
6246 | 107 |
DLog(@"Found server on port %d", self.serverPort); |
4547 | 108 |
while (!clientQuit) { |
109 |
int index = 0; |
|
110 |
BOOL exitBufferLoop = NO; |
|
111 |
memset(buffer, '\0', dim); |
|
6246 | 112 |
|
4547 | 113 |
while (exitBufferLoop != YES) { |
6320 | 114 |
msgSize = SDLNet_TCP_Recv(self.ssd, &buffer[index], 2); |
6246 | 115 |
|
4547 | 116 |
// exit in case of error |
117 |
if (msgSize <= 0) { |
|
118 |
DLog(@"SDLNet_TCP_Recv: %s", SDLNet_GetError()); |
|
119 |
clientQuit = YES; |
|
120 |
break; |
|
121 |
} |
|
6246 | 122 |
|
4547 | 123 |
// update index position and check for End-Of-Message |
124 |
index += msgSize; |
|
125 |
if (strncmp(&buffer[index-2], "\n\n", 2) == 0) { |
|
126 |
exitBufferLoop = YES; |
|
127 |
} |
|
6246 | 128 |
|
4547 | 129 |
// if message is too big allocate new space |
130 |
if (index >= dim) { |
|
131 |
dim += BUFFER_SIZE; |
|
132 |
buffer = (char *)realloc(buffer, dim); |
|
133 |
if (buffer == NULL) { |
|
134 |
clientQuit = YES; |
|
135 |
break; |
|
136 |
} |
|
137 |
} |
|
138 |
} |
|
139 |
||
140 |
NSString *bufferedMessage = [[NSString alloc] initWithBytes:buffer length:index-2 encoding:NSASCIIStringEncoding]; |
|
141 |
NSArray *listOfCommands = [bufferedMessage componentsSeparatedByString:@"\n"]; |
|
142 |
NSString *command = [listOfCommands objectAtIndex:0]; |
|
143 |
DLog(@"size = %d, %@", index-2, listOfCommands); |
|
144 |
if ([command isEqualToString:@"PING"]) { |
|
145 |
if ([listOfCommands count] > 1) |
|
146 |
[self sendToServer:@"PONG" withArgument:[listOfCommands objectAtIndex:1]]; |
|
147 |
else |
|
148 |
[self sendToServer:@"PONG"]; |
|
149 |
DLog(@"PONG"); |
|
150 |
} |
|
151 |
else if ([command isEqualToString:@"NICK"]) { |
|
152 |
//what is this for? |
|
153 |
} |
|
154 |
else if ([command isEqualToString:@"PROTO"]) { |
|
155 |
//what is this for? |
|
156 |
} |
|
157 |
else if ([command isEqualToString:@"ROOM"]) { |
|
158 |
//TODO: stub |
|
159 |
} |
|
160 |
else if ([command isEqualToString:@"LOBBY:LEFT"]) { |
|
161 |
//TODO: stub |
|
162 |
} |
|
163 |
else if ([command isEqualToString:@"LOBBY:JOINED"]) { |
|
164 |
//TODO: stub |
|
165 |
} |
|
166 |
else if ([command isEqualToString:@"ASKPASSWORD"]) { |
|
6246 | 167 |
NSString *pwd = [defaults objectForKey:@"password"]; |
4547 | 168 |
[self sendToServer:@"PASSWORD" withArgument:pwd]; |
169 |
} |
|
170 |
else if ([command isEqualToString:@"CONNECTED"]) { |
|
4603 | 171 |
int netProto; |
4547 | 172 |
char *versionStr; |
173 |
HW_versionInfo(&netProto, &versionStr); |
|
6246 | 174 |
NSString *nick = [defaults objectForKey:@"username"]; |
4547 | 175 |
[self sendToServer:@"NICK" withArgument:nick]; |
176 |
[self sendToServer:@"PROTO" withArgument:[NSString stringWithFormat:@"%d",netProto]]; |
|
177 |
} |
|
178 |
else if ([command isEqualToString:@"SERVER_MESSAGE"]) { |
|
179 |
DLog(@"%@", [listOfCommands objectAtIndex:1]); |
|
180 |
} |
|
181 |
else if ([command isEqualToString:@"WARNING"]) { |
|
182 |
if ([listOfCommands count] > 1) |
|
183 |
DLog(@"Server warning - %@", [listOfCommands objectAtIndex:1]); |
|
184 |
else |
|
185 |
DLog(@"Server warning - unknown"); |
|
186 |
} |
|
187 |
else if ([command isEqualToString:@"ERROR"]) { |
|
188 |
DLog(@"Server error - %@", [listOfCommands objectAtIndex:1]); |
|
189 |
} |
|
190 |
else if ([command isEqualToString:@"BYE"]) { |
|
191 |
//TODO: handle "Reconnected too fast" |
|
192 |
DLog(@"Server disconnected, reason: %@", [listOfCommands objectAtIndex:1]); |
|
193 |
clientQuit = YES; |
|
194 |
} |
|
195 |
else { |
|
196 |
DLog(@"Unknown/Unsupported message received: %@", command); |
|
197 |
} |
|
198 |
} |
|
199 |
DLog(@"Server closed connection, ending thread"); |
|
200 |
||
201 |
free(buffer); |
|
6320 | 202 |
SDLNet_TCP_Close(self.ssd); |
4547 | 203 |
SDLNet_Quit(); |
204 |
||
11137
14f50dde3e8c
- Using of @autoreleasepool is better
Anton Malmygin <antonc27@mail.ru>
parents:
10108
diff
changeset
|
205 |
} |
4547 | 206 |
} |
207 |
||
208 |
@end |