source: network-game/common/MessageProcessor.cpp@ 4fcf7a4

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

More debug info

  • Property mode set to 100644
File size: 2.3 KB
RevLine 
[1a3c42d]1#include "MessageProcessor.h"
2
[5a64bea]3#include <iostream>
4
[198cf2d]5#include "Common.h"
6
[5a64bea]7MessageProcessor::MessageProcessor() {
8 lastUsedId = 0;
9}
10
11MessageProcessor::~MessageProcessor() {
12}
13
[1a3c42d]14int MessageProcessor::sendMessage(NETWORK_MSG *msg, int sock, struct sockaddr_in *dest) {
[9b5d30b]15 msg->id = ++lastUsedId;
[5a64bea]16 MessageContainer message(*msg, *dest);
[9b5d30b]17 sentMessages[msg->id] = message;
[5a64bea]18
[bd2502a]19 cout << "Sending message" << endl;
20 cout << "id: " << msg->id << endl;
21 cout << "type: " << msg->type << endl;
22 cout << "buffer: " << msg->buffer << endl;
23
[5a64bea]24 int ret = sendto(sock, (char*)msg, sizeof(NETWORK_MSG), 0, (struct sockaddr *)dest, sizeof(struct sockaddr_in));
25
26 cout << "Send a message of type " << msg->type << endl;
27
28 return ret;
[1a3c42d]29}
30
[5a64bea]31int MessageProcessor::receiveMessage(NETWORK_MSG *msg, int sock, struct sockaddr_in *source) {
32 socklen_t socklen = sizeof(struct sockaddr_in);
33
34 // assume we don't care about the value of socklen
35 int ret = recvfrom(sock, (char*)msg, sizeof(NETWORK_MSG), 0, (struct sockaddr *)source, &socklen);
36
37 // add id to the NETWORK_MSG struct
38 if (msg->type == MSG_TYPE_ACK) {
[198cf2d]39 if (!sentMessages[msg->id].isAcked) {
40 sentMessages[msg->id].isAcked = true;
41 sentMessages[msg->id].timeAcked = getCurrentMillis();
42 }
43
44 return -1; // don't do any further processing
[5a64bea]45 }else {
[4fcf7a4]46 if (ret > -1) {
47 cout << "Received message" << endl;
48 cout << "id: " << msg->id << endl;
49 cout << "type: " << msg->type << endl;
50 cout << "buffer: " << msg->buffer << endl;
51 }
[bd2502a]52
[5a64bea]53 NETWORK_MSG ack;
54 ack.id = msg->id;
55
[4fcf7a4]56 //sendto(sock, (char*)&ack, sizeof(NETWORK_MSG), 0, (struct sockaddr *)source, sizeof(struct sockaddr_in));
[5a64bea]57 }
58
59 return ret;
[1a3c42d]60}
61
[5a64bea]62void MessageProcessor::resendUnackedMessages(int sock) {
63 map<int, MessageContainer>::iterator it;
64
65 for(it = sentMessages.begin(); it != sentMessages.end(); it++) {
66 sendto(sock, (char*)&it->second.msg, sizeof(NETWORK_MSG), 0, (struct sockaddr *)&it->second.clientAddr, sizeof(struct sockaddr_in));
67 }
[1a3c42d]68}
69
70void MessageProcessor::cleanAckedMessages() {
[af713bc]71 map<int, MessageContainer>::iterator it = sentMessages.begin();
[198cf2d]72
[af713bc]73 while (it != sentMessages.end()) {
[198cf2d]74 if (it->second.isAcked && (getCurrentMillis() - it->second.timeAcked) > 1000)
[9557f92]75 sentMessages.erase(it++);
[af713bc]76 else
77 it++;
[198cf2d]78 }
[1a3c42d]79}
Note: See TracBrowser for help on using the repository browser.