Sound Effect Updates

As I said here, I’m working on fixing some of the game’s sound effects for the next release. Nothing major, but it’ll clear up some small annoyances and hopefully improve the general game atmosphere.

Checklist:

  1. Remove or replace collision sound effect
  2. Adjust relative volumes to place less emphasis on ambiance and more on music
  3. Create sounds for engulfment and reproduction
  4. Add ambiance to editor
  5. Scale turning sound volume with turn speed
  6. Reduce volumes of abnormally loud themes
  7. Remove sound lag when switching between game states

Numbers 5 and 7 I can’t do because they require some programming knowledge. It’s possible 7 will be ignored completely since it relates to the game engine. If 5 isn’t completed in time, I’ll remove the sound instead.

My own list of changes so I know what to give to the programmers at the end. microbe.lua:
  • Removed soundComponent:addSound(“microbe-collision”, “soundeffects/microbe-collision.ogg”)
  • s1 = soundComponent:addSound(“microbe-movement-1”, “soundeffects/microbe-movement-1.ogg”)
    s1.properties.volume = 0.4
  • s1 = soundComponent:addSound(“microbe-movement-turn”, “soundeffects/microbe-movement-2.ogg”)
    s1.properties.volume = 0 [Temp]
  • s1 = soundComponent:addSound(“microbe-movement-2”, “soundeffects/microbe-movement-3.ogg”)
    s1.properties.volume = 0.4
  • Removed – Play bump sound
    if ((body1.dynamicProperties.linearVelocity - body2.dynamicProperties.linearVelocity):length()) > RELATIVE_VELOCITY_TO_BUMP_SOUND then
    local soundComponent = entity1:getComponent(SoundSourceComponent.TYPE_ID)
    soundComponent:playSound(“microbe-collision”)
    end

microbe_stage/setup.lua:

  • local ambientEntity = Entity("ambience")
    
    soundSource.volumeMultiplier = 0.3
  • local ambientEntity2 = Entity("ambience2")
    
    soundSource.volumeMultiplier = 0.1
  • local guiSoundEntity = Entity(“gui_sounds”)
    soundSource.volumeMultiplier = 1.0

microbe_editor/setup.lua:

  • local ambientEntity = Entity("editor_ambience")
    
    soundSource.volumeMultiplier = 0.2
  • Added local ambientEntity2 = Entity(“ambience2”)
    local soundSource = SoundSourceComponent()
    soundSource.volumeMultiplier = 0.1
    soundSource.ambientSoundSource = true
    ambientSound = soundSource:addSound(“microbe-ambient”, “soundeffects/microbe-ambience.ogg”)
    soundSource.autoLoop = true
    ambientEntity2:addComponent(soundSource)

Removed microbe-collision.ogg

Replaced all microbe themes and all microbe editor themes

Here are some preliminary engulfment and reproduction sound effects (you’ll need a media player capable of playing .ogg files to hear them):

Engulfment: https://www.dropbox.com/s/ktr1clsj6w9oriy/engulfment.ogg?dl=0

Reproduction: https://www.dropbox.com/s/lus6ndh3hn3hqa2/reproduction.ogg?dl=0

Like most things I’m not entirely satisfied, but then again I’ve never been very good at sound effects, and these can be temporary anyway.

I’ve also fixed some of the volume issues with the microbe themes, primarily some being massively louder than others. I’ll upload the new batch to Slack so the programmers can replace the SVN assets.

I hate to be critical, but I think both of those need improvement. The engulfment effect sounds a bit strange (like a tree falling over while something bubbles in the background). I think the sound of the effect should be much softer and more subtle, especially since it will probably need to be played on loop since engulfment can vary in how long it takes.

For the reproduction sound, is that supposed to be the sound of pressing the button to reproduce, or the sound of your cell actually splitting? If the latter, I don’t think it sounds very natural. If the former, then I think that works, but again I’d suggest making it softer/more subtle of a sound.

At the moment the game can’t do that, although if the programmers figure out how I’d definitely prefer that too. Right now if it was longer it would just end up layering over itself, a bit like how the collision sound effect keeps repeating.[quote=“NickTheNick, post:3, topic:189”]
For the reproduction sound, is that supposed to be the sound of pressing the button to reproduce, or the sound of your cell actually splitting?
[/quote]

The actual splitting. It’s not suited to realistic reproduction, I agree, but suddenly splitting in two is hardly realistic either, so I made it a bit more game-y (like the picking up an organelle sound).

Hmm. Maybe they need some more work.

I’ve set up my own branch on GitHub so I can make all the code changes necessary without bothering the programmers:

I might need a bit of guidance on how to submit a pull request to the Revolutionary Games branch.

^ And I’ve submitted a pull request. Huh, so that’s how it works.

In other news, I tried making some new sounds:

Engulfment

Reproduction

What do people think of these? I’m still not entirely sure.

Could you try slowing down the first effect and decreasing the pitch?

Like this?

Hm no, it didn’t turn out as I thought. I’d imagine that if we were to put sounds for engulfment, it would sound more like an underwater bubble popping, like heard here in Spore’s cell stage: https://youtu.be/U-x0AQmI_jQ?t=5m20s

What do you think?

I know I’m not a sound guy but I thought I’d offer my two cents:

@NickTheNick, the reason the popping bubble sound works so well in Spore is because the cell literally just pops the whole morsel of food in its mouth. In Thrive, you usually have to chase down other cells as you’re engulfing them because they actively try to escape. A popping sound wouldn’t fit with this.

My suggestion is a looping slimy sound effect that varies in volume (or plays quietly and subtly in the background) depending on how much of your prey is engulfed at a time. Something like this: https://www.youtube.com/watch?v=u6JVi1dboPQ

I think that’d fit quite well, given a few tweaks.

I’m not too sure about the slimy sound, but it’s Oliver’s call on what sort of effect to go with.

Engulfment happens over a long duration but we’re limited by the current way sound effects are coded. Looped sound effects or sound effects that stop when an action stops are impossible until someone figures out how to do it with code, which we can’t do right now since the programmers don’t have much time.

Right now I’ve been struggling to make a good sound because it needs to last long enough to create a “sucking” effect (rather than a pop or splash as Nick seems to be suggesting) but not so long that if a cell stops engulfing mid-sound it will continue for a few second afterwards.

Another attempt. To be honest it’s probably not much better than the previous ones, but at this point I’m fine releasing with it as all we really need is a clear signal the player’s being engulfed. Unless everyone hates it I’ll work with @crovea to get it in before tomorrow evening.

1 Like

I’ve adjusted the volumes slightly and updated the SVN. I’ll talk to @crovea about making looped sound effects.

1 Like