2019-03-01 10:59:39 +00: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.
|
|
|
|
|
|
2022-06-17 07:37:17 +00:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2019-03-01 10:59:39 +00:00
|
|
|
|
using System;
|
|
|
|
|
using Foundation;
|
2022-12-11 22:26:13 +00:00
|
|
|
|
using Microsoft.Maui.Devices;
|
2022-02-04 09:58:29 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
2022-01-15 13:48:41 +00:00
|
|
|
|
using osu.Framework.Input.Handlers;
|
|
|
|
|
using osu.Framework.iOS.Input;
|
2019-03-01 10:59:39 +00:00
|
|
|
|
using osu.Game;
|
2022-01-15 13:48:41 +00:00
|
|
|
|
using osu.Game.Overlays.Settings;
|
2019-12-20 04:50:57 +00:00
|
|
|
|
using osu.Game.Updater;
|
2021-04-08 23:34:35 +00:00
|
|
|
|
using osu.Game.Utils;
|
2019-03-01 10:59:39 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.iOS
|
|
|
|
|
{
|
|
|
|
|
public partial class OsuGameIOS : OsuGame
|
|
|
|
|
{
|
2019-03-01 14:20:34 +00:00
|
|
|
|
public override Version AssemblyVersion => new Version(NSBundle.MainBundle.InfoDictionary["CFBundleVersion"].ToString());
|
2020-10-06 04:09:42 +00:00
|
|
|
|
|
|
|
|
|
protected override UpdateManager CreateUpdateManager() => new SimpleUpdateManager();
|
2021-04-08 23:34:35 +00:00
|
|
|
|
|
2021-04-12 14:52:12 +00:00
|
|
|
|
protected override BatteryInfo CreateBatteryInfo() => new IOSBatteryInfo();
|
2021-04-09 21:55:41 +00:00
|
|
|
|
|
2022-02-04 13:10:49 +00:00
|
|
|
|
protected override Edges SafeAreaOverrideEdges =>
|
2022-02-04 09:58:29 +00: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;
|
|
|
|
|
|
2022-01-15 13:48:41 +00:00
|
|
|
|
public override SettingsSubsection CreateSettingsSubsectionFor(InputHandler handler)
|
|
|
|
|
{
|
|
|
|
|
switch (handler)
|
|
|
|
|
{
|
2022-12-19 15:42:51 +00:00
|
|
|
|
case IOSMouseHandler:
|
2022-01-15 13:48:41 +00:00
|
|
|
|
return new IOSMouseSettings();
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return base.CreateSettingsSubsectionFor(handler);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-12 14:52:12 +00:00
|
|
|
|
private class IOSBatteryInfo : BatteryInfo
|
2021-04-08 23:34:35 +00:00
|
|
|
|
{
|
2022-07-30 12:26:19 +00:00
|
|
|
|
public override double? ChargeLevel => Battery.ChargeLevel;
|
2021-04-08 23:34:35 +00:00
|
|
|
|
|
2022-07-30 12:26:19 +00:00
|
|
|
|
public override bool OnBattery => Battery.PowerSource == BatteryPowerSource.Battery;
|
2021-04-08 23:34:35 +00:00
|
|
|
|
}
|
2019-03-01 10:59:39 +00:00
|
|
|
|
}
|
|
|
|
|
}
|