Ok, so using some basic principles of Cellular Automata, I've managed to get a program running which generates a set of data calculated from rules. Each cell is a boolean.
Currently I am storing it as so - boolean[][] data - where the first index is the row and the second is the cell.
Now I have gotten up to the point where I would like to convert that music into a score (stored as an array). On the page it shows a diagram of how it would be converted from CA data -
to score data
I have trouble understanding how this would be done progmatically using my storage scheme. If anyone could help that would be great, I can provide more info if necessary.
The mapping looks straight forward:
where
OFFSET
is the index of the last row to copy (33
if I counted right).Your implementation could just use two nested loops to copy the array.
EDIT:
This is what your converter could look like:
This is the output of the test-code below (original array and the transformed array) using an offset of
2
(the first two lines are omitted) and a width of7
(seven columns are transformed):The test-code is to convert the String-definition of the source-array and to output the array-content: