Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using SnakeOOP2b.View;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SnakeOOP2b.Controller
- {
- public enum Direction { Left, Right, Up, Down};
- class Controller
- {
- private SnakeOOP2b.View.View view;
- private Snake snake;
- private Input input;
- private Timer timer;
- private Direction direction;
- public Controller(SnakeOOP2b.View.View view, Snake snake, Input input, Timer timer)
- {
- this.view = view;
- this.snake = snake;
- this.input = input;
- this.timer = timer;
- // timer.Tick += new TickEventHandler(GoAction);
- timer.Tick += GoAction;
- }
- public void GoAction(object sender, EventArgs e)
- {
- if (input.IsKeyAvailable())
- {
- ConsoleKeyInfo cki = input.GetKey();
- switch (cki.Key)
- {
- case ConsoleKey.RightArrow :
- direction = Direction.Right;
- break;
- case ConsoleKey.LeftArrow :
- direction = Direction.Left;
- break;
- case ConsoleKey.UpArrow:
- direction = Direction.Up;
- break;
- case ConsoleKey.DownArrow:
- direction = Direction.Down;
- break;
- }
- }
- snake.Move(direction);
- view.Render(snake, direction);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement