-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.js
37 lines (30 loc) · 944 Bytes
/
main.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
import fs from 'fs';
import p5Class from './p5Class.json';
import p5Value from './p5Value.json';
import p5Function from './p5Function';
async function create() {
// processingの関数をリストから作成する
let p5function = new p5Function();
let p5f = await p5function.setup();
// processingの定数をリストから作成する
const valueKind = 11;
const p5value = p5Value.map((value) => {
value.kind = valueKind;
return value;
});
// processingのクラスをリストから作成する
const classKind = 6;
const p5class = p5Class.map((c) => {
c.kind = classKind;
return c;
});
const json = p5class.concat(p5value).concat(p5f);
fs.writeFile('./processing-language.json', JSON.stringify(json), (err) => {
if (err) {
console.warn(err);
} else {
console.log("write ok!");
}
});
}
create();