A reversi (also known as Othello) implementation for SailfishOS
This implementation features an easy way to implement different players.
Currently avaiable are:
- Human: A human player
- Tutorial: A player that tries to teach basic strategies
- Random AI: A simple AI selecting a random tile
- Greedy AI: Tries to get as many points as possible
- Tree AI: Builds a tree and tries to get the best possible result. Sometimes gets greedy.
- Balanced AI: An AI which tries to combine the more clever aspect of the "Tree AI" with the power of the "Greedy AI"
- Static Rule AI: An AI which determines the best turn by applying different static rules
- Control AI: An AI that tries to control the board by conquering key positions
- Assembly AI: An AI which uses several small entities to determine the best play
- Neural Network AI: An AI using a neural network
- Monte Carlo AI: An AI based on the idea of the "Monte Carlo method"
Source code is avaiable here: https://github.com/Top-Ranger/harbour-reversi
The app is released under the BSD license as following:
Copyright (C) 2014,2015,2016 Marcus Soll
Copyright (C) 2013 Jolla Ltd.
All rights reserved.
You may use this program under the terms of BSD license as follows:
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the Jolla Ltd nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Comments
tex
Fri, 2014/12/05 - 12:13
Permalink
Nice game thanks but the colours could be better. I have the Snow White ambience which is black and white and once the board is getting full it's actually hard to tell apart the empty places (dark gray with light gray rim) from the black pieces (black with white rim). Maybe I should get me a The Othello Half TOH...
TopRanger
Sat, 2014/12/06 - 16:03
Permalink
In the next version you will be able to change the colour of the discs - hopefully this will fix the problem for you
tex
Mon, 2014/12/08 - 09:25
Permalink
Thank you, much better.