FoonLudum Dare ExplorerLD39 → Exponential Maintenance Engineer

Exponential Maintenance Engineer

By nintendoeats

View on ldjam.com

CategoryRankScoreCount
Overall3883.2238
Fun2833.2538
Innovation1373.5538
Theme6492.1138
Graphics4352.9334
Audio2063.1638
Mood2723.0838

Comments

increpare 2017-07-31 13:56

the game didn't fit in my screen's resolution - some of the left interface was cut off (1280x800)

this felt really nice to play. i can see you taking this in many new places. thank you for the lovely game :)

(also, I liked the music)

pauljs 2017-07-31 14:02

A bit too easy and too messy. I also got a glitch sound (hard to describe just a lot of noise) which was really not that great. And I couldn't start the game without a controller. Nice anyway !

nintendoeats 2017-07-31 14:42

@pauljs: What platform are you on? It sounds like something is really wrong and I have only tested in Windows.

gnerkus 2017-07-31 14:53

Boom! Watching the blocks disappear was satisfying. I wish I had more time to play the game. I hope to return to it after the rating's done.

What I liked

- Placing blocks in the paths of the stormtrooper-accurate rockets was a lot of fun. - Calculating my score before hand was also great. I'm a bit biased towards games with numbers. - The soothing music.

What could use some improvement

- The art didn't seem to fit in well to me. I would have preferred a the objects had flat textures.

Thanks for a fun game. I'm looking to ~~steal~~ be inspired by the core mechanic.

nintendoeats 2017-07-31 19:16

@increpare Thanks, this issue has been fixed.

badly-drawn-rod 2017-07-31 20:21

This was more than satisfying to play, and the fact that it gave me high scores didn't hurt either (self + 1, spouse + 1). I enjoyed this very much - it has that "one more go" feeling, and it would be interesting to see what would happen if you developed it further.

adrien-dittrick 2017-07-31 20:47

very nice game. The gameplay was solid, with some decent graphics. Aiming at rockts is a bit tricky, but it's very satisfying when you pull it off. The idea of a 3D tetris (which is what i saw it as was inspiring :)

triastase 2017-07-31 23:02

The best thing about this game is definitely the concept – which is probably the most important thing in a contest with only limited time for the execution. I love it!

The graphics look kind of unfinished and I also got a sound glitch on Mac (induced by a small physics glitch, with object bouncing around a bit). But it's still a very original and good game. :)

pauljs 2017-07-31 23:39

@nintendoeats Windows 10

peculiarcarrot 2017-08-01 03:08

The sound and art is alright, but the mechanic was pretty interesting. I don't see how this is running out of power, more like running out of space. It felt a bit easy, but I feel like you could do some neat stuff with the mechanic you have here. Your description made me laugh :)

nintendoeats 2017-08-01 03:16

@PeculiarCarrot: Thanks! I started with something about trying to square a circle (thereby running out of the infinite number of powers of 2 required to fill the spacce) and this is what it morphed into which I concede is kinda getting away from the theme. However, consider that mathematically running out of the space to hold x number of cubes can be described identically to running out of the cubes to fill x amount of space.

pkenney 2017-08-01 03:23

My top score was 1,684,566 - that sounds like a lot, but I'm not sure! I certainly blew up a whole bunch of stuff that time, but then again I also died kind of unnecessarily at the end so I probably could have gone a lot higher without that blunder.

I like to play without reading out-of-game instructions. Which maybe was not the best call here... I was confused by many things, notably how to make the - and = commmands work, as I don't think they seemed to do anything. "Where are my crazy rockets?" I wanted to know. And sometimes items were cubes, but other times flat panels. Regardless, I sure liked swinging the planet around to ram a nice tall stack of blocks into a rocket and blast them off into space!!

The calm music was a nicely juxtaposed with the explosive mathematics.

I played on Windows and experienced no sounds glitches.

OK I just read through the instructions and tried again - but I did worse, not better! A fluke? Or is that I became too distracted by stacking in a certain way, and lost focus on making use of the rockets??

An interesting entry that drew me in, nice work.

nintendoeats 2017-08-01 03:41

@pkenny: I'm glad that you enjoyed it! It's possible that the explosives stacking and everything isn't as valuable as rockets. I just double checked and that definitely isn't true with crazy rockets on.

I've found the sound glitch. It will not be fixed, because it requires new sound-playing or physics code which I expect would be outside the rules.

ryte2byte 2017-08-01 06:31

My copy of Avast Anti-virus is reporting this as infected. Hopefully, just a false positive, but, ya know, head's up.

I really liked the mellow groove of the music. It definitely helped take the edge off the learning curve. Had a ton of problems with the physics just pushing stuff everywhere. I absolutely adore the analog dial digit display.

leesoar07 2017-08-01 09:49

I love this physics game. The idea is simple but gameplay is pretty hardcore.

gwinnell 2017-08-01 11:51

AVG also reports as a virus (Windows) but is fine on Mac.

Something about the presentation/interaction of the game makes it really hard to play. It could be that the lighting of the planet makes it sometimes difficult to see what types crates are. It might also be because the items fall from the top and so you don't know exactly where they will land. Perhaps if the camera were top-down (and so things fall from the 'front') it would have been more intuitive. :shrug:

That said, I like the mechanics of matching/timing the boxes for explosions and score. There's something great here. :thumbsup:

karai17 2017-08-02 00:15

I don't quite think I understand what is going on D:

ianburnette 2017-08-02 01:57

Quite fun! Not like anything I've played before. The music was quite fun, and the premise was simple and well-executed. Good feedback, and easy to start over again when you fail!

shabap 2017-08-02 02:41

Nice game! Reminded me of katamari damacy. I was wondering how have you made the physics behave like that?

nintendoeats 2017-08-02 03:12

@shabap: Thanks! I've been waiting for somebody to mention Katamari, it does share some visual similarities.

The physics are super hacky. Gravity is turned off for all the objects. There is a list of objects being pulled towards the planet, and another of the ones being pushed away. Every fixed update a force is manually applied to each object that pushes it towards or away from the sphere.

When an object is falling initially, it just moves at a standardized rate. When it collides with an object, it is parented to the sphere and enters a mode where it is on the gravity list. It checks periodically (I think I set it to 0.5 seconds) if its velocity is less than a particular amount. When that returns true, the object is taken off the gravity list.

Every time an object hits another it records that as the object it is sitting on. When an object is moved or destroyed, it tells the rest of the objects about it using BroadcastMessage() (easy since they are all children of the sphere). If an object has recorded the destroyed object as its support, that object goes back into gravity mode. I tried doing this with parenting, which was a better system, but it caused weird scaling issues.

laaph 2017-08-02 04:53

A very interesting game! Took me a second try to wrap my brain around what I was supposed to do, but once I got it, it wasn't hard. I found that determining what the rockets would hit wasn't exactly clear, I just moved the planet so stuff was over there and hoped for the best.

Kind of like a 3D tetris?

steve-johnson 2017-08-02 05:31

I liked the chill music, great job there! It's so nice when people sit down and write something for the compo.

I will admit, though, I tried a few minutes of gameplay and never really got a feel for it. Like, I know the 1s and 2s are supposed to match, but there were so many white boxes I never managed to get very far score-wise because I'd be out of space in no time.

aj-weeks 2017-08-02 09:07

~~The windows link is broken! I can't play the game :(~~

**EDIT:** It works now :)

aj-weeks 2017-08-02 09:07

my comment got uploaded twice :see_no_evil: and I can't delete this one

verysoftwares 2017-08-02 16:01

The scoring system is quite unique, though due to the indirectness of placing cubes, I was unable to discover an optimal strategy. In fact, I found it oddly relaxing to simply interact with.

nick-blackwood 2017-08-02 23:03

The idea is really neat! Controls are very solid and smooth as well. It was pretty tough to predict rockets' paths though, as well as match 2-part explosives.

A very strong time killer overall, might get back to it later!

huvaakoodia 2017-08-04 18:24

First use of mathematical powers I've seen so far. *Numbers?* Rad!

Quite a bit of fun, trying to fit in as many blocks as possible, aiming to blow up the TNT and not to blow up the plutonium. Good stuff!

Using escape to start is pushing things too far though...

willbl3pic 2017-08-05 18:32

I liked it, but the font could be replaced with a more fitting one.

eremiell 2017-08-08 18:22

So finally played this after you made the Linux64 port. It's fun. It's somewhat weird, and I still prob don't completely get how some of the boxes react, but yeah, it's some weird physics fun.

abductedplatypus 2017-08-14 16:28

Nice physics puzzle game. I would have loved some bigger explosions, but for game play purposes this is much better. Music was just as relaxing as the game play. Overall a very good entry, thanks!