npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@browndragon/tsp

v0.0.24

Published

Plugin for scenes and game objects which automatically support Time Steps for Physics

Downloads

5

Readme

@browndragon/tsp

A phaser 3 plugin which adds supports to Scene and all game objects which respect methods postUpdate, tick (which runs during each arcade physics tick) and postTick (runs at the same time, after all other ticks for high priority rules like walls).

It also supports registering callbacks to be invoked during the preload and create steps of the scene, intended to simplify loading & interpreting assets. This is cooperative with the scene invoking methods, in case there are specific bootstrapping or preloading scenes.

For the time-tick behaviors, you usually just need to install it but then never interact with it again, because it listens to the builtin updateList for updates (and interacting with that is your problem), but will additionally inspect every object added to the updateList for the above methods, which it will invoke at the appropriate times.

Warning: If there are no physics bodies, physics doesn't run -- so your scene physics events can't run! This is particularly bad if you have a bunch of physical forces that create bodies; even a single static body would fix it so this is rare, but it could happen!

For the preload and create registration steps, you will interact with the TSP.preload and TSP.create functional objects. TSP.preload((scene)=>{...}) and the same for create will register a lambda for later execution. TSP.preload.runAll(this) will then invoke the lambda.

Usage

import Phaser from 'phaser';
import TSP from '@browndragon/tsp';

const game = new Phaser.Game({
    // ...
    plugins: {
        scene: [
            { key: '_tsp', plugin: TSP, /* mapping: 'tsp' */ },  // The mapping should be optional, since you shouldn't need to actually *do* anything with it; getting objects registered to the update list (etc) is enough.
        ],
    }
    // ...
});
// Usually, that's enough! Add objects with defined `tick(delta)`, `postTick(delta)`, and `postUpdate(time, delta)` methods to the scene updateList and this plugin will automatically invoke those methods at the appropriate times.
// Remember, you *usually* use `preUpdate` from, e.g., sprites.

Alternatively/also, you can reference TSP while bundling up assets for loading:

import Phaser from 'phaser';

import TSP from '@browndragon/tsp';
import Spritesheet from './spritesheet.png';  // Or multiple spritesheets, etc.
import Audio from './audio.mp3';  // ... and multimedia assets ofc.

export default class SomeEntity extends Phaser.GameObjects.Sprite {
    ...
    // All of these are optional.
    preUpdate(time, delta) {
        super.preUpdate(time, delta);
        // Your own stuff.
    }
    postUpdate(time, delta) {
        // There is no super.postUpdate :-/
        // Your own stuff.
    }
    tick(delta) {
        // Your own stuff.
    }
    postTick(delta) {
        // Your own stuff.
    }
}

// NOTE: a scene which wants to *use* SomeEntity must be or be preceeded by a scene which calls
// `TSP.preload.runAll(this)` and `TSP.create.runAll(this)`.
TSP.preload(scene => {
    console.assert(scene._tsp);  // just a convenient
    scene.load.spritesheet('SomeEntity', Spritesheet);
    scene.load.audio('SomeEntity', Audio);  // This is just standard phaser loading, I don't remember how it's spelled...
});
TSP.create(scene => {
    scene.anims.create({
        key:'SomeEntity.left',
        frames: scene.anims.generateFrameNumbers('SomeEntity', {start:0, end:3}),
        frameRate: 10,
        repeat: -1,
    });
    scene.anims.create({
        key:'SomeEntity.right',
        frames: scene.anims.generateFrameNumbers('SomeEntity', {start:4, end:8}),
        frameRate: 10,
        repeat: -1,
    });
});