Difference between revisions of "Activities/Implode"

From Sugar Labs
Jump to navigation Jump to search
m (moved Activities/Implode to Walter is a wanker 7/Implode: Walter is a wanker)
(2 intermediate revisions by 2 users not shown)
Line 13: Line 13:
  
 
* The game starts up with a field of blocks.
 
* The game starts up with a field of blocks.
* Using the mouse pointer, click on a block that is in a group of three or more of the same color (clickable groups highlight as you pass the mouse cursor over them).  Clicking on a group removes it and compacts the playing field.
+
* Using the mouse pointer, or touchscreen, click on a block that is in a group of three or more of the same color (clickable groups highlight as you pass the mouse cursor over them).  Clicking on a group removes it and compacts the playing field.
 
* Continue clicking groups of blocks until the board is cleared.
 
* Continue clicking groups of blocks until the board is cleared.
 
* If you get stuck with leftover blocks, you can:
 
* If you get stuck with leftover blocks, you can:
Line 20: Line 20:
 
** Click the New icon in the tool bar to try a different puzzle.
 
** Click the New icon in the tool bar to try a different puzzle.
  
The game can also be played via the game keys and directional pad:
+
The game can also be played via the game keys and directional pad on an XO laptop:
 
* Use the directional pad to move the selection cursor.
 
* Use the directional pad to move the selection cursor.
 
* Use the checkmark game key to remove a selected group of blocks.
 
* Use the checkmark game key to remove a selected group of blocks.
Line 31: Line 31:
 
* More localization.
 
* More localization.
 
* Rectangle invalidation could be improved.
 
* Rectangle invalidation could be improved.
* A tutorial mode or sequence of introductory games might help.
 
 
* The code documentation and organization needs to be improved.  Some calculations are repeated.
 
* The code documentation and organization needs to be improved.  Some calculations are repeated.
 
* Audio cues might be nice.
 
* Audio cues might be nice.
Line 39: Line 38:
 
== Resources ==
 
== Resources ==
  
* [http://activities.sugarlabs.org/en-US/sugar/addon/4086 Activity download page]
+
* [http://activities.sugarlabs.org/en-US/sugar/addons/versions/4086 Activity download page]
* [http://git.sugarlabs.org/projects/implode Source]
+
* [https://github.com/quozl/implode-activity.git Source]
 +
* [https://github.com/godiard/help-activity/pull/27/commits/8ae961c966a86630aa4e30264b6da9e26b7d9f55 Help activity module for Implode]

Revision as of 02:02, 23 May 2016

Activity-implode.svg

Overview

Implode is a logic game based on the "falling block" model of Tetris. The game starts with a grid partially filled with blocks. The player makes a move by removing adjacent blocks of the same color in groups of three or more. When blocks are removed, higher blocks fall to fill their space, and when a column is cleared, the blocks on either side close to fill the gap. The object of the game is to remove all the blocks. Since the patterns of blocks above changes when lower blocks are removed, the player must carefully decide what order in which to remove the blocks so that there are no isolated blocks left at the end of the game. (The levels are generated in such a way that there is always a sequence of removals that clears the board.)

Screenshot

Implode.png

How to play

  • The game starts up with a field of blocks.
  • Using the mouse pointer, or touchscreen, click on a block that is in a group of three or more of the same color (clickable groups highlight as you pass the mouse cursor over them). Clicking on a group removes it and compacts the playing field.
  • Continue clicking groups of blocks until the board is cleared.
  • If you get stuck with leftover blocks, you can:
    • Click the Undo icon in the toolbar to undo some moves so that you can try again.
    • Click the Restart icon in the toolbar to try the puzzle again from the beginning.
    • Click the New icon in the tool bar to try a different puzzle.

The game can also be played via the game keys and directional pad on an XO laptop:

  • Use the directional pad to move the selection cursor.
  • Use the checkmark game key to remove a selected group of blocks.
  • Use the circle game key to undo a move.
  • Use the X game key to redo a move.
  • Use the square game key to start a new game (only active when the level is cleared).

To do

  • More localization.
  • Rectangle invalidation could be improved.
  • The code documentation and organization needs to be improved. Some calculations are repeated.
  • Audio cues might be nice.
  • Tracking win/loss statistics might be nice.
  • The game could detect a loss and display a "Try again" graphic.

Resources