mirror of
https://github.com/SK-la/osu-framework.git
synced 2026-03-15 03:20:30 +00:00
71 lines
3.0 KiB
C#
71 lines
3.0 KiB
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 System;
|
|
using System.IO;
|
|
using CoreGraphics;
|
|
using Foundation;
|
|
using UIKit;
|
|
using UniformTypeIdentifiers;
|
|
|
|
namespace osu.Framework.iOS
|
|
{
|
|
public class IOSFilePresenter : UIDocumentInteractionControllerDelegate
|
|
{
|
|
private readonly IIOSWindow window;
|
|
private readonly UIDocumentInteractionController documentInteraction = new UIDocumentInteractionController();
|
|
|
|
public IOSFilePresenter(IIOSWindow window)
|
|
{
|
|
this.window = window;
|
|
}
|
|
|
|
public bool OpenFile(string filename)
|
|
{
|
|
setupViewController(filename);
|
|
|
|
if (documentInteraction.PresentPreview(true))
|
|
return true;
|
|
|
|
// Since file menus on iPadOS appear in a popover-like style, UIDocumentInteractionController requires specifying
|
|
// a rectangle in the present functions to display the menu as a popover around that rectangle.
|
|
// Ultimately, we want to be given a rectangle by the game so the popover doesn't look out of place,
|
|
// but for the time being, specify CGRectZero to make the popover display at the top left.
|
|
var gameView = window.ViewController.View!;
|
|
return documentInteraction.PresentOpenInMenu(CGRect.Empty, gameView, true);
|
|
}
|
|
|
|
public bool PresentFile(string filename)
|
|
{
|
|
setupViewController(filename);
|
|
|
|
// Since file menus on iPadOS appear in a popover-like style, UIDocumentInteractionController requires specifying
|
|
// a rectangle in the present functions to display the menu as a popover around that rectangle.
|
|
// Ultimately, we want to be given a rectangle by the game so the popover doesn't look out of place,
|
|
// but for the time being, specify CGRectZero to make the popover display at the top left.
|
|
var gameView = window.ViewController.View!;
|
|
return documentInteraction.PresentOptionsMenu(CGRect.Empty, gameView, true);
|
|
}
|
|
|
|
private void setupViewController(string filename)
|
|
{
|
|
var url = NSUrl.FromFilename(filename);
|
|
|
|
documentInteraction.Url = url;
|
|
documentInteraction.Delegate = this;
|
|
|
|
if (OperatingSystem.IsIOSVersionAtLeast(14))
|
|
documentInteraction.Uti = UTType.CreateFromExtension(Path.GetExtension(filename))?.Identifier ?? UTTypes.Data.Identifier;
|
|
}
|
|
|
|
public override UIViewController ViewControllerForPreview(UIDocumentInteractionController controller) => window.ViewController;
|
|
|
|
public override void WillBeginSendingToApplication(UIDocumentInteractionController controller, string? application)
|
|
{
|
|
// this path is triggered when a user opens the presented document in another application,
|
|
// the menu does not dismiss afterward and locks the game indefinitely. dismiss it manually.
|
|
documentInteraction.DismissMenu(true);
|
|
}
|
|
}
|
|
}
|