source: network-game/server/server.cpp@ 6e66ffd

Last change on this file since 6e66ffd was 6e66ffd, checked in by dportnoy <dmp1488@…>, 12 years ago

Add functions to the WorldMap class to allow the server to notify clients of object creation and movement

  • Property mode set to 100644
File size: 12.0 KB
RevLine 
[2488852]1#include <cstdlib>
[371ce29]2#include <cstdio>
[e3535b3]3#include <unistd.h>
[2488852]4#include <string>
[e3535b3]5#include <iostream>
[3b1efcc]6#include <sstream>
[edfd1d0]7#include <cstring>
[60017fc]8#include <cmath>
[371ce29]9
[01d0d00]10#include <vector>
11#include <map>
12
[d211210]13#include <sys/time.h>
14
[73f75c1]15#include <sys/socket.h>
[371ce29]16#include <netdb.h>
[73f75c1]17#include <netinet/in.h>
18#include <arpa/inet.h>
19
[b128109]20#include <crypt.h>
21
[edfd1d0]22/*
[e3535b3]23#include <openssl/bio.h>
24#include <openssl/ssl.h>
25#include <openssl/err.h>
[edfd1d0]26*/
[e3535b3]27
[b53c6b3]28#include "../common/Compiler.h"
[3b1efcc]29#include "../common/Common.h"
[edfd1d0]30#include "../common/Message.h"
[60017fc]31#include "../common/WorldMap.h"
[edfd1d0]32#include "../common/Player.h"
[b53c6b3]33
[36082e8]34#include "DataAccess.h"
[d2b411a]35
[e3535b3]36using namespace std;
37
[d211210]38// from used to be const. Removed that so I could take a reference
39// and use it to send messages
40bool processMessage(const NETWORK_MSG &clientMsg, struct sockaddr_in &from, map<unsigned int, Player>& mapPlayers, WorldMap* gameMap, unsigned int& unusedId, NETWORK_MSG &serverMsg, int sock);
[01d0d00]41
[1106210]42void updateUnusedId(unsigned int& id, map<unsigned int, Player>& mapPlayers);
[8e540f4]43
[73f75c1]44// this should probably go somewhere in the common folder
[e3535b3]45void error(const char *msg)
46{
47 perror(msg);
48 exit(0);
49}
50
[01d0d00]51Player *findPlayerByName(map<unsigned int, Player> &m, string name)
[2488852]52{
[01d0d00]53 map<unsigned int, Player>::iterator it;
[2488852]54
[01d0d00]55 for (it = m.begin(); it != m.end(); it++)
[2488852]56 {
[01d0d00]57 if ( it->second.name.compare(name) == 0 )
58 return &(it->second);
[2488852]59 }
60
61 return NULL;
62}
63
[01d0d00]64Player *findPlayerByAddr(map<unsigned int, Player> &m, const sockaddr_in &addr)
[73f75c1]65{
[01d0d00]66 map<unsigned int, Player>::iterator it;
[73f75c1]67
[01d0d00]68 for (it = m.begin(); it != m.end(); it++)
[73f75c1]69 {
[01d0d00]70 if ( it->second.addr.sin_addr.s_addr == addr.sin_addr.s_addr &&
71 it->second.addr.sin_port == addr.sin_port )
72 return &(it->second);
[73f75c1]73 }
74
75 return NULL;
76}
77
[e3535b3]78int main(int argc, char *argv[])
79{
80 int sock, length, n;
81 struct sockaddr_in server;
[3b1efcc]82 struct sockaddr_in from; // info of client sending the message
[e084950]83 NETWORK_MSG clientMsg, serverMsg;
[01d0d00]84 map<unsigned int, Player> mapPlayers;
[1106210]85 unsigned int unusedId = 1;
[e084950]86
[edfd1d0]87 //SSL_load_error_strings();
88 //ERR_load_BIO_strings();
89 //OpenSSL_add_all_algorithms();
[e3535b3]90
91 if (argc < 2) {
[73f75c1]92 cerr << "ERROR, no port provided" << endl;
93 exit(1);
[e3535b3]94 }
[60017fc]95
[7b43385]96 WorldMap* gameMap = WorldMap::loadMapFromFile("../data/map.txt");
[6e66ffd]97
98 // add some items to the map. They will be sent out
99 // to players when they login
100 // m->addObject(x*25+12, y*25+12, OBJECT_BLUE_FLAG);
101 // m->addObject(x*25+12, y*25+12, OBJECT_RED_FLAG);
102
[371ce29]103 sock = socket(AF_INET, SOCK_DGRAM, 0);
[e3535b3]104 if (sock < 0) error("Opening socket");
105 length = sizeof(server);
106 bzero(&server,length);
107 server.sin_family=AF_INET;
108 server.sin_port=htons(atoi(argv[1]));
[2488852]109 server.sin_addr.s_addr=INADDR_ANY;
110 if ( bind(sock, (struct sockaddr *)&server, length) < 0 )
[e084950]111 error("binding");
[73f75c1]112
[371ce29]113 set_nonblock(sock);
114
[da692b9]115 bool broadcastResponse;
[d211210]116 timespec ts;
[430c80e]117 int timeLastUpdated = 0, curTime = 0, timeLastBroadcast = 0;
[cb1f288]118 while (true) {
[371ce29]119
120 usleep(5000);
121
[d211210]122 clock_gettime(CLOCK_REALTIME, &ts);
[430c80e]123 // make the number smaller so millis can fit in an int
[d69eb32]124 ts.tv_sec -= 1368000000;
[430c80e]125 curTime = ts.tv_sec*1000 + ts.tv_nsec/1000000;
[d211210]126
[430c80e]127 if (timeLastUpdated == 0 || (curTime-timeLastUpdated) >= 50) {
[d211210]128 timeLastUpdated = curTime;
129
130 // maybe put this in a separate method
131 map<unsigned int, Player>::iterator it, it2;
132 for (it = mapPlayers.begin(); it != mapPlayers.end(); it++) {
133 if (!it->second.move(gameMap)) {
134 cout << "Cenceling move" << endl;
[d69eb32]135 serverMsg.type = MSG_TYPE_PLAYER;
136 it->second.serialize(serverMsg.buffer);
[d211210]137
[b26229c]138 cout << "(" << it->second.pos.x << "," << it->second.pos.y << ")" << endl;
139
[2864d8e]140 if (it->second.hasBlueFlag)
141 cout << "Got blue flag" << endl;
142 if (it->second.hasRedFlag)
143 cout << "Got red flag" << endl;
144
[d211210]145 cout << "about to send move cencellation" << endl;
146 for (it2 = mapPlayers.begin(); it2 != mapPlayers.end(); it2++)
147 {
[d69eb32]148 if ( sendMessage(&serverMsg, sock, &(it2->second.addr)) < 0 )
149 error("sendMessage");
[d211210]150 }
151 }
152 }
153 }
154
[e084950]155 n = receiveMessage(&clientMsg, sock, &from);
[8e540f4]156
[371ce29]157 if (n >= 0) {
158 cout << "Got a message" << endl;
[8e540f4]159
[d211210]160 broadcastResponse = processMessage(clientMsg, from, mapPlayers, gameMap, unusedId, serverMsg, sock);
[371ce29]161
[b128109]162 // probably replace this with a function that prints based on the
163 // message type
[371ce29]164 cout << "msg: " << serverMsg.buffer << endl;
[b128109]165 cout << "broadcastResponse: " << broadcastResponse << endl;
[da692b9]166 if (broadcastResponse)
[3b1efcc]167 {
[da692b9]168 cout << "Should be broadcasting the message" << endl;
169
[01d0d00]170 map<unsigned int, Player>::iterator it;
171 for (it = mapPlayers.begin(); it != mapPlayers.end(); it++)
[3b1efcc]172 {
[d211210]173 cout << "Sent message back to " << it->second.name << endl;
[01d0d00]174 if ( sendMessage(&serverMsg, sock, &(it->second.addr)) < 0 )
[3b1efcc]175 error("sendMessage");
176 }
177 }
178 else
179 {
[da692b9]180 cout << "Should be sending back the message" << endl;
181
[3b1efcc]182 if ( sendMessage(&serverMsg, sock, &from) < 0 )
183 error("sendMessage");
184 }
[7b43385]185 }
[8e540f4]186 }
[371ce29]187
[8e540f4]188 return 0;
189}
190
[d211210]191bool processMessage(const NETWORK_MSG& clientMsg, struct sockaddr_in& from, map<unsigned int, Player>& mapPlayers, WorldMap* gameMap, unsigned int& unusedId, NETWORK_MSG& serverMsg, int sock)
[8e540f4]192{
[41ad8ed]193 DataAccess da;
194
[8e540f4]195 cout << "MSG: type: " << clientMsg.type << endl;
196 cout << "MSG contents: " << clientMsg.buffer << endl;
197
[da692b9]198 // maybe we should make a message class and have this be a member
[3b1efcc]199 bool broadcastResponse = false;
200
[8e540f4]201 // Check that if an invalid message is sent, the client will correctly
202 // receive and display the response. Maybe make a special error msg type
203 switch(clientMsg.type)
204 {
205 case MSG_TYPE_REGISTER:
[d2b411a]206 {
[8e540f4]207 string username(clientMsg.buffer);
208 string password(strchr(clientMsg.buffer, '\0')+1);
[d2b411a]209
[8e540f4]210 cout << "username: " << username << endl;
211 cout << "password: " << password << endl;
[d2b411a]212
[3b1efcc]213 int error = da.insertPlayer(username, password);
[41ad8ed]214
[3b1efcc]215 if (!error)
216 strcpy(serverMsg.buffer, "Registration successful.");
217 else
218 strcpy(serverMsg.buffer, "Registration failed. Please try again.");
[8e540f4]219
220 serverMsg.type = MSG_TYPE_REGISTER;
[d2b411a]221
[8e540f4]222 break;
223 }
224 case MSG_TYPE_LOGIN:
225 {
[60017fc]226 cout << "Got login message" << endl;
227
[d211210]228 serverMsg.type = MSG_TYPE_LOGIN;
229
[8e540f4]230 string username(clientMsg.buffer);
[41ad8ed]231 string password(strchr(clientMsg.buffer, '\0')+1);
[8e540f4]232
[41ad8ed]233 Player* p = da.getPlayer(username);
[d2b411a]234
[b128109]235 if (p == NULL || !da.verifyPassword(password, p->password))
[41ad8ed]236 {
237 strcpy(serverMsg.buffer, "Incorrect username or password");
238 }
[01d0d00]239 else if(findPlayerByName(mapPlayers, username) != NULL)
[41ad8ed]240 {
241 strcpy(serverMsg.buffer, "Player has already logged in.");
242 }
243 else
[8e540f4]244 {
[d211210]245 serverMsg.type = MSG_TYPE_PLAYER;
246
[01d0d00]247 p->setAddr(from);
[1106210]248 updateUnusedId(unusedId, mapPlayers);
[01d0d00]249 p->id = unusedId;
[d211210]250 cout << "new player id: " << p->id << endl;
251
252 // tell the new player about all the existing players
253 cout << "Sending other players to new player" << endl;
254
255 map<unsigned int, Player>::iterator it;
256 for (it = mapPlayers.begin(); it != mapPlayers.end(); it++)
257 {
258 it->second.serialize(serverMsg.buffer);
259
260 cout << "sending info about " << it->second.name << endl;
261 cout << "sending ind " << it->second.id << endl;
262 if ( sendMessage(&serverMsg, sock, &from) < 0 )
263 error("sendMessage");
264 }
[59061f6]265
[594d2e9]266 p->serialize(serverMsg.buffer);
[d211210]267 cout << "Should be broadcasting the message" << endl;
268
269 for (it = mapPlayers.begin(); it != mapPlayers.end(); it++)
270 {
271 cout << "Sent message back to " << it->second.name << endl;
272 if ( sendMessage(&serverMsg, sock, &(it->second.addr)) < 0 )
273 error("sendMessage");
274 }
275
276 serverMsg.type = MSG_TYPE_LOGIN;
277 mapPlayers[unusedId] = *p;
[07028b9]278 }
279
[41ad8ed]280 delete(p);
[07028b9]281
[8e540f4]282 break;
283 }
284 case MSG_TYPE_LOGOUT:
285 {
286 string name(clientMsg.buffer);
287 cout << "Player logging out: " << name << endl;
288
[01d0d00]289 Player *p = findPlayerByName(mapPlayers, name);
[633f42a]290
[8e540f4]291 if (p == NULL)
292 {
293 strcpy(serverMsg.buffer, "That player is not logged in. This is either a bug, or you're trying to hack the server.");
[8a3ef42]294 cout << "Player not logged in" << endl;
[07028b9]295 }
[01d0d00]296 else if ( p->addr.sin_addr.s_addr != from.sin_addr.s_addr ||
297 p->addr.sin_port != from.sin_port )
[07028b9]298 {
[8e540f4]299 strcpy(serverMsg.buffer, "That player is logged in using a differemt connection. This is either a bug, or you're trying to hack the server.");
[8a3ef42]300 cout << "Player logged in using a different connection" << endl;
[2488852]301 }
[8e540f4]302 else
[2488852]303 {
[01d0d00]304 if (p->id < unusedId)
305 unusedId = p->id;
306 mapPlayers.erase(p->id);
[41ad8ed]307 strcpy(serverMsg.buffer, "You have successfully logged out.");
[8a3ef42]308 cout << "Player logged out successfuly" << endl;
[8e540f4]309 }
[07028b9]310
[d211210]311 serverMsg.type = MSG_TYPE_LOGOUT;
[8a3ef42]312
[8e540f4]313 break;
314 }
315 case MSG_TYPE_CHAT:
316 {
[da692b9]317 cout << "Got a chat message" << endl;
318
[01d0d00]319 Player *p = findPlayerByAddr(mapPlayers, from);
[07028b9]320
[8e540f4]321 if (p == NULL)
322 {
323 strcpy(serverMsg.buffer, "No player is logged in using this connection. This is either a bug, or you're trying to hack the server.");
[2488852]324 }
[8e540f4]325 else
326 {
[3b1efcc]327 broadcastResponse = true;
328
[b128109]329 ostringstream oss;
330 oss << p->name << ": " << clientMsg.buffer;
[3b1efcc]331
[b128109]332 strcpy(serverMsg.buffer, oss.str().c_str());
[8e540f4]333 }
334
335 serverMsg.type = MSG_TYPE_CHAT;
336
337 break;
[e084950]338 }
[b128109]339 case MSG_TYPE_PLAYER_MOVE:
340 {
341 istringstream iss;
342 iss.str(clientMsg.buffer);
343
344 cout << "PLAYER_MOVE" << endl;
345
346 int id, x, y;
347
348 memcpy(&id, clientMsg.buffer, 4);
349 memcpy(&x, clientMsg.buffer+4, 4);
350 memcpy(&y, clientMsg.buffer+8, 4);
[7b43385]351
[b128109]352 cout << "x: " << x << endl;
353 cout << "y: " << y << endl;
354 cout << "id: " << id << endl;
[7b43385]355
[b128109]356 if ( mapPlayers[id].addr.sin_addr.s_addr == from.sin_addr.s_addr &&
357 mapPlayers[id].addr.sin_port == from.sin_port )
358 {
[60017fc]359 // we need to make sure the player can move here
360 if (0 <= x && x < 300 && 0 <= y && y < 300 &&
361 gameMap->getElement(x/25, y/25) == WorldMap::TERRAIN_GRASS)
362 {
[7b43385]363 cout << "valid terrain" << endl;
364
[60017fc]365 mapPlayers[id].target.x = x;
366 mapPlayers[id].target.y = y;
367 int xDiff = mapPlayers[id].target.x - mapPlayers[id].pos.x;
368 int yDiff = mapPlayers[id].target.y - mapPlayers[id].pos.y;
369
370 serverMsg.type = MSG_TYPE_PLAYER_MOVE;
371
372 memcpy(serverMsg.buffer, &id, 4);
[d211210]373 memcpy(serverMsg.buffer+4, &mapPlayers[id].target.x, 4);
374 memcpy(serverMsg.buffer+8, &mapPlayers[id].target.y, 4);
[60017fc]375
376 broadcastResponse = true;
377 }
378 else
379 cout << "Bad terrain detected" << endl;
[b128109]380 }
381 else // nned to send back a message indicating failure
382 cout << "Player id (" << id << ") doesn't match sender" << endl;
383
384 break;
385 }
[8e540f4]386 default:
387 {
388 strcpy(serverMsg.buffer, "Server error occured. Report this please.");
[e084950]389
[8e540f4]390 serverMsg.type = MSG_TYPE_CHAT;
[e084950]391
[8e540f4]392 break;
393 }
[e3535b3]394 }
[da692b9]395
[60017fc]396 cout << "Got to the end of the switch" << endl;
397
[da692b9]398 return broadcastResponse;
[e3535b3]399}
[da692b9]400
[1106210]401void updateUnusedId(unsigned int& id, map<unsigned int, Player>& mapPlayers)
[01d0d00]402{
[1106210]403 while (mapPlayers.find(id) != mapPlayers.end())
404 id++;
[01d0d00]405}
Note: See TracBrowser for help on using the repository browser.