-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathupgrade.js
executable file
·177 lines (145 loc) · 4.76 KB
/
upgrade.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/*
// Do the upgrades of actions, release actions and feedback
*/
module.exports = [
(upg111to112 = () => ({
updatedConfig: null,
updatedActions: [],
updatedFeedbacks: [],
})),
(upg112to113 = () => ({
updatedConfig: null,
updatedActions: [],
updatedFeedbacks: [],
})),
(upg113to160 = () => ({
updatedConfig: null,
updatedActions: [],
updatedFeedbacks: [],
})),
// Upgrade 2.x > 3.0.x, changes scene action parameter format
(upg2xxto30x = (context, props) => {
var paramFuncs = require('./paramFuncs')
console.log('\nYamaha-RCP Upgrade: Running 2.x -> 3.x Upgrade.')
var updates = {
updatedConfig: null,
updatedActions: [],
updatedFeedbacks: [],
}
if (context.currentConfig == null) {
console.log('\nYamaha-RCP Upgrade: NO CONFIG FOUND!\n')
return updates
}
console.log('Yamaha-RCP Upgrade: Config Ok, Getting Parameters...')
rcpCommands = paramFuncs.getParams(context, context.currentConfig)
console.log('\n')
let checkUpgrade = (action, isAction) => {
console.log('Yamaha-RCP Upgrade: Checking action/feedback: ', action)
let changed = false
let rcpCmd = undefined
let newAction = JSON.parse(JSON.stringify(action))
let actionAddress = isAction ? action.actionId : action.feedbackId
if (actionAddress.startsWith('MIXER_Lib')) {
actionAddress = 'MIXER_Lib/Scene/Recall'
newAction.options.Val = action.options.X
newAction.options.X = 0
changed = true
}
if (actionAddress.startsWith('scene')) {
actionAddress = 'MIXER_Lib/Bank/Scene/Recall'
newAction.options.Val = action.options.X
newAction.options.X = 0
newAction.options.Y = action.options.Y == 'a' ? 1 : 2
}
rcpCmd = paramFuncs.findRcpCmd(actionAddress)
if (rcpCmd !== undefined) {
if ((rcpCmd.Type == 'integer' || rcpCmd.Type == 'binary') && newAction.options.Val !== 'Toggle') {
newAction.options.Val = newAction.options.Val == -32768 ? '-Inf' : newAction.options.Val / rcpCmd.Scale
changed = true
}
if (changed) {
console.log(
`Yamaha-RCP Upgrade: Updating ${
isAction
? "Action '" + newAction.actionId + "' -> '" + actionAddress
: "Feedback '" + newAction.feedbackId + "' -> '" + actionAddress
}' ...`
)
console.log(
`X: ${action.options.X} -> ${newAction.options.X}, Y: ${action.options.Y} -> ${newAction.options.Y}, Val: ${action.options.Val} -> ${newAction.options.Val}\n`
)
if (isAction) {
newAction.actionId = actionAddress
updates.updatedActions.push(newAction)
} else {
newAction.feedbackId = actionAddress
updates.updatedFeedbacks.push(newAction)
}
}
return
}
console.log(`Yamaha-RCP Upgrade: Action ${actionAddress} not found in list!`)
}
for (let k in props.actions) {
checkUpgrade(props.actions[k], true)
}
for (let k in props.feedbacks) {
checkUpgrade(props.feedbacks[k], false)
}
return updates
}),
(upg30xto34x = (context, props) => {
console.log('\nYamaha-RCP Upgrade: Running 3.x -> 3.4 Upgrade.')
var updates = {
updatedConfig: props.config || {},
updatedActions: [],
updatedFeedbacks: [],
}
if (context.currentConfig == null) {
console.log('\nYamaha-RCP Upgrade: NO CONFIG FOUND!\n')
return updates
}
if (updates.updatedConfig !== undefined) { // set default value for new configs
if (updates.updatedConfig.meterSpeed == undefined) updates.updatedConfig.meterSpeed = 100
if (updates.updatedConfig.kaIntervalL == undefined) updates.updatedConfig.kaIntervalL = 10
if (updates.updatedConfig.kaIntervalH == undefined) updates.updatedConfig.kaIntervalH = 10
}
let checkUpgrade = (action, isAction) => {
console.log('Yamaha-RCP Upgrade: Checking action/feedback: ', action)
let changed = false
let newAction = JSON.parse(JSON.stringify(action))
let actionAddress = isAction ? action.actionId : action.feedbackId
if (actionAddress == 'Bar') {
actionAddress = 'Meter'
changed = true
}
if (changed) {
console.log(
`Yamaha-RCP Upgrade: Updating ${
isAction
? "Action '" + action.actionId + "' -> '" + actionAddress
: "Feedback '" + action.feedbackId + "' -> '" + actionAddress
}' ...`
)
console.log(
`X: ${action.options.X} -> ${newAction.options.X}, Y: ${action.options.Y} -> ${newAction.options.Y}, Val: ${action.options.Val} -> ${newAction.options.Val}\n`
)
if (isAction) {
newAction.actionId = actionAddress
updates.updatedActions.push(newAction)
} else {
newAction.feedbackId = actionAddress
updates.updatedFeedbacks.push(newAction)
}
}
return
}
for (let k in props.actions) {
checkUpgrade(props.actions[k], true)
}
for (let k in props.feedbacks) {
checkUpgrade(props.feedbacks[k], false)
}
return updates
}),
]