-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.properties
54 lines (48 loc) · 2.1 KB
/
config.properties
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
# suppress inspection "UnusedProperty" for whole file
# CARDS DATA
# The number of features on the cards (e.g. shape, color etc.)
FeatureCount=4
# The number of choices for each feature (e.g. red, green, blue)
FeatureSize=3
# GAMEPLAY SETTINGS
# The number of human players (i.e. keyboard input)
HumanPlayers=1
# The number of computer players (i.e. input is simulated)
ComputerPlayers=3
# The number of rows in the grid of cards on the table (and on the screen)
Rows=3
# The number of columns in the grid of cards on the table (and on the screen)
Columns=4
# Whether to print out hints to the console or not
Hints=True
# The number of seconds until the dealer reshuffles the deck (0 show timer since last action, -1 show nothing)
TurnTimeoutSeconds=60
# The number of seconds the turn timeout warning should be displayed
TurnTimeoutWarningSeconds=5
# The number of seconds a player gets frozen for when he scores a point
PointFreezeSeconds=1
# The number of seconds a player gets frozen for when penalized
PenaltyFreezeSeconds=3
# The number of seconds to delay before removing/placing a card on the table
TableDelaySeconds=0.1
# UI DATA
# The names of the players to display on the screen
# Note: If there are more players than names, the remaining players will be called "Player 3", "Player 4", etc.
PlayerNames=Meni, Marina, Or, Itay
# The width (in pixels) of each cell (default is 258)
CellWidth=258
# The height (in pixels) of each cell (default is 167)
CellHeight=167
# The Width (in pixels) of player name cell
PlayerCellWidth=250
# The height (in pixels) of player name cell
PlayerCellHeight=40
# The size of the displayed font
FontSize=40
# The scancodes of the keyboard input data for each player
# Notes:
# 1. This should correspond to the number of human players and the dimensions of the table card grid (i.e. the
# first n codes are for the first row, the 2nd n codes are for the 2nd row etc., n being the number of columns).
# 2. If the number of entries here does not match the number of human players a warning will be issued
PlayerKeys1=81,87,69,82,65,83,68,70,90,88,67,86
PlayerKeys2=85,73,79,80,74,75,76,59,77,44,46,47