mirror of
https://github.com/koreader/koreader
synced 2024-11-11 19:11:14 +00:00
85 lines
2.5 KiB
Lua
85 lines
2.5 KiB
Lua
local Generic = require("device/generic/device")
|
|
local _, android = pcall(require, "android")
|
|
local ffi = require("ffi")
|
|
local C = ffi.C
|
|
local logger = require("logger")
|
|
|
|
local function yes() return true end
|
|
local function no() return false end
|
|
|
|
local Device = Generic:new{
|
|
model = "Android",
|
|
hasKeys = yes,
|
|
hasDPad = no,
|
|
isAndroid = yes,
|
|
hasFrontlight = yes,
|
|
firmware_rev = "none",
|
|
display_dpi = android.lib.AConfiguration_getDensity(android.app.config),
|
|
hasClipboard = yes,
|
|
hasColorScreen = yes,
|
|
hasOTAUpdates = yes,
|
|
}
|
|
|
|
function Device:init()
|
|
self.screen = require("ffi/framebuffer_android"):new{device = self, debug = logger.dbg}
|
|
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(this, ev)
|
|
logger.dbg("Android application event", ev.code)
|
|
if ev.code == C.APP_CMD_SAVE_STATE then
|
|
return "SaveState"
|
|
elseif ev.code == C.APP_CMD_GAINED_FOCUS
|
|
or ev.code == C.APP_CMD_INIT_WINDOW
|
|
or ev.code == C.APP_CMD_WINDOW_REDRAW_NEEDED then
|
|
this.device.screen:refreshFull()
|
|
end
|
|
end,
|
|
hasClipboardText = function()
|
|
return android.hasClipboardText()
|
|
end,
|
|
getClipboardText = function()
|
|
return android.getClipboardText()
|
|
end,
|
|
setClipboardText = function(text)
|
|
return android.setClipboardText(text)
|
|
end,
|
|
}
|
|
|
|
-- check if we have a keyboard
|
|
if android.lib.AConfiguration_getKeyboard(android.app.config)
|
|
== C.ACONFIGURATION_KEYBOARD_QWERTY
|
|
then
|
|
self.hasKeyboard = yes
|
|
end
|
|
-- check if we have a touchscreen
|
|
if android.lib.AConfiguration_getTouchscreen(android.app.config)
|
|
~= C.ACONFIGURATION_TOUCHSCREEN_NOTOUCH
|
|
then
|
|
self.isTouchDevice = yes
|
|
end
|
|
|
|
-- check if we disabled support for wakelocks
|
|
if G_reader_settings:isTrue("disable_android_wakelock") then
|
|
android.setWakeLock(false)
|
|
end
|
|
|
|
Generic.init(self)
|
|
end
|
|
|
|
function Device:initNetworkManager(NetworkMgr)
|
|
NetworkMgr.turnOnWifi = function()
|
|
android.setWifiEnabled(true)
|
|
end
|
|
|
|
NetworkMgr.turnOffWifi = function()
|
|
android.setWifiEnabled(false)
|
|
end
|
|
NetworkMgr.isWifiOn = function()
|
|
return android.isWifiEnabled()
|
|
end
|
|
end
|
|
|
|
return Device
|