Block matching game created by Alexey Pajitnov . Elements are 4-segmented pieces where the name of the game comes (tetra is numerical prefix in Greek used for 4).

learn more… | top users | synonyms

1
vote
2answers
49 views

Having trouble stopping the pieces in my Tetris game(Java swing)

I'm making a tetris game in Java, and I am having a little trouble making the current piece stop when they hit another piece that's already landed. I have separate classes for each tetromino shape. ...
0
votes
0answers
21 views

I keep getting a nullpointerexception error in gridworld when nothing is null. (java)

I'm designing a tetris game in Gridworld. Below is the method that produces the error. It is a method of the Block class, which is a collection of Actors on which move and rotate methods can be ...
1
vote
2answers
74 views

My pygame tetris game keeps getting stuck

I am a beginner python programmer and I am trying to make a tetris game. When I run the game, the block moves down 10 pixels every second. The problem is that randomly the block just stops, the print ...
-1
votes
1answer
113 views

Tetris function move right in C [closed]

Currently i have the move left function int8_t move_piece_left(piece_type* piecePtr) { int8_t row; /* * Check if piece is all the way to the left If so, return. * (Remember, column number is based ...
2
votes
3answers
133 views

C# Tetris game slow performance

I'm programming a tetris clone for my C# school project. I am using Microsoft Visual Studio 2012. The game itself is implemented as a two dimensional array of blocks(List of Lists of blocks) and every ...
-2
votes
0answers
27 views

tetris function implementation (defining and drawing the shapes and the board) [closed]

good day, i am trying to design a tetris board and so far i have implemented some basic functions. I'm not sure that i'm doing everything correctly so i would like for a tetris expert to review my ...
0
votes
3answers
64 views

Stuck while making tetris

I am trying to make my own version of the Tetris game. So far, I am able to show pieces, rotate them. But I am stuck at a point and not sure how to proceed. I have a BoardClass with static ...
2
votes
1answer
113 views

Java Tetris - Using transpose to rotate a piece

I'm building Tetris in Java as a fun side project and am now working on rotations. I was originally hard coding each rotation which was proving to be quite tedious. That being said, I was then going ...
0
votes
1answer
50 views

Tetris-style collision detection in Actionscript 3 using Flashpunk

I am creating a tetris-style game in Actionscript 3 while using the flashpunk library. I have everything working except for some of the collision detection that I'm having trouble figuring out. When ...
0
votes
0answers
29 views

Tetris - piece won't move when falling, is it about sleep?

If I don't set timer, Tetris works perfectly. while (!isFinished) { game.dropPiece(); isFinished = Grid.checkFinalRow(); } It calls dropPiece method: void dropPiece() { ...
0
votes
0answers
29 views

Small error with tetris piece fitting

I've been thinking about this for like 7-8 hours but couldn't come up with a solution. Here's the problem: I create piece as 2 dimensional arrays. My moveDown method is: synchronized void ...
1
vote
1answer
96 views

Tetris GUI by coloring JButtons. Problems with rendering

I am making a Tetris game and for my GUI I chose to color JButtons to use as my tetris board. I set up a grid of JButtons. I plan to loop through the Tetris grid that is returned from newGrid = ...
1
vote
0answers
113 views

Using java.awt.Robot in a multithreaded environment

I'm working on a (virtual) competitive automated tetris player. Since the game is, well, competitive, I would naturally like my tetris player to press as many keys as possible at the same time. The ...
3
votes
2answers
146 views

Fill entire 2D Array (Tetris board) with Tetris pieces, no spaces left over (Java)

Let's say I have a 2D int array.. int[][] board = new int[10][20]; public void initBoard() { for(int r = 0; r < 10; r++) for(int c = 0; c < 20; c++) board[r][c] = 0; } ...
2
votes
2answers
256 views

How to approach drawing shapes in C# to make a tetris clone?

I would first like to note that I am NOT using any XNA or LINQ in this small project. Basically, I want to make a clone of Tetris using C# windows application. I have already drawn out my grid, my ...
5
votes
1answer
171 views

Moving a user control around within another user control

I'm trying to write a tetris clone, and after doing some research I've come across an example that uses small user controls to form the block and a bigger user control that contains the grid. ...
0
votes
0answers
158 views

GridView on my GameView (SurfaceView)

I have the following problem. I am trying to code a Tetris Game for Android. Therefore I need to put a Grid on the GameView (a self coded class, which extends the SurfaceVieW). Unfortunately I do ...
6
votes
3answers
305 views

Fill up a grid/matrix with pre-defined shapes

Nice to see two up votes for the question. I'll re-word my question now to avoid confusion. The question is how to fill up a mxn grid/matrix with random but pre-defined shapes without a hole. ...
1
vote
4answers
244 views

how to generate Tetris piece from a given grid

At first I think my question should have been asked before, but I didn't find what I want. One element of this iOS app I'm developing is break a 8x8 grid into Tetris pieces (every piece is made of 4 ...
0
votes
1answer
66 views

How to settle an an image in Applet for tetris game

I developing tetris game using applets. I have generated random shapes and making it move. But i don't know how to make it settle at the bottom. My shapes are vanishing once it reaches the end of the ...
0
votes
0answers
46 views

iter all possible tetris block forms [duplicate]

Possible Duplicate: Programming Contest Question: Counting Polyominos There are different types of Tetris shapes. For example in shape like letters T L I Z J O S. I'm trying to get an ...
2
votes
3answers
263 views

rotating string array in java

How would i rotate a string array in java for a tetris game i am making. For example, the string array [ "JJJJ", "KKKK", "UUUU" ] would become [ "UKJ", "UKJ", "UKJ", "UKJ" ] I can do it with a ...
0
votes
2answers
120 views

Tetris-like Applet using Stacks — Popping off tops

So in my class we are working a simple Tetris like applet in Java. Blocks fall from the top of the screen into 6 different columns and each different column is a stack. In order to score points you ...
0
votes
1answer
70 views

Tetris tray generator [closed]

I plan to create a Tetris clock based on the following video: http://www.youtube.com/watch?v=nIu74xDp2Ek I consulted many about the development of a Tetris game but it is not the same principle as ...
0
votes
0answers
322 views

Making Tetris - Line Clearing Help - Beginner at Java (FX)

So I've been stuck on this for a while. I've made a 'row' checker that checks if the row is full everytime a block is placed. I know this works through many println and other experiments. ...
0
votes
2answers
123 views

Confused with a piece of code form a tetris game controling the speed of the block

if(loopCount % (20 - loopCount / 100) == 0) { if(dropBlock() == false) { mode = -1; loopCount = 1; } if(loopCount == 1900) ...
0
votes
1answer
308 views

Arrow Keys on calling object method in Tetris game C++ Visual 2008

Im trying to use arrow keys to move tetris block left & right and rotate, but its not working while the block falls down the gameGrid. Here is my code. //Here is my Game cycle in the timer ...
2
votes
1answer
134 views

CLI/C++ Tetris block crashes when check if cell is occupied is empty MSVisualStudio 2008

Here is my code for checking if future move is legal, I have assumed its legal and copied move into mySquares array. I then call this method in the game cycle set in the form and in the timer handler ...
2
votes
1answer
911 views

Python and TKinter after(milliseconds, event) looping indefinitely, never entering mainloop()

This is my first post. I started coding when considering a career swap two months ago and am working on a Tetris clone. I've implemented most of the core features, but cannot get the game to refresh ...
1
vote
4answers
556 views

JPanel within JFrame

I've just started learning Java and now I'm making a GUI for Tetris. I want to have something like that: But I get: EDIT: Could someone tell me how to fix this? It is the part of a TetrisFrame's ...
3
votes
1answer
256 views

Tetris clear lines issue

I am making a tetris clone for a project. I'm pretty much done but my clear lines class has a bug that I cant shake. I have made a 10*20 grid which I draw the sprites into. When I get a line at the ...
-1
votes
1answer
153 views

Tetris midlet attributes

public static final int SQUARE = 0, LINE = 1, S_FIGURE = 2, Z_FIGURE = 3, RIGHT_ANGLE_FIGURE = 4, ...
2
votes
2answers
316 views

Trying to create tetris, but can't

For some reason my code refuses to let me assign an x and y position to each block. Each block is 30 pixels wide and tall and will be colored according to which piece it is a part of. Gravity and a ...
-2
votes
2answers
208 views

Random Tetris Shape

I am trying to write a python program that will draw a random Tetris shape onto a board. Here's my code: def __init__(self, win): self.board = Board(win, self.BOARD_WIDTH, self.BOARD_HEIGHT) ...
0
votes
3answers
437 views

Checking Left/Right in an int array for Tetris, Android/Java

I'm trying to make a tetris game for android to help learn game programming for android. My goLeft/Rights break right when the button is pressed, the code for going left is in a class separate of the ...
1
vote
0answers
176 views

Error in android tetris - getEntry

At the time me and a friend are programming the classic game Tetris, for a school project. I have been programming for an while now and had implemented both a rotate and a moveBlock, and newBlock, ...
2
votes
1answer
123 views

What is the preferred machine learning technique for building a real-time game player simulator? [closed]

I've set out to build an AI-engine that learns to play Tetris, i.e. an engine that can improve it's performance, perhaps by adjusting its heuristics, and so forth. Let's say that I've got the GUI out ...
0
votes
3answers
530 views

Why am I getting this Stack Overflow exception?

I am writing a Tetris clone, which is the largest project I have really done. In implementing the row deletion code, I have begun recieving a stack overflow exception. I think it probably has ...
8
votes
2answers
670 views

Genetic algorithm and Tetris

Im creating a Tetris player using genetic algorithms, and facing some issues. I've read a lot of related works, but they don't give me enough details on the GA. The problem is that my agent seems to ...
0
votes
2answers
872 views

CCMoveBy behaviour

I'm getting stuck to implement some Cocos2D animations for my Tetris clone(that works perfectly, no logic bugs, i just want to perform some smooth animation when deleting rows). The current code(no ...
0
votes
1answer
70 views

Good-enough dynamic object packing

Using javascript, I aim to pack a set of set-size objects into a container of a given horizontal width, while maintaining an approximate initial order. White space isn't a particular issue, but the ...
0
votes
0answers
243 views

Using tetris block in game [closed]

I'm developing game for iOS. Game is puzzle which consist of blocks which simular to tetris block and user should set it to right place. Blocks dont fall from top. User manipulates it with taps. ...
2
votes
1answer
380 views

Can't spot the bug in my Java Tetris game

My friend and I have made a tetris-like game in Java and it works fine for a while and then suddenly bugs out at around the same number of total pieces every time. For example, it might bug out at 42 ...
1
vote
1answer
307 views

Correct use of wait()/notify() for a Tetris game

I’m writing a Tetris-like game for Android and I’m trying to implement the “real-time part”. I have something which seems to work, but I want to be sure that my implementation is correct. What I ...
2
votes
4answers
229 views

Tetris Timing Problem

I am writing a Tetris program with PyGame, and came across a funny problem. Before I ask the question, here is the pseudo-code: while True: # In this part, the human controls the block to go ...
2
votes
3answers
972 views

Java Tetris rotation

I know this has been asked a lot but I'd like to know how to rotate a Tetris piece? I already made a long and bad solution (~170 lines of code) but there should be easier way to do it. My tetris ...
0
votes
1answer
767 views

Storing Piece objects on array - java Tetris Tutorial

Im just new to Java and i found this good tutorial for creating a Java Tetris Game. I dont have a mentor or a tutor to help me with this - Ive been looking for one for ages :( so currently im self ...
2
votes
4answers
3k views

Why create a new Object - Java Tetris Tutorial

Im just new to Java and I found this good tutorial for creating a Java Tetris Game. I dont have a mentor or a tutor to help me with this - Ive been looking for one for ages :( so currently im self ...
0
votes
1answer
411 views

WPF Tetris Index Out Of Range Exception

I am very new and very inexperienced. I have downloaded a WPF version of tetris from MSDN to review the code and try to see whats going on but there is an error in the program and I'm not sure what is ...
1
vote
3answers
267 views

How can I generate a list of all Tetrominos?

How can I generate a list of all Tetrominos? Or, more generally, how can I generate a subset of the polyominoes restricted to a number of cells?

1 2