Ejemplo n.º 1
0
        static void runGame(Bot b)
        {
            void print(int[] list)
            {
                Console.WriteLine("Best move according to traingsset: ");
                for (int i = 0; i < list.Length; i++)
                {
                    Console.Write(list[i] + " ");
                }
            }

            Game      g = b.myGame;
            NeuralBot n = (NeuralBot)b;

            while (g.winner == null)
            {
                g.print();
                if (g.turn == b.Color)
                {
                    print(n.getBestMoveAccordingToTestSet(g.Gameboard, g.turn));
                    Thread.Sleep(1000);
                    b.call();
                }
                else
                {
                    String userInput = Console.ReadLine();
                    int    num1      = Int32.Parse(userInput.Substring(0, 1));
                    int    num2      = Int32.Parse(userInput.Substring(2, 1));

                    g.MakeMove(num1, num2, false);
                }
            }
            Console.WriteLine("Winner is" + g.winner.ToString());
        }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            NeuralBot b = new NeuralBot();

            b.Train();
            b.myGame = new Game();
            runGame(b);
            Console.ReadLine();
        }