Beispiel #1
0
        //Generates XML for the changes that happened during the previous turn,
        //and transmits it to the client, which will pass it to the server
        public void MakeMove()
        {
            var turn = model.GetPreviousTurn();

            if (turn == null)
            {
                client.SendDataToPlayer(string.Empty);
                return;
            }
            var state = model.GetGameBoardState();
            var data  = UpdateCreatorParser.CreateXmlForGameBoardState(state, "");

            var moves = turn.moves;

            data += UpdateCreatorParser.GenerateXmlForListOfMoves(moves);

            data += UpdateCreatorParser.GenerateXmlForDice(turn.dice);

            data = "<update>" + data + "</update>";
            client.SendDataToServer(data);
        }
Beispiel #2
0
        //Receives XML for the changes that happened on the other side of the connection,
        //parses it into moves, and performs those move on the BackgammonGame instance it is
        //connected to.
        internal void ReceiveData(string data)
        {
            List <int> newMovesLeft = UpdateCreatorParser.ParseDiceFromXml(data);

            model.UpdateMovesLeft(newMovesLeft);

            List <Move> moves = UpdateCreatorParser.ParseListOfMoves(data);

            if (moves.None())
            {
                model.EndTurn(color);
            }
            else
            {
                foreach (var move in moves)
                {
                    if (move.color == this.color)
                    {
                        model.Move(move.color, move.from, move.to);
                    }
                }
            }
        }