]> git.saurik.com Git - wxWidgets.git/blame - demos/forty/card.cpp
regenerated all makefiles with bakefile 0.2.0; removed REZ option from config.bkl...
[wxWidgets.git] / demos / forty / card.cpp
CommitLineData
63cafd27
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: card.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
010216e3 9// Licence: wxWindows licence
63cafd27 10//---------------------------------------------------------------------------
be5a51fb 11// Last modified: 22nd July 1998 - ported to wxWidgets 2.0
63cafd27
JS
12/////////////////////////////////////////////////////////////////////////////
13//+-------------------------------------------------------------+
e3e65dac 14//| Description
010216e3
WS
15//| A class for drawing playing cards.
16//| Currently assumes that the card symbols have been
17//| loaded into hbmap_symbols and the pictures for the
18//| Jack, Queen and King have been loaded into
19//| hbmap_pictures.
63cafd27
JS
20//+-------------------------------------------------------------+
21
63cafd27
JS
22// For compilers that support precompilation, includes "wx/wx.h".
23#include "wx/wxprec.h"
24
25#ifdef __BORLANDC__
26#pragma hdrstop
27#endif
28
29#ifndef WX_PRECOMP
30#include "wx/wx.h"
31#endif
32
33#include <stdlib.h>
34#include <stdio.h>
35#include <string.h>
36#include "forty.h"
37#include "card.h"
38
5f4d35b8 39#ifndef __WXMSW__
63cafd27
JS
40#include "pictures.xpm"
41#include "symbols.xbm"
42#endif
43
44wxBitmap* Card::m_pictureBmap = 0;
45wxBitmap* Card::m_symbolBmap = 0;
46
fc799548
JS
47double Card::m_scale = 1.0;
48int Card::m_width = 50;
49int Card::m_height = 70;
63cafd27
JS
50
51//+-------------------------------------------------------------+
010216e3 52//| Card::Card() |
63cafd27 53//+-------------------------------------------------------------+
010216e3
WS
54//| Description: |
55//| Constructor for a playing card. |
56//| Checks that the value is in the range 1..52 and then |
57//| initialises the suit, colour, pipValue and wayUp. |
63cafd27
JS
58//+-------------------------------------------------------------+
59Card::Card(int value, WayUp way_up) :
010216e3 60 m_wayUp(way_up)
63cafd27 61{
010216e3
WS
62 if (!m_symbolBmap)
63 {
63cafd27 64#ifdef __WXMSW__
010216e3 65 m_symbolBmap = new wxBitmap(_T("CardSymbols"), wxBITMAP_TYPE_BMP_RESOURCE);
63cafd27 66#else
010216e3 67 m_symbolBmap = new wxBitmap(Symbols_bits, Symbols_width, Symbols_height);
63cafd27 68#endif
010216e3
WS
69 if (!m_symbolBmap->Ok())
70 {
71 ::wxMessageBox(_T("Failed to load bitmap CardSymbols"), _T("Error"));
72 }
73 }
74 if (!m_pictureBmap)
75 {
63cafd27 76#ifdef __WXMSW__
010216e3 77 m_pictureBmap = new wxBitmap(_T("CardPictures"), wxBITMAP_TYPE_BMP_RESOURCE);
63cafd27 78#else
010216e3 79 m_pictureBmap = new wxBitmap(Pictures);
63cafd27 80#endif
010216e3
WS
81 if (!m_pictureBmap->Ok())
82 {
83 ::wxMessageBox(_T("Failed to load bitmap CardPictures"), _T("Error"));
84 }
85 }
63cafd27
JS
86
87 if (value >= 1 && value <= PackSize)
88 {
010216e3
WS
89 switch ((value - 1) / 13)
90 {
91 case 0:
92 m_suit = clubs;
93 m_colour = black;
94 break;
95 case 1:
96 m_suit = diamonds;
97 m_colour = red;
98 break;
99 case 2:
100 m_suit = hearts;
101 m_colour = red;
102 break;
103 case 3:
104 m_suit = spades;
105 m_colour = black;
106 break;
107 }
108 m_pipValue = 1 + (value - 1) % 13;
109 m_status = true;
63cafd27
JS
110 }
111 else
112 {
e0b5519a 113 m_status = false;
63cafd27
JS
114 }
115} // Card::Card()
116
117
fc799548 118//+-------------------------------------------------------------+
010216e3 119//| Card::SetScale() |
fc799548 120//+-------------------------------------------------------------+
010216e3
WS
121//| Description: |
122//| Scales the cards |
fc799548
JS
123//+-------------------------------------------------------------+
124void Card::SetScale(double scale)
125{
126 m_scale = scale;
127 m_width = int(50*scale);
128 m_height = int(70*scale);
129}
130
63cafd27 131//+-------------------------------------------------------------+
010216e3 132//| Card::Erase() |
63cafd27 133//+-------------------------------------------------------------+
010216e3
WS
134//| Description: |
135//| Erase the card at (x, y) by drawing a rectangle in the |
136//| background colour. |
63cafd27
JS
137//+-------------------------------------------------------------+
138void Card::Erase(wxDC& dc, int x, int y)
139{
010216e3
WS
140 wxPen* pen = wxThePenList->FindOrCreatePen(
141 FortyApp::BackgroundColour(),
142 1,
143 wxSOLID
144 );
145 dc.SetPen(* pen);
146 dc.SetBrush(FortyApp::BackgroundBrush());
fc799548 147 dc.DrawRectangle(x, y, m_width, m_height);
63cafd27
JS
148} // Card::Erase()
149
150
151//+-------------------------------------------------------------+
010216e3 152//| Card::Draw() |
63cafd27 153//+-------------------------------------------------------------+
010216e3
WS
154//| Description: |
155//| Draw the card at (x, y). |
156//| If the card is facedown draw the back of the card. |
157//| If the card is faceup draw the front of the card. |
158//| Cards are not held in bitmaps, instead they are drawn |
159//| from their constituent parts when required. |
160//| hbmap_symbols contains large and small suit symbols and |
161//| pip values. These are copied to the appropriate part of |
162//| the card. Picture cards use the pictures defined in |
163//| hbmap_pictures. Note that only one picture is defined |
164//| for the Jack, Queen and King, unlike a real pack where |
165//| each suit is different. |
166//| |
167//| WARNING: |
168//| The locations of these symbols is 'hard-wired' into the |
169//| code. Editing the bitmaps or the numbers below will |
170//| result in the wrong symbols being displayed. |
63cafd27
JS
171//+-------------------------------------------------------------+
172void Card::Draw(wxDC& dc, int x, int y)
173{
010216e3
WS
174 wxBrush backgroundBrush( dc.GetBackground() );
175 dc.SetBrush(* wxWHITE_BRUSH);
176 dc.SetPen(* wxBLACK_PEN);
fc799548 177 dc.DrawRoundedRectangle(x, y, m_width, m_height, 4);
010216e3
WS
178 if (m_wayUp == facedown)
179 {
180 dc.SetBackground(* wxRED_BRUSH);
181 dc.SetBackgroundMode(wxSOLID);
182 wxBrush* brush = wxTheBrushList->FindOrCreateBrush(
183 _T("BLACK"), wxCROSSDIAG_HATCH
184 );
185 dc.SetBrush(* brush);
186
187 dc.DrawRoundedRectangle(
188 x + 4, y + 4,
189 m_width - 8, m_height - 8,
190 2
191 );
192 }
193 else
194 {
195 wxMemoryDC memoryDC;
196
197 memoryDC.SelectObject(*m_symbolBmap);
198
199// dc.SetBackgroundMode(wxTRANSPARENT);
200
201 dc.SetTextBackground(*wxWHITE);
202 switch (m_suit)
203 {
204 case spades:
205 case clubs:
206 dc.SetTextForeground(*wxBLACK);
207 break;
208 case diamonds:
209 case hearts:
210 dc.SetTextForeground(*wxRED);
211 break;
212 }
213
214 int symsize = 11;
215 int sympos = 14;
216 int sympos2 = 25;
217 int symdist = 5;
218 int symdist2 = 6;
219
220 int pipsize,pippos,valueheight,valuewidth;
221 int valuepos;
222 if (m_scale > 1.2)
223 {
224 pipsize = symsize;
225 pippos = sympos;
226 valueheight = 10;
227 valuewidth = 9;
228 valuepos = 50;
229 }
230 else
231 {
232 pipsize = 7;
233 pippos = 0;
234 valueheight = 7;
235 valuewidth = 6;
236 valuepos = 36;
237 }
238
239 // Draw the value
240 dc.Blit((wxCoord)(x + m_scale*3),
241 (wxCoord)(y + m_scale*3),
254a2129 242 valuewidth,
010216e3 243 valueheight,
254a2129
WS
244 &memoryDC,
245 valuewidth * (m_pipValue - 1),
246 valuepos,
010216e3 247 wxCOPY);
254a2129 248 dc.Blit((wxCoord)(x + m_width - m_scale*3 - valuewidth),
010216e3 249 (wxCoord)(y + m_height - valueheight - m_scale*3),
254a2129 250 valuewidth,
010216e3 251 valueheight,
254a2129
WS
252 &memoryDC,
253 valuewidth * (m_pipValue - 1),
254 valuepos+valueheight,
010216e3
WS
255 wxCOPY);
256
257 // Draw the pips
254a2129
WS
258 dc.Blit((wxCoord)(x + m_scale*3 + valuewidth+2),
259 (wxCoord)(y + m_scale*3),
010216e3 260 pipsize,
254a2129
WS
261 pipsize,
262 &memoryDC,
263 pipsize * m_suit,
264 pippos,
010216e3 265 wxCOPY);
254a2129 266 dc.Blit((wxCoord)(x + m_width - m_scale*3-valuewidth-pipsize-2),
010216e3 267 (wxCoord)(y + m_height - pipsize - m_scale*3),
010216e3 268 pipsize,
254a2129
WS
269 pipsize,
270 &memoryDC,
271 pipsize * m_suit,
272 pipsize+pippos,
010216e3
WS
273 wxCOPY);
274
275 switch (m_pipValue)
276 {
277 case 1:
254a2129
WS
278 dc.Blit((wxCoord)(x - symdist + m_width / 2),
279 (wxCoord)(y - m_scale*5 + m_height / 2),
280 symsize,
010216e3 281 symsize,
254a2129
WS
282 &memoryDC,
283 symsize * m_suit,
284 sympos,
010216e3
WS
285 wxCOPY);
286 break;
287
288 case 3:
254a2129
WS
289 dc.Blit((wxCoord)(x - symdist + m_width / 2),
290 (wxCoord)(y - symdist + m_height / 2),
010216e3 291 symsize,
254a2129
WS
292 symsize,
293 &memoryDC,
294 symsize * m_suit,
295 sympos,
010216e3
WS
296 wxCOPY);
297 case 2:
298 dc.Blit((wxCoord)(x - symdist + m_width / 2),
254a2129
WS
299 (wxCoord)(y - symdist + m_height / 4),
300 symsize,
010216e3 301 symsize,
254a2129
WS
302 &memoryDC,
303 symsize * m_suit,
304 sympos,
010216e3
WS
305 wxCOPY);
306 dc.Blit((wxCoord)(x - symdist + m_width / 2),
254a2129
WS
307 (wxCoord)(y - symdist + 3 * m_height / 4),
308 symsize,
010216e3 309 symsize,
254a2129
WS
310 &memoryDC,
311 symsize * m_suit,
312 sympos2,
010216e3
WS
313 wxCOPY);
314 break;
315
316 case 5:
254a2129
WS
317 dc.Blit((wxCoord)(x - symdist + m_width / 2),
318 (wxCoord)(y - symdist + m_height / 2),
319 symsize,
010216e3 320 symsize,
254a2129
WS
321 &memoryDC,
322 symsize * m_suit,
323 sympos,
010216e3
WS
324 wxCOPY);
325 case 4:
326 dc.Blit((wxCoord)(x - symdist + m_width / 4),
254a2129
WS
327 (wxCoord)(y - symdist + m_height / 4),
328 symsize,
010216e3 329 symsize,
254a2129
WS
330 &memoryDC,
331 symsize * m_suit,
332 sympos,
010216e3
WS
333 wxCOPY);
334 dc.Blit((wxCoord)(x - symdist + m_width / 4),
254a2129 335 (wxCoord)(y - symdist + 3 * m_height / 4),
010216e3 336 symsize,
254a2129
WS
337 symsize,
338 &memoryDC,
339 symsize * m_suit,
340 sympos2,
010216e3
WS
341 wxCOPY);
342 dc.Blit((wxCoord)(x - symdist + 3 * m_width / 4),
254a2129
WS
343 (wxCoord)(y - symdist + m_height / 4),
344 symsize,
010216e3 345 symsize,
254a2129
WS
346 &memoryDC,
347 symsize * m_suit,
348 sympos,
010216e3
WS
349 wxCOPY);
350 dc.Blit((wxCoord)(x - symdist + 3 * m_width / 4),
254a2129 351 (wxCoord)(y - symdist + 3 * m_height / 4),
010216e3 352 symsize,
254a2129
WS
353 symsize,
354 &memoryDC,
355 symsize * m_suit,
356 sympos2,
010216e3
WS
357 wxCOPY);
358 break;
359
360 case 8:
361 dc.Blit((wxCoord)(x - symdist + 5 * m_width / 10),
254a2129
WS
362 (wxCoord)(y - symdist + 5 * m_height / 8),
363 symsize,
010216e3 364 symsize,
254a2129
WS
365 &memoryDC,
366 symsize * m_suit,
367 sympos2,
010216e3
WS
368 wxCOPY);
369 case 7:
370 dc.Blit((wxCoord)(x - symdist + 5 * m_width / 10),
254a2129
WS
371 (wxCoord)(y - symdist + 3 * m_height / 8),
372 symsize,
010216e3 373 symsize,
254a2129
WS
374 &memoryDC,
375 symsize * m_suit,
376 sympos,
010216e3
WS
377 wxCOPY);
378 case 6:
379 dc.Blit((wxCoord)(x - symdist + m_width / 4),
254a2129
WS
380 (wxCoord)(y - symdist + m_height / 4),
381 symsize,
010216e3
WS
382 symsize,
383 &memoryDC, symsize * m_suit, sympos, wxCOPY);
384 dc.Blit((wxCoord)(x - symdist + m_width / 4),
254a2129
WS
385 (wxCoord)(y - symdist + m_height / 2),
386 symsize,
010216e3 387 symsize,
254a2129
WS
388 &memoryDC,
389 symsize * m_suit,
390 sympos,
010216e3
WS
391 wxCOPY);
392 dc.Blit((wxCoord)(x - symdist + m_width / 4),
254a2129
WS
393 (wxCoord)(y - symdist + 3 * m_height / 4),
394 symsize,
010216e3 395 symsize,
254a2129
WS
396 &memoryDC,
397 symsize * m_suit,
398 sympos2,
010216e3
WS
399 wxCOPY);
400 dc.Blit((wxCoord)(x - symdist + 3 * m_width / 4),
254a2129 401 (wxCoord)(y - symdist + m_height / 4),
010216e3 402 symsize,
254a2129
WS
403 symsize,
404 &memoryDC,
405 symsize * m_suit,
406 sympos,
010216e3
WS
407 wxCOPY);
408 dc.Blit((wxCoord)(x - symdist + 3 * m_width / 4),
254a2129
WS
409 (wxCoord)(y - symdist + m_height / 2),
410 symsize,
010216e3 411 symsize,
254a2129
WS
412 &memoryDC,
413 symsize * m_suit,
414 sympos,
010216e3
WS
415 wxCOPY);
416 dc.Blit((wxCoord)(x - symdist + 3 * m_width / 4),
254a2129
WS
417 (wxCoord)(y - symdist + 3 * m_height / 4),
418 symsize,
010216e3 419 symsize,
254a2129
WS
420 &memoryDC,
421 symsize * m_suit,
422 sympos2,
010216e3
WS
423 wxCOPY);
424 break;
425
426 case 10:
427 dc.Blit((wxCoord)(x - symdist + m_width / 2),
254a2129 428 (wxCoord)(y - symdist + 2 * m_height / 3),
010216e3 429 symsize,
254a2129
WS
430 symsize,
431 &memoryDC,
432 symsize * m_suit,
433 sympos2,
010216e3
WS
434 wxCOPY);
435 case 9:
436 dc.Blit((wxCoord)(x - symdist + m_width / 4),
254a2129
WS
437 (wxCoord)(y - symdist2 + m_height / 4),
438 symsize,
010216e3 439 symsize,
254a2129
WS
440 &memoryDC,
441 symsize * m_suit,
442 sympos,
010216e3
WS
443 wxCOPY);
444 dc.Blit((wxCoord)(x - symdist + m_width / 4),
254a2129 445 (wxCoord)(y - symdist2 + 5 * m_height / 12),
010216e3 446 symsize,
254a2129
WS
447 symsize,
448 &memoryDC,
449 symsize * m_suit,
450 sympos,
010216e3
WS
451 wxCOPY);
452 dc.Blit((wxCoord)(x - symdist + m_width / 4),
254a2129
WS
453 (wxCoord)(y - symdist + 7 * m_height / 12),
454 symsize,
010216e3 455 symsize,
254a2129
WS
456 &memoryDC,
457 symsize * m_suit,
458 sympos2,
010216e3
WS
459 wxCOPY);
460 dc.Blit((wxCoord)(x - symdist + m_width / 4),
254a2129
WS
461 (wxCoord)(y - symdist + 3 * m_height / 4),
462 symsize,
010216e3 463 symsize,
254a2129
WS
464 &memoryDC,
465 symsize * m_suit,
466 sympos2,
010216e3
WS
467 wxCOPY);
468
469 dc.Blit((wxCoord)(x - symdist + 3 * m_width / 4),
254a2129 470 (wxCoord)(y - symdist2 + m_height / 4),
010216e3 471 symsize,
254a2129
WS
472 symsize,
473 &memoryDC,
474 symsize * m_suit,
475 sympos,
010216e3
WS
476 wxCOPY);
477 dc.Blit((wxCoord)(x - symdist + 3 * m_width / 4),
254a2129
WS
478 (wxCoord)(y - symdist2 + 5 * m_height / 12),
479 symsize,
010216e3 480 symsize,
254a2129
WS
481 &memoryDC,
482 symsize * m_suit,
483 sympos,
010216e3
WS
484 wxCOPY);
485 dc.Blit((wxCoord)(x - symdist + 3 * m_width / 4),
254a2129 486 (wxCoord)(y - symdist + 7 * m_height / 12),
010216e3 487 symsize,
254a2129
WS
488 symsize,
489 &memoryDC,
490 symsize * m_suit,
491 sympos2,
010216e3
WS
492 wxCOPY);
493 dc.Blit((wxCoord)(x - symdist + 3 * m_width / 4),
254a2129
WS
494 (wxCoord)(y - symdist + 3 * m_height / 4),
495 symsize,
010216e3 496 symsize,
254a2129
WS
497 &memoryDC,
498 symsize * m_suit,
499 sympos2,
010216e3
WS
500 wxCOPY);
501 dc.Blit((wxCoord)(x - symdist + m_width / 2),
254a2129
WS
502 (wxCoord)(y - symdist + m_height / 3),
503 symsize,
010216e3 504 symsize,
254a2129
WS
505 &memoryDC,
506 symsize * m_suit,
507 sympos,
010216e3
WS
508 wxCOPY);
509 break;
510 case 11:
511 case 12:
512 case 13:
513 memoryDC.SelectObject(*m_pictureBmap);
514 int picwidth = 40,picheight = 45;
254a2129 515 dc.Blit((wxCoord)(x + (m_width-picwidth)/2),
010216e3 516 (wxCoord)(y - picheight/2 + m_height/2),
254a2129 517 picwidth,
010216e3 518 picheight,
254a2129
WS
519 &memoryDC,
520 picwidth * (m_pipValue - 11),
521 0,
010216e3
WS
522 wxCOPY);
523
524 memoryDC.SelectObject(*m_symbolBmap);
525 dc.Blit((wxCoord)(x + m_width-(m_width-picwidth)/2-symsize-3),
254a2129 526 (wxCoord)(y - picheight/2+m_height/2+1),
010216e3 527 symsize,
254a2129
WS
528 symsize,
529 &memoryDC,
530 symsize * m_suit,
531 sympos,
010216e3
WS
532 wxCOPY);
533 dc.Blit((wxCoord)(x + (m_width-picwidth)/2+2),
254a2129
WS
534 (wxCoord)(y + picheight/2 + m_height/2-symsize),
535 symsize,
010216e3 536 symsize,
254a2129
WS
537 &memoryDC,
538 symsize * m_suit,
539 sympos2,
010216e3
WS
540 wxCOPY);
541 break;
542 }
543
544 }
545 dc.SetBackground( backgroundBrush );
63cafd27
JS
546} // Card:Draw()
547
548
549//+-------------------------------------------------------------+
010216e3 550//| Card::DrawNullCard() |
63cafd27 551//+-------------------------------------------------------------+
010216e3
WS
552//| Description: |
553//| Draws the outline of a card at (x, y). |
554//| Used to draw place holders for empty piles of cards. |
63cafd27
JS
555//+-------------------------------------------------------------+
556void Card::DrawNullCard(wxDC& dc, int x, int y)
557{
010216e3
WS
558 wxPen* pen = wxThePenList->FindOrCreatePen(FortyApp::TextColour(), 1, wxSOLID);
559 dc.SetBrush(FortyApp::BackgroundBrush());
560 dc.SetPen(*pen);
561 dc.DrawRoundedRectangle(x, y, m_width, m_height, 4);
63cafd27 562} // Card::DrawNullCard()