Main > Free Download Search >

Free classic board game software for linux

classic board game

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2497
Acquire Board Game 0.4

Acquire Board Game 0.4


Acquire is a computer version of the classic board game. more>>
Acquire is a computer version of the classic board game.
The goal of the game is to make the most profit by buying stocks in companies that form, merge and grow as tiles are placed on the game board.
This program is a text-based version of the game and should be playable on any system with a C++ compiler.
Enhancements:
- The main improvement of this release is that the bug causing the game to crash at the end was fixed, so you can now see who won.
- There were some other small bugfixes and changes.
<<less
Download (0.022MB)
Added: 2006-10-11 License: GPL (GNU General Public License) Price:
1123 downloads
Quarters Board Game 4.0

Quarters Board Game 4.0


Quarters Board Game is a strategy game for two players. more>>
Quarters Board Game project is a strategy game for two players.

Although its rules are relatively simple, it still offers some of the same opportunities for skill as in chess.

This program was originally conceived in the summer of 1986 during a study of the mini-max algorithm for chess playing computers, and was thus designed to offer some of the same type of strategies.

The game was originally written in BASIC, then ported to Turbo Pascal, then to C, and finally to Java.

The Java version is not necessarily object oriented, since it is a crude port from the C version.

<<less
Download (0.16MB)
Added: 2007-01-15 License: GPL (GNU General Public License) Price:
1013 downloads
BoardGame Tool 0.1.1

BoardGame Tool 0.1.1


BoardGame Tool provides a C++ front-end/Python back-end for running board games. more>>
BoardGame Tool provides a C++ front-end/Python back-end for running board games.
It features an easy and flexible interface to interact with the players and has transparent support for network or AI-controlled games.
Through a clear XML interface, games elements can be specified. Using an easy-to-learn back-end language like Python for rule implementations makes it very easy to implement, adjust, or enhance rules that come with a game.
The same back-end language can be used easily for simple or complex AI implementations.
Main features:
- XML specification with DTD validation for game definition
- Easy-to-learn Python programming for rule implementation
- Integrated and transparent network play
- Network chat with selected players
- Simple interface for programming AI players
- Extensive support for image formats
- Runtime scaling of images, allowing easy application of anything as gamepiece
Games currently implemented:
- Chess
- Go
Enhancements:
- This release includes the data archive with correct licensing information for the Fergus Duniho abstract chess piece set.
<<less
Download (MB)
Added: 2007-04-13 License: GPL (GNU General Public License) Price:
931 downloads
Java Classic RPG 20070810

Java Classic RPG 20070810


Java Classic RPG is an RPG framework, engine, and game that uses OpenGL. more>>
Java Classic RPG is an RPG framework, engine, and game that uses OpenGL, a challenging AI, huge territories, and classic pen-and-paper turn-based combat. This project is in the tradition of games like Wizardry 7 and EOB, but incorporates innovations made possible by modern computing technology.
The framework and engine feature a self-containing, playable, algorithmically-generated world, and can be the base for new games.
Enhancements:
- The 3D core was refactored, a new jungle design (along with partly billboarded trees and bushes) was added, and several optimizations and bugfixes have been included.
<<less
Download (30MB)
Added: 2007-08-12 License: LGPL (GNU Lesser General Public License) Price:
820 downloads
DoSSi Zola 1.0

DoSSi Zola 1.0


DoSSi Zola is a board game under GPL licence, using SDL. more>>
DoSSi Zola is a board game under GPL licence, using SDL. You can play with two players or you can play on your own against the computer.

The goal of the game is quite simple: block your opponent by destroying the fields which surround him without being blocked yourself. Every turn of play, each player must first move to some adjacent field and then destroy a field of his choice. The first player who cannot move anymore loses the game.

<<less
Download (0.90MB)
Added: 2005-08-16 License: GPL (GNU General Public License) Price:
1531 downloads
KBoard 0.9b

KBoard 0.9b


KBoard is a generic game interface for two player turn based board games. more>>
KBoard is a generic game interface for two player turn based board games, and currently supports a bunch of chess variants, connect four, reversi and chain reaction (and more will be added). Kboard also supports network chess play on ics servers, as well as game observation and examination.
We have implemented a quite powerful generic animation engine, and a highly customizable theme specification (based on lua), that can just load everything and create shadows (default theme is SVG, skulls theme too).
At the moment the released code is only based on Qt4, so it should be quite portable, but we will make use of Kde when available in future releases.
Generic game support:
Many board games can be easily implemented using the extensible KBoard infrastructure. So far, the following board games are implemented:
- Chess
- Crazyhouse
- Atomic
- Monster Chess (King and four pawns)
- Progressive Chess
- Reversi
- Connect Four
- Chain Reaction
<<less
Download (1.4MB)
Added: 2006-09-25 License: GPL (GNU General Public License) Price:
1125 downloads
Cassiopeia 0.4.0

Cassiopeia 0.4.0


Cassiopeia is a board game similar to Carcassonne. more>>
Cassiopeia is a board game similar to Carcassonne. It allows playing over LAN and Internet and features also computer players. The project supports multiple Graphic Sets, on similar to the board game and one with a space setting.
The program supports two languages at the moment, English and German. The development documentation and the handbook in the game is only avaible in German at the moment.
Main features:
- Multiplayer over LAN and Internet
- Metaserver to find other players
- Computer players
- Most Carcassonne addons are implemented
- Gameoptions can be combined as you like
<<less
Download (MB)
Added: 2007-03-16 License: Freeware Price:
960 downloads
Chess::Game 0.6.0

Chess::Game 0.6.0


Chess::Game is a class to record and validate the moves of a game of chess. more>>
Chess::Game is a class to record and validate the moves of a game of chess.

SYNOPSIS

use Chess::Game;

$game = Chess::Game->new();
$clone = $game->clone();
$move = $game->make_move("e2", "e4");
$move_c = $clone->make_move("e2", "e4");
$true = ($move->get_piece() ne $move_c->get_piece());
$move = $game->delete_move();
...
while (!defined($result = $game->result())) {
# get a move
$move = $game->make_move($sq1, $sq2);
if (!defined($move)) {
print $game->get_message();
}
}
if ($result == 1) {
print "White wins!n";
}
elsif ($result == 0) {
print "Draw!n"
}
else {
print "Black wins!n";
}

The Chess module provides a framework for writing chess programs with Perl. This class forms part of that framework, providing move validation for all moves recorded using the Chess::Game class. The Game contains a Chess::Board, 32 Chess::Pieces and a Chess::Game::MoveList that contains a series of Chess::Game::MoveListEntrys that record the exact state of the game as it progresses. Moves can be taken back one-at-a-time to allow for simple movelist manipulation.

<<less
Download (0.021MB)
Added: 2006-12-28 License: Perl Artistic License Price:
1039 downloads
Ascal 0.1.0

Ascal 0.1.0


Ascal is a Gnome Version of the board game Lasca. more>>
Ascal is a Gnome Version of the board game Lasca.
Lasca is a game similar to Draughts but with some really cool enhancements. In a future release youll find a great description in the help system of Ascal. In the meantime the article on Wikipedia will help you understanding the rules.
Ascal tries to give a great Gnome experience of Lasca for one and two players. You can undo moves, save and load games and all that on a nifty graphical board.
Enhancements:
Now we are looking for tranlators...
Here and there we still have some glitches, but we are on our way...
- Better AI
- i18n possibility
- German translation
- Beginning of Desktop integration
<<less
Download (0.80MB)
Added: 2006-09-10 License: GPL (GNU General Public License) Price:
1141 downloads
Othello Game 0.2.1

Othello Game 0.2.1


Othello Game is a classic strategy game, also known as Reversi. more>>
Othello Game is a classic strategy game, also known as Reversi. Its objective is to finish the game with the greater amount of pieces (circles) of the same color.
This version of the Othello game supports the writing of AI plugins in C++ or Python, network games, and interface themes.
Enhancements:
- pkgconfig support was added.
- It is now easier to write AI plugins.
- An installation guide, and a tutorial for writing plugins were incuded.
- It is now possible to disable Python support from the configuration.
- New icons were provided.
<<less
Download (0.63MB)
Added: 2007-08-16 License: GPL (GNU General Public License) Price:
805 downloads
Adams Happy Electronic Morabaraba 0.7

Adams Happy Electronic Morabaraba 0.7


Adams Happy Electronic Morabaraba is an implementation of Morabaraba. more>>
Adams Happy Electronic Morabaraba is an implementation of Morabaraba, an ancient African board game similar to Nine Mens Morris.
Enhancements:
- A new GUI based on reusable Morabaraba control was added.
- The ability to edit games visually was added.
- The ability to create custom "themes" (board/piece sets) was added.
- Animation was made faster for rapid gameplay.
- A move may be taken back.
- The engine is unchanged.
<<less
Download (0.54MB)
Added: 2007-08-02 License: GPL (GNU General Public License) Price:
819 downloads
Open Concepts Bulletin Board 0.9.5 RC2

Open Concepts Bulletin Board 0.9.5 RC2


Open Concepts Bulletin Board is a fork of the phpBB Olympus CVS. more>>
Open Concepts Bulletin Board project is a fork of the phpBB "Olympus" CVS which will strive to continue the phpBB traditions of easy modification, freedom, and usablity, and also to improve upon development speed.
<<less
Download (0.77MB)
Added: 2006-04-23 License: GPL (GNU General Public License) Price:
1293 downloads
Legends: The Game 0.4.1.42

Legends: The Game 0.4.1.42


Plenty of maps are provided by us, but the beauty of this game is its customization possibilities. Mission creation has never been easier, with a stab... more>> <<less
Download (111442KB)
Added: 2009-04-26 License: Freeware Price: Free
189 downloads
gewee game 3.6

gewee game 3.6


gewee game is a Go-like board game with next generation graphics. more>>
gewee game is a Go-like board game with "next generation" graphics.

This is a game between a human ("player") and a computer ("opponent"). The players objective is to accumulate as many points as possible. When the player wins a game, a point is added to his/her score. When the player loses a game, a point is subtracted from his/her score. The competitor with the most pieces on the board at the end of the game is the winner. A game is finished when a competitor forfeits, or has no valid empty square to place a piece on. The opponent is granted additional moves at the start of a game based on the players score.

Each competitor has a distinct set of pieces of the same shape and color. The competitors take turns placing one piece on an empty square on the board. A piece or group of pieces that has no empty square adjacent to it is removed from the board.

<<less
Download (0.018MB)
Added: 2007-05-21 License: Freeware Price:
886 downloads
KsirK 1.8

KsirK 1.8


KsirK is a computerized version of a well known strategy board game: Risk ! more>>
KsirK is a computerized version of a well known strategy board game: Risk !
KsirK is a game for KDE released under the GPL. In the current version, KsirK is a usable multi-player mono-machine game with a basic AI. Planned future versions will be really network-enabled multi-playered with a better AI and a lot more enhancements (see Status for details).
The goal of the game is simply to conquer the World... It is done by attacking your neighbors with your armies.
At the beginning of the game, countries are distributed to all the players. Each country contain one army (represented by an infantryman) at this moment. Each player has some armies to distribute to his countries. Note that five armies are represented by a cavalryman and 10 by a cannon.
On each turn, each player can attack his neighbours, eventually conquering one or more countries. At the end of each turn, some bonus armies are distributed to the players in function of the number of countries they own.
The winner is the player that conquered all the world !!
!!! WARNING !!!
To compile KsirK1.3beta2, you have to patch a file in the libkdegames/kgame library.
A version of the patched file is given in the kgame-patch directory of the
distribution. If you dont know how to do that, maybe should you wait for a corrected kdegames package or for binary distributions of KsirK.
Enhancements:
- Updated the waf build system to 1.0.1
<<less
Download (2.4MB)
Added: 2006-12-28 License: GPL (GNU General Public License) Price:
1037 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5