Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
10answers
9k views

Tetris Piece Rotation Algorithm

What are the best algorithms (and explanations) for representing and rotating the pieces of a tetris game? I always find the piece rotation and representation schemes confusing. Most tetris games ...
8
votes
5answers
2k views

Is there a standard size for the Tetris grid?

I am, as a lot of other programmers, building a Tetris clone. But the thing is that I try to do my best and I know maybe it's not a relevant detail; but I want to know whether there's a standard size ...
7
votes
2answers
190 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 ...
7
votes
3answers
3k views

How to write Tetris in Scala? (code review)

Today's the 25th birthday of Tetris. I believe writing Tetris clone is one of the best ways to familiarize oneself to a new language or a platform. It's not completely trivial and it lends itself well ...
6
votes
2answers
897 views

Tetris: Layout of Classes

I've written a working tetris clone but it has a pretty messy layout. Could I please get feedback on how to restructure my classes to make my coding better. I focuses on making my code as generic as ...
5
votes
2answers
165 views

Determining which inputs to weigh in an evolutionary algorithm

I once wrote a Tetris AI that played Tetris quite well. The algorithm I used (described in this paper) is a two-step process. In the first step, the programmer decides to track inputs that are ...
3
votes
4answers
2k views

Rotating cordinates around pivot? (tetris)

I'm attempting to design my very own tetris clone but have run into a little problem with shape rotations. I have a 2 dimensional array representing a 10 x 20 game grid and individual shape objects ...
2
votes
1answer
71 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 ...
2
votes
1answer
196 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 ...
2
votes
4answers
160 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
4answers
856 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 ...
1
vote
0answers
88 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, ...
1
vote
1answer
198 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 ...
1
vote
3answers
384 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 ...
1
vote
3answers
93 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
vote
2answers
758 views

python list Index out of range error

I am working on a python tetris game that my proffessor assigned for the final project of a concepts of programming class. I have got just about everything he wanted to work on it at this point but I ...
1
vote
4answers
910 views

How do I create Tetris Blocks in XNA with C#?

I'm making a Tetris Clone in C# with XNA, and I'm unsure of how to actually implement the blocks. I don't think that making the shapes as images will work (because parts are removed when lines are ...
1
vote
2answers
1k views

C# console tetris programming. Making the pieces move?

I'm trying to make my first game, a console tetris. I have a class Block, that contains x and y integers. Then I have a class Piece : List<Block>, and a class Pieces : List<Piece>. I can ...
0
votes
3answers
162 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 ...
0
votes
3answers
152 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 ...
0
votes
2answers
106 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
40 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
101 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. ...
0
votes
1answer
356 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 ...
0
votes
1answer
217 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 ...
0
votes
4answers
794 views

tetris rotation

For university we're supposed to write a game (the language is modula2 little chance you know it). Each tetromino is defined through a central piece and 3 relative pieces, Now when it comes to ...
0
votes
4answers
661 views

Can Tetris be made without using XNA currently? Using C#?

I have an outdated computer, that currently will not run certain XNA components. I am a beginner at this stuff, so I'm looking to get some other programming stuff done before I get a new computer that ...
-1
votes
2answers
55 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) ...