]> git.saurik.com Git - wxWidgets.git/blame - demos/forty/forty.cpp
Further fixes to references
[wxWidgets.git] / demos / forty / forty.cpp
CommitLineData
63cafd27
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: forty.cpp
3// Purpose: Forty Thieves patience game
4// Author: Chris Breeze
5// Modified by:
6// Created: 21/07/97
7// RCS-ID: $Id$
8// Copyright: (c) 1993-1998 Chris Breeze
9// Licence: wxWindows licence
10//---------------------------------------------------------------------------
11// Last modified: 22nd July 1998 - ported to wxWindows 2.0
12/////////////////////////////////////////////////////////////////////////////
13
14#ifdef __GNUG__
15#pragma implementation
16#pragma interface
17#endif
18
19// For compilers that support precompilation, includes "wx/wx.h".
20#include "wx/wxprec.h"
21
22#ifdef __BORLANDC__
23#pragma hdrstop
24#endif
25
26#ifndef WX_PRECOMP
27#include "wx/wx.h"
28#endif
29
30#include "canvas.h"
31#include "forty.h"
fc799548 32#include "card.h"
63cafd27 33#include "scoredg.h"
63cafd27
JS
34
35BEGIN_EVENT_TABLE(FortyFrame, wxFrame)
36 EVT_MENU(NEW_GAME, FortyFrame::NewGame)
37 EVT_MENU(EXIT, FortyFrame::Exit)
38 EVT_MENU(ABOUT, FortyFrame::About)
39 EVT_MENU(UNDO, FortyFrame::Undo)
40 EVT_MENU(REDO, FortyFrame::Redo)
41 EVT_MENU(SCORES, FortyFrame::Scores)
42 EVT_MENU(RIGHT_BUTTON_UNDO, FortyFrame::ToggleRightButtonUndo)
43 EVT_MENU(HELPING_HAND, FortyFrame::ToggleHelpingHand)
fc799548 44 EVT_MENU(LARGE_CARDS, FortyFrame::ToggleCardSize)
e3065973 45 EVT_CLOSE(FortyFrame::OnCloseWindow)
63cafd27
JS
46END_EVENT_TABLE()
47
48// Create a new application object
49IMPLEMENT_APP (FortyApp)
50
51wxColour* FortyApp::m_backgroundColour = 0;
52wxColour* FortyApp::m_textColour = 0;
53wxBrush* FortyApp::m_backgroundBrush = 0;
54
15bee36f
JS
55FortyApp::FortyApp()
56{
57}
58
59FortyApp::~FortyApp()
60{
61 delete m_backgroundColour;
62 delete m_textColour;
63 delete m_backgroundBrush;
64 delete Card::m_symbolBmap;
65 delete Card::m_pictureBmap;
66
67}
68
63cafd27
JS
69bool FortyApp::OnInit()
70{
fc799548
JS
71 bool largecards = FALSE;
72 wxSize size(668,510);
73
74 if ((argc > 1) && (!wxStrcmp(argv[1],"-L")))
75 {
76 largecards = TRUE;
77 size = wxSize(1000,750);
78 }
79
63cafd27
JS
80 FortyFrame* frame = new FortyFrame(
81 0,
82 "Forty Thieves",
fc799548 83 -1, -1, size.x, size.y,largecards
63cafd27
JS
84 );
85
cba2db0c 86 // Show the frame
63cafd27
JS
87 frame->Show(TRUE);
88
868741e9
JS
89 frame->GetCanvas()->ShowPlayerDialog();
90
1e6d9499 91 return TRUE;
63cafd27
JS
92}
93
79490c3d 94const wxColour& FortyApp::BackgroundColour()
63cafd27
JS
95{
96 if (!m_backgroundColour)
97 {
98 m_backgroundColour = new wxColour(0, 128, 0);
99 }
79490c3d
VZ
100
101 return *m_backgroundColour;
63cafd27
JS
102}
103
79490c3d 104const wxBrush& FortyApp::BackgroundBrush()
63cafd27
JS
105{
106 if (!m_backgroundBrush)
107 {
16553659 108 m_backgroundBrush = new wxBrush(BackgroundColour(), wxSOLID);
63cafd27 109 }
79490c3d
VZ
110
111 return *m_backgroundBrush;
63cafd27
JS
112}
113
79490c3d 114const wxColour& FortyApp::TextColour()
63cafd27
JS
115{
116 if (!m_textColour)
117 {
118 m_textColour = new wxColour("BLACK");
119 }
79490c3d
VZ
120
121 return *m_textColour;
63cafd27
JS
122}
123
124// My frame constructor
fc799548 125FortyFrame::FortyFrame(wxFrame* frame, char* title, int x, int y, int w, int h,bool largecards):
63cafd27
JS
126 wxFrame(frame, -1, title, wxPoint(x, y), wxSize(w, h))
127{
8fbb465f
SC
128#ifdef __WXMAC__
129 // we need this in order to allow the about menu relocation, since ABOUT is not the default id of the about menu
130 wxApp::s_macAboutMenuItemId = ABOUT ;
131#endif
63cafd27
JS
132 // set the icon
133#ifdef __WXMSW__
16553659 134 SetIcon(wxIcon("CardsIcon"));
63cafd27
JS
135#else
136#ifdef GTK_TBD
16553659 137 SetIcon(wxIcon(Cards_bits, Cards_width, Cards_height));
63cafd27
JS
138#endif
139#endif
140
141 // Make a menu bar
142 wxMenu* gameMenu = new wxMenu;
143 gameMenu->Append(NEW_GAME, "&New", "Start a new game");
144 gameMenu->Append(SCORES, "&Scores...", "Displays scores");
145 gameMenu->Append(EXIT, "E&xit", "Exits Forty Thieves");
146
147 wxMenu* editMenu = new wxMenu;
148 editMenu->Append(UNDO, "&Undo", "Undo the last move");
149 editMenu->Append(REDO, "&Redo", "Redo a move that has been undone");
150
151 wxMenu* optionsMenu = new wxMenu;
152 optionsMenu->Append(RIGHT_BUTTON_UNDO,
153 "&Right button undo",
154 "Enables/disables right mouse button undo and redo",
155 TRUE
156 );
157 optionsMenu->Append(HELPING_HAND,
158 "&Helping hand",
159 "Enables/disables hand cursor when a card can be moved",
160 TRUE
161 );
fc799548
JS
162 optionsMenu->Append(LARGE_CARDS,
163 "&Large cards",
164 "Enables/disables large cards for high resolution displays",
165 TRUE
166 );
63cafd27
JS
167 optionsMenu->Check(HELPING_HAND, TRUE);
168 optionsMenu->Check(RIGHT_BUTTON_UNDO, TRUE);
fc799548 169 optionsMenu->Check(LARGE_CARDS, largecards ? TRUE : FALSE);
63cafd27
JS
170
171 wxMenu* helpMenu = new wxMenu;
172 helpMenu->Append(ABOUT, "&About", "Displays program version information");
173
174 m_menuBar = new wxMenuBar;
175 m_menuBar->Append(gameMenu, "&Game");
176 m_menuBar->Append(editMenu, "&Edit");
177 m_menuBar->Append(optionsMenu, "&Options");
178 m_menuBar->Append(helpMenu, "&Help");
179
180 SetMenuBar(m_menuBar);
181
fc799548
JS
182 if (largecards)
183 Card::SetScale(1.3);
184
63cafd27
JS
185 m_canvas = new FortyCanvas(this, 0, 0, 400, 400);
186 wxLayoutConstraints* constr = new wxLayoutConstraints;
187 constr->left.SameAs(this, wxLeft);
188 constr->top.SameAs(this, wxTop);
189 constr->right.SameAs(this, wxRight);
190 constr->height.SameAs(this, wxHeight);
191 m_canvas->SetConstraints(constr);
192
193 CreateStatusBar();
194}
195
196FortyFrame::~FortyFrame()
197{
198}
199
e3065973 200void FortyFrame::OnCloseWindow(wxCloseEvent& event)
63cafd27 201{
cba2db0c 202 if (m_canvas->OnCloseCanvas() )
e3065973
JS
203 {
204 this->Destroy();
205 }
206 else
207 event.Veto();
63cafd27
JS
208}
209
210void
211FortyFrame::NewGame(wxCommandEvent&)
212{
213 m_canvas->NewGame();
214}
215
216void
217FortyFrame::Exit(wxCommandEvent&)
218{
219#ifdef __WXGTK__
220 // wxGTK doesn't call OnClose() so we do it here
e3065973 221// if (OnClose())
63cafd27
JS
222#endif
223 Close(TRUE);
224}
225
226void
227FortyFrame::About(wxCommandEvent&)
228{
229 wxMessageBox(
230 "Forty Thieves\n\n"
231 "A freeware program using the wxWindows\n"
232 "portable C++ GUI toolkit.\n"
281b0186 233 "http://www.wxwindows.org\n"
63cafd27
JS
234 "http://www.freiburg.linux.de/~wxxt\n\n"
235 "Author: Chris Breeze (c) 1992-1998\n"
236 "email: chris.breeze@iname.com",
237 "About Forty Thieves",
238 wxOK, this
239 );
240}
241
242void
243FortyFrame::Undo(wxCommandEvent&)
244{
245 m_canvas->Undo();
246}
247
248void
249FortyFrame::Redo(wxCommandEvent&)
250{
251 m_canvas->Redo();
252}
253
254void
255FortyFrame::Scores(wxCommandEvent&)
256{
257 m_canvas->UpdateScores();
258 ScoreDialog scores(this, m_canvas->GetScoreFile());
259 scores.Display();
260}
261
262void
263FortyFrame::ToggleRightButtonUndo(wxCommandEvent& event)
264{
265 bool checked = m_menuBar->IsChecked(event.GetId());
266 m_canvas->EnableRightButtonUndo(checked);
267}
268
269void
270FortyFrame::ToggleHelpingHand(wxCommandEvent& event)
271{
272 bool checked = m_menuBar->IsChecked(event.GetId());
273 m_canvas->EnableHelpingHand(checked);
274}
fc799548
JS
275
276void
277FortyFrame::ToggleCardSize(wxCommandEvent& event)
278{
279 bool checked = m_menuBar->IsChecked(event.GetId());
280 Card::SetScale(checked ? 1.3 : 1);
281 m_canvas->LayoutGame();
282 m_canvas->Refresh();
283}
284
285