Tagged Questions

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 ...
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
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 ...
1
vote
3answers
381 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
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 ...