Ein Master Mind - Klon (Mastermind Clone). Komplett in Java geschrieben.
Die folgende open Source Applikation zeigt, wie die das MVC-Design-Pattern (Model
View Controler)
java anzuwenden ist.
Die Applikation läuft ab java 1.2.2 mit SWING.
Die lauffähige Version kann mit (SHIFT-Klick) von hier
[buster.jar]
heruntergeladen werden.
Die Applikation ist mit dem Befehl
java -jar buster.jar
zu starten. (Unter Betriebsystemen, die eine Java Virtuelle Maschine beinhalten, läuft das Programm einfach durch doppelklicken.)
Wer sich für den Quell-Code (Source) interessiert, lädt diesen von
hier (shift - Klick, dann "unzip"):
[Buster_src.jar].
Bilder
Spielen
|
Wahl der Spielstärke
|
GNU Public License: COPYING
/*
* BrainBuster (a MasterMind clone)
* Copyright (C) 1999 Philipp Gressly
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option) any later
* version.
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
*
* You should have recieved a copy of the GNU General Public License along with
* this program; if not, write to the Free Software Foundation, Inc., 675
* Mass Ave, Cambridge, MA 02139, USA.
*
* You can reach the author (Philipp Gressly) at the following adress:
*
* Philipp Gressly
* Gottfried Kellerstr. 74
* CH-8400 Winterthur
* phi (at) gressly.ch
* http://www.gressly.eu
*/
|