Flip an array of Cellular Automata data into a music score (like WolframTones)

344 Views Asked by At

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 -

Source

to score data

Target

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.

1

There are 1 best solutions below

3
On

The mapping looks straight forward:

target[x, y] = source[OFFSET - y, x]

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:

public class Converter
{
    public static boolean[][] convert(boolean[][] source, int offset, int width)
    {
        final boolean[][] target = new boolean[width][source.length];

        for(int targetRow=0 ; targetRow<width ; targetRow++)
        {
            for(int targetCol=0 ; targetCol<source.length ; targetCol++)
            {
                target[targetRow][targetCol] = source[targetCol][offset + width-1 - targetRow];
            }
        }

        return target;
    }
}

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 of 7 (seven columns are transformed):

     █     
    ███    
   ██  █   
  ██ ████  
 ██  █   █ 
██ ████ ███

   █ █
  ██  
 █ █ █
██ ███
 ██  █
  ██ █
   ██ 

The test-code is to convert the String-definition of the source-array and to output the array-content:

public class ConverterTest
{
    private final static int OFFSET = 2;
    private final static int WIDTH = 7;

    private static final String[] sourceString = {
        "     █     ",
        "    ███    ",
        "   ██  █   ",
        "  ██ ████  ",
        " ██  █   █ ",
        "██ ████ ███",
    };


    public static void main(String[] args)
    {
        final boolean[][] source = getSourceArray();
        printArray(source);
        final boolean[][] target = Converter.convert(source, OFFSET, WIDTH);
        printArray(target);
    }


    private static boolean[][] getSourceArray()
    {
        final boolean[][] sourceArray = new boolean[sourceString.length][sourceString[0].length()];

        for(int row=0 ; row<sourceString.length ; row++)
        {
            for(int col=0 ; col<sourceString[0].length() ; col++)
            {
                sourceArray[row][col] = (sourceString[row].charAt(col) != ' ');
            }
        }

        return sourceArray;
    }


    private static void printArray(boolean[][] arr)
    {
        for(int row=0 ; row<arr.length ; row++)
        {
            for(int col=0 ; col<arr[0].length ; col++)
            {
                System.out.print(arr[row][col] ? '█' : ' ');
            }
            System.out.println();
        }
        System.out.println();
    }
}