For the most part, OpenFL does an excellent job of providing you with the features you need in a platform-independent manner. It tells you the screen size, loads your assets, and even maps Android’s back button to the escape key.
Unfortunately, OpenFL’s dev team can’t think of everything. Maybe you want to adjust the screen brightness on Android. Or the music volume. Maybe you want access to the camera on iOS. Or maybe you need to integrate a custom library used internally at your company, which OpenFL could not possibly have integrated for you.
For simplicity, I’ll be using screen brightness as an example. Setting this can be done in only 1-3 lines of code on both iOS and Android. The catch is, neither of those examples are in Haxe, and there’s no way to convert them to Haxe. If only you’d written the app “normally” rather than using OpenFL, you could just copy-paste those few lines of code, and you’d be done! But no, you wanted luxuries like cross-platform compilation, and now you have to somehow use Haxe code to invoke functions in Objective-C and Java.
Did you know, when you compile for Android, OpenFL creates a complete, self-contained Android project, and then tells the Android SDK to compile that? And when compiling for iOS, it creates an Xcode project, and then has Xcode do the remaining work?
You can see for yourself by checking your output folder (probably Export/). Dig into Export/android/bin, and you’ll find all the files and folders you’d expect to find in a normal Android project. If you felt bold enough, you could make changes and recompile with `gradlew assembleRelease`. But be warned – your changes will be overwritten the next time you compile with OpenFL.
The same applies to iOS – after compiling, you can check out bin/ios/bin to see the project that OpenFL created. You could try modifying this too, but again, OpenFL is going to revert your changes. There has to be a better way.
The OpenFL team is well aware of this problem, and in their infinite wisdom they created the “extension” feature. Also in their infinite wisdom, they include almost no documentation.
Extensions are basically mini-projects consisting of native (or Java) code, as well as Haxe bindings. Once you include the extension in your project, these bindings allow you to run the native (or Java) code. Let’s look at an example.
Start by running the following:
$ lime create extension SetBrightness
(I’m calling it “SetBrightness” because that’s the only thing I want it to do.)
Open up the folder Lime made, and you’ll find several files. Here’s what they’re for:
- haxelib.json – Allows you to submit this extension to Haxelib.
- include.xml – Like project.xml in your main project, this tells OpenFL what to do with all the other files here.
- SetBrightness.hx – Haxe bindings go here.
- dependencies/
- android/ – An Android dependency project, to be compiled by the Android build tools. Template syntax is available for all files in this folder.
- build.gradle – A project file for this Android library, roughly equivalent to include.xml.
- src/ – Despite the name, you can’t just put source files in here. They actually go in a child folder.
- main/
- AndroidManifest.xml – The manifest file for your Android library. If your extension requires permissions, this is the place to put them.
- java/ – Java source files go here.
- org/haxe/extension/
- SetBrightness.java – The recommended place for your Java code. It comes with useful callbacks for monitoring the activity lifecycle, or you can ignore all that and write static functions.
- ndll/ – Doesn’t exist yet, but compiled C++ binaries will go here after you rebuild.
- project/ – The root folder for your C++ project.
- Build.xml – Build file for your C++ project. Only files named here (or included from those named here) will be compiled.
- common/ – C++ source files (but not header files) go here.
- ExternalInterface.cpp – Registers your C++ functions, allowing SetBrightness.hx to access them.
- SetBrightness.cpp – Put C++ code here, based on the sample code that starts here.
- include/ – C++ header files go here.
- Utils.h – Header file for SetBrightness.cpp. Functions must be declared here in order for ExternalInterface.cpp to access them.
- obj/ – Doesn’t exist yet, but intermediate C++ files will go here when you rebuild. Make sure to exclude this from version control.
Click through all the folders under dependencies/ until you reach SetBrightness.java. Add the following code:
public static void setBrightness(float brightness) {
WindowManager.LayoutParams layout = Extension.mainActivity.getWindow().getAttributes();
layout.screenBrightness = brightness;
Extension.mainActivity.getWindow().setAttributes(layout);
}
That’s all well and good, but how do you call this function? The answer… is JNI. Dramatic thunder crashes Actually, it’s not that bad if you’re only dealing with one function. Climb your way back to the root SetBrightness/ folder, and add this to SetBrightness.hx:
#if android
public static function setBrightness(brightness:Float):Void {
setbrightness_set_brightness_jni(brightness);
}
private static var setbrightness_set_brightness_jni = JNI.createStaticMethod("org.haxe.extension.SetBrightness", "setBrightness", "(F)V");
#end
That’s still a little much. Fortunately, shoe[box] came up with an easier way. Start by including the “inthebox-macros” library in your project, change the package in SetBrightness.hx to org.haxe.extension, and add @:build(ShortCuts.mirrors()) just before the class declaration. Now the code above can be replaced with this:
#if android
@JNI public static function setBrightness(brightness:Float):Void;
#end
All that’s left is to include the extension in your project (see below), and you can call SetBrightness.setBrightness(0.8); from Haxe.
When you try to use this extension on Android, you’ll run into a few errors. First, a compile error:
Error: Source path "[path]/SetBrightness/ndll/Android/libsetbrightness-v7.so" does not exist
This happens because you aren’t compiling an ndll for Android, but by default Lime expects you to. To fix the error, go into include.xml and replace <ndll name="SetBrightness" /> with <ndll name="SetBrightness" unless="android" />.
Next, you’ll get a runtime error:
android.view.ViewRootImpl$CalledFromWrongThreadException: Only the original thread that created a view hierarchy can touch its views.
The only thing that matters about this error message is that it contains the word “thread.” When developing an OpenFL extension, all thread-related errors have the same solution.
On Android, some tasks have to be done on the main thread. When you use JNI, it runs on a thread other than the main one. Fortunately, Extension.callbackHandler.post() lets you get back to the main thread.
This function takes a Runnable object, so you’ll have to create one of those. Take all the code in your function, and put it inside the run() function:
public static void setBrightness(float brightness) {
Extension.callbackHandler.post(new Runnable() {
@Override public void run() {
WindowManager.LayoutParams layout = Extension.mainActivity.getWindow().getAttributes();
layout.screenBrightness = brightness;
Extension.mainActivity.getWindow().setAttributes(layout);
}
});
}
(Remember, you only need to do this if you get a thread-related error. Usually, it isn’t worth the trouble.)
And that’s it for Android. On to iOS!
You’ll notice that the extension is set up for C++ code, but to access system properties like brightness, you need to use Objective-C code. Fortunately, this part’s easy: just change the .cpp file extensions to .mm. You’ll also need to update their names in Build.xml. And because Objective-C is specific to iOS, I suggest disabling them for everything else.
<compilerflag value="-Iinclude" if="iphone" />
<file name="common/ExternalInterface.mm" if="iphone" />
<file name="common/SetBrightness.mm" if="iphone" />
If you need C++ code on other platforms, just disable the C++ files on iOS:
<file name="common/ExternalInterface.cpp" unless="iphone" />
<file name="common/SetBrightness.cpp" unless="iphone" />
Now to write some actual Objective-C code! Put this in SetBrightness.mm:
void setBrightness(float brightness) {
[[UIScreen mainScreen] setBrightness:brightness];
}
Now update Utils.h:
void setBrightness(float brightness);
Don’t forget to update ExternalInterface.mm:
static void setbrightness_setBrightness (value brightness) {
setBrightness(val_float(brightness));
}
DEFINE_PRIM (setbrightness_set_brightness, 1);
Last but not least, create the Haxe bindings in SetBrightness.hx:
#if ios
public static function setBrightness(brightness:Float):Void {
setbrightness_set_brightness(brightness);
}
private static var setbrightness_set_brightness = Lib.load ("setbrightness", "setbrightness_set_brightness", 1);
#end
Phew! That was a lot of updating.
You know, it feels like you shouldn’t need to do all that by hand. That’s why I and a few others wrote utility libraries. inthebox-macros can generate the Haxe code, and my “extension boilerplate” utility can generate the intermediate C++ files.
Time to compile!
$ lime rebuild . ios
Almost done! All that’s left is to include it in your project.
Probably the best way to do this is by registering it as a Haxelib. I’m not saying you have to submit it to the public repository (though that does work). Instead, you can create a local Haxelib:
$ haxelib dev SetBrightness path/to/SetBrightness
The benefit of making it a Haxelib is, it’s easy to copy it to other machines
<haxelib name="SetBrightness" />