Skip to content
forked from garthz/pdpython

Pure Data external for embedding Python calls in Pd patches.

License

Notifications You must be signed in to change notification settings

shakfu/pdpython

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pdpython

This repository contains an 'external' (plugin) for Pure Data to allow embedding Python programs within Pd program graphs. The main 'python' object provided enables loading Python modules, instantiating Python objects, calling object methods, and receiving method return values.

The methods in objects called from Pd are expected to follow a particular naming convention as below:

# import the special module built in to the external.
import pdgui

class MyClass:

    def __init__(self, *args):
        pdgui.post(str(args))
        self.args = args

    # The following methods are called in response to basic typed messages.
    def bang(self):
        pdgui.post("received bang.")
        return True

    def float(self, number):
        pdgui.post("received %f." % number)
        return number

    def symbol(self, string):
        pdgui.post( "received symbol: '%s'." % string)
        return string

    def list(self, *args):
        # note that the *args form provides a tuple
        pdgui.post( "received list: %s." % str(args))
        return list(args)

    # Messages with selectors are analogous to function calls, and call the
    # corresponding method.  E.g., the following could called by sending the Pd
    # message [goto 33(.
    def goto(self, location):
        pdgui.post( "received goto message:" + location)
        return location

    # This method demonstrates returning a list, which returns as a Pd list.
    def moveto( self, x, y, z):
        pdgui.post( "received move message with %f, %f, %f." % ( x, y, z))
        return [x, y, z]

    def blah(self):
        pdgui.post( "received blah message.")
        return 42.0

    # This method demostrates returning a tuple, each element of which generates
    # a separate Pd outlet message.
    def tuple(self):
        pdgui.post("received tuple message.")
        return ( ['element', 1], ['element', 2], ['element', 3],[ 'element',4 ] )

In general practice, Pd-oriented interface classes need to be defined for a given application. However, since Pd has a limited vocabulary of data types sent and returned from Python, these classes can be developed and tested separately from Pd.

All data is converted between native primitive types for Pd and Python. Native Python objects cannot be passed through Pd but this can in practice be surmounted with some clever bookkeeping on the Python side which uses name tokens passed back and forth. Tuples returned from Python generate a separate Pd message per element, so with a little routing on the Pd side it is not hard to distribute data into multiple points in the Pd graph.

Note that data returned from Python is passed to the Pd object outlet but that the outlet function is not called directly from Python. This avoids potential problems with recursive calls back into Python, but does make it more difficult for Python objects to actively query the Pd graph.

One of the examples demonstrates how to set up a patch so that a Python module can be reloaded without exiting Pd. This has limits since existing objects need to be forced to reinstantiate to use the new code.

This is not the only Python plug-in for Pd, for example, see py/pyext. However, I believe this one is simpler and perhaps easier to compile and install, although less fully featured.

Compiling

System requirements: make, a C compiler, a Pd installation, and Python 3

A Makefile is provided using the now standard pd-lib-builder method. which makes it relatively easy to build for different platforms.

It does make some assumptions about paths. This makefile supports pd path variables which can be defined not only as make command argument but also in the environment, to override platform-dependent defaults:

PDDIR: Root directory of 'portable' pd package. When defined, PDINCLUDEDIR and PDBINDIR will be evaluated as $(PDDIR)/src and $(PDDIR)/bin.

PDINCLUDEDIR: Directory where Pd API m_pd.h should be found, and other Pd header files. Overrides the default search path.

PDBINDIR: Directory where pd.dll should be found for linking (Windows only). Overrides the default search path.

PDLIBDIR: Root directory for installation of Pd library directories. Overrides the default install location.

Generally, it is sufficient to define PDDIR either as an exported variable or in the Makefile itself (see Makefile for example). Then just make

make

It is also possible to set different Python include flags to link against a non-system-supplied Python library.

Installation

There are three files to be installed:

  1. the loadable module: python.pd_darwin or python.pd_linux
  2. python-help.pd
  3. python_help.py

If compiled in-place, the pdpython directory can simply be added to the pd load path. Or these files can be copied to an existing pd externals folder such as /usr/local/lib/pd-externals.

Reference

Each Pd [python] object represents a single instance of a Python class object.

Creation Arguments

The Pd 'python' object requires a minimum of two arguments at creation specifying the module name and the class name, followed by optional arguments passed to the object initializer:

[python module_name function_name {arg}*]
[python my_lib MyClassWithNoInitArgs]
[python my_lib MyClass 1 2 3]
[python my_lib.my_module MyClass 1 2 3]

Input Types

The supported atomic types in Pd are converted symmetrically to and from Python native types:

Pd atomic type Python atomic type
float float
symbol string

Pd lists, bangs, and messages received by a [python] object representing a Python object instance are mapped to a method call on that object obj as follows:

Pd type Method call Example Pd Message Example Python Call
bang obj.bang() [ bang ( obj.bang()
float obj.float(number) [ 1.0 ( obj.float( 1.0 )
symbol obj.symbol(string) [ symbol foo ( obj.symbol( "foo" )
number list obj.list( a1, a2, ...) [ 1 2 3 ( obj.list( 1.0, 2.0, 3.0 )
list with selector obj.$selector( a1, ...) [ goto 4 ( obj.goto( 4.0 )

This follows a general Pd convention that messages with selectors are analogous to a function call within an object. E.g. the message [set 1 2 3( passed to a general message box will set the value of that box.

However, note that normal Python argument syntax makes receives it easy to receive a list as a Python tuple rather than values distributed over arguments:

def reverse_list( *args ):
    """Return a list of all arguments in reverse order.
    If passed a Pd list object, will return a reversed Pd list."""
    return list( args[::-1])  # use a slice operator to generate the reversed list

Output Types

The float and string types returned from Python are converted to Pd floats and symbols. Lists are returned as Pd messages or lists.

Tuples are treated differently: a tuple returned from Python generates a separate Pd outlet output message per element. With a little routing on the Pd side it is not hard to distribute data into multiple points in the Pd graph.

About

Pure Data external for embedding Python calls in Pd patches.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Makefile 72.9%
  • C 23.6%
  • Python 3.5%