-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScoreCard.java
More file actions
129 lines (126 loc) · 2.43 KB
/
Copy pathScoreCard.java
File metadata and controls
129 lines (126 loc) · 2.43 KB
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
import java.util.ArrayList;
public class ScoreCard {
private ArrayList<String> scoredWords = new ArrayList<String>();
private ArrayList<Integer> scoredPoints = new ArrayList<Integer>();
private int Size;
private int Total;
public ScoreCard(int boardSize)
{
Size = boardSize;
Total = 0;
}
public Boolean scoreWord(String newWord)
{
Boolean alreadyScored = false;
for(int k = 0; k < scoredWords.size(); k++)
{
if(newWord.equalsIgnoreCase(scoredWords.get(k)))
{
alreadyScored = true;
}
}
if(!alreadyScored)
{
if(Size == 4)
{
if(newWord.length() == 3 || newWord.length() == 4)
{
scoredPoints.add(1);
Total += 1;
} else if(newWord.length() == 5)
{
scoredPoints.add(2);
Total += 2;
} else if (newWord.length() == 6)
{
scoredPoints.add(3);
Total += 3;
} else if (newWord.length() == 7)
{
scoredPoints.add(5);
Total += 5;
} else if (newWord.length() > 7)
{
scoredPoints.add(11);
Total += 11;
} else
{
return false;
}
} else if (Size == 5)
{
if(newWord.length() == 4)
{
scoredPoints.add(1);
Total += 1;
} else if(newWord.length() == 5)
{
scoredPoints.add(2);
Total += 2;
} else if(newWord.length() == 6)
{
scoredPoints.add(3);
Total += 3;
} else if (newWord.length() == 7)
{
scoredPoints.add(5);
Total += 5;
} else if (newWord.length() > 7)
{
scoredPoints.add(newWord.length() * 2);
Total += (newWord.length() * 2);
} else
{
return false;
}
} else
{
if(newWord.length() == 4)
{
scoredPoints.add(1);
Total += 1;
} else if (newWord.length() == 5)
{
scoredPoints.add(2);
Total += 2;
} else if (newWord.length() == 6)
{
scoredPoints.add(3);
Total += 3;
} else if(newWord.length() == 7)
{
scoredPoints.add(5);
Total += 5;
} else if(newWord.length() == 8)
{
scoredPoints.add(11);
Total += 11;
} else if(newWord.length() > 8)
{
scoredPoints.add(newWord.length() * 2);
Total += (newWord.length() * 2);
} else
{
return false;
}
}
scoredWords.add(newWord);
return true;
} else
{
return false;
}
}
public ArrayList<String> getScoredWords()
{
return scoredWords;
}
public ArrayList<Integer> getScoredPoints()
{
return scoredPoints;
}
public int getTotal()
{
return Total;
}
}