mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-13 18:16:35 +01:00
WebSockets: code refactor
Terminology used by server and client was starting to diverge. C++ classes ArdourStrips and ArdourGlobals classes have been renamed to ArdourMixer and ArdourTransport respectively. State node values for transport functionality have been simplified and prefixed with 'transport_' to match what was done for strips.
This commit is contained in:
parent
ae4df127ad
commit
a26a9018fd
17 changed files with 147 additions and 165 deletions
|
|
@ -19,10 +19,6 @@
|
|||
export const JSON_INF = 1.0e+128;
|
||||
|
||||
export const StateNode = Object.freeze({
|
||||
TEMPO: 'tempo',
|
||||
POSITION_TIME: 'position_time',
|
||||
TRANSPORT_ROLL: 'transport_roll',
|
||||
RECORD_STATE: 'record_state',
|
||||
STRIP_DESCRIPTION: 'strip_description',
|
||||
STRIP_METER: 'strip_meter',
|
||||
STRIP_GAIN: 'strip_gain',
|
||||
|
|
@ -31,7 +27,11 @@ export const StateNode = Object.freeze({
|
|||
STRIP_PLUGIN_DESCRIPTION: 'strip_plugin_description',
|
||||
STRIP_PLUGIN_ENABLE: 'strip_plugin_enable',
|
||||
STRIP_PLUGIN_PARAM_DESCRIPTION: 'strip_plugin_param_description',
|
||||
STRIP_PLUGIN_PARAM_VALUE: 'strip_plugin_param_value'
|
||||
STRIP_PLUGIN_PARAM_VALUE: 'strip_plugin_param_value',
|
||||
TRANSPORT_TEMPO: 'transport_tempo',
|
||||
TRANSPORT_TIME: 'transport_time',
|
||||
TRANSPORT_ROLL: 'transport_roll',
|
||||
TRANSPORT_RECORD: 'transport_record'
|
||||
});
|
||||
|
||||
export class Message {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue