Main > Free Download Search >

Free clone game software for linux

clone game

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2364
Clone 0.23

Clone 0.23


Clone is a Perl module that can recursively copy Perl datatypes. more>>
Clone is a Perl module that can recursively copy Perl datatypes.

SYNOPSIS

use Clone;

push @Foo::ISA, Clone;

$a = new Foo;
$b = $a->clone();

# or

use Clone qw(clone);

$a = { foo => bar, move => zig };
$b = [ alpha, beta, gamma, vlissides ];
$c = new Foo();

$d = clone($a);
$e = clone($b);
$f = clone($c);

This module provides a clone() method which makes recursive copies of nested hash, array, scalar and reference types, including tied variables and objects.

clone() takes a scalar argument and an optional parameter that can be used to limit the depth of the copy. To duplicate lists, arrays or hashes, pass them in by reference. e.g.

my $copy = clone (@array);

# or

my %copy = %{ clone (%hash) };

For a slower, but more flexible solution see Storables dclone().

<<less
Download (0.010MB)
Added: 2007-05-16 License: Perl Artistic License Price:
899 downloads
Clone::More 0.90.2

Clone::More 0.90.2


Clone::More is a Perl module that can copy Perl data structures. more>>
Clone::More is a Perl module that can copy Perl data structures.

SYNOPSIS

use Clone::More qw( clone );

my $structure = [
{ key => value }
];

for my $set ( @$structure ) {
my $clone = clone( $set );

for ( keys %$clone ) {
print "Everything matches" if ( exists( $set->{$_} ) && $set->{$_} eq $clone->{$_} );
}
}

This is intended to act as a utility in order to natively clone data structures via a simple Perl interface. Will ensure that all references will be separated from the parent data strure, yet kept relative to the new structure (if need be).

Please take a look at the WARNINGS, GOTCHAS and FUTURE DEVELOPMENT sections, as resources to see if this module is fully capable of doing everything that you want it to do (and it will do most everything).

<<less
Download (0.027MB)
Added: 2007-05-16 License: Perl Artistic License Price:
891 downloads
The Snake Game 1.0

The Snake Game 1.0


The Snake Game is an adapted, improved version of the popular javacave game. more>>
This is an adapted, improved version of the popular javacave game, written in QtRuby.

Installation:

download
chmod +x snake(gl).rb
run it.

<<less
Download (0.015MB)
Added: 2005-05-24 License: Public Domain Price:
1622 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
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
Epiphany Game 0.6.1

Epiphany Game 0.6.1


Epiphany project is a multiplatform clone of the game Boulderdash. more>>
Epiphany project is a multiplatform clone of the game Boulderdash.

It is written entirely in C++, using Clanlib as its graphic library.

The player must collect all valuable minerals scattered in levels, while avoiding being hit by a falling boulder or a bomb.

<<less
Download (1.4MB)
Added: 2007-06-22 License: GPL (GNU General Public License) Price:
856 downloads
pyConnect4

pyConnect4


pyConnect4 is a clone of Connect 4 game for 2 players. more>>
pyConnect4 is a clone of Connect 4 game for 2 players.

This is my second project in python. The game has more features and lesser code lines as pyXXO.

How is pyConnect4 started?

Download the tar.gz file and extract it:

tar xfz pyConnect4.tar.gz

Then change into the new dir:

cd pyConnect4

and start pyConnect4:

python pyConnect4.py

<<less
Download (0.080MB)
Added: 2007-06-21 License: Freeware Price:
855 downloads
2Pong 1.0a

2Pong 1.0a


2Pong is a pong clone with 2 balls. more>>
2Pong is a pong clone. However, there is one visible difference from the regular pong--it is played with two balls instead of one.

2Pong is a pong clone with 2 balls.

<<less
Download (0.25MB)
Added: 2005-11-11 License: GPL (GNU General Public License) Price:
1443 downloads
pslange 0.1

pslange 0.1


pslange is a ncurses-based clone of the game snake. more>>
pslange project is a ncurses-based clone of the game snake.
pslange is a clone of an old classic game otherwise known as snake or nibbles.
The object of the game is to steer the snake around the screen eating the food that pops up. Every time the snake eats something it grows. If the snake hits an obstacle either itself or the wall, the game ends.
I wrote pslange as a small learning project in order to learn python. It may not be the most advanced game but I belive it is an entertaining way to spend a few minutes. :-)
Since it does have several features common to many python based command line tools, it may be useful to some people as an example on how to do these things in python.
Main features:
- Internationalization - also known as I18N.
- Python setup.
- Command line handling using the module optparse.
- Using the python curses interface.
<<less
Download (0.016MB)
Added: 2006-12-10 License: GPL (GNU General Public License) Price:
1051 downloads
Koncert 0.1

Koncert 0.1


Koncert is an arcade videogame clone for KDE/Qt. more>>
Koncert project is an arcade videogame clone for KDE/Qt.
Koncert is a clone of an old C64 arcade game (Rootin Tootin), written for KDE/Qt. Its part of the K64 project.
Installation guide:
# bzip2 -cd koncert-0.1.tar.bz2 | tar xf -
# cd koncert
# ./configure
# make
# make install
Enhancements:
- Added a levels editor.
- Made some bugfixes.
<<less
Download (0.92MB)
Added: 2006-12-09 License: GPL (GNU General Public License) Price:
1054 downloads
Open Invaders 0.2

Open Invaders 0.2


Open Invaders is a GPL version of Space Invaders. more>>
Open Invaders is a fully-GPL interpretation of Taitos Space Invaders. While it is not a perfect clone, the aim of the project is to provide a feature rich clone of the famous arcade game. It features (so far) 14 levels with unique backdrops and a full soundtrack.

<<less
Download (0.14MB)
Added: 2007-06-21 License: GPL (GNU General Public License) Price:
859 downloads
Caboodle 0.5

Caboodle 0.5


Caboodle is a puzzle game where you move points on the screen trying to untangle the lines linking them. more>>
Caboodle is a puzzle game where you move points on the screen trying to untangle the lines linking them.

This project is a clone of the Flash game Planarity for the GNOME desktop.

The objective of the game is to arrange the balls on the screen so that no lines cross.

Caboodle is available under the terms of the GNU General Public License.

<<less
Download (0.023MB)
Added: 2006-11-04 License: GPL (GNU General Public License) Price:
1094 downloads
Dune Legacy 0.94.1

Dune Legacy 0.94.1


Dune Legacy is a free clone of Dune2. more>>
Dune Legacy is a free clone of Dune2.

Updated clone of Westood Studios dune2. Uses original dune2 data files (not included) to provide original dune2 graphics and sounds.

New features include multiple unit selection/control, high resolution support, multiplayer gaming via tcp/ip, in game.

<<less
Download (1.0MB)
Added: 2006-07-23 License: GPL (GNU General Public License) Price:
1198 downloads
Super Mario Clone FX 1.0

Super Mario Clone FX 1.0


Super Mario Clone FX is a jump-and-run game in the style of Super Mario World. more>>
Super Mario Clone FX is a jump-and-run game in the style of Super Mario World. Secret Maryo Chronicles is a two-dimensional, sidescrolling jump-and-run platform game which utilizes the platform independent multimedia library, SDL.
It features a built-in level editor which can be used to easily create your own levels.
Main features:
In-Game Level Editor
- Activated by F8 in the game. You can insert any graphic file as a background or massive sprite in the game.
- Many standart graphics like hedges and ground sprites are included. You can insert enemys, set the players start position on the level,
- insert active sprites, and create half-massive sprites which the player can jump through, but can not fall through.
Multiple Levels
- Each level ends with gate or pipe, press up or down to enter the next level.
Multiple Maryo Stages
- Includes small Maryo, normal Maryo, and fire Maryo. Advance to the next stage by getting mushrooms and fire plants.
- These items can be obtained by jumping into question mark boxes.
Overworld
- Get an aerial perspective between levels, just like the World Map in Super Mario World.
Great Sounds and Music
- High quality Ogg music and sounds for the EXTRA maryo game feeling.
Save and Load
- Save anytime from the game menu. Then load whenever you want.
Get Extra Lives
- By getting 100 coins or finding the Green Mushrooms.
<<less
Download (15.3MB)
Added: 2007-07-31 License: GPL (GNU General Public License) Price:
747 downloads
Donkey Bolonkey 1.0

Donkey Bolonkey 1.0


Donkey Bolonkey is an arcade game where you have to match donkeys by using a bubble as a trap. more>>
Donkey Bolonkey is an arcade game where you have to match donkeys by using a bubble as a trap.

Donkey Bolonkey is my entry for the SpeedHack 2001, a competition of creation of video games with the Allegro library in just three days, that is to say, to make a complete game, with graphics, sounds, musics and EVERYTHING!... IN JUST SINGLE THREE DAYS!!!...

The game is a clone of the Rat Poker (a game created by the same author of the TETRIS) only that with donkeys, and some 200 times more bloodier.

I cannot add many things, but I can only say that this of the SpeedHack is a competition that needs dedication and effort, I personally could make this game breaking the head against the table, I was almost the 3 days to the maximum, I went to bed at 3am oclock I got up at 8am oclock, less the last day (on Monday 29) that fell asleep at 5 in the morning.

<<less
Download (0.44MB)
Added: 2006-01-06 License: Freeware Price:
1391 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5