Socket
Socket
Sign inDemoInstall

pomelo-aoi

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pomelo-aoi

pomelo-schedule is the aoi module used in the demo of pomelo.


Version published
Weekly downloads
3
increased by200%
Maintainers
1
Weekly downloads
 
Created
Source

pomelo-aoi

pomelo-schedule is the aoi module used in the demo of pomelo.

The aoi module include a set of aoi interface, and an implementation of tower aoi algorithm.
##Installation

npm install pomelo-aoi

##Generate an aoi instance For the aoi service can be used in many areas, each area use the aoi module should use it's own aoi instance. We use a aoi factory to generate aoi instance, it accept an object as parameter, and return an aoi instance, which can be used to implament the aoi function.

var aoiManager = require('pomelo-aoi');
var config = {
	map : {
		width : 3200,
		height : 2400
	},
	tower : {
		width : 300,
		height : 300
	}
}

var aoi = qoiManager.getService(config);

##Use the aoi service The aoi instace has the basic interface for aoi action.

	//Add object 
	aoi.addObject(obj, pos);
	
	//Remove object 
	aoi.removeObject(obj, pos);
	
	//Update object
	aoi.updateObject(obj, oldPos, newPos);
	
	//Add watcher 
	aoi.addWatcher(watcher, pos, range);
	
	//Remove watcher
	aoi.removeWatcher(watcher, pos, range0;
	
	//updateWatcher(watcher, oldPos, newPos, oldRange, newRange);

More api can be find in aoiService.js.

##Handle aoi event The aoi service will generate event when the status of objects or watchers changes. You can handler these event :

	aoi.on('add', function(params){
		//Handle add event
	});

The event of tower aoi are: 'add', 'remove', 'update' for aoi object, and 'updateWatcher' for watcher. Of course you can ignore all these events without do any effect to aoi function.

FAQs

Package last updated on 21 Mar 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc