-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
39 lines (33 loc) · 1.2 KB
/
index.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
#!/usr/bin/env node
const fs = require('fs');
const path = require('path');
const parser = require('xml2json');
const DIRNAME = './fmod_project/Metadata/ParameterPreset';
let files = fs.readdirSync(DIRNAME) || [];
files.forEach(filename => {
let fullfilename = path.join(DIRNAME, filename);
let fileinfo = fs.statSync(fullfilename);
if (fileinfo.isFile()) {
let data = fs.readFileSync(fullfilename);
let json = JSON.parse(parser.toJson(data, { reversible: true }));
console.log();
console.log(`Processing ${fullfilename}`);
let firstobject = json.objects.object[0];
if (firstobject.class === 'ParameterPreset') {
let oldvalue = firstobject.property.value.$t;
let newvalue = oldvalue.replace(/\//g, '.').replace(/\[\*]/g, '[#]');
if (newvalue !== oldvalue) {
console.log(`\x1b[31m${oldvalue}\x1b[0m ----> \x1b[36m${newvalue}\x1b[0m`);
firstobject.property.value.$t = newvalue;
let stringified = JSON.stringify(json);
let xml = parser.toXml(stringified);
fs.writeFileSync(fullfilename, xml);
console.log('\x1b[32mUPDATED.\x1b[0m');
} else {
console.log('\x1b[33mUnchanged.\x1b[0m');
}
} else {
console.log('\x1b[31mERROR: Unsupported format\x1b[0m');
}
}
});