All Projects → weavejester → Impi

weavejester / Impi

ClojureScript library for using Pixi.js through immutable data

Programming Languages

clojure
4091 projects

Impi

Impi is Imutable Pixi. It's a ClojureScript library for using Pixi.js through an immutable data structure.

This library is experimental. Experimental means the API is unstable, and may change significantly. Documentation will be sparse until the library is in a more usable state.

Installation

To install, add the following to your project :dependencies:

[impi "0.0.10"]

Usage

Impi has just two functions: mount and unmount.

We can mount a data structure that represents a Pixi scene onto a DOM node:

(impi/mount
 :example-scene
 {:pixi/renderer
  {:pixi.renderer/size [400 300]}
  :pixi/stage
  {:impi/key             :bunny
   :pixi.object/type     :pixi.object.type/sprite
   :pixi.object/position [200 150]
   :pixi.sprite/anchor   [0.5 0.5]
   :pixi.sprite/texture  {:pixi.texture/source "img/bunny.png"}}}
 (.getElementById js/document "app"))

When we've finished, we can unmount using the key we supplied:

(impi/unmount :example-scene)

Behind the curtain, Impi converts the immutable scene definition into a mutable object tree. The objects are cached, so incremental changes can be efficiently processed.

License

Copyright © 2016 James Reeves

Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].