partition2d

0.0.8 • Public • Published

Partition 2D

Simple spacial partition for 2D browser games.

Install

npm install --save partition2d

Run Tests

npm run test

Use

Create

import Grid from 'partition2d';

// create new spacial grid with 100px cells
const grid = new Grid(100);

Add Units

const grid = new Grid(100);

let unit = {
  id: Math.random().toString(16).slice(2),
  xPosition: 25,
  yPosition: 25,
  radius: 5
};

// add a new unit to the grid
grid.add(unit)

Remove Units

// remove unit from the grid
grid.remove(unit)

Move Units

// move an object in the grid
// move(<unit>, x, y)
grid.move(unit, 10, 10)

Check Unit for collisions

const circleToCircle = function(a, b) {
  const vx = a.xPosition - b.xPosition;
  const vy = a.yPosition - b.yPosition;
  const length = Math.sqrt(vx * vx + vy * vy);
  if(length < a.radius + b.radius){
    return true;
  }
  return false;
};

// check the local space for collisions with a unit using a circle-to-circle collision function
grid.checkCollisions(unit, circleToCircle)

Search Unit's local space.

grid.searchNeighborhood(unit, (neighbor) => {
    // neighbor filter function
    return true;
})

Package Sidebar

Install

npm i partition2d

Weekly Downloads

2

Version

0.0.8

License

ISC

Unpacked Size

6.77 kB

Total Files

6

Last publish

Collaborators

  • rongruesbeck