phaser/README.md

198 lines
10 KiB
Markdown
Raw Normal View History

2013-09-13 15:34:11 +00:00
![Phaser Logo](http://www.gametest.mobi/phaser/phaser-logo-small.png)
2013-09-13 15:42:33 +00:00
Phaser 1.0
==========
Phaser is a fast, free and fun open source game framework for making desktop and mobile browser HTML5 games. It supports Canvas and WebGL rendering.
Version: 1.0.0 - Released: September 13th 2013
2013-04-12 16:19:56 +00:00
By Richard Davey, [Photon Storm](http://www.photonstorm.com)
2013-09-13 15:42:33 +00:00
View the [Official Website](http://phaser.io)<br />
2013-05-02 13:03:41 +00:00
Follow on [Twitter](https://twitter.com/photonstorm)<br />
Read the [Development Blog](http://www.photonstorm.com)<br />
2013-09-13 15:42:33 +00:00
Join the [Forum](http://www.html5gamedevs.com/forum/14-phaser/)
2013-04-24 01:57:49 +00:00
Try out the [Phaser Test Suite](http://gametest.mobi/phaser/)
2013-04-12 16:38:44 +00:00
2013-05-16 01:36:58 +00:00
"Being negative is not how we make progress" - Larry Page, Google
Latest Update
-------------
September 13th 2013
We're very pleased to have finally shipped the 1.0 release of Phaser. This version represents many months of hard work, feedback and refactoring based on the previous 0.5 through to 0.97 releases. You can see the full gory details in our change log.
Sorry but the jsdocs aren't yet finished, but it is now our priority (along with bug fixing). If you run into problems, or just want to chat about how to best use Phaser then please do join our forums. It's an active and inspiring community.
Now 1.0 is released we'll focus on getting the docs and more examples completed. Both of these will be pushed to the master repo on a regular basis. We will tag new releases of Phaser, but changes to the examples or docs won't be release tagged.
Thank you to everyone who has encouraged us along the way. To those of you who worked with Phaser during its various incarnations, and who released full games with it despite there being zero API documentation available: you are our heroes. It's your kind words and enthusiasm, as well as our commercial need for Phaser that has kept us going. Now we're at 1.0 we will continue releasing rapidly and jumping on patches and bug reports quickly.
Phaser is everything we ever wanted from an HTML5 game framework. It will power all our client work going forward and we look forward to you joining us on this journey.
![Blasteroids](http://www.photonstorm.com/wp-content/uploads/2013/04/phaser_blaster.png)
2013-05-16 01:36:58 +00:00
2013-04-12 16:19:56 +00:00
Requirements
------------
Games created with Phaser require a modern web browser that supports the canvas tag. This includes Internet Explorer 9+, Firefox, Chrome, Safari and Opera. It also works on mobile web browsers including stock Android 2.x browser and above and iOS5 Mobile Safari and above.
2013-04-12 16:25:18 +00:00
For developing with Phaser you can use either a plain-vanilla JavaScript approach or [TypeScript](https://typescript.codeplex.com/). We made no assumptions about how you like to code your games, and were careful not to impose any form of class/inheritance/structure upon you.
2013-04-12 16:19:56 +00:00
Phaser is 275 KB minified and 62 KB gzipped.
2013-04-12 16:19:56 +00:00
Features
--------
2013-09-13 15:34:11 +00:00
**WebGL &amp; Canvas**
2013-04-12 16:19:56 +00:00
2013-09-13 15:34:11 +00:00
Phaser uses both a Canvas and WebGL renderer internally and can automatically swap between them based on browser support. This allows for lightning fast rendering across Desktop and Mobile. Phaser uses and contributes towards the excellent Pixi.js library for rendering.
2013-04-12 19:05:53 +00:00
2013-09-13 15:34:11 +00:00
**Preloader**
2013-04-12 16:19:56 +00:00
2013-09-13 15:34:11 +00:00
We've made the loading of assets as simple as one line of code. Images, Sounds, Sprite Sheets, Tilemaps, JSON data, XML - all parsed and handled automatically, ready for use in game and stored in a global Cache for Sprites to share.
2013-04-12 19:05:53 +00:00
2013-09-13 15:34:11 +00:00
**Physics**
2013-04-12 16:19:56 +00:00
2013-09-13 15:34:11 +00:00
Phaser ships with our Arcade Physics system. An extremely light-weight AABB physics library perfect for low-powered devices and fast collision response. Control velocity, acceleration, bounce, drag and full collision and separation control.
2013-04-12 19:05:53 +00:00
2013-09-13 15:34:11 +00:00
**Sprites**
2013-04-12 16:19:56 +00:00
2013-09-13 15:34:11 +00:00
Sprites are the life-blood of your game. Position them, tween them, rotate them, scale them, animate them, collide them, paint them onto custom textures and so much more!
Sprites also have full Input support: click them, touch them, drag them around, snap them - even pixel perfect click detection if needed.
2013-04-12 19:05:53 +00:00
2013-09-13 15:34:11 +00:00
**Groups**
2013-04-12 16:19:56 +00:00
2013-09-13 15:34:11 +00:00
Group bundles of Sprites together for easy pooling and recycling, avoiding constant object creation. Groups can also be collided: for example a "Bullets" group checking for collision against the "Aliens" group, with a custom collision callback to handle the outcome.
2013-04-12 19:05:53 +00:00
2013-09-13 15:34:11 +00:00
**Animation**
2013-04-12 16:19:56 +00:00
2013-09-13 15:34:11 +00:00
Phaser supports classic Sprite Sheets with a fixed frame size, Texture Packer and Flash CS6/CC JSON files (both Hash and Array formats) and Starling XML files. All of these can be used to easily create animation for Sprites.
2013-04-24 01:57:49 +00:00
2013-09-13 15:34:11 +00:00
**Particles**
2013-04-24 01:57:49 +00:00
2013-09-13 15:34:11 +00:00
An Arcade Particle system is built-in, which allows you to create fun particle effects easily. Create explosions or constant streams for effects like rain or fire. Or attach the Emitter to a Sprite for a jet trail.
2013-04-12 19:05:53 +00:00
2013-09-13 15:34:11 +00:00
**Camera**
2013-04-12 16:19:56 +00:00
2013-09-13 15:34:11 +00:00
Phaser has a built-in Game World. Objects can be placed anywhere within the world and you've got access to a powerful Camera to look into that world. Pan around and follow Sprites with ease.
2013-04-12 19:05:53 +00:00
2013-09-13 15:34:11 +00:00
**Input**
2013-04-12 16:19:56 +00:00
2013-09-13 15:34:11 +00:00
Talk to a Phaser.Pointer and it doesn't matter if the input came from a touch-screen or mouse, it can even change mid-game without dropping a beat. Multi-touch, Mouse, Keyboard and lots of useful functions allow you to code custom gesture recognition.
2013-04-12 19:05:53 +00:00
2013-09-13 15:34:11 +00:00
**Sound**
2013-04-12 16:19:56 +00:00
2013-09-13 15:34:11 +00:00
Phaser supports both Web Audio and legacy HTML Audio. It automatically handles mobile device locking, easy Audio Sprite creation, looping, streaming and volume. We know how much of a pain dealing with audio on mobile is, so we did our best to resolve that!
2013-04-12 19:05:53 +00:00
2013-09-13 15:34:11 +00:00
**Tilemaps**
2013-04-12 16:19:56 +00:00
2013-09-13 15:34:11 +00:00
Phaser can load, render and collide with a tilemap with just a couple of lines of code. We support CSV and Tiled map data formats with multiple tile layers. There are lots of powerful tile manipulation functions: swap tiles, replace them, delete them, add them and update the map in realtime.
2013-04-12 19:05:53 +00:00
2013-09-13 15:34:11 +00:00
**Device Scaling**
2013-04-12 16:19:56 +00:00
2013-09-13 15:34:11 +00:00
Phaser has a built-in Scale Manager which allows you to scale your game to fit any size screen. Control aspect ratios, minimum and maximum scales and full-screen support.
2013-04-12 19:05:53 +00:00
2013-09-13 15:34:11 +00:00
**Plugin system**
2013-04-12 16:19:56 +00:00
2013-09-13 15:34:11 +00:00
We are trying hard to keep the core of Phaser limited to only essential classes, so we built a smart Plugin system to handle everything else. Create your own plugins easily and share them with the community.
2013-04-12 19:05:53 +00:00
2013-09-13 15:34:11 +00:00
**Mobile Browser**
2013-04-12 16:19:56 +00:00
2013-09-13 15:34:11 +00:00
Phaser was built specifically for Mobile web browsers. Of course it works blazingly fast on Desktop too, but unlike lots of frameworks mobile was our main focus. If it doesn't perform well on mobile then we don't add it into the Core.
2013-04-12 19:05:53 +00:00
2013-09-13 15:34:11 +00:00
**Developer Support**
2013-04-12 16:19:56 +00:00
2013-09-13 15:34:11 +00:00
We use Phaser every day on our many client projects. As a result it's constantly evolving and improving and we jump on bugs and pull requests quickly. This is a living, breathing framework maintained by a commercial company with custom feature development and support packages available. We live and breathe HTML5 games.
2013-04-13 03:28:52 +00:00
2013-09-13 15:34:11 +00:00
**Battle Tested**
2013-04-12 16:19:56 +00:00
2013-09-13 15:34:11 +00:00
Although Phaser 1.0 is a brand new release it is born from years of experience building some of the biggest HTML5 games out there. We're not saying it is 100% bug free, but we use it for our client work every day, so issues get resolved <em>fast</em> and we stay on-top of the changing browser landscape.
2013-04-12 16:46:19 +00:00
![Phaser Particles](http://www.photonstorm.com/wp-content/uploads/2013/04/phaser_particles.png)
2013-04-12 16:38:44 +00:00
Known Issues
------------
2013-04-12 16:19:56 +00:00
* The TypeScript definition file isn't yet complete.
* The JSDOCS are not yet complete.
2013-04-12 16:19:56 +00:00
Future Plans
------------
2013-04-12 16:19:56 +00:00
2013-09-13 15:42:33 +00:00
The following list is not exhaustive and is subject to change:
* Integrate Advanced Physics system.
2013-09-13 15:42:33 +00:00
* Integrate Advanced Particle system.
* Better sound controls and audio effects.
* Google Play Game Services.
2013-09-13 15:42:33 +00:00
* Ability to layer another DOM object and have it controlled by the game.
* More GUI components: checkbox, radio button, window, etc.
* Tilemap: more advanced Tiled support and support for DAME tilemaps.
* Joypad support.
* Gestures input class.
Right now our main focus is on documentation.
2013-04-12 16:19:56 +00:00
Test Suite
----------
Phaser comes with an ever growing Test Suite. Personally we learn better by looking at small refined code examples, so we create lots of them to test each new feature we add. Inside the Tests folder you'll find the current set. If you write a particularly good test then please send it to us.
2013-04-12 16:19:56 +00:00
The tests need running through a local web server (to avoid file access permission errors from your browser).
Make sure you can browse to the Tests folder via your web server. If you've got php installed then launch:
examples/index.php
2013-04-12 16:19:56 +00:00
Right now the Test Suite requires PHP, but we will remove this requirement soon.
You can also browse the [Phaser Test Suite](http://gametest.mobi/phaser/) online.
2013-04-12 16:19:56 +00:00
Contributing
------------
Phaser is in early stages and although we've still got a lot to add to it, we wanted to just get it out there and share it with the world.
If you find a bug (highly likely!) then please report it on github.
If you have a feature request, or have written a small game or demo that shows Phaser in use, then please get in touch. We'd love to hear from you.
You can do this on the Phaser board that is part of the [HTML5 Game Devs forum](http://www.html5gamedevs.com/forum/14-phaser/) or email: rich@photonstorm.com
2013-04-12 16:19:56 +00:00
Bugs?
-----
Please add them to the [Issue Tracker][1] with as much info as possible.
2013-04-12 16:46:19 +00:00
![Phaser Tilemap](http://www.photonstorm.com/wp-content/uploads/2013/04/phaser_tilemap.png)
2013-04-12 16:38:44 +00:00
2013-04-12 16:19:56 +00:00
License
-------
The MIT License (MIT)
2013-04-12 16:19:56 +00:00
Copyright (c) 2013 Richard Davey, Photon Storm Ltd.
2013-04-12 16:19:56 +00:00
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
2013-04-12 16:19:56 +00:00
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
2013-04-12 16:19:56 +00:00
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2013-04-12 16:19:56 +00:00
[1]: https://github.com/photonstorm/phaser/issues
[phaser]: https://github.com/photonstorm/phaser