Initial app structure, added menu, dialogs, background drawing

This commit is contained in:
Dmitriy Shishkov 2022-03-24 10:44:33 +03:00
commit 6b03071119
No known key found for this signature in database
GPG Key ID: 14358F96FCDD8060
59 changed files with 281 additions and 0 deletions

8
.clang-uml Normal file
View File

@ -0,0 +1,8 @@
compilation_database_dir: build
output_directory: diagrams
generate_method_arguments: none
diagrams:
config_class:
type: class
glob:
- ./*.h

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
build/
class_diagram/
diagrams/

7
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,7 @@
{
"C_Cpp.default.includePath": [
"${default}",
"/usr/local/include/wx-3.1/",
"/usr/local/lib/wx/include/gtk3-unicode-3.1"
]
}

5
AboutDlg.cpp Normal file
View File

@ -0,0 +1,5 @@
#include "./AboutDlg.h"
AboutDlg::AboutDlg(wxWindow *parent, wxWindowID id) : wxDialog::wxDialog(parent, id, _("О программе"))
{
}

13
AboutDlg.h Normal file
View File

@ -0,0 +1,13 @@
#ifndef ABOUTDLG_H
#define ABOUTDLG_H
#include "./wxw.h"
class AboutDlg : public wxDialog
{
public:
AboutDlg(wxWindow *parent, wxWindowID id);
~AboutDlg() {};
};
#endif

12
App.cpp Normal file
View File

@ -0,0 +1,12 @@
#include "./App.h"
#include "./GameFrame.h"
wxIMPLEMENT_APP(MyApp);
bool MyApp::OnInit()
{
GameFrame *frame = new GameFrame();
frame->Show(true);
SetTopWindow(frame);
return true;
}

12
App.h Normal file
View File

@ -0,0 +1,12 @@
#ifndef APP_H_
#define APP_H_
#include "./wxw.h"
class MyApp : public wxApp
{
public:
virtual bool OnInit();
};
#endif

2
CREDITS Normal file
View File

@ -0,0 +1,2 @@
This game uses the following assets:
mahjong tiles by FluffyStuff ( https://github.com/FluffyStuff/riichi-mahjong-tiles ) licensed under CC BY 4.0

65
GameFrame.cpp Normal file
View File

@ -0,0 +1,65 @@
#include "./GameFrame.h"
#include "./HelpDlg.h"
#include "./RulesDlg.h"
#include "./AboutDlg.h"
BEGIN_EVENT_TABLE(GameFrame, wxFrame)
EVT_MENU(IDM_Exit, GameFrame::OnExit)
EVT_MENU(IDM_Help, GameFrame::OnHelp)
EVT_MENU(IDM_Rules, GameFrame::OnRules)
EVT_MENU(IDM_About, GameFrame::OnHelp)
EVT_PAINT(GameFrame::OnPaint)
END_EVENT_TABLE()
GameFrame::GameFrame()
: wxFrame(nullptr, wxID_ANY, _("Маджонг (пасьянс)"))
{
InitMenu();
}
void GameFrame::InitMenu() {
wxMenu *menuGame = new wxMenu;
menuGame->Append(IDM_New_Game, _("Начать сначала"));
menuGame->AppendSeparator();
menuGame->Append(IDM_Exit, _("Выход"));
wxMenu *menuHelp = new wxMenu;
menuHelp->Append(IDM_Help, _("Инструкция"));
menuHelp->Append(IDM_Rules, _("Правила игры"));
menuHelp->Append(IDM_About, _("О программе"));
wxMenuBar *menuBar = new wxMenuBar;
menuBar->Append(menuGame, _("Игра"));
menuBar->Append(menuHelp, _("Помощь"));
SetMenuBar(menuBar);
}
void GameFrame::OnExit(wxCommandEvent &event) {
Close();
}
void GameFrame::OnHelp(wxCommandEvent &event) {
HelpDlg *dlg = new HelpDlg(this, -1);
dlg->Show();
}
void GameFrame::OnRules(wxCommandEvent &event) {
RulesDlg *dlg = new RulesDlg(this, -1);
dlg->Show();
}
void GameFrame::OnAbout(wxCommandEvent &event) {
AboutDlg *dlg = new AboutDlg(this, -1);
dlg->Show();
}
void GameFrame::OnPaint(wxPaintEvent& event) {
wxPaintDC dc(this);
paint.drawTable(dc, GetSize());
}

38
GameFrame.h Normal file
View File

@ -0,0 +1,38 @@
#ifndef GAMEFRAME_H_
#define GAMEFRAME_H_
#include "./wxw.h"
#include "./Graphics.h"
/// @uml{style[#line.dotted:blue]}
class GameFrame : public wxFrame
{
public:
GameFrame();
private:
Graphics paint;
void InitMenu();
void OnExit(wxCommandEvent &event);
void OnHelp(wxCommandEvent &event);
void OnRules(wxCommandEvent &event);
void OnAbout(wxCommandEvent &event);
void OnPaint(wxPaintEvent& event);
DECLARE_EVENT_TABLE()
};
enum
{
IDM_Exit = wxID_EXIT,
IDM_Help = wxID_HELP,
IDM_About = wxID_ABOUT,
IDM_New_Game = 1,
IDM_Rules
};
#endif

9
Graphics.cpp Normal file
View File

@ -0,0 +1,9 @@
#include "./Graphics.h"
void Graphics::drawTable(wxDC& dc, wxSize wndSize) {
drawBG(dc, wndSize);
}
void Graphics::drawBG(wxDC& dc, wxSize wndSize) {
dc.GradientFillConcentric(wxRect(wxPoint(0, 0), wndSize), wxColor(7, 85, 45), wxColor(1, 45, 22));
}

15
Graphics.h Normal file
View File

@ -0,0 +1,15 @@
#ifndef GRAPHICS_H
#define GRAPHICS_H
#include "./wxw.h"
class Graphics {
public:
Graphics() {};
~Graphics() {};
void drawTable(wxDC& dc, wxSize wndSize);
void drawBG(wxDC& dc, wxSize wndSize);
};
#endif

5
HelpDlg.cpp Normal file
View File

@ -0,0 +1,5 @@
#include "./HelpDlg.h"
HelpDlg::HelpDlg(wxWindow *parent, wxWindowID id) : wxDialog::wxDialog(parent, id, _("Инструкция по использованию программы"))
{
}

13
HelpDlg.h Normal file
View File

@ -0,0 +1,13 @@
#ifndef HELPDLG_H
#define HELPDLG_H
#include "./wxw.h"
class HelpDlg : public wxDialog
{
public:
HelpDlg(wxWindow *parent, wxWindowID id);
~HelpDlg() {};
};
#endif

7
LICENSE Normal file
View File

@ -0,0 +1,7 @@
Copyright 2022 dm1sh
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

18
Makefile Normal file
View File

@ -0,0 +1,18 @@
# CXX = $(shell wx-config --cxx)
CXX = clang++
PROGRAM = wxMahjong
BDIR = build
OBJECTS := $(addprefix $(BDIR)/,$(patsubst %.cpp,%.o,$(wildcard *.cpp)))
$(BDIR)/%.o: %.cpp
$(CXX) -c `wx-config --cxxflags` -o $@ $<
all: $(PROGRAM)
$(PROGRAM): $(OBJECTS)
$(CXX) -o $(BDIR)/$(PROGRAM) $(OBJECTS) `wx-config --libs`
clean:
rm -f $(BDIR)/*.o $(PROGRAM)

5
RulesDlg.cpp Normal file
View File

@ -0,0 +1,5 @@
#include "./RulesDlg.h"
RulesDlg::RulesDlg(wxWindow *parent, wxWindowID id) : wxDialog::wxDialog(parent, id, _("Правила игры"))
{
}

13
RulesDlg.h Normal file
View File

@ -0,0 +1,13 @@
#ifndef RULESDLG_H
#define RULESDLG_H
#include "./wxw.h"
class RulesDlg : public wxDialog
{
public:
RulesDlg(wxWindow *parent, wxWindowID id);
~RulesDlg() {};
};
#endif

BIN
resources/tiles/Back.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

BIN
resources/tiles/Blank.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
resources/tiles/Chun.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
resources/tiles/Front.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
resources/tiles/Haku.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

BIN
resources/tiles/Hatsu.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

BIN
resources/tiles/Man1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

BIN
resources/tiles/Man2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

BIN
resources/tiles/Man3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

BIN
resources/tiles/Man4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

BIN
resources/tiles/Man5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

BIN
resources/tiles/Man6.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

BIN
resources/tiles/Man7.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

BIN
resources/tiles/Man8.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

BIN
resources/tiles/Man9.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

BIN
resources/tiles/Nan.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

BIN
resources/tiles/Pei.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

BIN
resources/tiles/Pin1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

BIN
resources/tiles/Pin2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

BIN
resources/tiles/Pin3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

BIN
resources/tiles/Pin4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

BIN
resources/tiles/Pin5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

BIN
resources/tiles/Pin6.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

BIN
resources/tiles/Pin7.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 KiB

BIN
resources/tiles/Pin8.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 KiB

BIN
resources/tiles/Pin9.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

BIN
resources/tiles/Shaa.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

BIN
resources/tiles/Sou1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 89 KiB

BIN
resources/tiles/Sou2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
resources/tiles/Sou3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

BIN
resources/tiles/Sou4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

BIN
resources/tiles/Sou5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

BIN
resources/tiles/Sou6.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

BIN
resources/tiles/Sou7.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

BIN
resources/tiles/Sou8.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

BIN
resources/tiles/Sou9.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

BIN
resources/tiles/Ton.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

31
wxw.h Normal file
View File

@ -0,0 +1,31 @@
#ifndef WXW_H_
#define WXW_H_
#include <wx/wxprec.h>
#ifndef WX_PRECOMP
#include <wx/wx.h>
#endif
#ifdef _
#undef _
#endif
#define _(s) wxString::FromUTF8(s)
// class wxTrackable {};
// class wxObject {};
// class wxEventHandler : wxObject, wxTrackable {};
// class wxEventFilter {};
// class wxAppConsole : wxEventHandler, wxEventFilter {};
// class wxApp : wxAppConsole {};
// class wxWindow : wxEventHandler {};
// class wxNotOwnedWindow : wxWindow {};
// class wxTopLevelWindow : wxNotOwnedWindow {};
// class wxFrame : wxTopLevelWindow {};
// class wxCommandEvent {};
// #define DECLARE_EVENT_TABLE() void none();
#endif