Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add early return for zero duration sounds #932

Merged
merged 3 commits into from
Sep 13, 2019
Merged

Conversation

iskandarzulkarnaien
Copy link
Contributor

Fix issue where playing a zero duration sound caused play() to never call stop().

Verified

This commit was signed with the committer’s verified signature.
thomaseizinger Thomas Eizinger
@coveralls
Copy link

coveralls commented Sep 12, 2019

Pull Request Test Coverage Report for Build 3476

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage remained the same at 36.99%

Totals Coverage Status
Change from base Build 3468: 0.0%
Covered Lines: 2690
Relevant Lines: 6512

💛 - Coveralls

Copy link
Contributor

@geshuming geshuming left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What was the issue? I don't think this is a very guard clause, what if duration is negative?

Copy link
Contributor

@Aulud Aulud left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@TheRealRavager I tested the changes and it does indeed fix the Error: play: audio system still playing previous sound bug. However, I have two suggestions:

(1) For checking the duration of the wave, use the strict comparison operator === instead of ==.

(2) The following Source program still triggers the above bug

const sample = sine_sound(1000, -5);        // supply invalid duration
play(sample);

I propose broadening the guard to return early on any non-positive value of the wave duration.

@iskandarzulkarnaien
Copy link
Contributor Author

Have made the necessary changes. Thanks for the help

Copy link
Contributor

@geshuming geshuming left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK lgtm

@geshuming geshuming merged commit 42bede0 into master Sep 13, 2019
@geshuming geshuming deleted the fix-play-function branch September 13, 2019 05:23
wltan pushed a commit to Source-Academy-Game/cadet-frontend that referenced this pull request Feb 19, 2020
* Add early return for zero duration sounds

* Change guard clause to include all non-positive durations
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants