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

pixcellular

v2.8.6

Published

Small grid framework to create ecosystem models and simulations

Downloads

143

Readme

pixcellular/pxl

npm version build

Small grid framework to create ecosystem models and simulations.

Introduction

With pxl we can model a world filled with entities, each entity containing specific properties and a specific set of behavioural rules.

Mapping the world

To create a new pxl world we pass it a map in which every symbol marks an entity.

const map = [
  'o  ',
  ' o ',
  '   '
];

Every entity on our map can have properties:

const organisms = [
  {location: new Vector(0, 0), energy: 10},
  {location: new Vector(1, 1), energy: 20}
];

In the map above the o marks two entities with two properties: a required location property, and the energy level of an organism. You can give any symbol any property you want.

Note: entity properties need a location. Pxl will use it to map the symbols on the map to their properties.

Defining behaviour

All entities behave in a certain way. For the o organism we can define a specific set of behavioural rules using the Entity.handle function:

class MyEntity {
  symbol: 'o';
  props;

  // Organisms behave according to specific rules:
  handle = (location, world) => {
    // Get a view of neighbouring cells:
    const view = new pxl.Neighbours(world, location);

    // Find random empty space:
    const spaceDirection = view.findDirRand(e => e.symbol === ' ');

    if (spaceDirection) {
      // Move randomly:
      view.put(spaceDirection, this);
    }

    // Living costs energy:
    this.props.energy--;

    // ... And no energy means death:
    if (this.props.energy <= 0) {
      // Remove entity from world:
      view.remove(spaceDirection || pxl.ZERO);
    }
  }
}

Building entities

Pxl converts the map and properties into a world with acting entities. It does this using EntityBuilders:

const builders = new EntityBuilderMap();

// Every entity can have its own props:
builders.add('o', {build: (props) => ({symbol: 'o', props})});

Starting simulation

Finally, we can put all our building blocks together:

const world = new World({
  map, 
  entityProps: organisms, 
  builders
});

Let's make the world go round:

while (organisms.find(e => e.energy)) {
  console.log(world.turn().toMap());
}

More complex behaviour

This is a very simple example, and you probably want to give your entities more complex behaviour. To prevent outrageously unreadable handler functions, pxl offers a way to divide your behaviour into smaller parts using a BehaviourGraph. You can find an example with documented code in the herbivore example.

Generating maps

Instead of creating maps by hand, you might want to generate them with the PerlinMapBuilder that uses Perlin noise to populate maps with your symbols. You could also create your own implementation of the MapBuilder interface. You can find an example with documented code in the herbivore example.

Development

Prepare

Run: npm i

Test

Run: npm t