summaryrefslogtreecommitdiff
path: root/src/score.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/score.h')
-rw-r--r--src/score.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/score.h b/src/score.h
new file mode 100644
index 0000000..6dee09a
--- /dev/null
+++ b/src/score.h
@@ -0,0 +1,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