Example #1
0
        static void Main(string[] args)
        {
            Console.SetWindowSize(80, 25);
            Console.SetBufferSize(80, 25);

            HorizontailLine upLine    = new HorizontailLine(0, 78, 0, '+');
            HorizontailLine downLine  = new HorizontailLine(0, 78, 24, '+');
            verticalLine    leftLine  = new verticalLine(0, 24, 0, '+');
            verticalLine    rightLine = new verticalLine(0, 24, 78, '+');

            upLine.draw();
            downLine.draw();
            leftLine.draw();
            rightLine.draw();

            point p     = new point(7, 5, '*');
            snake snake = new snake(p, 4, direction.rigth);

            snake.draw();

            foodCreator foodCreator = new foodCreator(80, 25, '$');
            point       food        = foodCreator.CreateFood();

            food.draw();



            while (true)
            {
                if (snake.eat(food))
                {
                    //food = foodCreator.CreateFood();
                    food = foodCreator.CreateFood();
                    food.draw();
                }
                else
                {
                    //    snake.move();

                    Thread.Sleep(100);
                }

                if (Console.KeyAvailable)
                {
                    ConsoleKeyInfo key = Console.ReadKey();
                    snake.HandleKey(key.Key);
                }
                Thread.Sleep(100);
                snake.move();
            }


            //Console.ReadLine();
        }
Example #2
0
        static void Main(string[] args)
        {
            //Ограничение окна
            //Console.SetBufferSize(80, 25);
            #region Wall

            Walls walls = new Walls(80, 25);
            walls.Draw();


            #endregion

            #region SnakeBody

            point  p     = new point(4, 5, '*');
            Snakee snake = new Snakee(p, 4, Direction.RIGHT);
            snake.DrawLine();
            #endregion

            #region Food

            foodCreator foodCreator = new foodCreator(80, 25, '$');
            point       food        = foodCreator.CreateFood();
            food.Draw();

            #endregion

            while (true)
            {
                if (walls.IsHit(snake) || snake.IsHitTail())
                {
                    break;
                    //Console.Write("Game OVER");
                }
                if (snake.Eat(food))
                {
                    food = foodCreator.CreateFood();
                    food.Draw();
                }
                else
                {
                    snake.Move();
                }

                Thread.Sleep(100);

                if (Console.KeyAvailable)
                {
                    ConsoleKeyInfo key = Console.ReadKey();
                    snake.HandleKey(key.Key);
                }
            }

            #region Handle Key

            while (true)
            {
                if (Console.KeyAvailable)
                {
                    ConsoleKeyInfo key = Console.ReadKey();
                    snake.HandleKey(key.Key);
                }
                Thread.Sleep(100);
                snake.Move();
            }
            #endregion



            //Console.ReadKey();
        }