2019-03-01 19:59:39 +09:00
|
|
|
|
// 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 System;
|
|
|
|
|
using Foundation;
|
2022-12-12 01:26:13 +03:00
|
|
|
|
using Microsoft.Maui.Devices;
|
2022-02-04 18:58:29 +09:00
|
|
|
|
using osu.Framework.Graphics;
|
2019-03-01 19:59:39 +09:00
|
|
|
|
using osu.Game;
|
2019-12-20 13:50:57 +09:00
|
|
|
|
using osu.Game.Updater;
|
2021-04-08 19:34:35 -04:00
|
|
|
|
using osu.Game.Utils;
|
2019-03-01 19:59:39 +09:00
|
|
|
|
|
|
|
|
|
namespace osu.iOS
|
|
|
|
|
{
|
|
|
|
|
public partial class OsuGameIOS : OsuGame
|
|
|
|
|
{
|
2019-03-01 23:20:34 +09:00
|
|
|
|
public override Version AssemblyVersion => new Version(NSBundle.MainBundle.InfoDictionary["CFBundleVersion"].ToString());
|
2020-10-06 13:09:42 +09:00
|
|
|
|
|
2024-07-05 03:29:09 -04:00
|
|
|
|
protected override UpdateManager CreateUpdateManager() => new MobileUpdateNotifier();
|
2021-04-08 19:34:35 -04:00
|
|
|
|
|
2021-04-12 10:52:12 -04:00
|
|
|
|
protected override BatteryInfo CreateBatteryInfo() => new IOSBatteryInfo();
|
2021-04-09 17:55:41 -04:00
|
|
|
|
|
2022-02-04 16:10:49 +03:00
|
|
|
|
protected override Edges SafeAreaOverrideEdges =>
|
2022-02-04 18:58:29 +09:00
|
|
|
|
// iOS shows a home indicator at the bottom, and adds a safe area to account for this.
|
|
|
|
|
// Because we have the home indicator (mostly) hidden we don't really care about drawing in this region.
|
|
|
|
|
Edges.Bottom;
|
|
|
|
|
|
2021-04-12 10:52:12 -04:00
|
|
|
|
private class IOSBatteryInfo : BatteryInfo
|
2021-04-08 19:34:35 -04:00
|
|
|
|
{
|
2022-07-30 14:26:19 +02:00
|
|
|
|
public override double? ChargeLevel => Battery.ChargeLevel;
|
2021-04-08 19:34:35 -04:00
|
|
|
|
|
2022-07-30 14:26:19 +02:00
|
|
|
|
public override bool OnBattery => Battery.PowerSource == BatteryPowerSource.Battery;
|
2021-04-08 19:34:35 -04:00
|
|
|
|
}
|
2019-03-01 19:59:39 +09:00
|
|
|
|
}
|
|
|
|
|
}
|