kbz / SIFTrain

An android rhythm game based on Love Live School Idol Festival in combination with elements from osu!
MIT License
28 stars 11 forks source link

Stutters #15

Open clemmyn23 opened 8 years ago

clemmyn23 commented 8 years ago

RE: kbz's comment


huen6uu

adc435

I think I found it. Need a bit more testing though.

So basically every time the tap sound plays the SoundPool code runs through the permission check in appOps to see if sound playback is allowed. And for whatever reason one of the checks throws an error (which happens quite often as evident in the stutters) it defaults to false (ie. yolo we'll play the sound anyway) while throwing an expensive error.

This is platform specific to Android since Sound.java implements AndroidSound which uses SoundPool.

Proposed solution: implement a custom play() method and check appops permission on app load.

Thoughts?

kbz commented 8 years ago

Does this happen only when there's simultaneous taps? Or does it happen on normal hits as well? A work-around would be to add some kind of sound handler and add cool-downs to sounds so that they can't happen at the same time. Or maybe the 'solution' would be removing the hint sounds? I still believe that even without sounds at all (Only the mp3 sound file) there's lag spikes / stutter. Any thoughts on this?

clemmyn23 commented 8 years ago

Apologies about the late reply. Been a busy week.

Ran some more tests..

So yea.. Quite sure it's something to do with sound.

Might see if running tap sounds on a different thread helps as a temporary workaround (won't eliminate audio issues but it's better than having >100ms stutters on the gui thread). Kinda want to solve this before having to dig into Android libs and sacrifice all the libgdx portability. Worst case scenario I'm happy to poke around Android AudioTrack and writing tap sounds directly into the audio buffer, but would like to make sure this stutter isn't something to do with the current codebase.

Looks like there are some interesting threads over at libgdx forums. Research time!

Android audio why is this such a pita? Why can LLSIF do this properly and we can't :/

Throughs, comments and suggestions on what else to test would be awesome!

kbz commented 8 years ago

Another way may be playing the song from a separate thread (as well as the tap sounds) so that the GUI is partially isolated from the backend. Have you tried checking how long the 'getCurrentPosition' method call on the song takes? Maybe that's what's slowing down on "heavy" sections of the song. I can't say for sure and I don't have a test device anymore :|