simple game with Java and Android Studio.
Budget: $10 – $30 USD
The task is to write a simple Maze game:
1. The game should contain a start window - the main window. After the game, the result window and resume
2. The structure of the maze should be stored in the form of an integer table.
3. Each of the numbers determines the entrances / exits for a given chamber of the maze: bit values determine which doors can be passed. 1(2^0)-left, 2(2^1)-right, 4(2^2)-up, 8(2^3)-down. 4.One-way crossings are allowed.
5. Each chamber should be implemented as one screen with four buttons on its edges. Pressing the button takes you to the chamber on the side of the screen where the button is located.
6. Determining the possibility of moving to the next chamber should be determined by the color of the button (graphic elements can be used).
7. The end of the game consists in reaching the stop chamber defined by the value 0.
Maze example: {10, 8, 10, 9, 28, 1, 0, 12, 12, 10, 9, 13, 6, 5, 6, 5}
1. The game should contain a start window - the main window. After the game, the result window and resume
2. The structure of the maze should be stored in the form of an integer table.
3. Each of the numbers determines the entrances / exits for a given chamber of the maze: bit values determine which doors can be passed. 1(2^0)-left, 2(2^1)-right, 4(2^2)-up, 8(2^3)-down. 4.One-way crossings are allowed.
5. Each chamber should be implemented as one screen with four buttons on its edges. Pressing the button takes you to the chamber on the side of the screen where the button is located.
6. Determining the possibility of moving to the next chamber should be determined by the color of the button (graphic elements can be used).
7. The end of the game consists in reaching the stop chamber defined by the value 0.
Maze example: {10, 8, 10, 9, 28, 1, 0, 12, 12, 10, 9, 13, 6, 5, 6, 5}
Related categories:
Business, Accounting, Human Resources & Legal
Mobile App Development
Android
Game Development