-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGomokuDraw.cpp
780 lines (670 loc) · 24.4 KB
/
GomokuDraw.cpp
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
//
// Created by Brazhenko Andrew on 18.01.2021.
//
#include "GomokuDraw.h"
#include <unordered_map>
#include "imgui_internal.h"
#include "imgui_little/imgui.h"
#include "imgui_little/imgui_impl_glfw.h"
#include "imgui_little/imgui_impl_opengl3.h"
#include <iostream>
#include <optional>
#include "TextWithColors.hpp"
#include <climits>
// About Desktop OpenGL function loaders:
// Modern desktop OpenGL doesn't have a standard portable header file to load OpenGL function pointers.
// Helper libraries are often used for this purpose! Here we are supporting a few common ones (gl3w, glew, glad).
// You may use another loader/header of your choice (glext, glLoadGen, etc.), or chose to manually implement your own.
#if defined(IMGUI_IMPL_OPENGL_LOADER_GL3W)
#include <GL/gl3w.h> // Initialize with gl3wInit()
#elif defined(IMGUI_IMPL_OPENGL_LOADER_GLEW)
#include <GL/glew.h> // Initialize with glewInit()
#elif defined(IMGUI_IMPL_OPENGL_LOADER_GLAD)
#include <glad/glad.h> // Initialize with gladLoadGL()
#elif defined(IMGUI_IMPL_OPENGL_LOADER_GLAD2)
#include <glad/gl.h> // Initialize with gladLoadGL(...) or gladLoaderLoadGL()
#elif defined(IMGUI_IMPL_OPENGL_LOADER_GLBINDING2)
#define GLFW_INCLUDE_NONE // GLFW including OpenGL headers causes ambiguity or multiple definition errors.
#include <glbinding/Binding.h> // Initialize with glbinding::Binding::initialize()
#include <glbinding/gl/gl.h>
using namespace gl;
#elif defined(IMGUI_IMPL_OPENGL_LOADER_GLBINDING3)
#define GLFW_INCLUDE_NONE // GLFW including OpenGL headers causes ambiguity or multiple definition errors.
#include <glbinding/glbinding.h>// Initialize with glbinding::initialize()
#include <glbinding/gl/gl.h>
using namespace gl;
#else
#include IMGUI_IMPL_OPENGL_LOADER_CUSTOM
#endif
// Include glfw3.h after our OpenGL definitions
#include <GLFW/glfw3.h>
// [Win32] Our example includes a copy of glfw3.lib pre-compiled with VS2010 to maximize ease of testing and compatibility with old VS compilers.
// To link with VS2010-era libraries, VS2015+ requires linking with legacy_stdio_definitions.lib, which we do using this pragma.
// Your own project should not be affected, as you are likely to link with a newer binary of GLFW that is adequate for your version of Visual Studio.
#if defined(_MSC_VER) && (_MSC_VER >= 1900) && !defined(IMGUI_DISABLE_WIN32_FUNCTIONS)
#pragma comment(lib, "legacy_stdio_definitions")
#endif
#define STB_IMAGE_IMPLEMENTATION
#include "imgui_little/stb_image.h"
namespace GomokuDraw
{
struct TextureHelper
{
private:
/// @brief Simple helper function to load an image into a OpenGL texture with common settings
/// @param [in] filename path to texture file
/// @param [out] out_texture out texture ptr
/// @param [out] out_width out width ptr
/// @param [out] out_height out height ptr
/// @return `true` if success `false` otherwise
static bool LoadTextureFromFile(const char *filename, GLuint *out_texture, int *out_width, int *out_height)
{
// Load from file
int imageWidth = 0;
int imageHeight = 0;
unsigned char *image_data = stbi_load(filename, &imageWidth, &imageHeight, nullptr, 4);
if (image_data == nullptr)
return false;
// Create a OpenGL texture identifier
GLuint image_texture;
glGenTextures(1, &image_texture);
glBindTexture(GL_TEXTURE_2D, image_texture);
// Setup filtering parameters for display
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S,
GL_CLAMP_TO_EDGE); // This is required on WebGL for non power-of-two textures
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); // Same
// Upload pixels into texture
#if defined(GL_UNPACK_ROW_LENGTH) && !defined(__EMSCRIPTEN__)
glPixelStorei(GL_UNPACK_ROW_LENGTH, 0);
#endif
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, imageWidth, imageHeight, 0, GL_RGBA, GL_UNSIGNED_BYTE, image_data);
stbi_image_free(image_data);
*out_texture = image_texture;
*out_width = imageWidth;
*out_height = imageHeight;
return true;
}
public:
TextureHelper() = delete;
explicit TextureHelper(const std::string &path)
{
bool ret = LoadTextureFromFile(path.c_str(), &my_image_texture, &image_width, &image_height);
if (!ret) throw std::runtime_error("Cannot load texture");
}
int image_width = 0;
int image_height = 0;
GLuint my_image_texture = 0;
};
}
// Global GomokuDraw context variables
GLFWwindow* window;
std::unordered_map<std::string, GomokuDraw::TextureHelper> textures;
ImGui::FileBrowser fileDialogBoardPos;
ImGui::FileBrowser fileDialogGame;
namespace GomokuDraw
{
void glfw_error_callback(int error, const char* description)
{
fprintf(stderr, "Glfw Error %d: %s\n", error, description);
}
static const char* gameModes[] = { "42" };
static int gameModeId = 0;
static const char* gameTimes[] = { "1 minute", "3 minutes", "5 minutes", "10 minutes", "15 minutes" };
static int gameTimeId = 2;
bool Init()
{
// Setup window
glfwSetErrorCallback(glfw_error_callback);
if (!glfwInit())
return false;
// Decide GL+GLSL versions
#ifdef __APPLE__
// GL 3.2 + GLSL 150
const char* glsl_version = "#version 150";
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 2);
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE); // 3.2+ only
glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE); // Required on Mac
#else
// GL 3.0 + GLSL 130
const char* glsl_version = "#version 130";
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 0);
//glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE); // 3.2+ only
//glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE); // 3.0+ only
#endif
glfwWindowHint(GLFW_RESIZABLE, GLFW_FALSE);
// Create window with graphics context
window = glfwCreateWindow(1280, 720, "gomoku", nullptr, nullptr);
if (window == nullptr)
return false;
glfwMakeContextCurrent(window);
glfwSwapInterval(1); // Enable vsync
// Initialize OpenGL loader
#if defined(IMGUI_IMPL_OPENGL_LOADER_GL3W)
bool err = gl3wInit() != 0;
#elif defined(IMGUI_IMPL_OPENGL_LOADER_GLEW)
bool err = glewInit() != GLEW_OK;
#elif defined(IMGUI_IMPL_OPENGL_LOADER_GLAD)
bool err = gladLoadGL() == 0;
#elif defined(IMGUI_IMPL_OPENGL_LOADER_GLAD2)
bool err = gladLoadGL(glfwGetProcAddress) == 0; // glad2 recommend using the windowing library loader instead of the (optionally) bundled one.
#elif defined(IMGUI_IMPL_OPENGL_LOADER_GLBINDING2)
bool err = false;
glbinding::Binding::initialize();
#elif defined(IMGUI_IMPL_OPENGL_LOADER_GLBINDING3)
bool err = false;
glbinding::initialize([](const char* name) { return (glbinding::ProcAddress)glfwGetProcAddress(name); });
#else
bool err = false; // If you use IMGUI_IMPL_OPENGL_LOADER_CUSTOM, your loader is likely to requires some form of initialization.
#endif
if (err)
{
std::cerr << "Failed to initialize OpenGL loader!" << std::endl;
return false;
}
// Setup Dear ImGui context
IMGUI_CHECKVERSION();
ImGui::CreateContext();
ImGuiIO& io = ImGui::GetIO();
//io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard; // Enable Keyboard Controls
//io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad; // Enable Gamepad Controls
// Setup Dear ImGui style
ImGui::StyleColorsDark();
// Setup Platform/Renderer backends
ImGui_ImplGlfw_InitForOpenGL(window, true);
ImGui_ImplOpenGL3_Init(glsl_version);
// Prepare textures
textures.emplace("background", "textures/main.png");
textures.emplace("fantom_stone_blue", "textures/light_blue.png");
textures.emplace("fantom_stone_red", "textures/light_red.png");
textures.emplace("stone_blue", "textures/blue.png");
textures.emplace("stone_red", "textures/red.png");
textures.emplace("forbidden", "textures/forbidden.png");
// Set default filedialog parameters
fileDialogGame.SetTitle("Select game file...");
fileDialogGame.SetTypeFilters({ ".pgn" });
fileDialogGame.SetPwd(getenv("HOME"));
fileDialogBoardPos.SetTitle("Select game position file...");
fileDialogBoardPos.SetTypeFilters({ ".gg" });
fileDialogBoardPos.SetPwd(getenv("HOME"));
return true;
}
static void MakeNextObjectInActive()
{
ImGui::PushItemFlag(ImGuiItemFlags_Disabled, true);
ImGui::PushStyleVar(ImGuiStyleVar_Alpha, ImGui::GetStyle().Alpha * 0.5f);
}
static void MakeNextObjectActive()
{
ImGui::PopItemFlag();
ImGui::PopStyleVar();
}
bool Go()
{
auto ret = !glfwWindowShouldClose(window);
if (ret)
{
glfwPollEvents();
// Start the Dear ImGui frame
ImGui_ImplOpenGL3_NewFrame();
ImGui_ImplGlfw_NewFrame();
ImGui::NewFrame();
}
return ret;
}
void DrawSome()
{
ImGui::SetNextWindowSize(ImVec2{1280, 720});
ImGui::SetNextWindowPos(ImVec2{0, 0});
ImGui::Begin("Main Window", nullptr,
ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoBackground
| ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoSavedSettings
| ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoBringToFrontOnFocus);
ImGui::GetWindowDrawList()->AddImage((void*)(intptr_t)textures.at("background").my_image_texture, ImVec2{0, 0}, ImVec2{1280, 720});
#if DEBUG
ImGui::Text("Application average %.3f ms/frame (%.1f FPS)", 1000.0f / ImGui::GetIO().Framerate, ImGui::GetIO().Framerate);
#endif
}
constexpr float textureCellSide = 28.0;
constexpr float upperLeftBoard_x = 50.0;
constexpr float upperLeftBoard_y = 60.0;
constexpr float downRightBoard_x = 620.0;
constexpr float downRightBoard_y = 630.0;
constexpr float boardSizePixels = 570.0;
constexpr int cellSide = 30;
#define RGBA_TO_FLOAT(r,g,b,a) (float)r/255.0f, (float)g/255.0f, (float)b/255.0f, (float)a/255.0f
void Render()
{
const ImVec4 clear_color = ImVec4(0.8627, 0.8431, 1, 1);
ImGui::Render();
int display_w, display_h;
glfwGetFramebufferSize(window, &display_w, &display_h);
glViewport(0, 0, display_w, display_h);
glClearColor(clear_color.x, clear_color.y, clear_color.z, clear_color.w);
glClear(GL_COLOR_BUFFER_BIT);
ImGui_ImplOpenGL3_RenderDrawData(ImGui::GetDrawData());
glfwSwapBuffers(window);
}
// Mouse MUST be inside the board !
std::pair<int, int> MouseCoordinatesToStonePosition(float x_, float y_)
{
return {
19 - (int)(y_ - upperLeftBoard_y) / cellSide - 1,
(int)(x_ - upperLeftBoard_x) / cellSide
};
}
std::pair<float, float> StonePositionToPrintCoorinates(std::pair<int, int> stone)
{
return {
upperLeftBoard_x + (stone.second * cellSide),
downRightBoard_y - (stone.first * cellSide) - 30
};
}
bool MouseInsideBoard()
{
const auto &mPt = ImGui::GetMousePos();
return upperLeftBoard_x <= mPt.x && mPt.x < downRightBoard_x
&& upperLeftBoard_y <= mPt.y && mPt.y < downRightBoard_y;
}
void ForbiddenCursor()
{
ImGui::SetMouseCursor(ImGuiMouseCursor_None);
ImGui::GetWindowDrawList()->AddImage(
(void*)(intptr_t)textures.at("forbidden").my_image_texture,
// Координата верхнего левого угла
ImVec2{ImGui::GetMousePos().x, ImGui::GetMousePos().y},
// Координата нижнего правого угла
ImVec2{ImGui::GetMousePos().x + 15, ImGui::GetMousePos().y + 15});
}
void DrawStone(float xCoordinate, float yCoordinate, int type)
{
if (type == 1)
ImGui::GetWindowDrawList()->AddImage(
(void*)(intptr_t)textures.at("fantom_stone_red").my_image_texture,
// Координата верхнего левого угла
ImVec2{ xCoordinate, yCoordinate },
// Координата нижнего правого угла
ImVec2{xCoordinate + textureCellSide, yCoordinate + textureCellSide});
else if (type == 2)
ImGui::GetWindowDrawList()->AddImage(
(void*)(intptr_t)textures.at("stone_red").my_image_texture,
ImVec2{xCoordinate, yCoordinate},
ImVec2{xCoordinate + textureCellSide, yCoordinate + textureCellSide});
else if (type == 3)
ImGui::GetWindowDrawList()->AddImage(
(void*)(intptr_t)textures.at("fantom_stone_blue").my_image_texture,
ImVec2{xCoordinate, yCoordinate},
ImVec2{xCoordinate + textureCellSide, yCoordinate + textureCellSide});
else if (type == 4)
ImGui::GetWindowDrawList()->AddImage(
(void*)(intptr_t)textures.at("stone_blue").my_image_texture,
ImVec2{xCoordinate, yCoordinate},
ImVec2{xCoordinate + textureCellSide, yCoordinate + textureCellSide});
}
void DrawStones(const Gomoku::Board &bs)
{
// Draw all stones on the board
for (int row = 0; row < Gomoku::Board::cells_in_line; row++)
for (int col = 0; col < Gomoku::Board::cells_in_line; col++)
{
auto stoneType = bs.At(row, col);
if (stoneType == Gomoku::Board::Side::White)
{
auto placeToDraw = GomokuDraw::StonePositionToPrintCoorinates({row, col});
GomokuDraw::DrawStone(placeToDraw.first, placeToDraw.second, 2);
}
else if (bs.At(row, col) == Gomoku::Board::Side::Black)
{
auto placeToDraw = GomokuDraw::StonePositionToPrintCoorinates({row, col});
GomokuDraw::DrawStone(placeToDraw.first, placeToDraw.second, 4);
}
}
}
static const char* items[] = { "Human", "AI1", "AI_Debug_5_3", "AI_Depth10", "AI_Easy", "AI_Debug_3_3", "AI_Eval"};
static int player1 = 0;
static int player2 = 1;
static bool enableEngine = true;
static char real_public_path[PATH_MAX + 1] = {0};
static float f0 = 1.0f, f1 = 2.0f, f2 = 3.0f;
void DrawGameMenu(Gomoku::Game &game)
{
ImGui::SetNextWindowSize(ImVec2{1259 - 660, 349 - 40});
ImGui::SetNextWindowPos(ImVec2{660, 40});
ImGui::Begin("Panel", nullptr, ImGuiWindowFlags_NoResize);
ImGui::PushItemWidth(100);
if (game.state_ != Gomoku::Game::State::Main)
MakeNextObjectInActive();
ImGui::BeginGroup();
ImGui::Combo("mode <-- Game --> time", &gameModeId, gameModes, IM_ARRAYSIZE(gameModes));
ImGui::SameLine();
ImGui::Combo("", &gameTimeId, gameTimes, IM_ARRAYSIZE(gameTimes));
ImGui::EndGroup();
if (game.state_ != Gomoku::Game::State::Main)
MakeNextObjectActive();
ImGui::Dummy(ImVec2(15.0f, 15.0f));
ImGui::BeginGroup();
{
GomokuDraw::DrawPlayer(game, true);
ImGui::SameLine();
GomokuDraw::DrawPlayer(game,false);
ImGui::Dummy(ImVec2(110.0f, 20.0f));
ImGui::Text("Games status: ");
ImGui::SameLine();
if (game.state_ == Gomoku::Game::State::Main)
{
ImGui::Text("Not started");
}
else if (game.state_ == Gomoku::Game::State::GameEndedWhiteWin)
{
ImGui::TextColored(ImVec4(0.75f, 0.0f, 0.0f, 1.0f), "Red Wins");
}
else if (game.state_ == Gomoku::Game::State::GameEndedBlackWin)
{
ImGui::TextColored(ImVec4(0.0f, 0.0f, 1.0f, 1.0f), "Blue Wins");
}
else if (game.state_ == Gomoku::Game::State::GameEndedDraw)
{
ImGui::TextColored(ImVec4(1.0f, 0.0f, 1.0f, 1.0f), "Draw");
}
else
{
ImGui::Text("In progress");
}
ImGui::Text("");
GomokuDraw::DrawButtons(game);
}
ImGui::EndGroup();
ImGui::SameLine();
ImGui::Dummy(ImVec2(60.0f, 1.0f));
ImGui::SameLine();
ImGui::BeginGroup();
{
GomokuDraw::DrawFilesButtons(game);
if (ImGui::TreeNode("Messages"))
{
{
ImGuiWindowFlags window_flags = ImGuiWindowFlags_HorizontalScrollbar;
ImGui::BeginChild("ChildL", ImVec2(ImGui::GetWindowContentRegionWidth() * 0.35f, 120), false, window_flags);
for (auto i = GomokuDraw::messages.begin(); i != GomokuDraw::messages.end(); ++i)
ImGui::Text("%s", (*i).c_str());
ImGui::EndChild();
}
ImGui::SameLine();
ImGui::Separator();
ImGui::TreePop();
}
}
ImGui::PopItemWidth();
ImGui::EndGroup();
ImGui::End();
}
void DrawPlayer(const Gomoku::Game &game, bool isWhite)
{
int count = game.board_.GetCapturePoints(!isWhite ? Gomoku::Board::Side::White : Gomoku::Board::Side::Black);
ImGui::BeginGroup();
{
{
ImDrawList* draw_list = ImGui::GetWindowDrawList();
ImVec2 pos = ImGui::GetCursorScreenPos();
for (int i = 0; i < 5; i++) {
ImVec2 marker_min = ImVec2(pos.x + 21 * i , pos.y);
ImVec2 marker_max = ImVec2(pos.x + 21 * i + 15, pos.y + 15);
int color = i > 4 - count ? 0 : 255;
draw_list->AddRectFilled(marker_min, marker_max, IM_COL32(isWhite ? color : 0, 0, isWhite ? 0 : color, 255));
}
ImGui::Dummy(ImVec2(15.0f, 4.0f));
}
ImGui::Text(" ");
if (game.state_ != Gomoku::Game::State::Main)
MakeNextObjectInActive();
if (isWhite)
ImGui::Combo(" ##1", &player1, items, IM_ARRAYSIZE(items));
else
ImGui::Combo(" ##2", &player2, items, IM_ARRAYSIZE(items));
if (game.state_ != Gomoku::Game::State::Main)
MakeNextObjectActive();
ImDrawList* draw_list = ImGui::GetWindowDrawList();
static float wrap_width = 70.0f;
ImGui::Text("Time left");
ImVec2 pos = ImGui::GetCursorScreenPos();
ImVec2 marker_min = ImVec2(pos.x, pos.y);
ImVec2 marker_max = ImVec2(pos.x + wrap_width, pos.y + 30);
draw_list->AddRectFilled(marker_min, marker_max, IM_COL32(170, 100, 50, 255));
if ((isWhite && game.board_.WhiteMove()) || (!isWhite && !game.board_.WhiteMove()))
draw_list->AddRect(marker_min, marker_max, IM_COL32(255, 255, 0, 255));
ImGui::PushTextWrapPos(ImGui::GetCursorPos().x + wrap_width);
ImGui::Dummy(ImVec2(15.0f, 4.0f));
if (isWhite)
ImGui::Text(" %s", game.clock_.GetTimeLeftWhite().c_str());
else
ImGui::Text(" %s", game.clock_.GetTimeLeftBlack().c_str());
ImGui::PopTextWrapPos();
ImGui::Dummy(ImVec2(15.0f, 10.0f));
ImGui::Text("Last move time:");
pos = ImGui::GetCursorScreenPos();
marker_min = ImVec2(pos.x, pos.y);
marker_max = ImVec2(pos.x + wrap_width, pos.y + 25);
draw_list->AddRectFilled(marker_min, marker_max, IM_COL32(50, 166, 20, 255));
ImGui::Dummy(ImVec2(15.0f, 2.0f));
ImGui::PushTextWrapPos(ImGui::GetCursorPos().x + wrap_width);
if (isWhite)
ImGui::Text(" %s", game.clock_.GetTimeSpentWhite().c_str());
else
ImGui::Text(" %s", game.clock_.GetTimeSpentBlack().c_str());
ImGui::PopTextWrapPos();
}
ImGui::EndGroup();
}
void DrawButtons(Gomoku::Game &game)
{
ImGui::BeginGroup();
{
// Start button
auto tmp = game.state_;
if (tmp == Gomoku::Game::State::GameInProcess
|| tmp == Gomoku::Game::State::GameEndedWhiteWin
|| tmp == Gomoku::Game::State::GameEndedBlackWin
|| tmp == Gomoku::Game::State::GameEndedDraw
)
MakeNextObjectInActive();
if (ImGui::Button("start"))
game.Go(items[player1], items[player2], gameModes[gameModeId], gameTimes[gameTimeId]);
if (tmp == Gomoku::Game::State::GameInProcess
|| tmp == Gomoku::Game::State::GameEndedWhiteWin
|| tmp == Gomoku::Game::State::GameEndedBlackWin
|| tmp == Gomoku::Game::State::GameEndedDraw)
MakeNextObjectActive();
// Pause button
ImGui::SameLine();
if (tmp == Gomoku::Game::State::Main || tmp == Gomoku::Game::State::GameInPause
|| tmp == Gomoku::Game::State::GameEndedWhiteWin
|| tmp == Gomoku::Game::State::GameEndedBlackWin
|| tmp == Gomoku::Game::State::GameEndedDraw)
MakeNextObjectInActive();
if (ImGui::Button("pause"))
game.Pause();
if (tmp == Gomoku::Game::State::Main || tmp == Gomoku::Game::State::GameInPause
|| tmp == Gomoku::Game::State::GameEndedWhiteWin
|| tmp == Gomoku::Game::State::GameEndedBlackWin
|| tmp == Gomoku::Game::State::GameEndedDraw)
MakeNextObjectActive();
// Stop button
ImGui::SameLine();
if (tmp == Gomoku::Game::State::Main)
MakeNextObjectInActive();
if (ImGui::Button("stop"))
game.Stop();
if (tmp == Gomoku::Game::State::Main)
MakeNextObjectActive();
// Restart button
ImGui::SameLine();
if (ImGui::Button("restart"))
{
game.Stop();
game.Go(items[player1], items[player2], gameModes[gameModeId], gameTimes[gameTimeId]);
}
// Takeback button
if (tmp != Gomoku::Game::State::GameInPause)
MakeNextObjectInActive();
ImGui::SameLine();
if (ImGui::Button("takeback"))
game.TakeBack();
if (tmp != Gomoku::Game::State::GameInPause)
MakeNextObjectActive();
}
ImGui::EndGroup();
}
static char *Path2Desktop()
{
if (real_public_path[0])
return real_public_path;
strcpy(real_public_path, getenv("HOME"));
memcpy(real_public_path + strlen(real_public_path), "/Desktop", 8);
return real_public_path;
}
void DrawFilesButtons(Gomoku::Game &game)
{
ImGui::Dummy(ImVec2(20.0f, 9.0f));
ImGui::BeginGroup();
if (ImGui::Button("save pos"))
{
std::stringstream fn;
auto t = std::time(nullptr);
auto tm = *std::localtime(&t);
fn << Path2Desktop()
<< "/gomoku_"
<< std::put_time(&tm, "%d-%m-%Y%H-%M-%S")
<< ".gg";
std::cerr << "path: " << fn.str() << std::endl;
std::ofstream ofs { fn.str() };
if (ofs.is_open())
ofs << game.board_ << std::endl;
else
std::cerr << "Cannot open file: " << fn.str() << std::endl;
}
ImGui::Dummy(ImVec2(20.0f, 4.0f));
if (game.state_ != Gomoku::Game::State::Main)
MakeNextObjectInActive();
if (ImGui::Button("load pos"))
fileDialogBoardPos.Open();
if (game.state_ != Gomoku::Game::State::Main)
MakeNextObjectActive();
fileDialogBoardPos.Display();
if(fileDialogBoardPos.HasSelected())
{
std::ifstream ifs { fileDialogBoardPos.GetSelected().string() };
if (ifs.is_open())
{
ifs >> game.board_;
std::cout << "//////AVL MOVES COUNT: " << game.board_.GetAvailableMoves().size() << std::endl;
}
else
std::cerr << "Cannot open file: " << fileDialogBoardPos.GetSelected().string() << std::endl;
fileDialogBoardPos.ClearSelected();
}
ImGui::EndGroup();
ImGui::SameLine();
ImGui::Dummy(ImVec2(20.0f, 1.0f));
ImGui::SameLine();
ImGui::BeginGroup();
if (ImGui::Button("save pgn"))
{
try
{
std::stringstream fn;
auto t = std::time(nullptr);
auto tm = *std::localtime(&t);
fn
<< Path2Desktop()
<< "/game_" << std::put_time(&tm, "%d-%m-%Y%H-%M-%S")
<< ".pgn";
std::ofstream ofs { fn.str() };
if (ofs.is_open())
ofs << game.board_.ToPgnString() << std::endl;
else
std::cerr << "Cannot open file: " << fn.str() << std::endl;
}
catch (std::exception &e)
{
std::cerr << "exception: " << e.what() << std::endl;
}
}
ImGui::Dummy(ImVec2(20.0f, 4.0f));
if (game.state_ != Gomoku::Game::State::Main)
MakeNextObjectInActive();
if (ImGui::Button("load pgn"))
fileDialogGame.Open();
if (game.state_ != Gomoku::Game::State::Main)
MakeNextObjectActive();
fileDialogGame.Display();
if(fileDialogGame.HasSelected())
{
std::ifstream ifs { fileDialogGame.GetSelected().string() };
if (ifs.is_open())
{
pgn::Game g;
ifs >> g;
std::cerr << "Loaded game" << std::endl << g << std::endl;
std::vector<std::pair<int, int>> moves;
for (const auto & move: g.moves())
{
if (move.white().valid())
moves.push_back(Gomoku::Board::StringToMove(move.white().str()));
if (move.black().valid())
moves.push_back(Gomoku::Board::StringToMove(move.black().str()));
}
try {
game.board_ = Gomoku::Board(moves);
} catch (const std::exception &e) {
std::cerr << e.what() << std::endl;
}
}
else
std::cerr << "Cannot open file: " << fileDialogBoardPos.GetSelected().string() << std::endl;
fileDialogGame.ClearSelected();
}
ImGui::EndGroup();
}
void DrawGameMoves(const Gomoku::Board &bs)
{
ImGui::SetNextWindowSize(ImVec2{1259 - 660, 679 - 370});
ImGui::SetNextWindowPos(ImVec2{660, 370}); // 1259, 679
ImGui::Begin("Game", nullptr);
int helper = 0;
for (int i = 0; i < bs.GetMovesList().size(); i += 2)
{
if (i + 1 < bs.GetMovesList().size())
TextWithColors( "{e6e600}% 3d. {ffffff}% 3s % 3s ",
i/2 + 1,
Gomoku::Board::MoveToString(bs.GetMovesList()[i]).c_str(),
Gomoku::Board::MoveToString(bs.GetMovesList()[i + 1]).c_str());
else
TextWithColors( "{e6e600}% 3d. {ffffff}% 3s ...",
i/2 + 1,
Gomoku::Board::MoveToString(bs.GetMovesList()[i]).c_str());
helper++;
ImGui::SameLine();
if (helper == 5)
{
ImGui::NewLine();
helper = 0;
}
}
ImGui::End();
}
void Cleanup()
{
ImGui_ImplOpenGL3_Shutdown();
ImGui_ImplGlfw_Shutdown();
ImGui::DestroyContext();
glfwDestroyWindow(window);
glfwTerminate();
}
void PrintMessage(const std::string& message)
{
GomokuDraw::messages.push_back(message);
}
}