Attack channel

Discuss NSF files, FamiTracker, MML tools, or anything else related to NES music.

Moderator: Moderators

Post Reply
tepples
Posts: 22705
Joined: Sun Sep 19, 2004 11:12 pm
Location: NE Indiana, USA (NTSC)
Contact:

Attack channel

Post by tepples »

Instruments in my music engine are a hybrid of the NerdTracker II approach (a decay rate, a constant duty, and a 4-entry arpeggio envelope table) and the FamiTracker approach (frame-by-frame control of duty, volume, and arpeggio or fine pitch). An envelope consists of an attack envelope followed by a linear decay/sustain segment. The attack envelope takes 2 bytes per frame to describe the duty, volume, and relative pitch of each frame of the attack, analogous to the duty, volume, and arpeggio envelopes of FamiTracker. The decay/sustain has a single duty and volume level, plus a decrease rate measured in volume units per 16 frames.

One idea I had was to store a separate pitch for the attack and decay/sustain segments. This let me add a virtual track that sends attacks to the pulse 1, pulse 2, or triangle channel. It lets me run two sequences on one channel. Think of it as triangle drums without the drums.
Attachments
attackchannel.nsf
(1.77 KiB) Downloaded 388 times
attackchannel.ogg
(217.48 KiB) Downloaded 374 times
User avatar
dougeff
Posts: 3078
Joined: Fri May 08, 2015 7:17 pm

Re: Attack channel

Post by dougeff »

Good. I like this approach. One bit for attack, one for sustain, one for decay. I don't feel you need a separate pitch for the attack phase (it's so short). Just one pitch and one pitch effect for the whole note should suffice.
nesdoug.com -- blog/tutorial on programming for the NES
User avatar
Bregalad
Posts: 8055
Joined: Fri Nov 12, 2004 2:49 pm
Location: Divonne-les-bains, France

Re: Attack channel

Post by Bregalad »

Awesome, it sounds like there is 2 triangle channels going on simultaneously. I didn't understand your post but it does not matter, it sounds very good !
tepples
Posts: 22705
Joined: Sun Sep 19, 2004 11:12 pm
Location: NE Indiana, USA (NTSC)
Contact:

Re: Attack channel

Post by tepples »

Thanks.

Did you fail to understand the concept of attack and sustain portions, or did you fail to understand the concept of overwriting? It matters little; I'll explain both.

Attack and sustain portions
This section assumes familiarity with FamiTracker envelopes and with volume fade effects in trackers. Consider the following volume envelope:

Code: Select all

     ___
   _|   |___
  |         |___
  |             |_______
 _|             .       |_______________
|               .                       |_______________
|               .                               .       |____________
|               .                               .
| . . . . . . . . . . . . . . . . . . . . . . . .
 4 7 8 8 7 7 6 6 5                               3
 Attack phase    Sustain phase
You set an attack envelope 4 7 8 8 7 7 6 6. Then you set a sustain envelope starting at 5 with a decrease rate of 2, which produces a slope of -2 units per 16 frames, or -1/8 amplitude unit per frame.

Envelopes in my music engine are slightly more complex than this to allow for pitch and duty control, but this simplified model should help you begin to understand.

Attack injection
Normally the music engine has have five tracks going, each with its own position in a musical phrase:
  1. A standard melodic track that plays on pulse 1
  2. A standard melodic track that plays on pulse 2
  3. A standard melodic track that plays on triangle
  4. A track that triggers sound effects, used to create drums
  5. A track that can replace the attack on pulse 1, pulse 2, or triangle with a different note
Tracks 1, 2, and 3 are directly mapped to a hardware APU channel. Playing a note on one of these loads the variables for that channel's attack and sustain phases. If the remaining attack length is nonzero, it plays the attack one frame at a time; otherwise, it runs the sustain.

Track 4 is mapped to a drum kit. Each entry in a 25-entry array consists of two sound effect numbers. Usually one sound effect is on the noise channel and the other on the triangle channel if needed. Triggering a sound effect of the form "triangle portion of kick drum" allows triangle drums to interrupt the bass line.

Track 5 doesn't have its own hardware APU channel. Instead, it has a pointer to another channel (pulse 1, pulse 2, or triangle). When a note is played on track 5, the track overwrites that other channel's attack with the attack portion of the instrument chosen for track 5. This pauses the other channel's sustain until the attack finishes.

What you're hearing in this NSF is a bass line on track 3 and an instrument with a one-frame pop attack on track 5. Track 5 is set to write attacks on top of track 3, which causes its sustain to pause until the attack is finished. Because the attack has a different pitch, tracks 3 and 5 are effectively time-sharing the triangle channel. It's the melodic counterpart to triangle drums.
User avatar
RushJet1
Posts: 155
Joined: Wed Nov 10, 2004 10:17 pm
Contact:

Re: Attack channel

Post by RushJet1 »

I've wanted this kind of thing in Famitracker for awhile, virtual "channels" that interrupt the existing ones. Doing this manually can be a chore.
tepples
Posts: 22705
Joined: Sun Sep 19, 2004 11:12 pm
Location: NE Indiana, USA (NTSC)
Contact:

Re: Attack channel

Post by tepples »

Thank you for your interest, RushJet1. Perhaps you or someone else could help me think through other caveats about how a track affects an attack injected on top of its channel.
  • An instrument can specify "staccato", where each note is cut half a row before the note ends. Should this cut an injected attack?
  • Should regular note offs cut an injected attack?
  • Should a new note on an instrument with an attack of nonzero length cut an injected attack?
  • An instrument can specify "legato", where a new note does not restart the envelope but only changes the current note's pitch. This is used for hammer-ons and pull-offs and wind instrument grace notes. Should legato change the pitch of an injected attack?
  • If one or both tracks has arpeggio turned on, is the attack affected?
There are a few things I could add to mitigate these, with different effects on the player's RAM footprint:
  1. Have legato and note cut affect the attack phase only if attack and sustain pitches match, on the assumption that a match was not an injection.
    RAM: +0; composer must take care to avoid unisons
  2. Store a separate variable for whether an attack is injected.
    RAM: +3 BSS, or +0 if attack pitch bit 7 can be repurposed for this
  3. Don't inject attacks at all, but instead give the attack track its own virtual channel (with base pitch, attack state, and arpeggio state) that the pulse 1, pulse 2, and triangle channels consult, similarly to how sound effects work
    RAM: +2 ZP (-3 BSS for channel attack pitch; +2 ZP +1 BSS for attack track's attack state; +2 BSS for attack track's arpeggio state)
User avatar
ImATrackMan
Posts: 37
Joined: Thu Mar 26, 2015 6:34 pm
Contact:

Re: Attack channel

Post by ImATrackMan »

This is super cool. I did something similar with the triangle when I covered a C-jeff tune (entirely using arpeggio macros), except I had bass, drums, a little melody at the same time.
Attachments
Fuckthe2A03.nsf
pardon the name
(9.59 KiB) Downloaded 345 times
tepples
Posts: 22705
Joined: Sun Sep 19, 2004 11:12 pm
Location: NE Indiana, USA (NTSC)
Contact:

Re: Attack channel

Post by tepples »

This is a simple* loop based on something I wrote in 2006 for a strength training routine. It uses both drum interruption and attack track interruption.


* Simple in Pently, that is. In FamiTracker, the MMC5 pulse is required unless you want to make a mess of Gxx and repeated versions of the lead's envelope offset by various numbers of frames.
Attachments
Isometry.ogg
(1.07 MiB) Downloaded 285 times
Isometry.nsf
(2.62 KiB) Downloaded 289 times
Isometry.pently.zip
(791 Bytes) Downloaded 264 times
Post Reply