2014-10-30 19:42:18 +01:00
|
|
|
local Generic = require("device/generic/device")
|
2016-02-15 23:10:07 -08:00
|
|
|
local _, android = pcall(require, "android")
|
2014-10-30 19:42:18 +01:00
|
|
|
local ffi = require("ffi")
|
2016-12-29 00:10:38 -08:00
|
|
|
local logger = require("logger")
|
2014-10-30 19:42:18 +01:00
|
|
|
|
|
|
|
|
local function yes() return true end
|
2015-09-27 22:29:59 +08:00
|
|
|
local function no() return false end
|
2014-10-30 19:42:18 +01:00
|
|
|
|
|
|
|
|
local Device = Generic:new{
|
|
|
|
|
model = "Android",
|
2015-03-29 08:59:51 +08:00
|
|
|
hasKeys = yes,
|
2015-09-27 22:29:59 +08:00
|
|
|
hasDPad = no,
|
2014-10-30 19:42:18 +01:00
|
|
|
isAndroid = yes,
|
2016-06-24 01:50:24 +08:00
|
|
|
hasFrontlight = yes,
|
2014-10-30 19:42:18 +01:00
|
|
|
firmware_rev = "none",
|
2017-09-24 05:58:34 +08:00
|
|
|
display_dpi = android.lib.AConfiguration_getDensity(android.app.config),
|
2018-02-16 21:44:10 +01:00
|
|
|
hasClipboard = yes,
|
2017-10-01 23:48:53 +02:00
|
|
|
hasColorScreen = yes,
|
2014-10-30 19:42:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function Device:init()
|
2016-12-29 00:10:38 -08:00
|
|
|
self.screen = require("ffi/framebuffer_android"):new{device = self, debug = logger.dbg}
|
2014-10-30 19:42:18 +01: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"),
|
2016-04-02 21:52:30 -07:00
|
|
|
handleMiscEv = function(this, ev)
|
2016-12-29 00:10:38 -08:00
|
|
|
logger.dbg("Android application event", ev.code)
|
2014-10-30 19:42:18 +01: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
|
2016-04-02 21:52:30 -07:00
|
|
|
this.device.screen:refreshFull()
|
2014-11-24 21:09:28 +00:00
|
|
|
elseif ev.code == ffi.C.APP_CMD_WINDOW_REDRAW_NEEDED then
|
2016-04-02 21:52:30 -07:00
|
|
|
this.device.screen:refreshFull()
|
2014-10-30 19:42:18 +01:00
|
|
|
end
|
|
|
|
|
end,
|
2018-02-16 21:44:10 +01:00
|
|
|
hasClipboardText = function()
|
|
|
|
|
return android.hasClipboardText()
|
|
|
|
|
end,
|
|
|
|
|
getClipboardText = function()
|
|
|
|
|
return android.getClipboardText()
|
|
|
|
|
end,
|
|
|
|
|
setClipboardText = function(text)
|
|
|
|
|
return android.setClipboardText(text)
|
|
|
|
|
end,
|
2014-10-30 19:42:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
-- check if we have a keyboard
|
2017-09-24 05:58:34 +08:00
|
|
|
if android.lib.AConfiguration_getKeyboard(android.app.config)
|
2014-10-30 19:42:18 +01:00
|
|
|
== ffi.C.ACONFIGURATION_KEYBOARD_QWERTY
|
|
|
|
|
then
|
|
|
|
|
self.hasKeyboard = yes
|
|
|
|
|
end
|
|
|
|
|
-- check if we have a touchscreen
|
2017-09-24 05:58:34 +08:00
|
|
|
if android.lib.AConfiguration_getTouchscreen(android.app.config)
|
2014-10-30 19:42:18 +01:00
|
|
|
~= ffi.C.ACONFIGURATION_TOUCHSCREEN_NOTOUCH
|
|
|
|
|
then
|
|
|
|
|
self.isTouchDevice = yes
|
|
|
|
|
end
|
|
|
|
|
|
2014-11-24 08:52:01 +00:00
|
|
|
Generic.init(self)
|
2014-10-30 19:42:18 +01:00
|
|
|
end
|
|
|
|
|
|
2017-10-21 22:27:09 +02:00
|
|
|
function Device:initNetworkManager(NetworkMgr)
|
|
|
|
|
NetworkMgr.turnOnWifi = function()
|
|
|
|
|
android.setWifiEnabled(true)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
NetworkMgr.turnOffWifi = function()
|
|
|
|
|
android.setWifiEnabled(false)
|
|
|
|
|
end
|
2017-10-28 17:51:34 +02:00
|
|
|
NetworkMgr.isWifiOn = function()
|
|
|
|
|
return android.isWifiEnabled()
|
|
|
|
|
end
|
2017-10-21 22:27:09 +02:00
|
|
|
end
|
|
|
|
|
|
2014-10-30 19:42:18 +01:00
|
|
|
return Device
|