simspeed: rescale; each step is now 5x the previous

The scaling used to be 10x each step,
now it is 5x, with the "normal" speed being unchanged.

git-svn-id: https://micropolis.googlecode.com/svn/trunk/micropolis-java@613 d9718cc8-9f43-0410-858b-315f434eb58c
This commit is contained in:
jason@long.name 2013-04-29 22:02:21 +00:00
parent f6fd885d75
commit d17084261d

View file

@ -14,10 +14,10 @@ package micropolisj.engine;
public enum Speed
{
PAUSED ( 999,999, 0),
SLOW ( 500, 5, 1), //one step every 2500 ms
SLOW ( 250, 5, 1), //one step every 1250 ms
NORMAL ( 125, 2, 1), //one step every 250 ms
FAST ( 50, 1, 2), //one step every 25 ms
SUPER_FAST( 25, 1, 10); //one step every 2.5 ms
FAST ( 50, 1, 1), //one step every 50 ms
SUPER_FAST( 50, 1, 5); //one step every 10 ms
/** The animation speed, expressed as an interval in milliseconds. */
public final int animationDelay;