tetris clone
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 418

Tetris 0.9
This is a clone of the popular tetris game, written in Python and PyGame. more>>
Tetris 0.9 will provide hours of entertainment for everyone. This is designed as a clone of the popular tetris game, written in Python and PyGame.
It has a menu and high scores for the number of lines, and the score (more points for the number of lines made at once). You control your blocks with the arrow keys (left, right to move, up to rotate, and down to speed up).
Requirements:
- Operating Systems - Should work anywhere with python, but only tested on windows.
- Source Dependencies
-
- python 2.5-2.6
- pygame 1.7+
Added: 2009-01-27 License: GPL Price: FREE
660 downloads
3D Tetris 4.1.0
The goal of the 3D Tetris game is to complete a layer with blocks without gap which will cause the layer to disappear. With ongoing time this will bec... more>> <<less
Download (87KB)
Added: 2009-04-25 License: Freeware Price: Free
202 downloads
Java Tetris 1.0
Java Tetris project is a simple Tetris game. more>>
Java Tetris project is a simple Tetris game.
Java Tetris is a game written with Eclipse and the VE Plugin. It is a nice starting point if you want to learn Java and Eclipse.
The game can be started as Java applet or Java application.
Enhancements:
- The dependency on jdom was removed.
- The jar is now only 30kb.
- A bug was fixed in the score list.
<<lessJava Tetris is a game written with Eclipse and the VE Plugin. It is a nice starting point if you want to learn Java and Eclipse.
The game can be started as Java applet or Java application.
Enhancements:
- The dependency on jdom was removed.
- The jar is now only 30kb.
- A bug was fixed in the score list.
Download (0.12MB)
Added: 2007-05-25 License: GPL (GNU General Public License) Price:
961 downloads
Vertris 0.3.2
Vertris project is a simple cross-platform Tetris clone. more>>
Vertris project is a simple cross-platform Tetris clone. Vertris is written in C that uses the Allegro library for graphics. It is covered under the GNU General Public License (GPL).
Enhancements:
- A freezing bug was fixed.
<<lessEnhancements:
- A freezing bug was fixed.
Download (0.30MB)
Added: 2007-06-05 License: GPL (GNU General Public License) Price:
871 downloads
CTris 1.2
CTris is a simple tetris clone. more>>
CTris its mainly a tetris clone made by me for educational purposes, you can try to
have a look at the code but unfortunately its terribly messy and with few comments.
If you want to compile it from the sources you will need the DUMB libraries.
<<lesshave a look at the code but unfortunately its terribly messy and with few comments.
If you want to compile it from the sources you will need the DUMB libraries.
Download (0.84MB)
Added: 2005-08-11 License: (FDL) GNU Free Documentation License Price:
1534 downloads
Other version of CTris
License:GPL (GNU General Public License)
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.
<<lessIt 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.
Download (15.3MB)
Added: 2007-07-31 License: GPL (GNU General Public License) Price:
747 downloads
GTetrinet 0.7.11
GTetrinet is a client program for the popular Tetrinet game, a multiplayer tetris game that is played over the Internet. more>>
GTetrinet project is a client program for the popular Tetrinet game, a multiplayer tetris game that is played over the internet.
<<less Download (0.46MB)
Added: 2006-11-15 License: GPL (GNU General Public License) Price:
1078 downloads
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().
<<lessSYNOPSIS
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().
Download (0.010MB)
Added: 2007-05-16 License: Perl Artistic License Price:
899 downloads
Alizarin Tetris 1.0.6
Alizarin Tetris is a Tetris-like game with a twist for Unix, Win32 and BeOS systems. more>>
Alizarin Tetris is a Tetris-like game with a twist for Unix, Win32 and BeOS systems. It includes multi-player support, user-extensible color, shape and sound styles, can use TCP/IP networking and features a few different AI opponents. This game was written using the SDL Library.
<<less Download (0.40MB)
Added: 2007-08-01 License: GPL (GNU General Public License) Price:
819 downloads
gtktetcolor 0.6.4
gtktetcolor project is a small Tetris clone for X. more>>
gtktetcolor project is a small Tetris clone for X.
gtktetcolor is a GTK+ reimplementation of tetcolor, a Tetris-like game.
GtkTetcolor is a game that resembles well-known tetris and columns. The rules of the game are simple - you can move or rotate the block which continue to fall.
After block landing the sequence of at least three cells horizontally, vertically or diagonally having matching colors is removed and the above blocks will collapse.
If two or more sequences will be removed simultaneously the player has got bonus points. The game will be over when new block cannot be placed on screen.
I wrote GtkTetcolor with Glade.
<<lessgtktetcolor is a GTK+ reimplementation of tetcolor, a Tetris-like game.
GtkTetcolor is a game that resembles well-known tetris and columns. The rules of the game are simple - you can move or rotate the block which continue to fall.
After block landing the sequence of at least three cells horizontally, vertically or diagonally having matching colors is removed and the above blocks will collapse.
If two or more sequences will be removed simultaneously the player has got bonus points. The game will be over when new block cannot be placed on screen.
I wrote GtkTetcolor with Glade.
Download (0.18MB)
Added: 2006-11-17 License: GPL (GNU General Public License) Price:
1072 downloads
Sporktris 1.0
Sporktris is a clone of Tetris-clones. more>>
Sporktris is a clone of Tetris-clones. It is meant to be fun, functional, and pretty, with as little annoyance as possible.
Technical details: Sporktris is written in C++, using SDL for graphics and input (for easy portability). It requires SDL, SDL_image and SDL_ttf to build.
This project is Free Software released under the GPL. However, donations are greatly appreciated.
Main features:
- Customizable keys
- Nifty level backgrounds, and coloured pieces to go with them
- Highscores
- Cross-platform (works on at least Mac OS X, Windows and Linux)
- Its own key repeat system (allows for holding down two keys at once, among other things)
- Automatically pauses when it isnt in front
- Will not cause a raccoon infestation in your home or work place
- Handy Features list
<<lessTechnical details: Sporktris is written in C++, using SDL for graphics and input (for easy portability). It requires SDL, SDL_image and SDL_ttf to build.
This project is Free Software released under the GPL. However, donations are greatly appreciated.
Main features:
- Customizable keys
- Nifty level backgrounds, and coloured pieces to go with them
- Highscores
- Cross-platform (works on at least Mac OS X, Windows and Linux)
- Its own key repeat system (allows for holding down two keys at once, among other things)
- Automatically pauses when it isnt in front
- Will not cause a raccoon infestation in your home or work place
- Handy Features list
Download (2.6MB)
Added: 2007-08-08 License: GPL (GNU General Public License) Price:
807 downloads
TkHearts 0.80
TkHearts is an clone of the Hearts card game. more>>
TkHearts is an clone of the Hearts card game. The AI is currently not fantastic.
Steven A has made a few changes with reguards to window handling, look and feel and features.
<<lessSteven A has made a few changes with reguards to window handling, look and feel and features.
Download (0.095MB)
Added: 2006-09-11 License: GPL (GNU General Public License) Price:
1140 downloads
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.
<<lessDonkey 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.
Download (0.44MB)
Added: 2006-01-06 License: Freeware Price:
1391 downloads
TiWarriors 0.4
TiWarriors is an Asteroids clone with multiplayer support and incremental ship control. more>>
TiWarriors project is an Asteroids clone with multiplayer support and incremental ship control.
Two things differ from the original: energy control and multiplayer mode.
Enhancements:
- added some config options like antialiasing and the option to switch to full screen or window mode.
<<lessTwo things differ from the original: energy control and multiplayer mode.
Enhancements:
- added some config options like antialiasing and the option to switch to full screen or window mode.
Download (MB)
Added: 2006-12-07 License: GPL (GNU General Public License) Price:
1052 downloads
TripleA 0.9.0.1
TripleA is a clone of the popular board game more>>
TripleA is an open source clone of the popular axis and allies boardgame.
TripleA game supports network play, alternative rule sets, and is easy to customize.
Enhancements:
- A lobby to find players on board, map scaling, an odds calculator, and new maps and rulesets were added.
<<lessTripleA game supports network play, alternative rule sets, and is easy to customize.
Enhancements:
- A lobby to find players on board, map scaling, an odds calculator, and new maps and rulesets were added.
Download (9.7MB)
Added: 2007-01-10 License: GPL (GNU General Public License) Price:
1080 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above tetris clone search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed