/usr/share/faust/android/README.md is in faust-common 0.9.95~repack1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 | # `faust2android` Documentation
<img src="img/faust2android.png" width="80%" class="center-block">
`faust2android` is a tool to convert a Faust code into a fully functional Android application. It is part of the [Faust distribution](https://github.com/grame-cncm/faust) and it is based on [`faust2api`](https://ccrma.stanford.edu/~rmichon/faust2api).
This documentation shows how to install and use this tool.
## Installing and Using `faust2android`
Although `faust2android` can be used directly on your computer, it might be easier to compile your apps using the [Faust Online Compiler](http://faust.grame.fr/onlinecompiler/). Indeed, `faust2android` relies on an important number of dependencies that you might not want to install on your system. If you're brave enough for this, read the following instructions!
**Note:** `faust2android` will only work on Linux and OSX. If you use Windows, use the [Online Compiler](http://faust.grame.fr/onlinecompiler/).
Installation instructions should be the same for Linux and OSX.
First, Faust (0 or 2) must be installed on your system. If it's not already the case, read the [Faust README](https://github.com/grame-cncm/faust/blob/master/README.md) to learn how to do this.
Next, [Download Android Studio](https://developer.android.com/studio/index.html) and extract it somewhere on your computer. We recommend creating an `/Android` folder in your home directory and place `android-studio` in it.
Add `android-studio/bin` to your path, e.g.:
export PATH=$PATH:/home/you/Android/android-studio/bin
Now you should be able to run Android Studio from your terminal simply by calling:
studio.sh
In Android Studio, in `Tools/Android/SDK Manager`, make sure that you have the latest SDK installed (Android 7.1.1 as of Dec. 8, 2016). Next click on the "SDK Tools" tab and install `CMake` and the `NDK`. Android Studio should automatically create an `/Sdk` folder in your `/Android` folder (`/Android/Sdk`)
Create dynamic links to `/Android/Sdk/ndk-bundle` and `/Android/Sdk` as follows:
ln -s ~/Android/Sdk/ndk-bundle ndk
ln -s ~/Android/Sdk sdk
This is very important since `faust2android` will be looking for these folder. Alternatively, you could modify the source code of `faust2android` to make sure that it's looking in the right folder but that's a more complicated option...
On Linux, make sure that JAVA is properly installed on your system. At the very least, the following packages should be installed:
openjdk-8-jdk
openjdk-8-jdk-headless
openjdk-8-jdk-jre
openjdk-8-jre-headless
We noticed some issues with `openjdk-9` when compiling Android apps from the terminal which is why we suggest you to install version 8 here. Although you might want to give a try to version 9: it's up to you!
Finally, make sure that the `JAVA_HOME` environment variable is properly configured on your system, e.g:
JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64
export PATH=$PATH:$JAVA_HOME/bin
## Generating an App
`faust2android` can simply be called from the command line:
faust2android faustFile.dsp
where `faustFile.dsp` is a Faust program. This will generate a `.apk` file ready to be installed on any Android device!
The following options are available:
* `-install`: once compilation is over, installs the generated app on the Android device connected to the computer
* `-source`: creates an eclipse project of the app in the current directory.
* `-swig`: regenerate the C++ and the JAVA interface for the native portion of the app.
*` -faust`: only carries out the Faust compilation and install the generated C++ file in the JNI folder.
* `-reuse`: keep build directory and reuse it to speedup compilation.
* `-debug`: verbose output.
Any other options are considered as Faust options. To get a list of the Faust options type: `faust -h`
For example:
faust2android -install faustFile.dsp
will both create an app and install it on any device connected to your computer.
## Features
Any standard Faust code can be used with `faust2android` and all the usual user interface elements are available (groups, hsliders, vsliders, knobs, buttons, check boxes, drop down menus, bar graphs, radio buttons, numerical entries, etc.). In addition to that, a set of meta data specific to `faust2android` can be used.
### Accelerometer Assignment
All the continuous user interface elements of faust2android apps can be controlled using the built-in accelerometers of the device either by assigning them manually through the app interface or from the Faust code using meta data (check [this tutorial](https://ccrma.stanford.edu/~rmichon/faustTutorials/#using-built-in-sensors-to-control-parameters) to learn how to do that).
From the app interface, make sure that the lock at the top right corner is unlocked and hold the name of the parameter you want to control for more than two seconds and the following interface should show up:
<img src="img/accel.png" width="40%" class="center-block">
### Keyboard Interface
When used in the top group of a Faust code, `[style:keyboard]` assigns a polyphonic piano keyboard to the `freq`, `gain` and `gate` parameters of the object. For example, the following code:
import("stdfaust.lib");
freqMod = hslider("h:Modulator/Frequency", 777, 20, 15000, 1) : si.smoo;
modIndex = hslider("h:Modulator/Modulation Index", 1000, 0, 10000, 1) : si.smoo;
freq = hslider("h:General Parameters/freq", 440, 20, 8000, 1) : si.smoo;
gain = hslider("gain", 1, 0, 1, 0.01) : si.smoo;
gate = button("gate") : si.smoo;
process = vgroup("FMsynth [style:keyboard]",os.osc(freqMod)*modIndex + freq : os.osc*gate*gain <: _,_);
will generate an app with the following interface:
<img src="img/keyb.png" width="65%" class="center-block">
Notice that the `freq`, `gain` and `gate` parameters were automatically removed from the main interface.
### "Multi" Interface
Similarly to `[style:keyboard]`, `[style:multi]` should be placed in the top group of a Faust object. This will create a 2 dimensional interface where parameters are represented by dots. One dot can control 2 parameters (X and Y axis). Parameters in the Faust code should be linked to the interface using the `[multi:x]` meta data where "x" is the parameter number in the interface. For example, adapting the Faust code presented previously:
import("stdfaust.lib");
freqMod = hslider("h:Modulator/Frequency [multi:0]", 777, 20, 15000, 1) : si.smoo;
modIndex = hslider("h:Modulator/Modulation Index [multi:1]", 1000, 0, 10000, 1) : si.smoo;
freq = hslider("h:General Parameters/freq [multi:2]", 440, 20, 8000, 1) : si.smoo;
gain = hslider("gain [multi:3]", 1, 0, 1, 0.01) : si.smoo;
gate = checkbox("gate") : si.smoo;
process = vgroup("FMsynth [style:multi]",os.osc(freqMod)*modIndex + freq : os.osc*gate*gain <: *_,_);
will generate an app with the following interface:
<img src="img/multi.png" width="65%" class="center-block">
`[multi:0]` assigns the parameter to the X axis of the first dot. `[multi:1]` assigns the parameter to the Y axis of the second dot. `[multi:2]` assigns the parameter to the X axis of the second dot and so on. If `[multi:x]` is not used anywhere, the interface will be empty.
### "Multi-Keyboard" Interface
Combines the `multi` and the `keyboard` interfaces. For example, the following code:
import("stdfaust.lib");
freqMod = hslider("h:Modulator/Frequency [multi:0]", 777, 20, 15000, 1) : si.smoo;
modIndex = hslider("h:Modulator/Modulation Index [multi:1]", 1000, 0, 10000, 1) : si.smoo;
freq = hslider("h:General Parameters/freq", 440, 20, 8000, 1) : si.smoo);
gain = hslider("gain", 1, 0, 1, 0.01) : si.smoo;
gate = button("gate") : si.smoo;
process = vgroup("FMsynth [style:multikeyboard]",os.osc(freqMod)*modIndex + freq : os.osc*gate*gain <: _,_);
will generate an app with the following interface:
<img src="img/multiKeyb.png" width="65%" class="center-block">
A similar tool exists for iOS (`faust2ios`) and is part of the distribution too. While it works in a similar way than `faust2android`, it is unfortunately not documented.
|