-
Notifications
You must be signed in to change notification settings - Fork 172
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
Various fixes and improvements to the APU #716
Open
majaha
wants to merge
18
commits into
aduros:main
Choose a base branch
from
majaha:apufixes
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
cea37cc
Fix a bug where tones can cut out if the end of a tick comes in late
majaha 0bc7e1a
Fix a bug where a tone's phase can be reset during a long tick
majaha 4e50857
Simplify logic around tones ending
majaha eb6e58f
Only update the APU at the end of every update()
majaha 6514a54
Pause Audio when the menu is open
majaha 414421a
Make the 75% pulse cycle actually 75%
majaha 336596d
Rename some variables in the APU
majaha 4f6570f
APU: Make all four ADSR sections tick based
majaha 319bf46
APU: Add fade out to reduce popping sounds
majaha 1eb964e
Remove node types from web runtime
majaha 065956c
Rework update() pacing to be regular and work in background
majaha b31723c
Remove unneeded "use strict" from apu-worklet.ts
majaha 85e7680
Serve favicon.ico locally for w4 run
majaha 297f8d5
Serve web runtime with headers for improved time accuracy
majaha 35ee003
APU: Update native implementation
majaha b5edcff
Update APU at start of frame for smoother timing
majaha d3fd6f7
Use vsync timing for framerates that are a multiple of 60
majaha 2f2d179
Remove console.debug() statements in frame timing code
majaha File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../site/static/img/favicon.ico |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
type MaybeToneCall = [number, number, number, number] | null; | ||
|
||
type BufferedToneCalls = [MaybeToneCall, MaybeToneCall, MaybeToneCall, MaybeToneCall]; |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure if keeping APU state outside of the APU is desired here.
The APU already has internal global state, so maybe this logic could be placed in
apu.c
instead to keep it isolated?