2014-10-30 18:42:18 +00:00
|
|
|
local Generic = require("device/generic/device")
|
|
|
|
local isAndroid, android = pcall(require, "android")
|
|
|
|
local ffi = require("ffi")
|
2014-11-24 21:09:28 +00:00
|
|
|
local DEBUG = require("dbg")
|
2014-10-30 18:42:18 +00:00
|
|
|
|
|
|
|
local function yes() return true end
|
|
|
|
|
|
|
|
local Device = Generic:new{
|
|
|
|
model = "Android",
|
2015-03-29 00:59:51 +00:00
|
|
|
hasKeys = yes,
|
2014-10-30 18:42:18 +00:00
|
|
|
isAndroid = yes,
|
|
|
|
firmware_rev = "none",
|
|
|
|
display_dpi = ffi.C.AConfiguration_getDensity(android.app.config),
|
|
|
|
}
|
|
|
|
|
|
|
|
function Device:init()
|
2014-11-27 15:33:48 +00:00
|
|
|
self.screen = require("ffi/framebuffer_android"):new{device = self, debug = DEBUG}
|
2014-10-30 18:42:18 +00:00
|
|
|
self.powerd = require("device/android/powerd"):new{device = self}
|
|
|
|
self.input = require("device/input"):new{
|
|
|
|
device = self,
|
|
|
|
event_map = require("device/android/event_map"),
|
|
|
|
handleMiscEv = function(self, ev)
|
2014-11-24 21:09:28 +00:00
|
|
|
DEBUG("Android application event", ev.code)
|
2014-10-30 18:42:18 +00:00
|
|
|
if ev.code == ffi.C.APP_CMD_SAVE_STATE then
|
|
|
|
return "SaveState"
|
2014-11-24 21:09:28 +00:00
|
|
|
elseif ev.code == ffi.C.APP_CMD_GAINED_FOCUS then
|
|
|
|
self.device.screen:refreshFull()
|
|
|
|
elseif ev.code == ffi.C.APP_CMD_WINDOW_REDRAW_NEEDED then
|
|
|
|
self.device.screen:refreshFull()
|
2014-10-30 18:42:18 +00:00
|
|
|
end
|
|
|
|
end,
|
|
|
|
}
|
|
|
|
|
|
|
|
-- check if we have a keyboard
|
|
|
|
if ffi.C.AConfiguration_getKeyboard(android.app.config)
|
|
|
|
== ffi.C.ACONFIGURATION_KEYBOARD_QWERTY
|
|
|
|
then
|
|
|
|
self.hasKeyboard = yes
|
|
|
|
end
|
|
|
|
-- check if we have a touchscreen
|
|
|
|
if ffi.C.AConfiguration_getTouchscreen(android.app.config)
|
|
|
|
~= ffi.C.ACONFIGURATION_TOUCHSCREEN_NOTOUCH
|
|
|
|
then
|
|
|
|
self.isTouchDevice = yes
|
|
|
|
end
|
|
|
|
|
2014-11-24 08:52:01 +00:00
|
|
|
Generic.init(self)
|
2014-10-30 18:42:18 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
return Device
|