phaser/v3/dev-guide/IDEAS.md

4.7 KiB

Phaser 3 Ideas and To Dos

TODO

Upgrade to Webpack 2 final release Stop the build script from moving the build file into Examples, and just copy it :) Add in k-nearest neighbors search (KNN) for RBush Look at Bounds + SetBounds from EaselJS for Transforms that aren't Frame based

General

Add a Registry - a game level Data component, accessible from any State.

Look at adding events to the Data component, so you can be notified about changes to objects stored within it. Something like the way Freezer does it? https://github.com/arqex/freezer

Arcade Physics

Idea: Collision Groups.

Allowing you to do Group vs. Group collisions without them needing to be in the same display oriented Group. Also Collision Groups could have properties, like custom callbacks, or the ability to do things to children such as remove them from the Group, or auto-kill on collision, or be for overlap checks only.

Conditional checks would be handy, so you can say: If Sprite A overlaps with Sprite B AND collides with Sprite C then callback. Perhaps possible via Group chaining.

Shape Container

A special display-list container that can take any Phaser Geometry object, and combine it with a texture (or color / gradient) and allow you to render it in your game, without needing to use a Graphics object or similar. Would be pretty intensive re: rendering, but that could be covered in the docs. Lots of people ask why they can't add a Phaser.Rectangle to the display list, and this would solve that.

Timeline

Tweens work great, but aren't very flexible, and a frame based Timeline object would be much more useful. Would allow you to set events to occur on specific frames on the timeline, to adjust and read the playhead, to go in reverse, to apply custom easing to sections of the timeline, etc. Much like the Flash timeline really, but code based and quick to create (and small enough to be used lots without a big overhead)

Tweens

/* The following are all the same

var tween = this.tweens.add({
    targets: player,
    x: 200,
    duration: 2000,
    ease: 'Power1',
    yoyo: true
});

var tween = this.tweens.add({
    targets: player,
    props: {
        x: 200
    }
    duration: 2000,
    ease: 'Power1',
    yoyo: true
});

var tween = this.tweens.add({
    targets: player,
    x: { value: 200, duration: 2000, ease: 'Power1', yoyo: true }
});

var tween = this.tweens.add({
    targets: player,
    props: {
        x: { value: 200, duration: 2000, ease: 'Power1', yoyo: true }
    }
});

//  Chained property tweens:
//  Each tween uses the same duration and ease because they've been 'globally' defined, except the middle one,
//  which uses its own duration as it overrides the global one

var tween = this.tweens.add({
    targets: player,
    x: [ { value: 200 }, { value: 300, duration: 50 }, { value: 400 } ],
    duration: 2000,
    ease: 'Power1',
    yoyo: true
});

//  Multiple property tweens:

var tween = this.tweens.add({
    targets: player,
    x: { value: 400, duration: 2000, ease: 'Power1' },
    y: { value: 300, duration: 1000, ease: 'Sine' }
});

var tween = this.tweens.add({
    targets: player,
    props: {
        x: { value: 400, duration: 2000, ease: 'Power1' },
        y: { value: 300, duration: 1000, ease: 'Sine' }
    }
});

//  Multiple Targets + Multiple property tweens:

var tween = this.tweens.add({
    targets: [ alien1, alien2, alien3, alienBoss ],
    props: {
        x: { value: 400, duration: 2000 },
        y: { value: 300, duration: 1000 }
    },
    ease: 'Sine'
});

//  Multiple Targets + Multiple properties + Multi-state Property tweens:

var tween = this.tweens.add({
    targets: [ alien1, alien2, alien3, alienBoss ],
    props: {
        x: [ { value: 200, duration: 100 }, { value: 300, duration: 50 }, { value: 400 } ],
        y: { value: 300, duration: 1000 }
    },
    ease: 'Sine'
});

//  Multi-value Tween Property with static values

var tween = this.tweens.add({
    targets: [ alien1, alien2, alien3, alienBoss ],
    props: {
        x: [ 200, 300, 400 ],
        y: [ '+100', '-100', '+100' ]
    },
    duration: 1000,
    ease: 'Sine'
});

//  Timeline concept

var tween = this.tweens.add({
    targets: player,
    timeline: [
        { x: 400 },
        { y: 400 },
        { x: 100 },
        { y: 100 }
    ],
    duration: 1000,
    ease: 'Sine'
});

*/