sarweiler / zellen

game of life based sequencer for monome norns
10 stars 3 forks source link

Find new and more interesting ways for calculating note values #10

Open sarweiler opened 5 years ago

sarweiler commented 5 years ago

Find new and more interesting ways for calculating note values. Currently it's just X+Y.

sarweiler commented 5 years ago

Also: rhythms!

ericmoderbacher commented 4 years ago

this might tie into my idea of having each cell in the board store some of its own stats.

Cells could keep track of the number of times they were activated manually and via the game logic.

Notes could also be picked based on their relative position to the center of all of the "living" cells. So instead of using global x y coords we could use local x y coords.

sarweiler commented 4 years ago

Interesting ideas! Maybe there could be several ways for calculating a note value that the user can select in the params menu. I made a basic version of selectable modes for the Crow "alternative mode" with the most simple coord calculations that generate something interesting. It would be nice to have more sophisticated note generation algorithms.