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

phaser3-autotile

v0.2.5

Published

Phaser 3 Autotile

Downloads

5

Readme

phaser3-autotile

Installation

npm i --save phaser3-autotile as normal.

Basic use

See code in the examples directory.

Before use, the library must be initialized (it adds additional methods to standard phaser components). You can force this to happen if you do not have any other imports from this library as:

import {initialize as autotileInitialize} from 'phaser3-autotile';
import Phaser from 'phaser';
// other imports, etc
autotileInitialize();
// Your code here, e.g.`let game = new Phaser.Game({/*config*/});` etc.

This library supports two main methods: generating blob tileset images from a more compact representation, and reshuffling autotiles on map layers to fix up flow & corners.

Generating blob tileset images

As of 0.2.4:

Online generation of images is deprecated. Tiled + phaser want to know the full universe of tiles at tilemap load time. If you do online tileset generation, then there are 6 tiles as far as Tiled and load-time Phaser know, but there are 47 tiles as far as your autogeneration of tiles will know. While it's possible to create multiple maps with different tilesets and have them communicate, it's messy.

Instead, see package.json's scripts > build:exampleblob. This library exposes itself as a binary (see tools/blob.mjs) which can be executed as phaser3-autotile and especially (via npm-watch or equivalent) as a long-term watcher to regenerate your content.

Before 0.2.4:

Textures.js modifies the phaser texture manager, giving it an additional method generateBlobAutotileTexture. See examples/src/Blob.js and especially examples/src/Playpen.js for an example call. The input is a set of 5 generative tiles, and the result is a set of 47 generated tiles which cover cases where the center of the tile is set.

These are most useful when paired with autotiling, below.

Autotiling & Terrains

AutoTilemap (and friends!) modify Tilemap, TilemapLayer etc to wrap their calls, and introduces a new field .autotile(), which works in terms of Terrains.

See examples/src/Tiled.js for an example of use.

.prepareAutotile({jsonkey}) & .autotile()

Tilemap exposes a new method prepareAutotile which must be called as early as possible (ideally, right after getting the tilemap out of the game factory). It will reparse the tilemap json and join in any additional information, parsing a subset of Tiled's "Terrain" and "Wangset" features.

Thereafter, you can access this library's features by calling .autotile() on Tilemap or TilemapLayer objects.

Terrains and methods on .autotile()

someTilemap.autotile() and someTilemapLayer.autotile() expose several relevant methods. They work equivalently up to the semantics of someTilemap.getTileAt or .putTileAt, so interpret "layer" in that sense below:

  • isSetAt(name, x, y) - Returns true if the layer contains a tile in the terrain with name at (x,y). This can be subtle: just because the tile is in the output of the terrain does not mean that it is in the input of that terrain! This is notable for corner terrains -- since a given tile's "set" value is identified with its northwest corner, elements of the tileset that don't include the northwest corner don't return true for isSetAt!
  • getWangIdAt(name, x, y) - See notes at isSetAt; returns the wangId (see next section!) at (x,y). This is dependent on name -- one tile could theoretically play different roles in different terrain names!
  • addRefresh(name, function(x, y)) - Only well-defined with dynamicLayers, so use with care. Registers a callback function under name to be used with the next block of methods. If you do not provide a callback, one will be provided for you: it uses the layer itself as input, determines each wangId, and maps that onto a specific tile using the Terrain by name.
  • refreshAt(name, x, y), refreshRect(name, rect), refreshRadius(name, x, y, radius) - Invoke the refresh previously registered with addRefresh at each point in the arguments.
  • Special note: .terrains.getTerrain(name).tileId(wangId) - As a convenience if you are implementing your own addRefresh, you can examine wangId<->tileId mappings with this field of autotile().

WangId & Autotiles

Autotiles as defined in this library are a special case of binary Wang tilesets. This means that it can model the borders and interior of a single sort of thing: the edges of a field of grass-on-dirt, the cliffs of a plateau, walls against an alpha background, etc. This library doesn't support multiple transitions (such as explicit transitions between three types of terrain on a single tile), but by using alpha masking, layering, careful level design or other techniques this is generally not too bad a limitation.

WangId algorithm: Blob & Edge

Truthy tile entries are identified by the 8-bit integer whose nth low order bit is set if the given neighbor in the below figure is set:

7 | 0 | 1
--+---+---
6 | x | 2
--+---+---
5 | 4 | 3

So for instance, a tile which is matched to the northeast, east, and southeast would have bits 1, 2 and 3 set, thus index (14 == 0x0E == 0b00001110 == 14).

Since not all tilesets generate all combinations, it is possible to estimate the index by omitting either corners or edges (consult the method arguments for WangIndexRegion or WangIndexTile). This simply assumes the given neighbor is unset.

If the tile at x is unset, the wangId is null (regardless of what it would otherwise evaluate to).

WangId algorithm: Corner

As a special variant, the corner wangId algorithm is

 |   |   
-+---+---
 |x=7| 1
-+---+---
 | 5 | 3

Under this representation, if the tile at x is unset it is not set to null; instead, the value 0 is set to null (never otherwise encountered).

FAQ

What is phaser? What is a phaser plugin?

Check out phaser.io -- it's a web-based game engine. It can be extended with plugins, of which this is one.

What is autotiling?

Named in honor of RPGMaker autotiles feature, autotiles are a solution for blending between terrain types in a natural way.

Where can I get autotiling tiles?

You generally cannot use the RPG Maker tiles outside of RPG maker -- due to licensing. Third party tiles have whatever license under which they were distributed, which may include your use case.

I wrote it because I wanted to generate my own assets and have them (in theory!) useable by others.

Why is this clientside?

The usual solution for autotiling produces autotiled maps. But your game might use this for (harvestable) patches of grass, dynamic ditch-digging, water flowing through canals, or similar effects. Go nuts, and good luck!