private void CommandRecieved(object sender, CommandEventArgs e)
        {
            if (e.Command.SenderName != client.Username)
            {
                //Recieving a chat message
                if (e.Command.CommandType == CommandType.Message)
                {
                    rtbChat.AppendText(e.Command.SenderName.ToString() + ": " + e.Command.Data);
                }
                //Notify of user connecting
                if (e.Command.CommandType == CommandType.UserConnected)
                {
                    clientList.Add(e.Command.Data);
                    string username = e.Command.Data.Split(':')[2];
                    rtbChat.AppendText(i18n.GetText("userHasConnected", username));
                    lstUsers.Items.Add(username);
                }
                //Notify of user disconnecting
                if (e.Command.CommandType == CommandType.UserDisconnected)
                {
                    string username = e.Command.Data.Split(':')[2];
                    for (int i = 0; i < lstUsers.Items.Count; i++)
                    {
                        if ((string)lstUsers.Items[i] == username)
                        {
                            lstUsers.Items.RemoveAt(i);
                            break;
                        }
                    }
                    for (int i = 0; i < clientList.Count; i++)
                    {
                        if (clientList[i] == e.Command.Data)
                        {
                            clientList.RemoveAt(i);
                        }
                    }
                    rtbChat.AppendText(i18n.GetText("userHasDisconected", username));
                }
            }
            //Update client list when recieved - Outside self message check to enable server to inform client of it's existence
            if (e.Command.CommandType == CommandType.ClientListRequest)
            {
                string[] clients = Array.ConvertAll(e.Command.Data.Split(','), p => p.Trim());
                lstUsers.Items.Clear();
                for (int i = 0; i < clients.Length; i++)
                {
                    if (clients[i] != "")
                    {
                        string username = clients[i].Split(':')[2];
                        lstUsers.Items.Add(username);
                        clientList.Add(clients[i]);
                    }
                }
            }

            if (e.Command.CommandType == CommandType.ChallengeRequest)
            {
                if (activeChallenge == false)
                {
                    string       data = e.Command.Data;
                    DialogResult dr   = MessageBox.Show(i18n.GetText("ChallengeRequest", e.Command.SenderName, data.Split(':')[0], data.Split(':')[1]), i18n.GetText("ChallengeRequestTitle"), MessageBoxButtons.YesNo);
                    if (dr == DialogResult.Yes)
                    {
                        activeChallenge = true;
                        //Accept the request
                        Command cmd = new Command(CommandType.ChallengeResponse, e.Command.SenderIP, "true");
                        cmd.TargetPort = e.Command.SenderPort;
                        cmd.SenderIP   = client.IP;
                        cmd.SenderName = client.Username;
                        cmd.SenderPort = client.Port;
                        client.SendCommand(cmd);
                    }
                    else
                    {
                        //Reject the request
                        Command cmd = new Command(CommandType.ChallengeResponse, e.Command.SenderIP, "false");
                        cmd.TargetPort = e.Command.SenderPort;
                        cmd.SenderIP   = client.IP;
                        cmd.SenderName = client.Username;
                        cmd.SenderPort = client.Port;
                        client.SendCommand(cmd);
                    }
                }
            }

            if (e.Command.CommandType == CommandType.ChallengeResponse)
            {
                if (e.Command.Data.ToString().ToLower() == "true")
                {
                    //Challenge Accepted
                    Command cmd = new Command(CommandType.GameStartRequest, client.ServerIP, e.Command.SenderIP + ":" + e.Command.SenderPort);
                    cmd.TargetPort = client.ServerPort;
                    cmd.SenderIP   = client.IP;
                    cmd.SenderPort = client.Port;
                    cmd.SenderName = client.Username;
                    client.SendCommand(cmd);
                }
                else
                {
                    //challenge Rejected
                    activeChallenge = false;
                    rtbChat.AppendText(i18n.GetText("ChallengeRejected"));
                }
            }

            if (e.Command.CommandType == CommandType.GameIDInform)
            {
                activeGameID = int.Parse(e.Command.Data);
                if (InvokeRequired)
                {
                    BeginInvoke(new MethodInvoker(delegate
                    {
                        gameForm = new BattleshipGameForm(ref client, activeGameID);
                        gameForm.Show();
                        gameForm.FormClosed += new FormClosedEventHandler(GameForm_Closed);
                    }));
                }
                else
                {
                    gameForm = new BattleshipGameForm(ref client, activeGameID);
                    gameForm.Show();
                    gameForm.FormClosed += new FormClosedEventHandler(GameForm_Closed);
                }
            }

            if (e.Command.CommandType == CommandType.UserDataInform)
            {
                ConfirmChallenge(e.Command);
            }
        }
        public void GameCommandRecieved(object sender, CommandEventArgs e)
        {
            Console.WriteLine("Game command received. data:{0} type:{1}", e.Command.Data, e.Command.CommandType);
            if (e.Command.CommandType == CommandType.GameStartInform)
            {
                if (e.Command.Data.ToLower() == "true")
                {
                    myTurn = true;
                    rtbLog.BeginInvoke((MethodInvoker) delegate() { rtbLog.AppendText(i18n.GetText("firstShotMe"));; });
                    btnFire.BackColor = System.Drawing.Color.Red;
                    btnFire.ForeColor = System.Drawing.Color.White;
                    //btnFire.Enabled = true;
                }
                else if (e.Command.Data.ToLower() == "false")
                {
                    myTurn          = false;
                    btnFire.Enabled = false;
                    rtbLog.BeginInvoke((MethodInvoker) delegate() { rtbLog.AppendText(i18n.GetText("firstShotEnemy"));; });
                }
            }
            if (e.Command.CommandType == CommandType.GameShotResult)
            {
                if (e.Command.Data.ToLower().Equals("hit"))
                {
                    //Deal with hits
                    // Don't block Thread with waiting until Sound finishs
                    new System.Threading.Thread(() =>
                    {
                        if (checkBoxSound.Checked)
                        {
                            spFlightBomb.PlaySync();
                        }

                        rtbLog.BeginInvoke((MethodInvoker) delegate()
                        {
                            rtbLog.AppendText(i18n.GetText("shotHit"));
                        });

                        pictureBox.BeginInvoke((MethodInvoker) delegate()
                        {
                            pictureBox       = (PictureBox)EnemyGrid.GetControlFromPosition(gridTarget.x, gridTarget.y);
                            pictureBox.Image = Properties.Resources.ShipHit;
                            pictureBox.Tag   = "ShipHit";
                        });

                        btnFire.BeginInvoke((MethodInvoker) delegate()
                        {
                            btnFire.Enabled = false;
                        });

                        myTurn = false;

                        rtbLog.BeginInvoke((MethodInvoker) delegate()
                        {
                            rtbLog.AppendText(i18n.GetText("waitEnemyShot"));;
                        });
                    }).Start();
                }
                else if (e.Command.Data.ToLower().Equals("miss"))
                {
                    //deal with misses
                    // Don't block Thread with waiting until Sound finishs
                    new System.Threading.Thread(() =>
                    {
                        if (checkBoxSound.Checked)
                        {
                            spFlightWater.PlaySync();
                        }

                        rtbLog.BeginInvoke((MethodInvoker) delegate()
                        {
                            rtbLog.AppendText(i18n.GetText("shotMissed"));
                        });

                        pictureBox.BeginInvoke((MethodInvoker) delegate()
                        {
                            pictureBox       = (PictureBox)EnemyGrid.GetControlFromPosition(gridTarget.x, gridTarget.y);
                            pictureBox.Image = Properties.Resources.WaterMiss;
                            pictureBox.Tag   = "WaterMiss";
                        });
                        btnFire.BeginInvoke((MethodInvoker) delegate() {
                            btnFire.Enabled = false;
                        });

                        myTurn = false;

                        rtbLog.BeginInvoke((MethodInvoker) delegate() {
                            rtbLog.AppendText(i18n.GetText("waitEnemyShot"));;
                        });
                    }).Start();
                }
            }
            if (e.Command.CommandType == CommandType.GameHitInform)
            {
                // Don't block Thread with waiting until Sound finishs
                new System.Threading.Thread(() =>
                {
                    if (checkBoxSound.Checked)
                    {
                        spFlightBomb.PlaySync();
                    }

                    rtbLog.BeginInvoke((MethodInvoker) delegate() {
                        rtbLog.AppendText(i18n.GetText("oneShipHit"));
                    });

                    gridTarget.x = int.Parse(e.Command.Data.Split(',')[0]);
                    gridTarget.y = int.Parse(e.Command.Data.Split(',')[1]);

                    pictureBox.BeginInvoke((MethodInvoker) delegate()
                    {
                        pictureBox       = (PictureBox)PlayerGrid.GetControlFromPosition(gridTarget.x, gridTarget.y);
                        pictureBox.Image = Properties.Resources.ShipHit;
                    });

                    myTurn = true;

                    rtbLog.BeginInvoke((MethodInvoker) delegate() {
                        rtbLog.AppendText(i18n.GetText("turnToShot"));
                    });

                    btnFire.BeginInvoke((MethodInvoker) delegate()
                    {
                        btnFire.BackColor = System.Drawing.Color.Red;
                        btnFire.ForeColor = System.Drawing.Color.White;
                    });
                }).Start();
            }
            if (e.Command.CommandType == CommandType.GameMissInform)
            {
                // Don't block Thread with waiting until Sound finishs
                new System.Threading.Thread(() =>
                {
                    if (checkBoxSound.Checked)
                    {
                        spFlightWater.PlaySync();
                    }

                    rtbLog.BeginInvoke((MethodInvoker) delegate() {
                        rtbLog.AppendText(i18n.GetText("opponentMissedFleet"));
                    });

                    gridTarget.x = int.Parse(e.Command.Data.Split(',')[0]);
                    gridTarget.y = int.Parse(e.Command.Data.Split(',')[1]);

                    pictureBox.BeginInvoke((MethodInvoker) delegate()
                    {
                        pictureBox       = (PictureBox)PlayerGrid.GetControlFromPosition(gridTarget.x, gridTarget.y);
                        pictureBox.Image = Properties.Resources.WaterMiss;
                    });

                    myTurn = true;

                    rtbLog.BeginInvoke((MethodInvoker) delegate() {
                        rtbLog.AppendText(i18n.GetText("turnToShot"));
                    });

                    btnFire.BeginInvoke((MethodInvoker) delegate()
                    {
                        btnFire.BackColor = System.Drawing.Color.Red;
                        btnFire.ForeColor = System.Drawing.Color.White;
                    });
                }).Start();
            }
            if (e.Command.CommandType == CommandType.GameOverInform)
            {
                if (e.Command.Data.ToLower() == "win")
                {
                    Command cmdInform = new Command(CommandType.GameOverInform, client.ServerIP, gameID + ":" + "win");
                    cmdInform.TargetPort = client.ServerPort;
                    cmdInform.SenderIP   = client.IP;
                    cmdInform.SenderPort = client.Port;
                    cmdInform.SenderName = client.Username;
                    client.Wins++;
                    client.SendCommand(cmdInform);
                    MessageBox.Show(i18n.GetText("wonCongratulations", client.Username), i18n.GetText("winner"), MessageBoxButtons.OK);
                    Close();
                }
                else if (e.Command.Data.ToLower() == "loss")
                {
                    Command cmdInform = new Command(CommandType.GameOverInform, client.ServerIP, gameID + ":" + "loss");
                    cmdInform.TargetPort = client.ServerPort;
                    cmdInform.SenderIP   = client.IP;
                    cmdInform.SenderPort = client.Port;
                    cmdInform.SenderName = client.Username;
                    client.Losses++;
                    client.SendCommand(cmdInform);
                    MessageBox.Show(i18n.GetText("lossGame", client.Username), i18n.GetText("gameLost"), MessageBoxButtons.OK);
                    Close();
                }
            }
        }