-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathscrabble_point_map.hpp
114 lines (86 loc) · 4.3 KB
/
scrabble_point_map.hpp
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
#ifndef scrabble_point_map_h
#define scrabble_point_map_h
#include <map>
////////////////////////////////////////////////////////////////////////////////
class Point_Map
////////////////////////////////////////////////////////////////////////////////
{
public:
virtual unsigned get_point_val(char letter) const = 0;
virtual ~Point_Map() {}
};
/**
* This class is a singleton. The global instance is the entity used by the
* rest of the program to determine how many points a piece is worth.
*/
////////////////////////////////////////////////////////////////////////////////
class Scrabble_Point_Map : public Point_Map
////////////////////////////////////////////////////////////////////////////////
{
public:
//////////////////////////////////////////////////////////////////////////////
//////////////////////////// PRIMARY INTERFACE ///////////////////////////////
//////////////////////////////////////////////////////////////////////////////
/**
* instance - Returns a reference to the global singleton instance. This
* instance is the only public way to interact with this class.
*/
static const Scrabble_Point_Map& instance();
/**
* get_point_val - Returns the point value of a piece containing a letter
* matching the argument.
*/
virtual unsigned get_point_val(char letter) const;
virtual ~Scrabble_Point_Map() {}
private: // ================ PRIVATE INTERFACE ================================
//////////////////////////////////////////////////////////////////////////////
////////////////////////// FORBIDDEN METHODS /////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
Scrabble_Point_Map(const Scrabble_Point_Map&) = delete;
Scrabble_Point_Map& operator=(const Scrabble_Point_Map&) = delete;
//////////////////////////////////////////////////////////////////////////////
////////////////////////// INTERNAL METHODS //////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
Scrabble_Point_Map();
//////////////////////////////////////////////////////////////////////////////
///////////////////////////// DATA MEMBERS ///////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
// m_point_map - The actual map wrapped by this class
std::map<char, unsigned> m_point_map;
};
////////////////////////////////////////////////////////////////////////////////
class Wwf_Point_Map : public Point_Map
////////////////////////////////////////////////////////////////////////////////
{
public:
//////////////////////////////////////////////////////////////////////////////
//////////////////////////// PRIMARY INTERFACE ///////////////////////////////
//////////////////////////////////////////////////////////////////////////////
/**
* instance - Returns a reference to the global singleton instance. This
* instance is the only public way to interact with this class.
*/
static const Wwf_Point_Map& instance();
/**
* get_point_val - Returns the point value of a piece containing a letter
* matching the argument.
*/
virtual unsigned get_point_val(char letter) const;
virtual ~Wwf_Point_Map() {}
private: // ================ PRIVATE INTERFACE ================================
//////////////////////////////////////////////////////////////////////////////
////////////////////////// FORBIDDEN METHODS /////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
Wwf_Point_Map(const Wwf_Point_Map&) = delete;
Wwf_Point_Map& operator=(const Wwf_Point_Map&) = delete;
//////////////////////////////////////////////////////////////////////////////
////////////////////////// INTERNAL METHODS //////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
Wwf_Point_Map();
//////////////////////////////////////////////////////////////////////////////
///////////////////////////// DATA MEMBERS ///////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
// m_point_map - The actual map wrapped by this class
std::map<char, unsigned> m_point_map;
};
#endif