-
Notifications
You must be signed in to change notification settings - Fork 149
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
Practice metronome #657
Open
N4k4
wants to merge
27
commits into
exch-bms2:master
Choose a base branch
from
N4k4:PracticeMetronome
base: master
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
Practice metronome #657
Conversation
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
…-tokyo.ac.jp:islands/beatoraja_eeic into PracticeMetronome
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
新機能の提案です。
「プラクティスモードにおけるメトロノーム機能」
概要
beatorajaに実装されているプラクティスモードでメトロノームを再生しながら練習をする機能です。
機能説明
プラクティスモードで選択できる設定に
を追加しました。METRONOMEをtrueにするとメトロノームが鳴ります。
METORNOME VOLUMEで設定した音量でメトロノームが鳴ります。デフォルトは30としています。
音源について
強拍は
m-down.wav
、弱拍はm-up.wav
としています。defaultsoundディレクトリにテストで利用した音源を格納しています。そのほかの効果音と同様に、soundパスで設定したディレクトリの効果音セット内に同名の音源が存在する場合はそちらの音源の利用が優先されます。バグ修正
本機能を実装するにあたり、バグの修正を行いました。
メトロノーム機能が正常に動くように行った修正になります。
src/bms/player/beatoraja/play/RhythmTimerProcessor.java
での変更がそれに該当します。小節のリセット
プラクティスモードで、
問題がありました。
Metronomeを鳴らすにあたって参照している
sections
とquarterNote
がプラクティスモードで練習を開始する度に適切なタイミングでリセットされていなかったためです。そこで、
sections
とquarterNote
を、練習開始時にセットしなおすような処理(setAtStart)を追加しました。(src/bms/player/beatoraja/play/BMSPlayer.java
617行目にて呼び出し)除算方法の修正
FREQUENCYを変更した際にメトロノームが正常に動作しない問題を修正するために、freqに関する演算を修正しました。
int型どうしの除算による誤差が原因だったため、括弧を削除して演算の順序を変更しました。
以上、新機能の提案となります。導入のご検討、ご意見のほどよろしくお願いいたします。