Warning fixes found under hardest mode of OpenWatcom. Seems clean in Borland, MinGW...
[wxWidgets.git] / demos / forty / forty.cpp
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 wxWidgets 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"
32 #include "card.h"
33 #include "scoredg.h"
34
35 #if wxUSE_HTML
36 #include "wx/textfile.h"
37 #include "wx/html/htmlwin.h"
38 #endif
39
40 BEGIN_EVENT_TABLE(FortyFrame, wxFrame)
41 EVT_MENU(NEW_GAME, FortyFrame::NewGame)
42 EVT_MENU(wxID_EXIT, FortyFrame::Exit)
43 EVT_MENU(wxID_ABOUT, FortyFrame::About)
44 EVT_MENU(wxID_HELP_CONTENTS, FortyFrame::Help)
45 EVT_MENU(UNDO, FortyFrame::Undo)
46 EVT_MENU(REDO, FortyFrame::Redo)
47 EVT_MENU(SCORES, FortyFrame::Scores)
48 EVT_MENU(RIGHT_BUTTON_UNDO, FortyFrame::ToggleRightButtonUndo)
49 EVT_MENU(HELPING_HAND, FortyFrame::ToggleHelpingHand)
50 EVT_MENU(LARGE_CARDS, FortyFrame::ToggleCardSize)
51 EVT_CLOSE(FortyFrame::OnCloseWindow)
52 END_EVENT_TABLE()
53
54 // Create a new application object
55 IMPLEMENT_APP (FortyApp)
56
57 wxColour* FortyApp::m_backgroundColour = 0;
58 wxColour* FortyApp::m_textColour = 0;
59 wxBrush* FortyApp::m_backgroundBrush = 0;
60
61 FortyApp::~FortyApp()
62 {
63 delete m_backgroundColour;
64 delete m_textColour;
65 delete m_backgroundBrush;
66 delete Card::m_symbolBmap;
67 delete Card::m_pictureBmap;
68
69 }
70
71 bool FortyApp::OnInit()
72 {
73 bool largecards = false;
74 #ifndef __WXWINCE__
75 m_helpFile = wxGetCwd() + wxFILE_SEP_PATH + wxT("about.htm");
76 if (!wxFileExists(m_helpFile))
77 #endif
78 {
79 m_helpFile = wxPathOnly(argv[0]) + wxFILE_SEP_PATH + wxT("about.htm");
80 }
81
82 wxSize size(668,510);
83
84 if ((argc > 1) && (!wxStrcmp(argv[1],_T("-L"))))
85 {
86 largecards = true;
87 size = wxSize(1000,750);
88 }
89
90 FortyFrame* frame = new FortyFrame(
91 0,
92 _T("Forty Thieves"),
93 wxDefaultPosition,
94 size,
95 largecards
96 );
97
98 // Show the frame
99 frame->Show(true);
100
101 frame->GetCanvas()->ShowPlayerDialog();
102
103 return true;
104 }
105
106 const wxColour& FortyApp::BackgroundColour()
107 {
108 if (!m_backgroundColour)
109 {
110 m_backgroundColour = new wxColour(0, 128, 0);
111 }
112
113 return *m_backgroundColour;
114 }
115
116 const wxBrush& FortyApp::BackgroundBrush()
117 {
118 if (!m_backgroundBrush)
119 {
120 m_backgroundBrush = new wxBrush(BackgroundColour(), wxSOLID);
121 }
122
123 return *m_backgroundBrush;
124 }
125
126 const wxColour& FortyApp::TextColour()
127 {
128 if (!m_textColour)
129 {
130 m_textColour = new wxColour(_T("BLACK"));
131 }
132
133 return *m_textColour;
134 }
135
136 // My frame constructor
137 FortyFrame::FortyFrame(wxFrame* frame, const wxString& title, const wxPoint& pos, const wxSize& size, bool largecards):
138 wxFrame(frame, wxID_ANY, title, pos, size)
139 {
140 #ifdef __WXMAC__
141 wxApp::s_macAboutMenuItemId = wxID_ABOUT ;
142 #endif
143 // set the icon
144 #ifdef __WXMSW__
145 SetIcon(wxIcon(_T("CardsIcon")));
146 #else
147 #ifdef GTK_TBD
148 SetIcon(wxIcon(Cards_bits, Cards_width, Cards_height));
149 #endif
150 #endif
151
152 // Make a menu bar
153 wxMenu* gameMenu = new wxMenu;
154 gameMenu->Append(NEW_GAME, _T("&New"), _T("Start a new game"));
155 gameMenu->Append(SCORES, _T("&Scores..."), _T("Displays scores"));
156 gameMenu->Append(wxID_EXIT, _T("E&xit"), _T("Exits Forty Thieves"));
157
158 wxMenu* editMenu = new wxMenu;
159 editMenu->Append(UNDO, _T("&Undo"), _T("Undo the last move"));
160 editMenu->Append(REDO, _T("&Redo"), _T("Redo a move that has been undone"));
161
162 wxMenu* optionsMenu = new wxMenu;
163 optionsMenu->Append(RIGHT_BUTTON_UNDO,
164 _T("&Right button undo"),
165 _T("Enables/disables right mouse button undo and redo"),
166 true
167 );
168 optionsMenu->Append(HELPING_HAND,
169 _T("&Helping hand"),
170 _T("Enables/disables hand cursor when a card can be moved"),
171 true
172 );
173 optionsMenu->Append(LARGE_CARDS,
174 _T("&Large cards"),
175 _T("Enables/disables large cards for high resolution displays"),
176 true
177 );
178 optionsMenu->Check(HELPING_HAND, true);
179 optionsMenu->Check(RIGHT_BUTTON_UNDO, true);
180 optionsMenu->Check(LARGE_CARDS, largecards ? true : false);
181
182 wxMenu* helpMenu = new wxMenu;
183 helpMenu->Append(wxID_HELP_CONTENTS, _T("&Help Contents"), _T("Displays information about playing the game"));
184 helpMenu->Append(wxID_ABOUT, _T("&About..."), _T("About Forty Thieves"));
185
186 m_menuBar = new wxMenuBar;
187 m_menuBar->Append(gameMenu, _T("&Game"));
188 m_menuBar->Append(editMenu, _T("&Edit"));
189 m_menuBar->Append(optionsMenu, _T("&Options"));
190 m_menuBar->Append(helpMenu, _T("&Help"));
191
192 SetMenuBar(m_menuBar);
193
194 if (largecards)
195 Card::SetScale(1.3);
196
197 m_canvas = new FortyCanvas(this, wxDefaultPosition, size);
198
199 wxBoxSizer *topsizer = new wxBoxSizer( wxVERTICAL );
200 topsizer->Add( m_canvas, 1, wxEXPAND | wxALL, 0);
201 SetSizer( topsizer );
202 topsizer->SetSizeHints( this );
203
204 #if wxUSE_STATUSBAR
205 CreateStatusBar();
206 #endif // wxUSE_STATUSBAR
207 }
208
209 void FortyFrame::OnCloseWindow(wxCloseEvent& event)
210 {
211 if (m_canvas->OnCloseCanvas() )
212 {
213 this->Destroy();
214 }
215 else
216 event.Veto();
217 }
218
219 void
220 FortyFrame::NewGame(wxCommandEvent&)
221 {
222 m_canvas->NewGame();
223 }
224
225 void
226 FortyFrame::Exit(wxCommandEvent&)
227 {
228 Close(true);
229 }
230
231 void
232 FortyFrame::Help(wxCommandEvent& event)
233 {
234 #if wxUSE_HTML
235 if (wxFileExists(wxGetApp().GetHelpFile()))
236 {
237 FortyAboutDialog dialog(this, wxID_ANY, wxT("Forty Thieves Instructions"));
238 if (dialog.ShowModal() == wxID_OK)
239 {
240 }
241 }
242 else
243 #endif
244 {
245 About(event);
246 }
247 }
248
249 void
250 FortyFrame::About(wxCommandEvent&)
251 {
252 wxMessageBox(
253 _T("Forty Thieves\n\n")
254 _T("A free card game written with the wxWidgets toolkit\n")
255 _T("Author: Chris Breeze (c) 1992-2004\n")
256 _T("email: chris@breezesys.com"),
257 _T("About Forty Thieves"),
258 wxOK|wxICON_INFORMATION, this
259 );
260 }
261
262
263 void
264 FortyFrame::Undo(wxCommandEvent&)
265 {
266 m_canvas->Undo();
267 }
268
269 void
270 FortyFrame::Redo(wxCommandEvent&)
271 {
272 m_canvas->Redo();
273 }
274
275 void
276 FortyFrame::Scores(wxCommandEvent&)
277 {
278 m_canvas->UpdateScores();
279 ScoreDialog scores(this, m_canvas->GetScoreFile());
280 scores.Display();
281 }
282
283 void
284 FortyFrame::ToggleRightButtonUndo(wxCommandEvent& event)
285 {
286 bool checked = m_menuBar->IsChecked(event.GetId());
287 m_canvas->EnableRightButtonUndo(checked);
288 }
289
290 void
291 FortyFrame::ToggleHelpingHand(wxCommandEvent& event)
292 {
293 bool checked = m_menuBar->IsChecked(event.GetId());
294 m_canvas->EnableHelpingHand(checked);
295 }
296
297 void
298 FortyFrame::ToggleCardSize(wxCommandEvent& event)
299 {
300 bool checked = m_menuBar->IsChecked(event.GetId());
301 Card::SetScale(checked ? 1.3 : 1);
302 m_canvas->LayoutGame();
303 m_canvas->Refresh();
304 }
305
306 //----------------------------------------------------------------------------
307 // stAboutDialog
308 //----------------------------------------------------------------------------
309
310 BEGIN_EVENT_TABLE(FortyAboutDialog,wxDialog)
311 END_EVENT_TABLE()
312
313 FortyAboutDialog::FortyAboutDialog( wxWindow *parent, wxWindowID id, const wxString &title,
314 const wxPoint &position, const wxSize& size, long style ) :
315 wxDialog( parent, id, title, position, size, style )
316 {
317 AddControls(this);
318
319 Centre(wxBOTH);
320 }
321
322 bool FortyAboutDialog::AddControls(wxWindow* parent)
323 {
324 #if wxUSE_HTML
325 wxString htmlText;
326 wxString htmlFile = wxGetApp().GetHelpFile();
327
328 {
329 wxTextFile file(htmlFile);
330 if (file.Exists())
331 {
332 file.Open();
333 for ( htmlText = file.GetFirstLine();
334 !file.Eof();
335 htmlText << file.GetNextLine() << _T("\n") ) ;
336 }
337 }
338
339 if (htmlText.IsEmpty())
340 {
341 htmlText.Printf(wxT("<html><head><title>Warning</title></head><body><P>Sorry, could not find resource for About dialog<P></body></html>"));
342 }
343
344 // Customize the HTML
345 htmlText.Replace(wxT("$DATE$"), _T(__DATE__));
346
347 wxSize htmlSize(400, 290);
348
349 // Note: in later versions of wxWin this will be fixed so wxRAISED_BORDER
350 // does the right thing. Meanwhile, this is a workaround.
351 #ifdef __WXMSW__
352 long borderStyle = wxDOUBLE_BORDER;
353 #else
354 long borderStyle = wxRAISED_BORDER;
355 #endif
356
357 wxHtmlWindow* html = new wxHtmlWindow(this, ID_ABOUT_HTML_WINDOW, wxDefaultPosition, htmlSize, borderStyle);
358 html -> SetBorders(10);
359 html -> SetPage(htmlText);
360
361 //// Start of sizer-based control creation
362
363 wxSizer *item0 = new wxBoxSizer( wxVERTICAL );
364
365 wxWindow *item1 = parent->FindWindow( ID_ABOUT_HTML_WINDOW );
366 wxASSERT( item1 );
367 item0->Add( item1, 0, wxALIGN_CENTRE|wxALL, 5 );
368
369 wxButton *item2 = new wxButton( parent, wxID_CANCEL, _T("&Close"), wxDefaultPosition, wxDefaultSize, 0 );
370 item2->SetDefault();
371 item2->SetFocus();
372
373 item0->Add( item2, 0, wxALIGN_RIGHT|wxALL, 5 );
374
375 parent->SetSizer( item0 );
376 parent->Layout();
377 item0->Fit( parent );
378 item0->SetSizeHints( parent );
379 #endif
380
381 return true;
382 }
383