-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
82 lines (69 loc) · 1.8 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
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
import fs from 'fs';
import projectData from './data';
const imageVCCFile = {
images: {},
'@@editor': [
{
key: "images",
name: "Images",
icon: "🍄",
source: "images.json",
fields: []
}
]
};
const soundVCCFile = {
sounds: {},
'@@editor': [
{
key: "sounds",
name: "Sounds",
icon: "🎵",
source: "sounds.json",
fields: []
}
]
};
function snakeToCamel(s){
return s.replace(/(\-\w)/g, function(m){return m[1].toUpperCase();});
}
const resources = projectData.resources.resources;
const newResources = resources.map((resource) => {
const key = snakeToCamel(resource.file.split('.')[0]).replace(/ /g, '').replace(/\(/g, 'OP').replace(/\)/g, 'CL');
const nameArray = resource.name.split('/');
const name = nameArray[nameArray.length - 1].replace(/\\/g, ' ');
if (resource.kind === 'audio') {
soundVCCFile.sounds[key] = '';
soundVCCFile['@@editor'][0].fields.push({
key,
description: `Previous filename: ${resource.file}`,
name,
type: 'sound',
});
return {
...resource,
file: `$$Koji.config.sounds.${key}$$`,
}
}
if (resource.kind === 'image') {
imageVCCFile.images[key] = '';
imageVCCFile['@@editor'][0].fields.push({
key,
description: `Previous filename: ${resource.file}`,
name,
type: 'image',
});
return {
...resource,
file: `$$Koji.config.images.${key}$$`,
}
}
return resource;
});
const newProjectData = {
...projectData,
};
newProjectData.resources.resources = newResources;
fs.writeFileSync('images.json', JSON.stringify(imageVCCFile));
fs.writeFileSync('sounds.json', JSON.stringify(soundVCCFile));
fs.writeFileSync('newData.js', JSON.stringify(newProjectData).replace(/\"\$\$/g, '').replace(/\$\$\"/g, ''));