Danbias/Code/Network/OysterNetworkClient/ClientMain.cpp

110 lines
1.7 KiB
C++
Raw Normal View History

2013-11-18 16:47:57 +01:00
#include <iostream>
#include <WinSock2.h>
2013-11-22 14:23:08 +01:00
#include <vld.h>
#include "../NetworkDependencies/WinsockFunctions.h"
2013-11-22 09:17:07 +01:00
#include "..\NetworkDependencies\Translator.h"
2013-11-22 14:23:08 +01:00
#include "..\NetworkDependencies\Protocols.h"
#include "Client.h"
#pragma comment(lib, "ws2_32.lib")
2013-11-22 09:17:07 +01:00
2013-11-18 16:47:57 +01:00
using namespace std;
2013-11-22 09:17:07 +01:00
using namespace Oyster::Network::Protocols;;
using namespace Oyster::Network::Client;
2013-11-22 14:23:08 +01:00
void chat(Client &client);
2013-11-22 08:56:00 +01:00
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
client.Connect(9876, "localhost");
2013-11-22 08:56:00 +01:00
2013-11-22 09:17:07 +01:00
chat(client);
2013-11-19 14:21:25 +01:00
ShutdownSockets();
system("pause");
return 0;
}
2013-11-22 14:23:08 +01:00
void chat(Client &client)
{
2013-11-22 09:17:07 +01:00
Oyster::Network::Translator *t = new Oyster::Network::Translator();
unsigned char msgRecv[1601] = "\0";
2013-11-22 09:17:07 +01:00
string msgSend = "";
ProtocolSet* set = new ProtocolSet;
2013-11-22 09:17:07 +01:00
ProtocolTest test;
test.numOfFloats = 5;
test.f = new float[test.numOfFloats];
float temp = 12345.5654f;
for(int i = 0; i < 5; i++)
{
test.f[i] = temp;
temp++;
}
bool chatDone = false;
while(!chatDone)
{
client.Recv(msgRecv);
2013-11-22 09:17:07 +01:00
t->Unpack(set, msgRecv);
2013-11-22 14:23:08 +01:00
switch(set->type)
2013-11-22 09:17:07 +01:00
{
case package_type_header:
break;
case package_type_test:
cout <<"Client 2: " << set->Protocol.pTest->textMessage <<endl;
for(int i = 0; i < set->Protocol.pTest->numOfFloats; i++)
{
//cout << set->Protocol.pTest->f[i] << ' ' ;
}
cout << endl;
2013-11-22 09:17:07 +01:00
break;
}
2013-11-22 14:23:08 +01:00
set->Release();
2013-11-22 09:17:07 +01:00
std::getline(std::cin, msgSend);
2013-11-22 14:23:08 +01:00
2013-11-22 09:17:07 +01:00
if( msgSend != "exit")
{
if(msgSend.length() < 1)
{
msgSend = "ERROR!";
}
2013-11-22 09:17:07 +01:00
test.textMessage = msgSend;
unsigned char *message = t->Pack(test);
2013-11-22 09:17:07 +01:00
client.Send(message);
}
else
{
chatDone = true;
}
2013-11-19 14:59:00 +01:00
cin.clear();
}
2013-11-22 14:23:08 +01:00
delete t;
delete set;
}