2020-07-20 22:52:50 +00:00
|
|
|
local BasePowerD = require("device/generic/powerd")
|
|
|
|
local SDL = require("ffi/SDL2_0")
|
|
|
|
|
2020-08-19 20:41:10 +00:00
|
|
|
local SDLPowerD = BasePowerD:new{
|
|
|
|
-- these values are just used on the emulator
|
|
|
|
hw_intensity = 50,
|
|
|
|
fl_min = 0,
|
|
|
|
fl_max = 100,
|
|
|
|
fl_warmth = 50,
|
|
|
|
fl_warmth_min = 0,
|
|
|
|
fl_warmth_max = 100,
|
|
|
|
}
|
|
|
|
|
2020-09-21 01:48:06 +00:00
|
|
|
function SDLPowerD:frontlightIntensityHW()
|
|
|
|
return self.hw_intensity
|
|
|
|
end
|
|
|
|
|
2020-08-19 20:41:10 +00:00
|
|
|
function SDLPowerD:setIntensityHW(intensity)
|
|
|
|
require("logger").info("set brightness to", intensity)
|
|
|
|
self.hw_intensity = intensity or self.hw_intensity
|
Kindle: Fix a smattering of frontlight bugs
* afterResume had *two* different implementations, so the historical one
that handled frontlight fixups no longer ran
(regression since #10426)
* isFrontlightOn was completely broken, for a couple of reasons:
* There was no is isFrontlightOnHW implementation, so when it ran, it
mostly always thought the frontlight was on, because
self.fl_intensity doesn't change on toggle off.
* _decideFrontlightState was never called on Kindle,
so isFrontlightOnHW was never really called, making isFrontlightOn
completely useless. Call it in setIntensityHW's coda, as it ought to
be. And properly document that.
Generic *was* calling _decideFrontlightState is setIntensity, but
*before* actually setting the frontlight, which makes no goddamn sense,
so get rid of that, too.
* Also fix frontlight toggle notifications (regression since #10305)
TL;DR: The PowerD API being a mess strikes again.
2023-11-25 05:30:37 +00:00
|
|
|
self:_decideFrontlightState()
|
2020-08-19 20:41:10 +00:00
|
|
|
end
|
|
|
|
|
2022-03-14 18:56:18 +00:00
|
|
|
function SDLPowerD:frontlightWarmthHW()
|
2021-09-02 20:44:22 +00:00
|
|
|
return self.fl_warmth
|
2020-08-19 20:41:10 +00:00
|
|
|
end
|
2020-07-20 22:52:50 +00:00
|
|
|
|
|
|
|
function SDLPowerD:getCapacityHW()
|
|
|
|
local _, _, _, percent = SDL.getPowerInfo()
|
2020-07-23 22:06:23 +00:00
|
|
|
-- -1 looks a bit odd compared to 0
|
2020-07-20 22:52:50 +00:00
|
|
|
if percent == -1 then return 0 end
|
|
|
|
return percent
|
|
|
|
end
|
|
|
|
|
|
|
|
function SDLPowerD:isChargingHW()
|
|
|
|
local ok, charging = SDL.getPowerInfo()
|
|
|
|
if ok then return charging end
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
2023-05-18 21:13:43 +00:00
|
|
|
function SDLPowerD:beforeSuspend()
|
|
|
|
-- Inhibit user input and emit the Suspend event.
|
|
|
|
self.device:_beforeSuspend()
|
|
|
|
end
|
|
|
|
|
|
|
|
function SDLPowerD:afterResume()
|
|
|
|
self:invalidateCapacityCache()
|
|
|
|
|
|
|
|
-- Restore user input and emit the Resume event.
|
|
|
|
self.device:_afterResume()
|
|
|
|
end
|
|
|
|
|
2020-07-20 22:52:50 +00:00
|
|
|
return SDLPowerD
|