The first short term goal is to have the program complete a game in computer - computer mode at least at the level of a human novice. This means that the program plays legal moves, and then each side passes at the appropriate time. It does not imply that the program removes prisoners and computes the score. Even this requires a non-trivial amount of work, and the program is not yet at that point. This is estimated to be complete by June, 2005.
A slightly longer goal is to have the version 1.0 release. This is the first release that would actually be useful to a beginning player. An objective measure of this might be when Moyoman can beat the GNU Go program with a four stone handicap, where Moyoman takes black. Keep in mind that the algorithms used by GNU Go can be ported to Java and used in Moyoman. An optimistic estimate of this would be June, 2006.
Once the version 1.0 release occurs, there is then continuous development until the limitations of the current design are discovered.
The design is not fixed, and will change as a result of comments and suggestions from other developers. Until version 1.0 is released, anything might change. Once that occurs, the core design should only change in ways that are backwards compatible. The closer the release numbers are to 1.0, the less frequent and smaller the changes should be.
The main features generally work, but there are lots of more complex boundary cases that do not. For example, resume game may or may not work depending on the point at which the program was interrupted. Issues like this will all have to be addressed before the version 1.0 release.
There is a great deal of work to be done. It is important that the design of the system is sound. Reviewing this and making suggestions for improvements would be very useful. Another useful thing would be to implement a new module, such as Shape or LifeAndDeath, or writing a better version of an existing module such as Endgame or Fuseki. See the documentation for more information.
You may implement any module type that you like, whether or not one already exists. In particular, any module type where there is only implementation, and the name starts with Simple is a candidate for a more sophisticated implementation to be written. If you coordinate with me, then I can tell you if anyone else is working on the same module type that you are interested in.
David Weiss conceived, designed, coded, and documented the entire project except for the client for the version 0.1 release on SourceForge, and is responsible for the project as a whole.
To do a read-only checkout of the source tree, enter: cvs -d:pserver:anonymous@cvs.sf.net:/cvsroot/moyoman co moyoman
Alternatively, you can download the latest source or executable jar file from the summary page.
A Ko module would want to use the results of the LifeAndDeath module in order to generate ko threats, but the LifeAndDeath module will have to deal with problems involving kos, and so might want to use the results of the Ko module. Currently, if module A can use the results of module B, then module B cannot use the results of module A. The current solution is to have a Ko and Ko2 module type, where Ko is before LifeAndDeath, and Ko2 is after. This type of problem will have to be carefully addressed.
The design of Moyoman assumes incremental processing, so the Shape module determines good and bad shape, Tesuji finds sequences of good moves, etc. Some modules, such as LifeAndDeath, might need to do extensive reading of moves in order to do their work. The current design, where the module would call getScheduler() and then clone the Scheduler object and call makeMove() on it for each possible move, is not the most efficient way of allowing for search in terms of number of positions evaluated per second. The developer needs to understand up front that this is a potential problem of working within the Moyoman framework. Signficant work will need to be done to make these types of operations as efficient as possible.
Module names which end in Impl indicate a more sophisticated implementation than the modules starting with Simple, usually taking one to four months to develop. Or, as in the case with RandomImpl, they are so simple that no other implementation is needed. Modules such as BoardImpl or GeometryImpl can be replaced, or they can be modified over time as needed.
Hopefully at some time in the future, some of the Go clients will develop a standardized means of communicating and displaying debugging information, and Moyoman would add support for third party clients at that time.
Almost all of the testing will be integration testing, as it would be rather difficult to do unit testing by using tools such as JUnit.
Developing an overall strategy for this, and coordinating the work of different testers is obviously a very large problem, which could rival the scope of the development effort. Ideally, there would be a separate group of developers who would work solely on the testing code without writing any modules. Until developers are found to lead this effort, testing will mostly be done manually.
Somewhat less humorously, the open and resume code needs to be more sophisticated, so that the last move for which both sides were saved is the one which is loaded.
Both the GeometryImpl and SimpleSafety modules often produce results which are way off.
Over time, as new code is added and older code is refined, these types of issues will go away and the overall quality of the project will rise. This is mostly a matter of putting in adequate time and effort. It was considered important to publicly release the project sooner rather than later, and to fix all of the warts and blemishes over time.