I have updated as of June 30, 2020 to the most recent libpd package for Android. Still working on iOS. You can of course do this manually if you like, but you would need to know a little bit about how a cordova plugin works.
This plugin is meant to unite the libpd and cordova frameworks so app developers can also have the power of Pure Data for audio and music synthesis.
I assume the following:
- You already know how to use Pure Data.
- You are familiar with the Cordova framework and how to use and install plugins.
- You have at least some basic knowledge of programming in different languages like Obj-C, Java and web languages.
To clone the repository to the root plugins folder try:
cordova plugin add org.urbanstew.cordova.pd
OR
cordova plugin add https://github.com/robertesler/cordova-pd.git
- Check the config.xml to make sure org.urbanstew.cordova.pd has been added for example (cordova should do this automatically:
<plugin name="org.urbanstew.cordova.pd" spec="0.0.8" />
- Then either add the iOS platform or try:
cordova prepare ios
-
Open the Xcode project in Xcode. Under the "Build Phases" add a new "Headers Phase" You can do this by pressing the '+' icon.
-
Add all the .h files in the plugin root folder ../org.urbanstew.cordova.pd/src/ios/headers/ to the "Project" headers phase.
-
Build your application using Xcode. The cordova build option does not currently work when linking the static library.
-
Put your pd patches in the root Xcode project folder (the one with the project file) and copy your patches to the project's Resource folder in Xcode.
-
If you want to test in the simulator see the REAME.md file in the x86_64 folder. #NOTE:
This project uses dependencies that are maintained by other developers. These include:
libpd
git clone https://github.com/libpd/libpd.git
pure data (source)
git clone git://git.code.sf.net/p/pure-data/pure-data
You can of course build your project manually cloning libpd yourself. You would just need the PdPlugin.m, PdPlugin.h files and cordova-pd.js file that comes with this distribution.
To add any custom externals you need to follow the libpd protocol here: libpd iOS wiki
Your main patch needs to be called cordova.pd and located in the root /www folder. You can use other abstractions or folders, look at the [declare] object.
In general you should try to only pass data to Pd and not rely too much on receiving data from Pd.
This is in part because it can be slow, and unreliable. But if you do need to get data from Pd then
make sure it is not data that needs to be handled quickly.
Messages and Lists: Right now the API for these is still not fully tested. Since libpd type checks every argument or every element of a message or list it is very slow.
The Android version is still in development. It will run as of now but still in a testing phase. Check in regularly for any updates.
- Check the config.xml to make sure org.urbanstew.cordova.pd has been added for example (cordova should do this automatically:
<plugin name="org.urbanstew.cordova.pd" spec="0.0.3" />
- Then either add the android platform or try:
cordova prepare android
The plugin looks for a patch named cordova.pd in the res/raw/ directory. When the plugin installs it will copy the demo cordova.pd patch to this directory. Just make sure to keep track of this if you plan to release both iOS and Android.
If you want cordova to copy your .pd file from /www you can now try uncommenting the line:
<hook type="before_prepare" src="scripts/copyPdFile.js" />
This should automatically update your patch for the Android build when you execute:
cordova prepare android
If you need to use abstractions or externals look at the commented out code in the PdPlugin.java and alter it accordingly. It seems to work if the patches are .zip then extracted by Android.
You may need to edit the PdPlugin.java file line:
import io.ionic.starter.R
to reflect the package name of your app. I found the package name in the /platforms/android/AndroidManifest.xml. Change the name respectively and add the .R at the end.
The Angular JS wrapper for this plugin allows you to use cordova-pd in Ionic projects and any other projects that use Angular JS. Currently, the plugin only supports Angular JS version 1, not the newer version 2 or Angular.io. However, if you have a good example of using this plugin with Angular.io I will accept pull requests.
To use the plugin add ng-cordova-pd.js to your root /www/js and to your index.html:
<script src="js/ng-cordova-pd.js"></script>
Add 'ngPd'
to your app.js modules, and inject $puredata
into your
controller.
Then in your controllers follow this style:
$scope.test = function () {
$ionicPlatform.ready(function() {
$puredata.sendBang("start").then(function (result) {
console.log("bang: " + result);
}, function (err) {
// error
console.log("Error: " + err);
});
});//end platform ready
};//end $scope.test
Make sure to wrap your plugin function calls in $ionicPlatform.ready()
and
to use the .then()
method. This is especially if you are trying to receive
data from Pd.
It appears that Ionic 2 is relying heavily on typescript. To interface with this plugin directly in typescript use this syntax:
(<any>window).plugins.pd.sendBang("receiveName")
Just replace the 'sendBang' portion with the appropriate method.
###Sending Data to Pd
Send a bang to a receiver
window.plugins.pd.sendBang("receiveName")
Send a float to a receiver
window.plugins.pd.sendFloat("receiveName", float)
Send a symbol to a receiver
window.plugins.pd.sendSymbol("receiveName", symbol)
Send a message to a receiver, make sure your arguments are a single string '1 2 3'
window.plugins.pd.sendMessage("receiveName", message, argumentList)
Send a list to a receiver, make sure your list is a single string '1 2 3'
window.plugins.pd.sendList("receiveName", list)
###Receiving Data from Pd
Receive a bang from a sender (returns a bool set as true)
window.plugins.pd.receiveBang("sendName")
Receive a float from a sender (returns a float)
window.plugins.pd.receiveFloat("sendName")
Receive a symbol from a sender (returns a String)
window.plugins.pd.receiveSymbol("sendName")
Receive a message from a sender (returns a String)
window.plugins.pd.receiveMessage("sendName")
Receive a List from a sender (returns a JSON)
window.plugins.pd.receiveList("sendName")