As everyone probably knows by now, Doom has been ported to Android.
This is exciting for two reasons,
- It’s Doom!
- It’s actually native code running with a Dalvik frontend.
Now, Dalvik doesn’t have JNI, so how can you write something in C and run it?
This guy will lead you down a link-clicking rabbit hole that’ll tell you how. The important parts are the compiler (Choose ARM GNU/Linux and IA32 GNU/Linux), and the technique of running system commands from Dalvik, which is detailed on Gimite’s page.
One note, he links to a dynamic link method of getting everything to work, which doesn’t seem to be strictly necessary. I just compiled this:
#include <stdio.h>
int main (int argc, char** argv) {
printf("Hello world!\n");
return 0;
}
and it wrote to stdio just fine.
The other important part is getting the native code to actually run. You can put your binaries in your assets directory, but I’m thinking that the directory is within the .apk your app gets bundled into, and I don’t think can even run anything from there. I wound up copying the binaries from the assets directory to /data/data/com.joshsera (where com.joshsera is replaced by your package name), chmodding it, and running it.
File newHello = new File("/data/data/com.joshsera/hello");
try {
newHello.createNewFile();
BufferedOutputStream out = new BufferedOutputStream(new FileOutputStream(newHello));
BufferedInputStream in = new BufferedInputStream(this.getAssets().open("hello"));
int b;
while ((b = in.read()) != -1) {
out.write(b);
}
//
out.flush();
out.close();
in.close();
// chmod?
this.doCommand("/system/bin/chmod", "777", "/data/data/com.joshsera/hello");
} catch (IOException ex) {
}
doCommand is where I stuck the code to run system commands.
public void doCommand(String command, String arg0, String arg1) {
try {
// android.os.Exec is not included in android.jar so we need to use reflection.
Class