CSS JavaScript Other
Latest commit edea048 Jan 15, 2018 @obiot obiot CHANGELOG update
Permalink
Failed to load latest commit information.
.github various documentation fixes Jan 11, 2018
examples [#580] "showcase" the new ability Jan 10, 2018
media [#792] further clean-up and fix to examples Jun 9, 2016
plugins/debug [#580] and now this works ! Jan 10, 2018
scripts fixed: references to camel case melonJS.js should be lowercased Jun 17, 2017
src [#588] add a `bounce` property for solid bodies Jan 15, 2018
tasks [#768] documentation update to clarify anchor point and coordinate sy… Feb 21, 2017
tests [Test Units] test for me.Color copy function Jan 2, 2018
.editorconfig feat: prepare code for npm publishing Jun 17, 2017
.eslintrc.json fix the travis build Sep 6, 2017
.gitattributes Rock 'nl' Roll :) Mar 22, 2013
.gitignore Automatically assemble list of spects to execute, do not rely on hard… Jul 8, 2017
.travis.yml [#894] Chrome addon requires the trusty build environement Jul 13, 2017
AUTHORS updated copyright/authors information to clarify main author versus c… Nov 30, 2017
CHANGELOG CHANGELOG update Jan 15, 2018
Gruntfile.js [#894] and this should work now Jul 13, 2017
LICENSE update License to 2018 Jan 8, 2018
README.md update License to 2018 Jan 8, 2018
bower.json Merge remote-tracking branch 'refs/remotes/origin/4.1.x' Jul 4, 2017
index.html add missing examples in the index html page Feb 2, 2016
jsdoc_conf.json update License to 2018 Jan 8, 2018
karma.conf.js [#894] limit the nyan reporter renderer when running under travis Jul 11, 2017
package.json new Container `onChildChange` callback for when a child is added or r… Dec 4, 2017
sourceFiles.json further clean the window polyfill by moving the domReady/initializati… Nov 30, 2017

README.md

melonJS

Build Status Inline docs

A fresh & lightweight HTML5 game engine

melonJS

Copyright (C) 2011 - 2018 Olivier Biot

melonJS is licensed under the MIT License

About melonJS

melonJS is the result of our enthusiasm & experiments with Javascript, and currently features :

  • A fresh & lightweight 2D sprite-based engine
  • Standalone library (does not rely on anything else, except a HTML5 capable browser)
  • Compatible with most major browsers (Chrome, Safari, Firefox, Opera, IE) and mobile devices
  • Device motion & accelerometer support
  • High DPI & auto scaling
  • Multi-channel HTML5 audio support and Web Audio on supported devices
  • Lightweight physics implementation to ensure low cpu requirements
  • Polygon (SAT) based collision algorithm for accurate detection and response
  • Fast Broad-phase collision detection using spatial partitioning
  • 3rd party tools support for physic body definition (PhysicEditor, Physic Body Editor)
  • Advanced math API for Vector and Matrix
  • Tween Effects
  • Transition effects
  • A basic set of Object Entities (to be extended)
  • Object Pooling
  • Basic Particle System
  • Basic animation management
  • Standard spritesheet and Packed Textures (Texture Packer, ShoeBox) support
  • A state manager (to easily manage loading, menu, options, in-game state)
  • Tiled map format version +0.9.x integration for easy level design
    • Uncompressed Plain, Base64, CSV and JSON encoded XML tilemap loading
    • Orthogonal, Isometric and Perspective tilemap support
    • Multiple layers (multiple background/foreground, collision and Image layers)
    • Multiple Tileset support
    • Tileset Transparency settings
    • Layers Alpha settings
    • Rectangle, Ellipse, Polygon and Polyline objects support
    • Tiled Objects
    • Flipped & rotated Tiles
    • Dynamic Layer and Object/Group ordering
    • Dynamic Entity loading
    • Shape based Tile collision support
  • System & bitmap fonts
  • Mouse and Touch device support (with mouse emulation)
  • Built-in support for CocoonJS and Ejecta
  • Asynchronous messaging support (minPubSub)
  • Basic GUI elements included
  • Customizable loader

Using melonJS

For your first time using melonJS, follow these tutorials :

When starting your own projects, checkout the boilerplate

Note that due to the cross-origin request policy implemented in most browsers (that prevents from accessing local files), you will need to either disable this security check (see the tutorial), or better use a "personal" local web server like the grunt connect task that is used for building melonJS (see below for building melonJS).

Building melonJS

To build your own version of melonJS you will need to install :

  • The Node.js JavaScript runtime and npm package manager
  • The Grunt task manager

Once the Node.js package manager has been installed (using the installer from their website), you need to install build dependencies and Grunt CLI (Command Line Interface), by doing the following :

Open a Terminal or a Command Prompt and type the following :

$ [sudo] npm install -g grunt-cli

Next you need to install the melonJS dependencies, by typing :

$ cd melonJS
$ npm install

Once this is done, you can build melonJS :

$ cd melonJS # if not already in the melonJS directory
$ grunt

Both plain and minified versions of the library will be available under the "build" directory.

Building the documentation

Here is how you can build your own copy of the docs locally :

$ cd melonJS # if not already in the melonJS directory
$ grunt doc

The generated documentation will be available in the docs directory

Testing

The recommended way to test is to use the serve task:

$ grunt serve

Then navigate to http://localhost:8000/ in your browser. Stop the server when you are done by pressing Ctrl+C in the terminal.

To run melonJS tests in node simply run the following:

$ grunt test

This will run the jasmine spec tests with the output displayed on the shell. Do note that the latest Chrome version is required, as the test unit will run the Browser in a headless mode (in case of failed tests, upgrade your browser).

WIP Builds

melonJS uses Travis-CI for automated testing and build uploads. The latest build artifacts can be downloaded from the melonjs-builds bucket.

Questions, need help ?

If you need technical support, you can contact us through the following channels :

For any other non technical related questions, feel free to also send us an email.