Cleaned code

This commit is contained in:
stiffly
2015-12-17 10:47:08 +01:00
parent 97a0d97b0b
commit 4c29e071af
2 changed files with 43 additions and 47 deletions
+8 -9
View File
@@ -5,7 +5,7 @@ using namespace boost::asio::ip;
Client::Client() : m_Socket(m_IOService)
{
m_ReceiverEndpoint = udp::endpoint(boost::asio::ip::address::from_string("192.168.1.2"), 13);
m_ReceiverEndpoint = udp::endpoint(boost::asio::ip::address::from_string("192.168.1.6"), 13);
// Set up network stream
m_NextSnapshot.InputForward = "";
m_NextSnapshot.InputRight = "";
@@ -38,7 +38,7 @@ void Client::Start(World* world, EventBroker* eventBroker)
}
void Client::Update()
{
{
while (m_PlayersToCreate.size() > 0) {
unsigned int i = m_PlayersToCreate.size() - 1;
unsigned int tempID = m_World->CreateEntity();
@@ -114,7 +114,7 @@ void Client::SendSnapshotToServer()
package.AddString("0Forward");
Send(package);
}
if (m_NextSnapshot.InputRight != "") {
@@ -204,7 +204,7 @@ void Client::ParseSnapshot(Package& package)
// We're checking for empty name for now. This might not be the best way,
// but it is to avoid sending redundant data.
tempName = package.PopFrontString();
// Apply the position data read to the player entity
// New player connected on the server side
@@ -225,7 +225,7 @@ void Client::ParseSnapshot(Package& package)
//playerPos.y = package.PopFrontPrimitive<float>();
//playerPos.z = package.PopFrontPrimitive<float>();
// Move player to server position
if (m_PlayerDefinitions[i].EntityID != -1) {
@@ -294,8 +294,7 @@ bool Client::OnInputCommand(const Events::InputCommand & e)
if (e.Command == "Forward") {
if (e.Value > 0) {
m_IsWASDKeyDown.W = true;
}
else if (e.Value < 0) {
} else if (e.Value < 0) {
m_IsWASDKeyDown.S = true;
} else {
m_IsWASDKeyDown.W = false;
@@ -312,7 +311,7 @@ bool Client::OnInputCommand(const Events::InputCommand & e)
m_IsWASDKeyDown.D = false;
}
}
if (e.Command == "Sprint") { // Temp connect
if (e.Command == "Sprint") { // Connect for now
Connect();
}
return false;
@@ -331,6 +330,6 @@ void Client::IdentifyPacketLoss()
// if no packets lost, difference should be equal to 1
int difference = m_PacketID - m_PreviousPacketID;
if (difference != 1) {
LOG_INFO("%i Packet(s) were lost...", difference);
LOG_INFO("%i Packet(s) were lost...", difference);
}
}