blob: 6dee09acafc17dacda03118a3e1d434450ee62d0 (
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
|
#ifndef SCORE_H
#define SCORE_H
class Score {
public:
//! Points (doubles).
int yaku;
//! Minipoints.
int fu;
//! Bonus points.
int dora;
//! Constructor.
Score(int yaku_ = 0, int fu_ = 0, int dora_ = 0);
//! Calculate han. (yaku + dora)
int han();
//! Calculate fu rounded up to closest 10.
int fu_rounded();
//! Calculate base points.
int base_points();
//! Score paid upon ron. (4 BP)
int ron();
//! Score paid upon ron by east. (6 BP)
int ron_east();
//! Score paid by others upon tsumo by others. (BP)
int tsumo();
//! Score paid by east upon tsumo by others or others upon tsumo by east. (2 BP)
int tsumo_east();
};
#endif
|