LeftistTachyon / TetrisHG

TetrisHG stands for Tetris High Gravity. Pretty much a remake of my BattleTetris, but better. And more fun.
1 stars 1 forks source link

Add gravity and delay updates #4

Closed LeftistTachyon closed 5 years ago

LeftistTachyon commented 5 years ago

The plan is gravity update (+4G) every 20s until 20G, then delay updates every 30s. Keep the counter in the TetrisMatrix, 20 * 60 so 1200 ticks for 20 seconds and 30 * 60 so 1800 ticks for 30 seconds. Send the notification for updating the thing first, do the standard double-check, then update self. Storing data might be finicky, unsure of how to do that.

LeftistTachyon commented 5 years ago

Now I'm thinking storing the stuff in the Panel instead

LeftistTachyon commented 5 years ago

Use delays from TGM 3 Master mode

LeftistTachyon commented 5 years ago

Done...?