mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-09-10 14:43:36 +02:00
47 lines
1.8 KiB
Java
47 lines
1.8 KiB
Java
package com.henrikrydgard.libnative;
|
|
|
|
public class NativeApp {
|
|
public final static int DEVICE_ID_DEFAULT = 0;
|
|
public final static int DEVICE_ID_KEYBOARD = 1;
|
|
public final static int DEVICE_ID_MOUSE = 2;
|
|
public final static int DEVICE_ID_PAD_0 = 10;
|
|
|
|
public static native void init(int xxres, int yyres, int dpi, String deviceType, String languageRegion, String apkPath, String dataDir, String externalDir, String libraryDir, String installID, boolean useOpenSL);
|
|
public static native void resized(int xxres, int yyres);
|
|
|
|
|
|
public static native void audioInit();
|
|
public static native void audioShutdown();
|
|
public static native void audioConfig(int optimalFramesPerBuffer, int optimalSampleRate);
|
|
|
|
public static native boolean isLandscape();
|
|
|
|
public static native boolean isAtTopLevel();
|
|
|
|
// These have Android semantics: Resume is always called on bootup, after init
|
|
public static native void pause();
|
|
public static native void resume();
|
|
|
|
// There's not really any reason to ever call shutdown as we can recover from a killed activity.
|
|
public static native void shutdown();
|
|
|
|
public static native void keyDown(int deviceId, int key);
|
|
public static native void keyUp(int deviceId, int key);
|
|
|
|
public static native void beginJoystickEvent();
|
|
public static native void joystickAxis(int deviceId, int axis, float value);
|
|
public static native void endJoystickEvent();
|
|
|
|
public static native void mouseWheelEvent(float x, float y);
|
|
|
|
// will only be called between init() and shutdown()
|
|
public static native int audioRender(short[] buffer);
|
|
|
|
// Sensor/input data. These are asynchronous, beware!
|
|
public static native void touch(float x, float y, int data, int pointerId);
|
|
|
|
public static native void accelerometer(float x, float y, float z);
|
|
|
|
public static native void sendMessage(String msg, String arg);
|
|
}
|
|
|