2022-03-27 02:18:26 +00:00
|
|
|
package funkin.util;
|
|
|
|
|
2023-01-02 22:40:53 +00:00
|
|
|
import flixel.util.FlxSignal.FlxTypedSignal;
|
|
|
|
|
2023-03-02 01:27:29 +00:00
|
|
|
#if (cpp && windows)
|
2023-01-23 00:55:30 +00:00
|
|
|
@:cppFileCode('
|
|
|
|
#include <iostream>
|
|
|
|
#include <windows.h>
|
|
|
|
#include <psapi.h>
|
|
|
|
')
|
|
|
|
#end
|
2022-03-27 02:18:26 +00:00
|
|
|
class WindowUtil
|
|
|
|
{
|
2023-01-23 00:55:30 +00:00
|
|
|
public static function openURL(targetUrl:String)
|
|
|
|
{
|
|
|
|
#if CAN_OPEN_LINKS
|
|
|
|
#if linux
|
|
|
|
// Sys.command('/usr/bin/xdg-open', [, "&"]);
|
|
|
|
Sys.command('/usr/bin/xdg-open', [targetUrl, "&"]);
|
|
|
|
#else
|
|
|
|
FlxG.openURL(targetUrl);
|
|
|
|
#end
|
|
|
|
#else
|
|
|
|
trace('Cannot open');
|
|
|
|
#end
|
|
|
|
}
|
2023-01-02 22:40:53 +00:00
|
|
|
|
2023-01-23 00:55:30 +00:00
|
|
|
/**
|
|
|
|
* Dispatched when the game window is closed.
|
|
|
|
*/
|
|
|
|
public static final windowExit:FlxTypedSignal<Int->Void> = new FlxTypedSignal<Int->Void>();
|
2023-01-02 22:40:53 +00:00
|
|
|
|
2023-01-23 00:55:30 +00:00
|
|
|
public static function initWindowEvents()
|
|
|
|
{
|
|
|
|
// onUpdate is called every frame just before rendering.
|
2023-01-02 22:40:53 +00:00
|
|
|
|
2023-01-23 00:55:30 +00:00
|
|
|
// onExit is called when the game window is closed.
|
2023-03-02 01:27:29 +00:00
|
|
|
openfl.Lib.current.stage.application.onExit.add(function(exitCode:Int) {
|
2023-01-23 00:55:30 +00:00
|
|
|
windowExit.dispatch(exitCode);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Turns off that annoying "Report to Microsoft" dialog that pops up when the game crashes.
|
|
|
|
*/
|
|
|
|
public static function disableCrashHandler()
|
|
|
|
{
|
2023-03-02 01:27:29 +00:00
|
|
|
#if (cpp && windows)
|
2023-01-23 00:55:30 +00:00
|
|
|
untyped __cpp__('SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOGPFAULTERRORBOX);');
|
|
|
|
#else
|
|
|
|
// Do nothing.
|
|
|
|
#end
|
|
|
|
}
|
2023-06-22 05:41:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the title of the application window.
|
|
|
|
* @param value The title to use.
|
|
|
|
*/
|
|
|
|
public static function setWindowTitle(value:String):Void
|
|
|
|
{
|
|
|
|
lime.app.Application.current.window.title = value;
|
|
|
|
}
|
2022-03-27 02:18:26 +00:00
|
|
|
}
|