Posted December 10, 2024 by KermitTheGodFrog
In 'Space Whales, Game Progression & More Dialogue' I said that I was planning on making a tutorial and finishing four small tasks by the next devlog, being:
I managed to succeed in everything but export presets and some sound effects. I did dust off an old NIKON F series camera, recorded several takes of its shutter sound, and added the recordings to the game for the Long Range Scopes module - but I don't think enough new sounds were added overall for the initiative to be considered a success.
My priorities shifted a bit too much for comfort since the last devlog, so along with the tutorial and updates to the Long Range Scopes module, two additional topics will be covered here:
I have significantly updated the Long Range Scopes module since the last devlog:
This idea was spontaneous, to say the least - but the theory behind it is important. I felt like the act of mapping star systems was stressful, and that the stress would gradually increase as you got further into the game. In other words, I felt like there was a linear relationship between stress and time. I heard somewhere that games need an oscillating stress level - e.g, stress decreases when in the presence of a bonfire in Dark Souls, increases for the time it takes to get to the next bonfire, repeat. To remedy this linear relationship, I thought to add a minigame for every wormhole traversal; not only with the goal of stress level oscillation, but also to make the act of mapping a star system feel more like a reward, rather than a chore.
My original idea for the gameplay was that it would involve balancing speed and distance as you approached - like supercruise in Elite Dangerous.
In practice, I couldn't get this to work intuitively, so I leaned more towards a 'click-button-at-right-time' kind of minigame.
Earlier, I decided that each wormhole traversal would incur 10% hull stress. If the player presses the 'BRAKE' button before the green area, in the red area, or doesn't press it at all, the traversal incurs 20% hull stress.
I am very proud of the wormhole shader - I had to re-learn Godots version of GLSL ES to make it, and I think it turned out nice. It starts with a base pink, adds shifting dark patches with noise, applies a normal map derived from the inverse of the dark patch noise (presumably not great practice, but I think the artefacts it produces are fitting for a wormhole) and adds a star texture to the meshes radiance. For reference, this was the original mockup:
I would be lying if I said that I was completely happy with how the wormhole traversal minigame turned out. How it creates the green and red areas isn't that smart, and leads to stupidly easy gameplay for most of a run. The punishment for loosing also seems too insignificant to make the player more stressed. I plan to fix the generation soon, but currently have no ideas on how to make the punishment for loosing more severe (or at least make it seem more severe to the player). Overall, it needs some work.
These are some miscellaneous improvements to the dialogue system since the last devlog:
Making a tutorial is always something that I dread. This is due to a split between the prospect of explaining gameplay in a way new players will understand, and because it requires deceiving all of the systems built exclusively for the game. My game was never meant to have manually created star systems, so I had to spend an hour copying values from randomly generated planets and stars in the game, and pasting them into a home-made star system object in my file system. This was the main challenge; perseverance. Thankfully, with a few lines of code to load the former as the players current star system, a few dialogue overrides, and a lot of writing, the tutorial was working.
However, issues quickly arose when I asked a family member to play-test the tutorial. I had somehow fallen for the assumption that the player would be a robot, perfectly following the instructions I had laid out for them - this was definitely not the case. The tutorial requires the player to discover a planet and then a wormhole - however, if the player was to scan a few degrees higher than requested, they would discover both at the same time, skipping about half of the tutorial in the process. To fix this, I had to implement a series of overrides to stop bodies from showing up on any device until the earlier stages of the tutorial were completed.
Overall, I am happy with how the tutorial turned out. It definitely has too many words, but it SHOULD be successful in teaching players the basics of the game.
I recognise my claim that 'most of the features needed for an alpha build are finished' last devlog was a tad optimistic, making the following claim rather ironic: I plan to release the alpha build by either the 17th of December, or the end of December.
Before that, I need to achieve eight main tasks:
Thank you for taking the time to read this devlog.