コード例 #1
0
ファイル: Program.cs プロジェクト: klochkov1/dotsnake
        static void Main(string[] args)
        {
            Console.OutputEncoding = System.Text.Encoding.UTF8;
            Console.SetWindowSize(x + 1, y + 1);
            Console.SetBufferSize(x + 1, y + 1);
            Console.CursorVisible = false;


            foodFactory = new FoodFactory(x, y, '@');
            gg          = new TextLine("Game over! Press Enter to try again!", (x - "Game over! Press Enter to try again!".Length) / 2, y / 2);
            Init();

            while (true)
            {
                if (Console.KeyAvailable)
                {
                    ConsoleKeyInfo key = Console.ReadKey(true);
                    snake.Rotation(key.Key);
                }
            }
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: klochkov1/dotsnake
 static void Loop(object obj)
 {
     if (walls.IsHit(snake.Head) || snake.IsHitItself)
     {
         gg.WriteTextLine();
         time.Dispose();
         ConsoleKeyInfo k;
         do
         {
             k = Console.ReadKey();
         }while (k.Key != ConsoleKey.Enter);
         Init();
     }
     else if (FoodFactory.IsEaten(snake.Head))
     {
         foodFactory.CreateFood();
     }
     else
     {
         snake.Move();
         if (snake.counter >= snake.bodyStr.Length)
         {
             TextLine won = new TextLine(winStr, (x - winStr.Length) / 2, y / 2 - 1);
             TextLine w   = new TextLine(snake.bodyStr, (x - snake.bodyStr.Length) / 2, y / 2 + 1);
             time.Dispose();
             snake.Dispose();
             won.WriteTextLine();
             w.WriteTextLine();
             ConsoleKeyInfo k;
             do
             {
                 k = Console.ReadKey();
             }while (k.Key != ConsoleKey.Enter);
             Init();
         }
     }
 }