Fanorona Multithreaded Server.
I have played for a while now with multiple versions of the Fanorona.
- One created by Andrew Keller on the Apple AppStore
- One by Jonhattan Clapp
but none of them reach the prof's version level.
I then tried to separate the Logic from the UI (Applet and AWT) without much success.
The Fanorona Java Version is somewhat tightly mingled all together.
It doesn't follow a clear MVC pattern therefore trying to create a multi-tiered layer is tedious.
Also Fanorona uses a pre JDK1.5 version of Java Concurrency and threads.
The Observer Pattern is also tightly used between the UI and the search component.
Rather than trying to separate the existing version, I will try to extract its data structure and algorithm.
What I like in this version is the use of the Bit Set Manipulation of a 64 bit board.
The Bit Manipulation can convert a row/column model to bit representation that can be passed to the search engine.
Obviously the search algorithm is by far the most valuable asset of this open source.