Added game finished message

This commit is contained in:
Dmitriy Shishkov 2022-05-28 18:56:32 +03:00
parent 19e1e546ee
commit 827f3ccdf6
No known key found for this signature in database
GPG Key ID: 26720CB2A9608C97
3 changed files with 47 additions and 3 deletions

View File

@ -2,6 +2,7 @@
#include <wx/dcbuffer.h>
#include "events.h"
#include "utils.h"
// clang-format off
@ -82,9 +83,20 @@ void GamePanel::OnResize(wxSizeEvent& _) {
Refresh();
}
wxDEFINE_EVENT(END_EVT, wxCommandEvent);
void GamePanel::OnTimer(wxTimerEvent& _) {
controller.stopwatch += 1;
sb->SetStatusText(LTimeToStr(controller.stopwatch), 0);
if (controller.remaining == 0) {
wxCommandEvent event(END_EVT);
event.SetString(LTimeToStr(controller.stopwatch));
wxPostEvent(GetParent(), event);
timer.Stop();
controller.stopwatch = 0;
}
}
void GamePanel::OnClick(wxMouseEvent& _) {
@ -94,6 +106,8 @@ void GamePanel::OnClick(wxMouseEvent& _) {
drawer.composeBoard(controller.getTable(), controller.gridSize);
wxLogDebug(wxString::Format(_("Remaining %i"), controller.remaining));
Refresh();
}
}

View File

@ -4,6 +4,8 @@
#include "HelpDlg.h"
#include "RulesDlg.h"
#include "events.h"
#include "resources/icon.xpm"
MainFrame::MainFrame()
@ -23,6 +25,19 @@ MainFrame::MainFrame()
});
});
Bind(END_EVT, [this](wxCommandEvent& evt) -> void {
wxMessageDialog dlg(this, _("Хотите сыграть снова?"),
_("Игра окончена"), wxYES_NO);
dlg.SetExtendedMessage(_("Поздравляем, вы закончили игру за ") +
evt.GetString());
if (dlg.ShowModal() == wxID_YES) {
panel->Start(layoutPath, solveable,
[this](const wxSize& size) -> void {
this->SetMinClientSize(size);
});
}
});
CreateStatusBar(2);
panel = new GamePanel(this);
@ -71,17 +86,23 @@ void MainFrame::bindMenu() {
Bind(
wxEVT_MENU,
[this](wxCommandEvent& _) -> void { (new HelpDlg(this, -1))->Show(); },
[this](wxCommandEvent& _) -> void {
(new HelpDlg(this, wxID_ANY))->Show();
},
IDM_Help);
Bind(
wxEVT_MENU,
[this](wxCommandEvent& _) -> void { (new AboutDlg(this, -1))->Show(); },
[this](wxCommandEvent& _) -> void {
(new AboutDlg(this, wxID_ANY))->Show();
},
IDM_About);
Bind(
wxEVT_MENU,
[this](wxCommandEvent& _) -> void { (new RulesDlg(this, -1))->Show(); },
[this](wxCommandEvent& _) -> void {
(new RulesDlg(this, wxID_ANY))->Show();
},
IDM_Rules);
Bind(

9
events.h Normal file
View File

@ -0,0 +1,9 @@
#ifndef EVENTS_H
#define EVENTS_H
#include "wxw.h"
wxDECLARE_EVENT(START_EVT, wxCommandEvent);
wxDECLARE_EVENT(END_EVT, wxCommandEvent);
#endif