1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 20:07:25 +08:00
osu-lazer/osu.Android/OsuGameAndroid.cs

95 lines
3.6 KiB
C#
Raw Normal View History

2019-03-17 22:39:07 +08: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 Android.App;
using Microsoft.Maui.Devices;
using osu.Framework.Allocation;
using osu.Framework.Extensions.ObjectExtensions;
2022-01-15 21:38:38 +08:00
using osu.Framework.Platform;
2019-03-17 22:39:07 +08:00
using osu.Game;
2019-09-24 17:12:04 +08:00
using osu.Game.Updater;
using osu.Game.Utils;
2019-03-17 22:39:07 +08:00
namespace osu.Android
{
public partial class OsuGameAndroid : OsuGame
2019-03-17 22:39:07 +08:00
{
[Cached]
private readonly OsuGameActivity gameActivity;
public OsuGameAndroid(OsuGameActivity activity)
: base(null)
{
gameActivity = activity;
}
2019-09-24 16:45:45 +08:00
public override Version AssemblyVersion
{
get
{
var packageInfo = Application.Context.ApplicationContext!.PackageManager!.GetPackageInfo(Application.Context.ApplicationContext.PackageName!, 0).AsNonNull();
2019-09-24 16:45:45 +08:00
try
{
// We store the osu! build number in the "VersionCode" field to better support google play releases.
// If we were to use the main build number, it would require a new submission each time (similar to TestFlight).
// In order to do this, we should split it up and pad the numbers to still ensure sequential increase over time.
//
// We also need to be aware that older SDK versions store this as a 32bit int.
//
// Basic conversion format (as done in Fastfile): 2020.606.0 -> 202006060
// https://stackoverflow.com/questions/52977079/android-sdk-28-versioncode-in-packageinfo-has-been-deprecated
string versionName;
if (OperatingSystem.IsAndroidVersionAtLeast(28))
{
versionName = packageInfo.LongVersionCode.ToString();
2020-06-16 19:20:46 +08:00
// ensure we only read the trailing portion of long (the part we are interested in).
versionName = versionName.Substring(versionName.Length - 9);
}
else
{
#pragma warning disable CS0618 // Type or member is obsolete
// this is required else older SDKs will report missing method exception.
versionName = packageInfo.VersionCode.ToString();
#pragma warning restore CS0618 // Type or member is obsolete
}
// undo play store version garbling (as mentioned above).
2019-09-24 16:45:45 +08:00
return new Version(int.Parse(versionName.Substring(0, 4)), int.Parse(versionName.Substring(4, 4)), int.Parse(versionName.Substring(8, 1)));
}
catch
{
}
return new Version(packageInfo.VersionName.AsNonNull());
2019-09-24 16:45:45 +08:00
}
}
2019-09-24 17:12:04 +08:00
protected override void LoadComplete()
{
base.LoadComplete();
LoadComponentAsync(new GameplayScreenRotationLocker(), Add);
}
2022-01-15 21:38:38 +08:00
public override void SetHost(GameHost host)
{
base.SetHost(host);
host.Window.CursorState |= CursorState.Hidden;
}
2020-03-05 12:34:04 +08:00
protected override UpdateManager CreateUpdateManager() => new SimpleUpdateManager();
protected override BatteryInfo CreateBatteryInfo() => new AndroidBatteryInfo();
private class AndroidBatteryInfo : BatteryInfo
{
2022-07-30 20:26:19 +08:00
public override double? ChargeLevel => Battery.ChargeLevel;
2022-07-30 20:26:19 +08:00
public override bool OnBattery => Battery.PowerSource == BatteryPowerSource.Battery;
}
2019-03-17 22:39:07 +08:00
}
2020-06-16 20:01:10 +08:00
}