Advertisement
wingman007

SnakeOOPFinal2b_Controller

Oct 28th, 2014
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.64 KB | None | 0 0
  1. using SnakeOOP2b.View;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7.  
  8. namespace SnakeOOP2b.Controller
  9. {
  10.     public enum Direction { Left, Right, Up, Down};
  11.     class Controller
  12.     {
  13.         private SnakeOOP2b.View.View view;
  14.         private Snake snake;
  15.         private Input input;
  16.         private Timer timer;
  17.         private Direction direction;
  18.         public Controller(SnakeOOP2b.View.View view, Snake snake, Input input, Timer timer)
  19.         {
  20.             this.view = view;
  21.             this.snake = snake;
  22.             this.input = input;
  23.             this.timer = timer;
  24.             // timer.Tick += new TickEventHandler(GoAction);
  25.             timer.Tick += GoAction;
  26.         }
  27.  
  28.         public void GoAction(object sender, EventArgs e)
  29.         {
  30.             if (input.IsKeyAvailable())
  31.             {
  32.                 ConsoleKeyInfo cki = input.GetKey();
  33.                 switch (cki.Key)
  34.                 {
  35.                     case ConsoleKey.RightArrow :
  36.                         direction = Direction.Right;
  37.                         break;
  38.                     case ConsoleKey.LeftArrow :
  39.                         direction = Direction.Left;
  40.                         break;
  41.                     case ConsoleKey.UpArrow:
  42.                         direction = Direction.Up;
  43.                         break;
  44.                     case ConsoleKey.DownArrow:
  45.                         direction = Direction.Down;
  46.                         break;
  47.                 }
  48.             }
  49.             snake.Move(direction);
  50.             view.Render(snake, direction);
  51.         }
  52.     }
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement