phaser/Gruntfile.js

249 lines
10 KiB
JavaScript
Raw Normal View History

/// <binding />
2013-10-23 12:15:56 +00:00
module.exports = function (grunt) {
var loadConfig = require('load-grunt-config');
2013-10-23 12:15:56 +00:00
loadConfig(grunt, {
configPath: __dirname + '/tasks/options',
config: {
target_dir: 'build',
release_dir: 'build',
release_custom_dir: 'build/custom',
compile_dir: 'dist',
2015-02-19 05:01:50 +00:00
modules_dir: 'dist/modules',
2014-11-25 00:22:57 +00:00
docs_dir: 'docs',
sourcemap: false,
filename: 'phaser',
2015-02-19 15:27:44 +00:00
filelist: [],
banner: require('fs').readFileSync(__dirname + '/tasks/banner.txt', 'utf8')
2014-03-23 06:23:45 +00:00
}
});
grunt.loadTasks('tasks');
grunt.registerTask('default', ['build']);
2014-03-23 06:23:45 +00:00
grunt.registerTask('docs', ['clean:docs', 'pixidoc', 'jsdoc:html', 'replace:docs', 'clean:out']);
grunt.registerTask('tsdocs', ['clean:out', 'pixidoc', 'gitclone:plugins', 'jsdoc:json', 'buildtsdoc:pixi', 'buildtsdoc:phaser', 'replace:phasertsdefheader', 'clean:out']);
2015-02-19 05:01:50 +00:00
grunt.registerTask('custom', 'Build a custom version of Phaser', function(arg) {
var modules = {
2015-02-19 15:27:44 +00:00
'pixi': { 'description': 'Pixi.js', 'optional': true },
'intro': { 'description': 'Phaser UMD wrapper', 'optional': false },
'phaser': { 'description': 'Phaser Globals', 'optional': false },
'geom': { 'description': 'Geometry Classes', 'optional': false },
'core': { 'description': 'Phaser Core', 'optional': false },
'input': { 'description': 'Input Manager + Mouse and Touch Support', 'optional': false },
'gamepad': { 'description': 'Gamepad Input', 'optional': true },
'keyboard': { 'description': 'Keyboard Input', 'optional': true },
'components': { 'description': 'Game Object Components', 'optional': false },
'gameobjects': { 'description': 'Core Game Objects', 'optional': false },
'bitmapdata': { 'description': 'BitmapData Game Object', 'optional': true },
'graphics': { 'description': 'Graphics Game Object', 'optional': true },
'rendertexture': { 'description': 'RenderTexture Game Object', 'optional': true },
'text': { 'description': 'Text Game Object (inc. Web Font Support)', 'optional': true },
'bitmaptext': { 'description': 'BitmapText Support', 'optional': true },
'retrofont': { 'description': 'Retro Fonts Support', 'optional': true },
'system': { 'description': 'System Classes', 'optional': false },
'math': { 'description': 'Math, QuadTree and RND', 'optional': false },
'net': { 'description': 'Network Class', 'optional': true },
'tweens': { 'description': 'Tween Manager', 'optional': true },
'time': { 'description': 'Time and Clock Manager', 'optional': false },
'animation': { 'description': 'Animation and Frame Manager', 'optional': false },
'loader': { 'description': 'Loader and Cache', 'optional': false },
'sound': { 'description': 'Sound Support (Web Audio and HTML Audio)', 'optional': true },
'debug': { 'description': 'Debug Class', 'optional': true },
'utils': { 'description': 'Core Utilities', 'optional': false },
'physics': { 'description': 'Physics Manager', 'optional': false },
'arcade': { 'description': 'Arcade Physics', 'optional': true },
'ninja': { 'description': 'Ninja Physics', 'optional': true },
'p2': { 'description': 'P2 Physics', 'optional': true },
'tilemaps': { 'description': 'Tilemap Support', 'optional': true },
'particles': { 'description': 'Arcade Physics Particle System', 'optional': true },
'outro': { 'description': 'Phaser UMD closure', 'optional': false }
};
grunt.log.writeln("---------------------");
grunt.log.writeln("Building Phaser " + grunt.config.get('package.version'));
grunt.log.writeln("---------------------");
2015-02-19 05:01:50 +00:00
if (!grunt.option('exclude'))
{
grunt.log.writeln("\nUse --exclude to select which modules to exclude:\n");
2015-02-19 05:01:50 +00:00
for (var key in modules)
{
2015-02-19 15:27:44 +00:00
if (modules[key].optional)
{
grunt.log.writeln(key + ' - ' + modules[key].description);
}
2015-02-19 05:01:50 +00:00
}
2015-02-20 00:58:59 +00:00
grunt.log.writeln("\nFor example: --exclude p2,tilemap,retrofont");
grunt.log.writeln("Optional flags: --filename yourfilename and --sourcemap true");
2015-02-19 06:03:42 +00:00
grunt.log.writeln("Note that some modules have dependencies on others.\n");
2015-02-19 05:01:50 +00:00
2015-02-19 06:03:42 +00:00
grunt.fail.fatal("No build options were specified.");
2015-02-19 05:01:50 +00:00
}
else
{
// Defaults
grunt.config.set('sourcemap', false);
grunt.config.set('filename', 'phaser');
grunt.config.set('target_dir', '<%= release_dir %>');
// Overrides
if (grunt.option('filename'))
{
grunt.config.set('filename', grunt.option('filename'));
}
if (grunt.option('sourcemap'))
{
grunt.config.set('sourcemap', grunt.option('sourcemap'));
}
2015-02-19 05:01:50 +00:00
grunt.log.writeln("Excluding modules:\n");
var excludes = grunt.option('exclude').split(',');
2015-02-19 15:27:44 +00:00
// Check the given modules are all valid
2015-02-19 05:01:50 +00:00
for (var i = 0; i < excludes.length; i++)
{
2015-02-19 15:27:44 +00:00
var key = excludes[i];
if (modules[key])
2015-02-19 05:01:50 +00:00
{
2015-02-19 15:27:44 +00:00
grunt.log.writeln("* " + key + ' - ' + modules[key].description);
2015-02-19 05:01:50 +00:00
}
else
{
2015-02-19 15:27:44 +00:00
grunt.fail.fatal("Unknown module '" + key + "'");
2015-02-19 06:03:42 +00:00
}
}
2015-02-19 05:01:50 +00:00
2015-02-19 15:27:44 +00:00
// Handle basic dependencies
2015-02-19 05:01:50 +00:00
2015-02-19 15:27:44 +00:00
if (excludes['arcade'] && !excludes['particles'])
2015-02-19 06:03:42 +00:00
{
2015-02-19 15:27:44 +00:00
grunt.log.writeln("Warning: Particles rely on Arcade Physics. Excluding from build.");
excludes.push('particles');
2015-02-19 06:03:42 +00:00
}
2015-02-19 15:27:44 +00:00
if (excludes['rendertexture'] && !excludes['retrofont'])
2015-02-19 06:03:42 +00:00
{
2015-02-19 15:27:44 +00:00
grunt.log.writeln("Warning: RetroFonts rely on RenderTextures. Excluding from build.");
excludes.push('retrofont');
2015-02-19 06:03:42 +00:00
}
2015-02-19 15:27:44 +00:00
// Ok we know the excludes array is fine, let's get this show started
2015-02-19 06:03:42 +00:00
2015-02-19 15:27:44 +00:00
grunt.log.writeln("\nBuilding ...\n");
2015-02-19 06:03:42 +00:00
2015-02-19 15:27:44 +00:00
var filelist = [];
2015-02-19 06:03:42 +00:00
// Clean the working folder
var tasks = [ 'clean:build' ];
2015-02-19 06:03:42 +00:00
2015-02-19 15:27:44 +00:00
for (var key in modules)
2015-02-19 06:03:42 +00:00
{
2015-02-19 15:27:44 +00:00
// If it's required or NOT excluded, add it to the tasks list
if (modules[key].optional === false || excludes.indexOf(key) === -1)
{
tasks.push('concat:' + key);
2015-02-19 06:03:42 +00:00
2015-02-19 15:27:44 +00:00
filelist.push('<%= modules_dir %>/' + key + '.js');
2015-02-19 06:03:42 +00:00
2015-02-19 15:27:44 +00:00
// Special case: If they have Arcade Physics AND Tilemaps we need to include the Tilemap Collision class
if (key === 'arcade' && !excludes['tilemaps'])
{
tasks.push('concat:arcadeTilemaps');
filelist.push('<%= modules_dir %>/arcadeTilemaps.js');
}
}
2015-02-19 06:03:42 +00:00
}
2015-02-19 15:27:44 +00:00
grunt.config.set('filelist', filelist);
2015-02-19 06:03:42 +00:00
tasks.push('concat:custom');
2015-02-19 15:27:44 +00:00
2015-02-19 06:03:42 +00:00
tasks.push('uglify:custom');
if (grunt.option('copy'))
{
tasks.push('copy:custom');
}
else if (grunt.option('copycustom'))
{
grunt.config.set('target_dir', '<%= release_custom_dir %>');
tasks.push('copy:custom');
}
2015-02-19 15:27:44 +00:00
grunt.task.run(tasks);
2015-02-19 15:27:44 +00:00
2015-02-19 06:03:42 +00:00
}
2015-02-19 05:01:50 +00:00
});
grunt.registerTask('dist', 'Build all Phaser versions', function() {
grunt.task.run('clean:release');
grunt.task.run('full');
grunt.task.run('arcadephysics');
grunt.task.run('nophysics');
grunt.task.run('minimum');
});
grunt.registerTask('full', 'Phaser complete', function() {
2015-02-19 05:01:50 +00:00
grunt.option('exclude', 'ninja');
grunt.option('filename', 'phaser');
grunt.option('sourcemap', true);
grunt.option('copy', true);
grunt.task.run('custom');
2013-10-23 12:15:56 +00:00
});
grunt.registerTask('arcadephysics', 'Phaser with Arcade Physics, Tilemaps and Particles', function() {
grunt.option('exclude', 'ninja,p2');
grunt.option('filename', 'phaser-arcade-physics');
grunt.option('sourcemap', true);
grunt.option('copy', false);
grunt.option('copycustom', true);
grunt.task.run('custom');
});
grunt.registerTask('nophysics', 'Phaser without physics, tilemaps or particles', function() {
grunt.option('exclude', 'arcade,ninja,p2,tilemaps,particles');
grunt.option('filename', 'phaser-no-physics');
grunt.option('sourcemap', true);
grunt.option('copy', false);
grunt.option('copycustom', true);
grunt.task.run('custom');
});
grunt.registerTask('minimum', 'Phaser without any optional modules except Pixi', function() {
grunt.option('exclude', 'gamepad,keyboard,bitmapdata,graphics,rendertexture,text,bitmaptext,retrofont,net,tweens,sound,debug,arcade,ninja,p2,tilemaps,particles');
grunt.option('filename', 'phaser-minimum');
grunt.option('sourcemap', true);
grunt.option('copy', false);
grunt.option('copycustom', true);
grunt.task.run('custom');
});
2013-10-23 12:15:56 +00:00
};