Skip to content

Commit 53ef643

Browse files
committed
Fixed diagonal tile bug, finished tests, updated README, added LICENSE
1 parent 03d2de9 commit 53ef643

File tree

4 files changed

+110
-20
lines changed

4 files changed

+110
-20
lines changed

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2015 Mike Watson
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

README.md

+57-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,60 @@ BoggleSolver
33

44
This is a PHP class that solves Boggle. I made it for fun.
55

6-
Check out the examples for how to use it.
6+
## Installing
7+
8+
If you use composer:
9+
10+
```json
11+
{
12+
"repositories": [
13+
{
14+
"type": "vcs",
15+
"url": "https://github.com/mwatson/BoggleSolver.git"
16+
}
17+
],
18+
"require": {
19+
"mwatson/BoggleSolver": "0.3.0"
20+
}
21+
}
22+
```
23+
24+
## Usage
25+
26+
```php
27+
$boggle = new \BoggleSolver\BoggleSolver();
28+
29+
try {
30+
$boggle->loadBoard(
31+
"A M T O".
32+
"L N S T".
33+
"L X T G".
34+
"E T A N";
35+
);
36+
} catch (\BoggleSolver\BoggleException $e) {
37+
die("exiting on error: " . $e->getMessage());
38+
}
39+
40+
// retrieve the list of words
41+
$words = $boggle->findWords();
42+
````
43+
44+
See the files in the `examples` directory for more info.
45+
46+
## Tests
47+
48+
If you have composer and make installed, you can run the following:
49+
50+
```
51+
composer install
52+
make tests
53+
```
54+
55+
The `make coverage` command will also build coverage maps in HTML. `make clean`
56+
will delete the coverage directory.
57+
58+
## License
59+
60+
© Mike Watson
61+
62+
Released under the [MIT license](http://opensource.org/licenses/MIT). See the `LICENSE` file.

src/BoggleSolver.php

+7-11
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function __construct()
2828

2929
public function getWords()
3030
{
31-
return explode("\r\n", static::getDictFileContents());
31+
return explode("\r\n", $this->getDictFileContents());
3232
}
3333

3434
public function loadDict()
@@ -195,8 +195,6 @@ public function findWords()
195195
} else if ($ptr->s !== null) {
196196
$ptr = &$ptr->s;
197197
$dir = $dir == "e" ? "w" : "e";
198-
} else {
199-
break;
200198
}
201199
}
202200

@@ -205,12 +203,8 @@ public function findWords()
205203
return array_keys($words);
206204
}
207205

208-
public function findWordsFromOneTile($boardPtr = null, $dictPtr = null, $words = array())
206+
public function findWordsFromOneTile($boardPtr, $dictPtr = null, $words = array())
209207
{
210-
if ($boardPtr === null) {
211-
$boardPtr = &$this->board[0];
212-
}
213-
214208
if ($dictPtr === null) {
215209
$dictPtr = &$this->dict;
216210
}
@@ -240,8 +234,8 @@ public function findWordsFromOneTile($boardPtr = null, $dictPtr = null, $words =
240234
if (strlen($dir) == 2) {
241235
$d1 = $dir[0];
242236
$d2 = $dir[1];
243-
if ($boardPtr->$d1->pathTo == $boardPtr->$d2->id &&
244-
$boardPtr->$d2->pathTo == $boardPtr->$d2->id
237+
if ($boardPtr->$d1->pathTo == $boardPtr->$d2->id ||
238+
$boardPtr->$d2->pathTo == $boardPtr->$d1->id
245239
) {
246240
continue;
247241
}
@@ -264,8 +258,10 @@ public function findWordsFromOneTile($boardPtr = null, $dictPtr = null, $words =
264258
return $words;
265259
}
266260

267-
public static function getDictFileContents()
261+
// @codeCoverageIgnoreStart
262+
public function getDictFileContents()
268263
{
269264
return file_get_contents(__DIR__ . static::$dictFile);
270265
}
266+
// @codeCoverageIgnoreEnd
271267
}

tests/BoggleSolver/BoggleSolverTest.php

+25-8
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@
44

55
class BoggleSolverTest extends \PHPUnit_Framework_TestCase
66
{
7-
public $lessWords = array(
8-
"ABCD", "ABC", "ABBA", "ABABA", "ABQU", "XYZ", "ABBBBBBBBBBBBBBBB", "AB"
9-
);
10-
117
public function testLoadDictBuildsDictionary()
128
{
139
$solverMock = $this->getMockBuilder('\BoggleSolver\BoggleSolver')
1410
->setMethods(array('getWords'))
1511
->getMock();
1612

13+
$lessWords = array(
14+
"ABCD", "ABC", "ABBA", "ABABA", "ABQU", "XYZ", "ABBBBBBBBBBBBBBBB", "AB"
15+
);
16+
1717
$solverMock->expects($this->once())
1818
->method('getWords')
19-
->will($this->returnValue($this->lessWords));
19+
->will($this->returnValue($lessWords));
2020

2121
$solverMock->boardLookup = array('A' => 1);
2222
$solverMock->size = 3;
@@ -131,21 +131,38 @@ public function testFindWords()
131131
->setMethods(array('getWords'))
132132
->getMock();
133133

134+
$words = array('XXX', 'ALL', 'XXXXLA');
135+
134136
$solverMock->expects($this->once())
135137
->method('getWords')
136-
->will($this->returnValue($this->lessWords));
138+
->will($this->returnValue($words));
137139

138140
$solverMock->boardLookup = array('A' => 1);
139141
$solverMock->size = 3;
140142

141-
$solverMock->loadBoard("ABCABDABA");
143+
$solverMock->loadBoard("X X A L L X L L X");
142144

143145
$result = $solverMock->findWords();
144146

145147
$expected = array(
146-
"ABC", "ABCD", "ABBA", "ABABA",
148+
'XXX', 'ALL'
147149
);
148150

149151
$this->assertEquals($expected, $result);
150152
}
153+
154+
public function testGetWords()
155+
{
156+
$solverMock = $this->getMockBuilder('\BoggleSolver\BoggleSolver')
157+
->setMethods(array('getDictFileContents'))
158+
->getMock();
159+
160+
$solverMock->expects($this->once())
161+
->method('getDictFileContents')
162+
->will($this->returnValue("XYZ\r\nABC\r\nQRS"));
163+
164+
$result = $solverMock->getWords();
165+
166+
$this->assertEquals(array('XYZ', 'ABC', 'QRS'), $result);
167+
}
151168
}

0 commit comments

Comments
 (0)