summaryrefslogtreecommitdiffstats
path: root/kpoker/defines.h
blob: 3da071f65898a0df0218ff10f6f0896694f49e42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
 *     This program is free software; you can redistribute it and/or modify
 *     it under the terms of the GNU General Public License as published by
 *     the Free Software Foundation; either version 2 of the License, or
 *     (at your option) any later version.
 *
 *     This program is distributed in the hope that it will be useful,
 *     but WITHOUT ANY WARRANTY; without even the implied warranty of
 *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *     GNU General Public License for more details.
 *
 *     You should have received a copy of the GNU General Public License
 *     along with this program; if not, write to the Free Software
 *     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */


/* Some defines for the outlook etc. */
#ifndef DEFINES_H
#define DEFINES_H


// ----------------------------------------------------------------
//                        Graphical layout


#define cardHeight         96 
#define cardWidth          72

#define cardDistFromTop    20
#define cardDistFromBottom 10
#define cardHDist          10

#define CLHBorderDistance   5
#define CLHDistFromTop    180
#define CLHWidth          140

// Some derived constants
#define PLAYERBOX_WIDTH   ((cardWidth + cardHDist) * PokerHandSize + cardHDist + 135)
#define PLAYERBOX_HEIGHT  (cardHeight + cardDistFromTop + cardDistFromBottom)
#define DISTANCE_FROM_2ND_BOX 100

#define wonLabelVDist (cardHeight + cardDistFromTop + cardDistFromBottom + 10)
#define clickToHoldVDist 130

#define BORDER                        10
#define PLAYERBOX_BORDERS             15
#define PLAYERBOX_HDISTANCEOFWIDGETS  10


#define MAX_PLAYERS 2 // TODO: maximal 4-> see lskat for computer players


// ----------------------------------------------------------------
//                           Default values


#define START_MONEY      100
#define DEFAULT_PLAYERS  1 // change to 2 later

// Will be overridden by config file:
#define SOUND_DEFAULT        true
#define BLINKING_DEFAULT     true
#define SHOWNEWGAME_DEFAULT  false
#define ADJUST_DEFAULT       true
#define LOADGAME_DEFAULT     true

// changeable in OptionsDlg (and will be overridden by config file):
#define DRAWDELAY      300 
#define MIN_BET          5
#define MAX_BET         20
#define CASH_PER_ROUND   5


#endif