urgently need code for tetris game

RULES OF GAME:

1. Spheres come down from the top of the game board in pairs. A player can rotate them on their way down.

2. Spheres come in 4 different colors: red, blue, green, and yellow

3. Linking four spheres of the same color (horizontally, vertically or both(as in tetris)) removes them from the game board, allowing any sphere remaining to drop and fill the vacated space.

This may lead to several possible "chain combos" if additional colors match.

4. The game board can be any size you want (we recommend 6x12)

Note that the pair of spheres are not linked to each other. If one sphere is blocked because there is something underneath, the other one will continue falling (with no player control over it) until it reaches something.

I am having the pictures of the spheres

- Please submit a java console application that will open a window and start the game.

- You may attach a separate text file that documents player controls and any other comments (as gameplay improvements, bugs not corrected, any comment that will help evaluate your submission...)

IMPORTANT:

- JAVA only- Java console application (not an applet)

Please Please Please Please send me the code to the following id

behera.chinmayananda@gmail.com

[1324 byte] By [Chinmayaa] at [2007-11-26 13:22:34]
# 1
how urgent? lets talk money.....
georgemca at 2007-7-7 17:53:43 > top of Java-index,Java Essentials,Java Programming...
# 2
http://forum.java.sun.com/thread.jspa?threadID=746174&tstart=0Join the party...
CaptainMorgan08a at 2007-7-7 17:53:43 > top of Java-index,Java Essentials,Java Programming...
# 3
package com.chinmayanandapublic class Tetris{// complete here}
suparenoa at 2007-7-7 17:53:43 > top of Java-index,Java Essentials,Java Programming...
# 4

> package com.chinmayananda

>

> public class Tetris{

>// complete here

> code]

[code]

public abstract class AbstractTetris {

public abstract void start();

public abstract void stop();

}

nearly done

georgemca at 2007-7-7 17:53:43 > top of Java-index,Java Essentials,Java Programming...
# 5
public static void main(String[] args){new TetrisGame().start();}
CaptainMorgan08a at 2007-7-7 17:53:43 > top of Java-index,Java Essentials,Java Programming...
# 6
and to play try:java TetrisGame in a terminal
suparenoa at 2007-7-7 17:53:43 > top of Java-index,Java Essentials,Java Programming...
# 7
Tsk tsk, a student who hasn't done their assignment... Illu (6 months out of college) :)
Illua at 2007-7-7 17:53:43 > top of Java-index,Java Essentials,Java Programming...
# 8
> and to play try:> java TetrisGame> in a terminalDon't forget.javac TetrisGame.java
CaptainMorgan08a at 2007-7-7 17:53:43 > top of Java-index,Java Essentials,Java Programming...
# 9
i will do this project for you for 50$ per hour. it shouldnt take me more then 4 hours to get this doneare you still interested?
mkoryaka at 2007-7-7 17:53:43 > top of Java-index,Java Essentials,Java Programming...
# 10
Here is a link to a 100 line tetris program: http://www.nikolajbaer.us/Files/tetris.htmlHave fun.
IanSchneidera at 2007-7-7 17:53:43 > top of Java-index,Java Essentials,Java Programming...
# 11
> Here is a link to a 100 line tetris program:Great! Now hes going to compile about millions of compiling errors. ;-)
CaptainMorgan08a at 2007-7-7 17:53:43 > top of Java-index,Java Essentials,Java Programming...
# 12
thanks buddy
Chinmayaa at 2007-7-7 17:53:43 > top of Java-index,Java Essentials,Java Programming...
# 13
Here is an easy 4 step process to get the source code for Tetris:Step 1: Find out where Alexey Pazhitnov lives.Step 2: Go over and punch him in the face.Step 3: Steal his computer.Step 4: Take the source code off of his computer.Enjoy!!
Kurisu_Dickensa at 2007-7-7 17:53:43 > top of Java-index,Java Essentials,Java Programming...