User Tools

Site Tools


webapi:examples:programming_playbacks

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
webapi:examples:programming_playbacks [2022/02/17 13:06] icke_siegenwebapi:examples:programming_playbacks [2022/03/03 09:46] (current) icke_siegen
Line 1: Line 1:
 Web API example Web API example
  
-====== Programming playbacks ======+====== Programming Playbacks ======
  
 Starting point to programm playbacks using the Web API. Inspired by a project where the customer shall be able to program simple cues. Also this might be the starting point for more sophisticated applications. Starting point to programm playbacks using the Web API. Inspired by a project where the customer shall be able to program simple cues. Also this might be the starting point for more sophisticated applications.
Line 29: Line 29:
 By default the Web API is available on network port 4430 (hence the requests start with something like 'http://localhost:4430/...'. Also, actions on the user interface, e.g. changing pages or selecting fixtures, do not reflect in the Web API. In turn anything done in the API doesn't reflect in the normal user interface, e.g. if you select fixtures or set a level you won't see it in Titan. This is pretty much like the blind mode or another user. Unfortunately this makes it really hard to debug any API requests as you see the outcome only when everything is correct and you did succeed programming something. By default the Web API is available on network port 4430 (hence the requests start with something like 'http://localhost:4430/...'. Also, actions on the user interface, e.g. changing pages or selecting fixtures, do not reflect in the Web API. In turn anything done in the API doesn't reflect in the normal user interface, e.g. if you select fixtures or set a level you won't see it in Titan. This is pretty much like the blind mode or another user. Unfortunately this makes it really hard to debug any API requests as you see the outcome only when everything is correct and you did succeed programming something.
  
-However there is a solution: you +However there is a solution: you can tell Titan to also listen on another port, with the user and interface you see directly in Titan. In order to do this you need to set specific parameters: 
 +  * open the .exe.config file of the Titan application you are using (e.g. ''C:\Program Files\Avolites\Titan Mobile\Mobile.exe.config''
 +  * find the ''<appSettings>'' part 
 +  * add these lines: 
 + 
 +      <add key="webapi.enabled" value="true" /> 
 +      <add key="webapi.port" value="4431" /> 
 + 
 +  * maybe these lines already exist but you need to change ''false'' to ''true'' 
 +  * restart the Titan software. Now, the Web API is available on both, port 4430 with the traditional separate user, and port 4431 with the same user and interface you see in Titan. 
 + 
 +In order to make it easier to work with these settings the [[https://www.avolites.de/downloads/webapi/index.htm|WebAPI test page]] now also features a port toggle button where you can switch between port 4430 and 4431: 
 + 
 +{{:webapi:examples:porttoggle.png|}}
  
 ---- ----
Line 35: Line 48:
 ===== API Requests ===== ===== API Requests =====
  
-  * [[:webapi:requests:]] +The intention of this example is to make it possible to program simple playbacks using the API. Hence the actions and requests are as follows: 
-  * [[:webapi:requests:]] + 
-  * [[:webapi:requests:]] +  **Clear** the programmer 
-  * [[:webapi:requests:]] +  * **Select** one or more fixtures 
-  * [[:webapi:requests:]] +  * **Set a dimmer level**, or more generally, set a certain level of an attribute of the selected fixtures 
-  * [[:webapi:requests:]] +  * **Record** the contents of the programmer to a certain playback handle e.g. on a playback fader or a buttom in the playbacks window 
-  * [[:webapi:requests:]]+  * **Clear** the programmer again 
 + 
 +Of course this can be extended to some degree, e.g. set another attribute (if the fixtures have more than just a dimmer channel), record-merge or record-replace if the handle is already in use, delete the playback etc. Please also note the different ways of spedifying a certain item (i.e. the location): some commands refer to the current page of playbacks or of another window while others can work on any page, some commands use the userNumber while others use the location, some indexes are 0-based while others are 1-based... I strongly suggest reading the [[macros:identifiers|macro article on identifiers]] as this is closely related. 
 + 
 +You can download the API demo config here and load it into the Web API Demo Site: {{ :webapi:examples:api_demo_programming_playbacks.txt |}} 
 + 
 +{{:webapi:examples:demoimport.png|}} 
 + 
 +==== Used requests ==== 
 + 
 + 
 +  * [[:webapi:requests:Programmer_Editor_ClearAll]] 
 +  * [[:webapi:requests:Selection_Context_Programmer_SelectFixture]] 
 +  * [[:webapi:requests:Programmer_Editor_Fixtures_SetControlValueByName]] 
 +  * [[:webapi:requests:Playbacks_StoreCue]] 
 +  * [[:webapi:requests:Playbacks_ReplacePlaybackCue]]
  
  
webapi/examples/programming_playbacks.1645103165.txt.gz · Last modified: 2022/02/17 13:06 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki