This is an old revision of the document!
Table of Contents
Ai Example
Moving Screens
The background of a stage is formed of screen segments, each hung from Artnet controlled winches. Ai calculates position and rotation of each segment, and maps the contents accordingly.
by: | Sebastian Beutel, January 2016 |
---|---|
published: | here |
tested in version: | Ai v8 |
download: |
Hint: click the images to show them larger.
Background
This project was done for a friend of mine who is the lighting designer for one of Germany's most well-known comedians. He designed the stage elements and wanted to use Ai to map on the moving segments. This project was used on tour for more than a year.
The background of the setup is formed from a number of segments, each a flat surface of approx. 1 x 2 meters. Five such segments are hung from the rig, each with 3 Artnet-controlled winches. Per segment there is one winch for the top/left corner, one for the top/right corner, and one for the bottom-center point, this winch being suspended more upstage. With the winches in such a setup it is possible to hoist the segment, and to rotate and/or tilt it (within limits). The winches used in this setup feed their current position back via Artnet - and these data are used by Ai to calculate the current position and rotation of each segment. Likewise, more such segments were standing on the ground, on Artnet-controlled rotators, which also fed their current position back. This way it was possible to map contents onto the whole surface.
Here, Ai was not only used as visualiser, but was the main mapping machine. The show was controlled from a GrandMA2 command wing, and most of the parts were timecoded to be in sync with the music.
Some of the special aspects of this project:
- it was necessary to mimic the real behaviour of the segments, in order to reproduce it from the position data
- something what was completely new to me: we ran into a gimbal lock, and Mr. Dave Green was kind enough to explain this and provide a solution - see tbd. (Euler to Quaternions)
- the handles of the projectors and of most of the screen fixtures were hidden from the stage construction page, in order to gain overview
- it is not possible to do a proper softedge on surfaces which can dynamically tilt. Hence it was decided to go for a hardedge, and only some segments were displayed per projector
- as the entire background was always mapped as one big canvas, only one screen was exposed to the Ai GUI. The part each segment was to show was set in the UV map - hence, each segment needed to have its designated model.
Used Modules and Patches
Stage Patch
Again, the whole stage patch can be devided in some sections:
- in the middle there are the main inputs and outputs
- the upper part holds the upper (hung) segments - the screens, inputs, and calculations
- the lower part holds the segments which were standing on the ground
- at the bottom there are the projector definitions
Middle: the main inputs and outputs
- there are a few Constant modules to make it easy to set some parameters globally:
Height in m
sets the general height of where the winches are hungBackChan Univ.
sets the ArtNet universe for the data for the background segments' winchesMediaSpinn Univ.
sets the ArtNet universe for the rotators on the ground
- the
AI OUTPUTS
patch and theMulti MonitorOut
button are simply moved here when moving modules and patches around - they belong to any proper stage patch/project Mixer_0
is the only mixer in this patch - it stems from the beginning of this project when only one screen was in the patch. Note that as there was only one mixer needed (all screen elements get the same contents and apply their UV map), all other mixers were simply removed, and all screen fixtures get their video input from this one mixerPatch IO
is not the module but the main IO which is there in every project, to allow connectivity to your network. Here, theDMX Send
port needs to be connected to various other patches in order for them to receive the ArtNet data- the
MediaSpinner ArtNet
subpatch belongs (technically) to the ground rotators and is explained further down
Upper part: the hung segments
For each of the 5 hung segments there are some patches and modules in order to calculate positions and rotation data, and to display the screen segment:
- top-left, there are some constants to define the general position:
X_Pos
,Y_Pos
andZ_Pos
set where the segment generally is (its origin), andSusp_Width
andSusp_Height
let us fine-tune how the segments are rigged (the smaller the suspension distance, the more tilt can be acchieved with a little winch travel) Winde 1-3
is a subpatch. It takes the globalArtnet Input
,Artnet Universe
andHeight
. Also, the IDs of the winches are exposed as inputs and need to be set to match which winch is located where. The patch then takes the Artnet data and calculates the height of each of the three points (left, right, back). These results are then send to the next subpatchCalculate
. For an explanation of the calculations see below.Calculate
is the subpatch where the magic happens: from the height data for each point the absolute position and rotation of this segment is calculated. Inputs are the constants defined and the positions from the previous subpatch - outputs are position and rotation (angle) data. For an explanation of the calculations see below.- two Monitor modules were inserted here only to monitor the computed angels
- Euler To Quaternion is another subpatch which is explained below. It converts the computed rotation data to another dimension (Quaternions).
x_corr
is a fader to allow for minor corrections of the x position - its value is also sent into the Calculate subpatch- finally, bottom-left is the screen fixture for this very segment:
- only the first one is left with its original name
AddictFixture_0
, and all others were renamed to some other name. This is how Ai works: only fixtures with names in ascending order are displayed with handles in the GUI. Renaming the other screen fixtures removes their handles, but lets them still show up, in the GUI - make sure to load the correct model into each screen fixture (drag and drop the 3ds file onto the fixture)
Canvas Res X
andCanvas Res Y
need to be set to the values the contents is produced inScreen Fixture Output
is sent to the projectors at the bottom of the stage patch- the green
Canvas Out
is connected only for the very first screen (the one with the mixer) and is patched to our little monitor window (see above) Mix Return
gets the main video mix from our only mixer (see above)x/y/z Pos Adj
are connected to ourCalculate
subpatch where they get the positions fromx/y/z/w Quat
get the special rotation data from theEulerToQuaternion
subpatch
Winde 1-3: getting the absolute height data
As described above the subpatch Winde 1-3
takes the Artnet dat and returns the absolut heights for the three points. Double-click the module to reveal its contents:
This should be easy to understand - simply read it left-to-right:
- the ArtNet Input Large module (with the
Server Input
andUniverse
ports patched to the Patch IO) return the Artnet values for the 6 channels in question (here it was decided to get the values normalized, i.e. 0..1) - the
2×8-Bit to 16-Bit
subpatch uses a little Vector Math to combine the high and the low channel into one value - of course, for debugging, some Monitor modules display the results
- the Formula modules convert the results to meters (as the winches have a resolution of 1/millimeter), and subtract this from the global height (again from the patch io)
- the result is then returned via the patch io
- the Notepad simply gives some explanations: 'The winch returns its position in mm. One Artnet digit equals one mm travel. E.g. 1 (hi byte) + 255 (lo byte) gives a travel of 511 mm.'
Calculate
Calculate
is the main subpatch where from the three points' height the position and rotation is computed.
Note that this is not exact - honestly I had wished to have someone with a degree in physics to help me with this. However it was close enough to reality to be used on a tour for more than a year.