-
Notifications
You must be signed in to change notification settings - Fork 34
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
Tracker - arpeggio, vibrato, tremolo? #16
Comments
I'm open to any improvements/suggestions that make ZzFXM or the tracker better. The only thing to keep in mind is this is targeted at size limited productions, such as JS13kGames, which is why it only offers a limited set of features. Perhaps the best place to begin is to explore how to add the additional data required to get these effects working to the format without over inflating the size of song data? As for chipping in, go for it! |
According to the current spec in the README, decimal values So for example, this classic song would still be valid:
But now you could add various effects:
I think this has the benefit that existing songs will play without changes in the new version, and, the only change to the existing code would be to ensure it ignores notes higher than 99. (This would allow all the "effect processing" to be add-on modules, potentially even per-effect, so the user only needs to include code for the effects they actually use!) As far as the effects themselves, I'd base the formatting on something like http://famitracker.com/wiki/index.php?title=Effect_list (but probably fewer effects)... I think the big tickets are Arpeggio, Slide Up/Down, Volume Slide Up/Down, Vibrato, Tremolo, and maybe Portamento. So maybe |
The zzfxm lib and tracker are both amazing projects, but I think they are missing classic tracker effects (particularly slide and arpeggio) if we want to be able to craft classic chiptune sounds.
This might be considered more than one ticket, we can break it up if need be, but this is what I'd love to see:
Add support for channel effects to the zzfxm music player. If these features add significant space, maybe it could be crafted as an add-in (if you don't include
zzfxm-effects.js
, then your song would still play but no effects would do anything, for example). That way people can opt for the tiniest possible zzfxm or the slightly larger zzfxm.Add support for effects in the Tracker. What I would like to see is updating the controls more like a classic tracker where pressing left/right arrow keys moves between two columns per channel (Note and Effect). So, if you are sitting on the note C-2, you can tap right arrow to move to the Effect and then type "A47" to play a CEG arpeggio. Pressing "DEL/Backspace" should delete the effect if on the effect column, or the note if under the note column. Etc. etc.
I'd also be willing to chip in a bit, if you think there's room to do so!
The text was updated successfully, but these errors were encountered: