-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathORDNCHS.h
186 lines (173 loc) · 7.05 KB
/
ORDNCHS.h
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
#pragma once
#include "Gameplay.h"
using namespace System;
using namespace System::ComponentModel;
using namespace System::Collections;
using namespace System::Windows::Forms;
using namespace System::Data;
using namespace System::Drawing;
using namespace std;
using namespace cli;
// Клас головної форми гри
public ref class ORDNCHS : public System::Windows::Forms::Form
{
private:
// Перерахування для теми
enum class Theme
{
Light,
Dark
};
Panel^ panel1; // Панель для гри
Label^ turnLabel; // Надпис з інформацією про поточний хід
Theme currenttheme = Theme::Dark; // Поточна тема гри
Button^ themebutton; // Кнопка для зміни теми
MenuStrip^ menuStrip1; // Меню
ToolStripMenuItem^ початиСпочаткуToolStripMenuItem; // Пункт меню "Почати спочатку"
ToolStripMenuItem^ покинутиГруToolStripMenuItem; // Пункт меню "Покинути гру"
public:
Panel^ ORDNCHS::GetPanel()
{
return panel1;
}
// Конструктор
ORDNCHS(void)
{
InitializeComponent();
// Ініціалізація панелі гри
panel1 = gcnew Panel();
panel1->Size = Drawing::Size(301, 301);
int centerX = (this->ClientSize.Width - panel1->Size.Width) / 2;
int centerY = (this->ClientSize.Height - panel1->Size.Height) / 2;
panel1->Location = Drawing::Point(centerX, centerY);
this->Controls->Add(panel1);
panel1->Paint += gcnew PaintEventHandler(this, &ORDNCHS::gamepanel_Paint);
panel1->MouseClick += gcnew MouseEventHandler(this, &ORDNCHS::gamepanel_MouseClick);
panel1->BackColor = Color::SlateGray;
// Ініціалізація надпису про поточний хід
turnLabel = gcnew Label();
turnLabel->Text = "Зараз ходить Гравець 1 (Порядок)";
turnLabel->ForeColor = Color::White;
turnLabel->Dock = DockStyle::Bottom; // Розміщення надпису над панеллю
this->Controls->Add(turnLabel);
}
// Функція для зміни теми
void Switch_theme()
{
if (currenttheme == Theme::Light)
{
currenttheme = Theme::Dark;
this->BackColor = System::Drawing::Color::FromArgb(51, 51, 51);
panel1->BackColor = System::Drawing::Color::SlateGray;
turnLabel->ForeColor = System::Drawing::Color::White;
}
else
{
currenttheme = Theme::Light;
this->BackColor = Color::Linen;
panel1->BackColor = Color::LightCyan;
turnLabel->ForeColor = Color::Black;
}
}
// Функція для оновлення надпису про поточний хід
void PlayerTurn(Gameplay gameplay)
{
if (gameplay.GetTurn())
{
turnLabel->Text = "Зараз ходить Гравець 1 (Порядок)";
}
else
{
turnLabel->Text = "Зараз ходить Гравець 2 (Хаос)";
}
}
protected:
// Деструктор
~ORDNCHS()
{
if (components)
{
delete components;
}
}
private:
System::ComponentModel::Container^ components;
// Метод, створений автоматично дизайнером Windows Form
#pragma region Windows Form Designer generated code
void InitializeComponent(void)
{
this->themebutton = (gcnew System::Windows::Forms::Button());
this->menuStrip1 = (gcnew System::Windows::Forms::MenuStrip());
this->початиСпочаткуToolStripMenuItem = (gcnew System::Windows::Forms::ToolStripMenuItem());
this->покинутиГруToolStripMenuItem = (gcnew System::Windows::Forms::ToolStripMenuItem());
this->menuStrip1->SuspendLayout();
this->SuspendLayout();
//
// themebutton
//
this->themebutton->FlatAppearance->BorderColor = System::Drawing::Color::White;
this->themebutton->FlatStyle = System::Windows::Forms::FlatStyle::System;
this->themebutton->Location = System::Drawing::Point(382, 436);
this->themebutton->Name = L"themebutton";
this->themebutton->Size = System::Drawing::Size(48, 36);
this->themebutton->TabIndex = 0;
this->themebutton->TabStop = false;
this->themebutton->Text = L"Switch Theme";
this->themebutton->UseVisualStyleBackColor = true;
this->themebutton->Click += gcnew System::EventHandler(this, &ORDNCHS::SwitchTheme);
//
// menuStrip1
//
this->menuStrip1->Items->AddRange(gcnew cli::array< System::Windows::Forms::ToolStripItem^ >(2) {
this->початиСпочаткуToolStripMenuItem,
this->покинутиГруToolStripMenuItem
});
this->menuStrip1->Location = System::Drawing::Point(0, 0);
this->menuStrip1->Name = L"menuStrip1";
this->menuStrip1->Size = System::Drawing::Size(442, 24);
this->menuStrip1->TabIndex = 1;
this->menuStrip1->Text = L"menuStrip1";
//
// початиСпочаткуToolStripMenuItem
//
this->початиСпочаткуToolStripMenuItem->Name = L"початиСпочаткуToolStripMenuItem";
this->початиСпочаткуToolStripMenuItem->Size = System::Drawing::Size(113, 20);
this->початиСпочаткуToolStripMenuItem->Text = L"Почати спочатку";
this->початиСпочаткуToolStripMenuItem->Click += gcnew System::EventHandler(this, &ORDNCHS::початиСпочаткуToolStripMenuItem_Click);
//
// покинутиГруToolStripMenuItem
//
this->покинутиГруToolStripMenuItem->Name = L"покинутиГруToolStripMenuItem";
this->покинутиГруToolStripMenuItem->Size = System::Drawing::Size(94, 20);
this->покинутиГруToolStripMenuItem->Text = L"Покинути гру";
this->покинутиГруToolStripMenuItem->Click += gcnew System::EventHandler(this, &ORDNCHS::покинутиГруToolStripMenuItem_Click);
//
// ORDNCHS
//
this->AutoScaleDimensions = System::Drawing::SizeF(6, 13);
this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
this->BackColor = System::Drawing::Color::FromArgb(static_cast<System::Int32>(static_cast<System::Byte>(51)), static_cast<System::Int32>(static_cast<System::Byte>(51)),
static_cast<System::Int32>(static_cast<System::Byte>(51)));
this->ClientSize = System::Drawing::Size(442, 484);
this->Controls->Add(this->themebutton);
this->Controls->Add(this->menuStrip1);
this->MainMenuStrip = this->menuStrip1;
this->Name = L"ORDNCHS";
this->StartPosition = System::Windows::Forms::FormStartPosition::CenterScreen;
this->Text = L"ORDNCHS";
this->Load += gcnew System::EventHandler(this, &ORDNCHS::ORDNCHS_Load);
this->menuStrip1->ResumeLayout(false);
this->menuStrip1->PerformLayout();
this->ResumeLayout(false);
this->PerformLayout();
}
#pragma endregion
private:
// Методи, що відповідають за події елементів управління
Void gamepanel_Paint(Object^ sender, PaintEventArgs^ e);
Void gamepanel_MouseClick(Object^ sender, MouseEventArgs^ e);
void ORDNCHS::SwitchTheme(Object^ sender, EventArgs^ e);
Void початиСпочаткуToolStripMenuItem_Click(Object^ sender, EventArgs^ e);
Void покинутиГруToolStripMenuItem_Click(Object^ sender, EventArgs^ e);
Void ORDNCHS_Load(System::Object^ sender, System::EventArgs^ e);
};