Skip to content

deanm/plask

Folders and files

NameName
Last commit message
Last commit date

Latest commit

8add16d · Nov 26, 2015
Nov 18, 2010
Aug 28, 2015
Mar 6, 2013
Jul 18, 2015
May 26, 2015
Apr 21, 2011
Jun 17, 2011
Mar 25, 2011
Oct 4, 2011
Jul 18, 2015
Mar 15, 2011
Jul 13, 2015
Dec 21, 2012
Dec 21, 2012
Mar 25, 2011
Aug 28, 2015
Nov 18, 2010
Dec 21, 2012
Nov 18, 2010
Jul 30, 2014
Aug 28, 2015
Jul 31, 2015
Jun 11, 2015
Aug 8, 2015

Repository files navigation

Plask is a programming environment for multimedia and computational design.

  www.plask.org


- Getting Plask

For the common user, it is best to use the binary distribution provided at
www.plask.org.  If you're interested in building and running from source, the
following section should help you get started.


- Building and running from source

Plask integrates together quite a few pieces of technology, which unfortunately
makes the build process more complicated.  It is possible to do a boostrapped
build, where you only build the Plask source file, but use prebuilt object
files for Plask's dependencies.  Run the fetch_deps.sh script to download and
extract a copy of these prebuilt dependencies.  When fetching new source
changes to Plask, you will have to be aware if there have been any changes to
the prebuilt dependencies, and if so, to run fetch_deps.sh again.

For example, to build from a completely new checkout would look something like:

  $ sh fetch_deps.sh
  $ xcodebuild -project plask.xcodeproj -configuration Release -target Plask

This should produce Plask.app.  For some technical and design reasons, Plask.app
is effectively a commandline application inside a bundle.  For example, running
Plask.app/Contents/MacOS/Plask on the command line will start a Node-style REPL
loop, an interactive JavaScript shell of sorts.

Pass a filename on the command line to run that JavaScript file.

NOTE: To ease development, the Plask.app built has a symlink to plask.js in
the source.  This allows you to edit plask.js in the source repository without
having to rebuild the project.

A separate project, PlaskLauncher, creates the UI application for launching
Plask by dragging/dropping or File->Open.


- Creating standalone applications

When Plask.app is launched, it will look for a file named main.js inside of
the bundle (in Contents/Resources).  This allows you to easily create
standalone applications by copying Plask.app and putting your JavaScript source
inside of the bundle.

NOTE: When running "bundled", the current working directory will likely be
different from running Plask on the command line.  Generally this means if you
open files you should open a path relative to __dirname, which is Node's global
variable for the directory that your JavaScript file is in.


- Credits

Released under the BSD license.  Full details in the included LICENSE file.

(c) 2010, Dean McNamee <dean@gmail.com>

This software contains code and ideas from the fantastic:

Nicolas Garcia Belmonte
Thatcher Ulrich
Ryan Alexander
Marcin Ignac

Built with the fantastic:

V8 JavaScript Engine
Skia rasterization library
NodeJS
Cocoa and OpenGL
FreeImage
Syphon