A Tetris-like video game created for AppHackX.
Tetris Galaxy is a video game inspired by Tetris. In Tetris Galaxy, blocks fall from all edges of the screen towards the center. Lines are cleared in concentric squares around the center. Tetris Galaxy is a fun variation of Tetris that would be enjoyable to any Tetris fan.
This guide is for users seeking to install and play Tetris Galaxy.
This guide is not for users seeking extensive help to modify Tetris Galaxy.
Gameplay information can be found here.
while (!g.startIt()) { wait(150); }
g.passIn(board, activeSet, scoring, bag);
try { gameLoop();}
catch (Exception e) { g.end();}
Code for the game loop located in Game.java
. The graphics driver g
is
passed in game information from the previous iteration via the passIn
method.
Then, the gameLoop
function computes logic for the next game tick.
Additional source code for Tetris Galaxy can be found on Github.
For additional support, contact Matthew Swanson