Danbias/Code/Network/OysterNetworkClient/ClientMain.cpp

97 lines
1.4 KiB
C++
Raw Normal View History

2013-11-18 16:47:57 +01:00
#include <iostream>
#include "Client.h"
#include <WinSock2.h>
2013-11-18 16:47:57 +01:00
using namespace std;
using namespace Oyster::Network::Client;
#pragma comment(lib, "ws2_32.lib")
void ShutdownSockets();
bool InitSockets();
void chat(Client client);
2013-11-18 16:47:57 +01:00
2013-11-22 08:56:00 +01:00
#include "../NetworkDependencies/Protocols.h"
#include "../NetworkDependencies/Translator.h"
using namespace Oyster::Network::Protocols;
int main()
{
char msgRecv[255] = "\0";
InitSockets();
cout << "Client" << endl;
2013-11-18 16:47:57 +01:00
//Create Client
Client client;
//Connect to server
2013-11-22 08:56:00 +01:00
client.Connect(9876, "127.0.0.1");
unsigned char* recvBuffer = new unsigned char[255];
2013-11-22 08:56:00 +01:00
client.Send(recvBuffer);
2013-11-22 08:56:00 +01:00
//chat(client);
//Recieve message
//client.Recv(msgRecv);
//print message
//cout << msgRecv << endl;
2013-11-18 16:47:57 +01:00
2013-11-19 14:21:25 +01:00
ShutdownSockets();
system("pause");
return 0;
}
bool InitSockets()
{
WSADATA wsaData;
return WSAStartup(MAKEWORD(2, 2), &wsaData) == NO_ERROR;
}
void ShutdownSockets()
{
WSACleanup();
}
void chat(Client client)
{
2013-11-22 08:56:00 +01:00
unsigned char msgRecv[255] = "\0";
unsigned char msgSend[255] = "\0";
bool chatDone = false;
while(!chatDone)
{
client.Recv(msgRecv);
2013-11-19 14:59:00 +01:00
cout<< "Client 2: " << msgRecv << endl;
2013-11-22 08:56:00 +01:00
cin.getline((char*)msgSend , 255 , '\n');
2013-11-22 08:56:00 +01:00
if(strlen((char*)msgSend) < 1)
2013-11-19 14:59:00 +01:00
{
2013-11-22 08:56:00 +01:00
memcpy(msgSend, " ", 1);
2013-11-19 14:59:00 +01:00
}
2013-11-22 08:56:00 +01:00
if((char*)msgSend != "exit")
{
2013-11-22 08:56:00 +01:00
if(strlen((char*)msgSend) < 1)
{
2013-11-22 08:56:00 +01:00
memcpy(msgSend, "ERROR", 1);
}
client.Send(msgSend);
}
else
{
chatDone = true;
}
2013-11-19 14:59:00 +01:00
cin.clear();
}
}