-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.ts
329 lines (276 loc) · 8.46 KB
/
config.ts
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
/**
* @File : config.ts
* @Author : dtysky ([email protected])
* @Date : 2018-7-27 11:08:05
* @Description:
*/
import * as path from 'path';
import {exec} from 'child_process';
import * as inquirer from 'inquirer';
import * as yargs from 'yargs';
import * as through from 'through2';
import * as copy from 'recursive-copy';
import * as fs from 'fs';
export const DEV = false;
export const templatesRoot = path.resolve(__dirname, './templates/templates');
export const containersRoot = path.resolve(__dirname, './templates/containers');
export const projectRoot = path.resolve(__dirname, './templates/project');
export const assetsRoot = path.resolve(__dirname, './templates/assets');
export const unityRoot = path.resolve(__dirname, './templates/unity');
export const currentRoot = process.cwd();
export const TEMPLATES = [
{name: 'Lite, a simple rendering project', value: 'lite'},
{name: 'Tiny, a tiny project with one simple script', value: 'tiny'},
{name: 'Simple, a simple project with starndard Sein.js gameplay framework', value: 'simple'}
];
export const ENGINES = [
'none',
'react',
'wx-mini-game',
'wx-mini-program',
'my-tiny-game',
'my-tiny-program'
];
export const SEIN_DEPENDENCIES = {
seinjs: '^1.5.0',
'cannon-dtysky': '^0.6.4',
'seinjs-camera-controls': '^0.8.2',
'seinjs-debug-tools': '^0.8.0',
'seinjs-dom-hud': '^0.8.0',
'seinjs-gpu-particle-system': '^0.8.3',
'seinjs-audio': '^0.9.0',
'seinjs-post-processing-system': '^0.8.0'
};
export function showError(msg: string) {
console.error('\x1b[31m%s', `Error: ${msg}`);
process.exit(0);
}
export function showInfo(msg: string) {
console.info('\x1b[32m%s\x1b[0m', msg);
}
export function toSnakeCase(str: string) {
const upperChars = str.match(/([A-Z])/g);
if (! upperChars) {
return str;
}
for (var i = 0, n = upperChars.length; i < n; i += 1) {
str = str.replace(new RegExp(upperChars[i]), '-' + upperChars[i].toLowerCase());
}
if (str.slice(0, 1) === '-') {
str = str.slice(1);
}
return str;
}
export async function getTemplate(argv: yargs.Arguments) {
let {template} = argv;
if (!template) {
template = (await inquirer.prompt<{template: string}>([
{
name: 'template',
type: 'list',
message: 'Type of template.',
default: TEMPLATES[0],
choices: TEMPLATES
}
])).template;
}
return path.resolve(templatesRoot, template);
}
export async function getRoot(argv: yargs.Arguments) {
let {root} = argv;
if (!root) {
root = (await inquirer.prompt<{root: string}>([
{
name: 'root',
type: 'input',
message: 'Project root folder.',
default: '.'
}
])).root;
}
return path.resolve(currentRoot, root);
}
export async function getEngine(argv: yargs.Arguments) {
let {engine} = argv;
if (!engine) {
engine = (await inquirer.prompt<{engine: string}>([
{
name: 'engine',
type: 'list',
message: 'Container engine',
default: 'none',
choices: ENGINES
}
])).engine;
}
return path.resolve(containersRoot, engine);
}
export async function getAuthor() {
function gitConfig(field, callback) {
var command = 'git config --get user.' + field;
exec(command, function (err, stdout, stderr) {
if (err) {
callback(err);
return;
}
callback(null, stdout.toString().replace(/(\r\n|\n|\r)/gm,""));
});
}
function getAll(callback) {
gitConfig("name", function (err, name) {
if (err) {
callback(err);
return;
}
gitConfig("email", function (err, email) {
if (err) {
callback(err);
return;
}
callback(null, {name, email});
});
});
}
return new Promise<{name: string, email: string}>(resolve => {
getAll((err, result) => {
if (err) {
resolve({name: '', email: ''});
return;
}
resolve(result);
})
})
}
export interface IMeta {
NAME: string;
'AUTHOR.NAME': string;
'AUTHOR.EMAIL': string;
DATE: string;
DEV_DEPENDENCIES: Object;
DEPENDENCIES: Object;
SCRIPTS: Object;
WEBPACK_FILE_PREFIX: string;
WEBPACK_MAIN_ENTRY_PREFIX: string;
WEBPACK_MAIN_ENTRY: string;
WEBPACK_OUTPUT_PATH: string;
WEBPACK_OUTPUT_NAME: string;
WEBPACK_OUTPUT_CHUNKNAME: string;
WEBPACK_PUBLIC_PATH: string;
WEBPACK_ASSETS_PATH: string;
WEBPACK_OUTPUT_POSTFIX: string;
WEBPACK_LOADER_POSTFIX: string;
WEBPACK_PLUGIN_POSTFIX: string;
};
export async function getProjectConfig(
root: string,
container: string,
template: string
): Promise<{
meta: IMeta,
overWriteDir: string,
sourceDir: string,
assetsDir: string
}> {
const author = await getAuthor();
const meta = {
NAME: toSnakeCase(root.split(/[/\\]/g).pop()),
'AUTHOR.NAME': author.name,
'AUTHOR.EMAIL': author.email,
DATE: new Date().toDateString(),
DEV_DEPENDENCIES: {},
DEPENDENCIES: Object.assign({}, SEIN_DEPENDENCIES),
SCRIPTS: {},
WEBPACK_FILE_PREFIX: ``,
WEBPACK_MAIN_ENTRY_PREFIX: '',
WEBPACK_MAIN_ENTRY: 'src/index.ts',
WEBPACK_OUTPUT_PATH: 'dist',
WEBPACK_OUTPUT_NAME: '[name].[hash].js',
WEBPACK_OUTPUT_CHUNKNAME: '[name].[hash].js',
WEBPACK_PUBLIC_PATH: '/',
WEBPACK_ASSETS_PATH: '',
WEBPACK_OUTPUT_POSTFIX: '',
WEBPACK_LOADER_POSTFIX: '',
WEBPACK_PLUGIN_POSTFIX: '',
};
const config = {meta, overWriteDir: '', sourceDir: 'src', assetsDir: 'assets'};
config.meta.WEBPACK_ASSETS_PATH = path.join(config.sourceDir, config.assetsDir);
container = container.split('/').pop() as any;
if (!container) {
return config;
}
const cDir = path.resolve(containersRoot, container);
const cProjectDir = path.resolve(cDir, 'project');
const cConfigPath = path.resolve(cProjectDir, 'config.js');
if (!fs.existsSync(cProjectDir)) {
return config;
}
config.overWriteDir = cProjectDir;
if (!fs.existsSync(cConfigPath)) {
return config;
}
const c = await import(cConfigPath) || {};
c.meta.DEPENDENCIES = Object.assign(c.meta.DEPENDENCIES, config.meta.DEPENDENCIES);
Object.assign(config.meta, c.meta);
config.sourceDir = c.sourceDir || config.sourceDir;
config.assetsDir = c.assetsDir || config.assetsDir;
return config;
}
export async function generate(
templatePath: string,
root: string,
meta: IMeta,
filter: (src: string) => boolean = () => false
) {
const {DEPENDENCIES, DEV_DEPENDENCIES, SCRIPTS, ...strMeta} = meta;
const options = {
overwrite: true,
dot: true,
filter: (src: string) => !(/\.git\//.test(src) || filter(src)),
transform: (src, dest, stats) => {
return through((chunk, enc, done) => {
let output;
if (['.jpg', '.png', '.bmp', '.tileset', '.bin', '.unitypackage', '.glb', '.dll', '.pdb'].indexOf(path.extname(src)) > -1) {
output = chunk;
} else {
output = chunk.toString();
if (path.basename(src) === 'package.json') {
output = JSON.parse(output);
if (output.dependencies) {
Object.assign(output.dependencies, DEPENDENCIES);
}
if (output.devDependencies) {
Object.assign(output.devDependencies, DEV_DEPENDENCIES);
}
if (output.scripts) {
Object.assign(output.scripts, SCRIPTS);
}
output = JSON.stringify(output, null, 2);
}
Object.keys(strMeta).forEach(key => {
output = output.replace(new RegExp(`{{${key}}}`, 'g'), strMeta[key].trim());
});
}
done(null, output);
});
}
};
try {
await copy(templatePath, root, options)
.on(copy.events.COPY_FILE_START, copyOperation => {
showInfo(`Generate ${copyOperation.dest}...`);
});
} catch (error) {
showError(`Generate failed: ${error}\nPlease clean current directory and retry !`);
}
}
export async function generateUnity(root: string, assetsFolder: string, meta: IMeta) {
const unityFolder = path.resolve(root, 'unity');
if (!fs.existsSync(unityFolder)) {
fs.mkdirSync(unityFolder);
}
await generate(unityRoot, unityFolder, meta);
// const configPath = path.resolve(unityFolder, 'Assets/SeinJSUnityToolkit/src/config.json');
// const config = JSON.parse(fs.readFileSync(configPath, {encoding: 'utf8'}));
// config.exportPath = path.relative(path.resolve(unityFolder, 'Assets'), path.resolve(assetsFolder, 'gltfs'));
// fs.writeFileSync(configPath, JSON.stringify(config, null, 2));
}