FoonLudum Dare ExplorerUsers → mibbio

mibbio

Games

YearLDThemeGameDivisionRankOvFuInThGrAuHuMoCo
201326Minimalismenergizedcompo7582.982.633.143.122.812.781.632.6789

Performance over time

overall score (left axis) percentile (right axis)

Scatterplots

Fun vs Overall

Innovation vs Overall

Theme vs Overall

Graphics vs Overall

Audio vs Overall

Humor vs Overall

Mood vs Overall

Comments by mibbio

LD26 — Minimalism

Tune Locks by Phased 2013-05-01T21:11:00

Got crash at start with
Exception in thread "Thread-0" java.util.InputMismatchException
at java.util.Scanner.throwFor(Unknown Source)
at java.util.Scanner.next(Unknown Source)
at java.util.Scanner.nextFloat(Unknown Source)
at ld26.phased.util.Settings.load(Settings.java:26)
at ld26.phased.Game.init(Game.java:89)
at ld26.phased.Game.run(Game.java:49)
at java.lang.Thread.run(Unknown Source)
OS is Windows 7 x64 with Java 1.7.0_21 (64bit)

Tune Locks by Phased 2013-05-03T10:37:00

Found the reason why it can't read the settings data. It's the way the scanner reads (decimal-)numbers.
See: http://docs.oracle.com/javase/7/docs/api/java/util/Scanner.html#localized-numbers
By default the scanner uses the locale reported by the OS and as my OS is set to german (usage of '.' and ',' switched) the scanner expects '1,0' as a decimal number.
Just add 'scanner.useLocale(Locale.US);' or any other preferred locale directly after creating the scanner and it shouldn't care for the OS locale anymore.

energized by mibbio 2013-04-29T09:16:00

The game can load external maps. There are instructions about it in the wiki of my linked github source repository.

energized by mibbio 2013-04-29T13:48:00

@B try to start it in the Terminal with "java -jar energized.jar".
If it show an error like "Unsupported major.minor version 51.0" your installed Java version is to old. Install a newer one or try this download: http://mibbiodev.de/download/ld26/java16/energized.jar

energized by mibbio 2013-04-29T19:27:00

About the energy: the light/color pulse indicates the level. The weaker the pulse the lower your energy.
The intention of this minimal information is that the player should find a good balance between depleting a charging station for recharge or leave it as backup and transfer energy to unlock doors.

energized by mibbio 2013-04-30T17:31:00

Try to launch it with "java -jar energized.jar" in the command prompt. If there are any error you will see it there.

energized by mibbio 2013-04-30T22:54:00

Thanks for the feedback so far. I know, the controls are a bit "special". It's caused by a bug i couldn't fix without wasting to much time.
Currently i'm working on a post-compo version of the game - including better controls.