Traverse through lists with state values
State values were recently introduced in Tidal version 1.7.2
. For a more in-depth introduction, Alex McLean prepared a Google Slides document you can take a look at. It will explain why such a feature was needed and how it was implemented.
The problem with state
What is the problem? It’s tricky to get events to line up. Let’s say that you wanted to pattern the structure independently from the notes (isorhythm?):
There are ways to fix this (e.g. with the fix
function), but they are not too satisfying/easy.
Another aspect is when you want to apply a sequence of values to a parameter (like speed, freq, pan, amp, etc) but you don’t want the sequence to be bound to the cycle. When you use the standard pattern syntax, Tidal may make adjustments to preserve the cycle structure.
Introduction to State Values
But now you can use a state value called “susan” to take values from a (circular) list:
If you change it on-the-fly then you have to wait for the list to empty before it changes:
It can cope with infinite lists, but then the list will never empty:
You can stop it and it will always start from where it left off:
You can also just count without a list:
This is the same named state as used by setF
and for reading from OSC/MIDI. So you can reset the counter like this:
Or have another pattern use it:
There is also nCountTo
to counting to a modulo:
Un-intuitive behavior
You can pattern that.. It starts behaving in ways you wouldn’t expect from a Tidal perspective though.. Because the counter runs independently from the pattern:
Likewise, rev
won’t reverse the counter:
The structure is reversed, but the notes still go up:
Syntax
Note the state values syntax: # nTake "name" [list]
. The name can be any string, and the list needs to have comma separated members in brackets without quotes - this is not pattern grouping in Mini-notation.
State Values with other controls
You can add Take
to any control, and Count
/ CountTo
to any numerical control.
Below are some examples of state values used with other controls. Note how the control values repeat in their own sequence, independant from when the note cycle pattern.
This feature is unstable, so these names might change.