-
Notifications
You must be signed in to change notification settings - Fork 0
/
Game.cs
118 lines (111 loc) · 4.72 KB
/
Game.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
using System;
using System.Threading;
namespace Snake
{
class Game
{
private static int updateTime = 200;
private static bool pause = true;
public static int numFruitsEat = 0;
public static int UpdateTime
{
get
{
return updateTime;
}
set
{
if (updateTime >= 55)
{
updateTime = value;
}
}
}
public static void ShowLabel(string text, int x, int y)
{
Console.SetCursorPosition(x, y);
Console.Write(text);
}
static public void CheckKeyPressed(ConsoleKeyInfo key)
{
if (key.Key == ConsoleKey.Escape)
{
if (!pause)
{
Console.ForegroundColor = ConsoleColor.Red;
ShowLabel("Please press key \" ESC\" for continue game", 20, 20);
pause = true;
}
else
{
ShowLabel(" ", 20, 20);
pause = false;
}
}
}
static public void StartGame()
{
WallPointsManager.BuildSceneWalls(0, 0, 79, 79);
SnakePointsManager.StartGame(10, 40);
WallPointsManager.ShowSceneWalls();
Console.ForegroundColor = ConsoleColor.Red;
ShowLabel("Нажмите \"Escape\" чтобы начать игру", 20, 20);
ShowLabel("Чтобы поставить игру на паузу нажмите \"Escape\"", 20, 21);
ShowLabel("Чтобы убрать паузу нажмите \"Escape\"", 20, 22);
ShowLabel("Чтобы принудительно закончить игру нажмите \"Space\"",20,23);
Console.SetWindowSize(79, 79);
Console.SetWindowPosition(0, 0);
Console.SetBufferSize(79, 79);
while (Console.ReadKey(true).Key != ConsoleKey.Escape)
{
}
pause = !pause;
ShowLabel(" ", 20, 20);
ShowLabel(" ", 20, 21);
ShowLabel(" ", 20, 22);
ShowLabel(" ", 20, 23);
FruitPointManager.GenerateFruits();
FruitPointManager.ShowSceneFruit();
}
static public void Update()
{
ConsoleKeyInfo key;
key = new ConsoleKeyInfo();
while (key.Key != ConsoleKey.Spacebar &&!SnakePointsManager.OnCollisionWalls() & !SnakePointsManager.OnCollisionSelf())
{
if (Console.KeyAvailable)
{
key = Console.ReadKey(true);
CheckKeyPressed(key);
if (!pause)
{
SnakePointsManager.MoveController(key);
}
}
if (!pause)
{
Thread.Sleep(UpdateTime);
Console.ForegroundColor = ConsoleColor.Red;
SnakePointsManager.EatingFruit();
SnakePointsManager.MoveSnake();
Console.ForegroundColor = ConsoleColor.White;
SnakePointsManager.ShowSceneSnake();
}
}
}
static public void GameOver()
{
Console.ForegroundColor = ConsoleColor.Red;
ShowLabel("Спасибо за то что потратили время и поиграли в эту игру", 15, 20);
ShowLabel("Вы съели столько фруктов = " + numFruitsEat, 15, 21);
ShowLabel("-------------------------------------------------------", 15, 22);
ShowLabel("Хотелось бы выразить благодарность следующим людям :", 15, 23);
ShowLabel(" 1)Михаилу Корбуту", 15, 24);
ShowLabel(" 2)Марии Йоффе", 15, 25);
ShowLabel(" 3)Всей команде CDRG", 15, 26);
ShowLabel(" За то что Вы есть и вдохновляете меня на новые свершения", 15, 27);
ShowLabel("Нажмите любую кнопку для продолжения",15,30);
Console.ReadKey();
}
}
}