mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 09:27:29 +08:00
28 lines
714 B
C#
28 lines
714 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using osu.Game.Utils;
|
|
using SDL;
|
|
|
|
namespace osu.Desktop
|
|
{
|
|
internal unsafe class SDL3BatteryInfo : BatteryInfo
|
|
{
|
|
public override double? ChargeLevel
|
|
{
|
|
get
|
|
{
|
|
int percentage;
|
|
SDL3.SDL_GetPowerInfo(null, &percentage);
|
|
|
|
if (percentage == -1)
|
|
return null;
|
|
|
|
return percentage / 100.0;
|
|
}
|
|
}
|
|
|
|
public override bool OnBattery => SDL3.SDL_GetPowerInfo(null, null) == SDL_PowerState.SDL_POWERSTATE_ON_BATTERY;
|
|
}
|
|
}
|