Counting and stopping

How do you do something x number of times, then stop?

The question is discussed in detail in a post titled “Timed counting” on the Algorithmic Composition blog.

The example shown below counts and performs 8 snare drum notes, then stops. The tempo of the snare drum notes can be specified by the user in terms of beats per minute, which the program converts into a number of milliseconds per interval between note onsets, because that’s the form of information that the Max metro objects needs to determine the rate at which it sends out the message bang.

Count to 8 and stop

The counter object with no arguments starts counting from 0, and has no specified maximum. If the counter has one argument, that number is considered its maximum; it still starts counting from 0, but once it reaches its maximum, the next count will go back to 0. If the counter has two arguments, as in this example, the first argument is the minimum and the second argument is the maximum. The goal in this case is to count eight things, from 1 to 8, and detect when the eighth event has occurred; thus, the two arguments 1 and 8 produce the desired behavior.