FoonLudum Dare ExplorerLD52 → Harvester 008

Harvester 008

By lintfordpickle

View on ldjam.com

CategoryRankScoreCount
Overall3163.6124
Fun3823.4024
Innovation2183.5924
Theme2593.9324
Graphics2254.0024
Audio4932.2720
Humor6262.2022
Mood4913.3123

Comments

nick-sandison 2023-01-10 05:33

Good job on the physics. The controls feel a bit weird though. It's a bit too easy to lose control and having the button to recenter the ship helps with that but seems out of place.

lintfordpickle 2023-01-10 20:55

Hey thanks for playing it @nick-sandison. Yup, you are spot on about the controls, I couldn't create a good feeling for the handling of the ship and its definitely frustrating when you slightly 'oversteer'. The 'spacebar' to correct the ship was just a cheap way out :s

btw - I tried to play your game on itch, but I got the following error (using Firefox):

Screenshot_20230110_0954425.png

If you get it working, let me know and I'll give it a go.

jakubbala 2023-01-12 16:33

I was unfortunately unable to run the game :[ Dissapointed because it looks so good!

Heres the last lines of the Debug file if it helps <3

16.32.15.419: ConstantsApp: [main] Registered value: DEBUG_LIVE_TEXTURE_RELOAD : true

16.32.15.423: ResourceManager: [main] Adding EntityGroupUid to protected list: -2147483647

16.32.15.429: ScreenManager: [main] Added screen 'MenuBackgroundScreen'

16.32.15.432: ScreenManager: [main] Added screen 'MainMenu'

16.32.15.432: GameWindow: [main] Loading GL content

16.32.15.473: GLDebug: [main] GL_INVALID_OPERATION (1282)

lintfordpickle 2023-01-12 17:50

thanks @jakubbala looks like I've still got some work to do :(

jakubbala 2023-01-12 20:41

@lintfordpickle it really does look great though, dont be discouraged :)

lintfordpickle 2023-01-14 13:36

so hopefully all the issues have been fixed in today's release

riodeluz 2023-01-14 14:57

Graphics are good! Perhaps some mechanics should be added to the game to make it less repetitive Overral, nice entry!

mickxe 2023-01-14 16:01

Good job on getting this far in a weekend! It would be really challenging if there were other flying vehicles that you had to dodge as well. :D

malibaturhan 2023-01-14 16:16

needs some tips what to do next I think

nullval 2023-01-14 18:22

I can't play the game, it just shows a blue screen and some of the UI :/

amkingtrp 2023-01-14 18:26

This is definitely a good basis to build upon for a more fleshed out game. I really liked the idea of a cyberpunk version of Thrust and it was very similar. I think the problem is the speed, probably gravity is too high; I used to be pretty good at Thrust in the late 80s but I found this a bit too hard to control in comparison. The physics, while impressive, do work against the player a bit here.

To expand it I would recommend maybe toning down the spinning and gravity to make it a bit easier to control; the cyberpunk setting and atmosphere you've created is brilliant and could lead to all sorts of potential delivery / combat missions (if you added weaponry of some description).

hadik 2023-01-14 18:59

It fits perfectly, you really hit the theme. Audio for me is not good, but not bad. Average fun game, but maybe next time you will polish the gameplay and it will be better. Interesting, really interesting how you approached the graphics, I like it a lot. Very good mood, nice work.

ianlux 2023-01-14 19:13

Really difficult haha Very interesting idea!

dmitrygalias 2023-01-14 20:01

Hi @lintfordpickle I have issue with the game. When I press start I only get blue screen and some UI. Screenshot_1.jpg

klaus-peter 2023-01-14 21:24

The flight controls are definitely a cool game mechanic that were fun to play with. I think they could have been a little less sensitive so you are less likely to completely crash from the slightest collision :D In the beginning it was a bit difficult for me to recognize what objects I can interact with. But overall I really also liked the gloomy city feel conveyed by the graphics.

digital-bacon 2023-01-14 22:38

I found the ship really difficult to control, and it wasn't immediately obvious what I'm supposed to do, but I really had fun playing this! The art style is terrific, and I think you've got the beginnings of a really decent game here. Excellent work!

lintfordpickle 2023-01-15 00:06

@nullval @dmitrygalias thanks a lot for the feedback - I'm not sure what is causing it at the minute, but the fact that now 3 people have the same issue is pretty bad, so I'll take a look.

lintfordpickle 2023-01-15 12:29

@nullval @dmitrygalias thanks again for your feedback - I was able to reproduce this on one of my other computers and find a fix (I wasn't flushing the GL command queue on the background thread after the loading screen). This probably affected all my previous LD games and I never knew.

I have uploaded a fix now, if you have time, could you let me know if it works for you?

nullval 2023-01-15 14:25

@lintfordpickle ah cool :) great work, now that I've tried it, it's quite diffult, but also really fun. the graphics are good and for the most part easy to read. There's a couple of buildings where I weren't sure where the collision box were, but it was easy enough of to remember after the collision. :)

therealjtgill 2023-01-15 16:10

Hello fellow physics engine developer! This is a very polished demo of a solid 2D physics engine. I was only able to feed five cities before I completely totaled my harvester. I might have lost my job, but I can hold my head high knowing that I was able to do some good for these virtual people in need.

Things I liked

1. The graphics were solid - very nice texturing and overall color scheme. The harvester popped out nicely from the city background 2. Contacts, collisions, forces and torques were all handled very well 3. The gameplay loop and mechanics took some getting used to, but could very possibly be mastered with time. This level might make a good candidate for speed runners (at least I'd like to see someone speed run it!) 4. The damage mechanic is a very nice addition!

Things I noticed

1. The controls are very quirky and will probably take a bit of adjustment for most people. What you've implemented is called a "rate controller" - input from the user directly commands body rates and thrust forces. I'd recommend looking into letting the user control the orientation angle of the harvester directly using a PD (proportional/derivative) controller. The idea is that hitting `A` or `D` would command the harvester to some hard-coded angles (e.g. 25 degrees to the right or 25 degrees to the left), and when neither `A` nor `D` are pressed the harvester's orientation angle is set to zero degrees. The control flow would look like this:

``` user input --> orientation angle command --> PD --> angular velocity command --> PD --> torque command ```

This is known as a 'cascaded PID controller' where the output of one PID controller is used as the setpoint of another PID controller.

If you want to talk more about these ideas, please feel free to ping me through Discord (link in LD profile).

This is a stunning demo, and I hope you're able to use it in later game jams!

lintfordpickle 2023-01-15 19:21

@therealjtgill Thanks for the in-depth write-up and taking the time to play!

I didn't know about the different methods for controlling the ship that you mentioned, so I'll have to read up about the specifics of each one. I think lack of experience on my part led me to just implement the most basic/obvious approach.

However, it sounds like I may have tried to implement a proportional controller during the jam, but I couldn't figure out how to get both the player generated torque *and* maintain the angular velocities which result from collisions with the level geometry. I think the problem is, if the user has to counteract the effects or a collision with a building, then the controls don't feel 'tight'.

I admit though that I'm new to a lot of the concepts used in physics, so maybe this problem isn't as hard as I'm imagining.

dmitrygalias 2023-01-15 20:19

Nice game! The idea and game mechanics fit perfectly with the theme. Vehicle control is a bit tricky but I like it. Good work!

My score only 3 food. Screenshot_3.jpg

maimai 2023-01-25 00:46

Great entry! Super cool that it's your own engine. As to the game, it's a solid loop...once you find out where to do the things, haha. Took me three tries to finally get the water to the fields and the fields to the warehouse (I actually died the first two times because I was flying around looking for the warehouse to deliver the wheat). The controls are difficult but after a bit of practice you start to get better and it feels really good to succesfully zip through openings. And what that means is that you take bigger risks to go faster but when you do mess up it _really_ hurts, haha. I actually played the post-jam version (you said the features and gameplay are the same) and I didn't have any issues loading, running or lagging on Windows. Again, well done!

lintfordpickle 2023-01-25 09:31

Thanks for playing! Even the post-jam version hasn't been updated for a few weeks now. The lack of visual cues on where to go (and what even is happening) is something I need to fix in the next version - I'd also like to add gamepad support evtl. too

Thanks for the feedback!

johnnysix 2023-01-25 19:22

I played the post-jam one - the graphics reminded me of Sim City for some reason, really liked the blade-runner style ads too. If you continue to develop post-compo, aside from some sound/music, some icons, maybe some path indicators would be cool.

Did you ever play sub-terrania? The ship controls remind me a lot of that. Some levels with different gravity would be cool.

aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.jpg

tomssuli 2023-02-01 19:41

Nice game! There are not many "cave flight" games nowadays so this was a fresh take on harvesting :) Too bad I didn't find this during the review period.

I loved the pixelart. The city had nice feeling about it. Music or sounds would have made the experience even more immersive.

Control scheme was good but I can see people turning away from it as it required skill to control the ship. It kinda reminds me of classics like Wings2 by Miika Virpioja.

lintfordpickle 2023-02-01 19:43

@tomssuli thanks for leaving a comment. That Wing2 game you mentioned sure seems obscure - i'm downloading it now and I've give it a go :)

tomssuli 2023-02-02 22:39

@lintfordpickle

It seems that caveflight games were a national genre for Finnish indie developers in the 90's. There was at least Gravity Force 2, Turboraketti, Auts, Kops, Assault Wing, Wham, V-Wing, Wings... and later Wings2 for online multiplaying. The Wings2 even runs on todays computers.

lintfordpickle 2023-02-03 07:11

@tomssuli I gave it a go - Man I was surprised by the amount of features and the depth of the game - especially when the soldiers jumped out :D

I love the early 200's late 90's games like this (mainly for the aesthetics), the main problem is the lack of exposure makes them difficult to find.

tomssuli 2023-02-03 14:20

Yes - the deepness - or the meticulous dynamics and interactions between entities are characteristic in finnish indie games.

And yes, they can be difficult to find. Other good ones we played back then were Liero, Slicks n' slide and Mine bombers. Which of the latter two have spiritual sequel steam versions for modern computers (with different names though)