NERDDISCO / luminave

Operate all the lights with your web browser and create stunning visual experiences.
MIT License
77 stars 8 forks source link

Venue manager #53

Closed TimPietrusky closed 5 years ago

TimPietrusky commented 6 years ago

In order to plan in advance where the fixtures are in a specific venue, it would be nice to have a VenueManager

Concept

Data

{
    "venueManager": [{
        "id": "uuid",
        "name": "hall",
        "width": 5,
        "height": 10,
        "slots": [{
                "id": "uuid",
                "name": "washer 1",
                "x": 1,
                "y": 4,
                "fixtures": ["uuid", "uuid"],
                "animations": ["uuid", "uuid"],
                "sceneId": "uuid",
                "modV": 40
            },
            {
                "id": "uuid",
                "name": "spot 1",
                "x": 3,
                "y": 4,
                "fixtures": ["uuid"],
                "animations": ["uuid", "uuid"],
                "sceneId": "uuid",
                "modV": 20
            }
        ]
    }]
}