-
Notifications
You must be signed in to change notification settings - Fork 0
/
stats.inc.php
220 lines (198 loc) · 8.11 KB
/
stats.inc.php
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
<?php
/**
*------
* BGA framework: © Gregory Isabelli <[email protected]> & Emmanuel Colin <[email protected]>
* Calypso implementation : © Andy Bond <[email protected]>
*
* This code has been produced on the BGA studio platform for use on http://boardgamearena.com.
* See http://en.boardgamearena.com/#!doc/Studio for more information.
* -----
*
* stats.inc.php
*
* Calypso game statistics description
*
*/
/*
In this file, you are describing game statistics, that will be displayed at the end of the
game.
!! After modifying this file, you must use "Reload statistics configuration" in BGA Studio backoffice
("Control Panel" / "Manage Game" / "Your Game")
There are 2 types of statistics:
_ table statistics, that are not associated to a specific player (ie: 1 value for each game).
_ player statistics, that are associated to each players (ie: 1 value for each player in the game).
Statistics types can be "int" for integer, "float" for floating point values, and "bool" for boolean
Once you defined your statistics there, you can start using "initStat", "setStat" and "incStat" method
in your game logic, using statistics names defined below.
!! It is not a good idea to modify this file when a game is running !!
If your game is already public on BGA, please read the following before any change:
http://en.doc.boardgamearena.com/Post-release_phase#Changes_that_breaks_the_games_in_progress
Notes:
* Statistic index is the reference used in setStat/incStat/initStat PHP method
* Statistic index must contains alphanumerical characters and no space. Example: 'turn_played'
* Statistics IDs must be >=10
* Two table statistics can't share the same ID, two player statistics can't share the same ID
* A table statistic can have the same ID than a player statistics
* Statistics ID is the reference used by BGA website. If you change the ID, you lost all historical statistic data. Do NOT re-use an ID of a deleted statistic
* Statistic name is the English description of the statistic as shown to players
*/
$stats_type = array(
// Statistics global to table
"table" => array(
"average_calypsos_per_round" => array(
"id" => 10,
"name" => totranslate("Total calypsos per round"),
"type" => "float",
),
"average_points_per_round" => array(
"id" => 11,
"name" => totranslate("Average individual score per round"),
"type" => "float",
),
// may as well keep analagous ids as for player stats
"fastest_calypso" => array(
"id" => 35,
"name" => totranslate("Fastest calypso (by number of tricks)"),
"type" => "int"
),
"proportion_tricks_won_trump_lead" => array(
"id" => 41,
"name" => totranslate("Proportion of tricks won by leading trumps"),
"type" => "float",
),
"proportion_tricks_won_first_trump" => array(
"id" => 42,
"name" => totranslate("Proportion of tricks won by trumping in first"),
"type" => "float",
),
"proportion_tricks_won_overtrump" => array(
"id" => 43,
"name" => totranslate("Proportion of tricks won by overtrumping"),
"type" => "float",
),
"proportion_tricks_won_plainsuit" => array(
"id" => 44,
"name" => totranslate("Proportion of tricks won by highest plainsuit card"),
"type" => "float",
),
),
// Statistics existing for each player
"player" => array(
// per round statistics
"calypsos_per_round" => array(
"id" => 10,
"name" => totranslate("Average calypsos per round (individual)"),
"type" => "float"
),
"partnership_calypsos_per_round" => array(
"id" => 11,
"name" => totranslate("Average calypsos per round (partnership)"),
"type" => "float"
),
"calypso_points_per_round" => array(
"id" => 12,
"name" => totranslate("Average calypso points per round (individual)"),
"type" => "float",
),
"partnership_calypso_points_per_round" => array(
"id" => 13,
"name" => totranslate("Average calypso points per round (partnership)"),
"type" => "float",
),
"incomplete_calypso_cards_per_round" => array(
"id" => 14,
"name" => totranslate("Average incomplete calypso cards per round (individual)"),
"type" => "float",
),
"partnership_incomplete_calypso_cards_per_round" => array(
"id" => 15,
"name" => totranslate("Average incomplete calypso cards per round (partnership)"),
"type" => "float",
),
"trickpile_cards_per_round" => array(
"id" => 16,
"name" => totranslate("Average trickpile cards per round (individual)"),
"type" => "float",
),
"partnership_trickpile_cards_per_round" => array(
"id" => 17,
"name" => totranslate("Average trickpile cards per round (partnership)"),
"type" => "float",
),
"points_per_round" => array(
"id" => 18,
"name" => totranslate("Average points per round (individual)"),
"type" => "float",
),
"partnership_points_per_round" => array(
"id" => 19,
"name" => totranslate("Average points per round (partnership)"),
"type" => "float",
),
// "total_cards_won" => array(
// "id" => 20,
// "name" => totranslate("Total captured cards per round (individual)"),
// "type" => "float",
// ),
"personal_trumps_per_hand" => array(
"id" => 30,
"name" => totranslate("Average personal trumps dealt per hand"),
"type" => "float",
),
"partner_trumps_per_hand" => array(
"id" => 31,
"name" => totranslate("Average partner trumps dealt per hand"),
"type" => "float",
),
"opponent_trumps_per_hand" => array(
"id" => 32,
"name" => totranslate("Average opponent trumps dealt per hand"),
"type" => "float",
),
"fastest_calypso" => array(
"id" => 35,
"name" => totranslate("Fastest calypso (by number of tricks)"),
"type" => "int"
),
"tricks_won_total_per_hand" => array(
"id" => 40,
"name" => totranslate("Average tricks won per hand"),
"type" => "float",
),
"tricks_won_trump_lead_per_hand" => array(
"id" => 41,
"name" => totranslate("Average tricks won by leading trumps per hand"),
"type" => "float",
),
"tricks_won_first_trump_per_hand" => array(
"id" => 42,
"name" => totranslate("Average tricks won by trumping in first per hand"),
"type" => "float",
),
"tricks_won_overtrump_per_hand" => array(
"id" => 43,
"name" => totranslate("Average tricks won by overtrumping per hand"),
"type" => "float",
),
"score_first_leader" => array(
"id" => 50,
"name" => totranslate("Individual score when first leader in first hand of round"),
"type" => "int"
),
"score_player_two" => array(
"id" => 51,
"name" => totranslate("Individual score when second player in first hand of round"),
"type" => "int"
),
"score_player_three" => array(
"id" => 52,
"name" => totranslate("Individual score when third player in first hand of round"),
"type" => "int"
),
"score_dealer" => array(
"id" => 53,
"name" => totranslate("Individual score when dealer in first hand of round"),
"type" => "int"
),
)
);