diff --git a/common/lib/common.dart b/common/lib/common.dart index 38e7c6d..4048085 100644 --- a/common/lib/common.dart +++ b/common/lib/common.dart @@ -1,6 +1,5 @@ export 'package:reboot_common/src/constant/backend.dart'; export 'package:reboot_common/src/constant/game.dart'; -export 'package:reboot_common/src/constant/matchmaker.dart'; export 'package:reboot_common/src/constant/supabase.dart'; export 'package:reboot_common/src/model/fortnite_build.dart'; export 'package:reboot_common/src/model/fortnite_version.dart'; @@ -12,8 +11,9 @@ export 'package:reboot_common/src/model/update_timer.dart'; export 'package:reboot_common/src/util/backend.dart'; export 'package:reboot_common/src/util/build.dart'; export 'package:reboot_common/src/util/dll.dart'; -export 'package:reboot_common/src/util/matchmaker.dart'; export 'package:reboot_common/src/util/network.dart'; export 'package:reboot_common/src/util/patcher.dart'; export 'package:reboot_common/src/util/path.dart'; export 'package:reboot_common/src/util/process.dart'; +export 'package:reboot_common/src/extension/path.dart'; +export 'package:reboot_common/src/extension/process.dart'; \ No newline at end of file diff --git a/common/lib/src/constant/game.dart b/common/lib/src/constant/game.dart index 240c074..a2606ed 100644 --- a/common/lib/src/constant/game.dart +++ b/common/lib/src/constant/game.dart @@ -20,3 +20,4 @@ const List kCannotConnectErrors = [ "Network failure when attempting to check platform restrictions", "UOnlineAccountCommon::ForceLogout" ]; +const String kGameFinishedLine = "PlayersLeft: 1"; diff --git a/common/lib/src/constant/matchmaker.dart b/common/lib/src/constant/matchmaker.dart deleted file mode 100644 index eaa43ed..0000000 --- a/common/lib/src/constant/matchmaker.dart +++ /dev/null @@ -1,2 +0,0 @@ -const String kDefaultMatchmakerHost = "127.0.0.1"; -const int kDefaultMatchmakerPort = 8080; \ No newline at end of file diff --git a/common/lib/src/extension/path.dart b/common/lib/src/extension/path.dart new file mode 100644 index 0000000..9f0b467 --- /dev/null +++ b/common/lib/src/extension/path.dart @@ -0,0 +1,42 @@ +import 'dart:io'; +import 'dart:isolate'; +import 'package:path/path.dart' as path; + +import 'package:reboot_common/common.dart'; + +extension FortniteVersionExtension on FortniteVersion { + static File? findExecutable(Directory directory, String name) { + try{ + final result = directory.listSync(recursive: true) + .firstWhere((element) => path.basename(element.path) == name); + return File(result.path); + }catch(_){ + return null; + } + } + + File? get gameExecutable => findExecutable(location, "FortniteClient-Win64-Shipping.exe"); + + Future get headlessGameExecutable async { + final result = findExecutable(location, "FortniteClient-Win64-Shipping-Headless.exe"); + if(result != null) { + return result; + } + + final original = findExecutable(location, "FortniteClient-Win64-Shipping.exe"); + if(original == null) { + return null; + } + + final output = File("${original.parent.path}\\FortniteClient-Win64-Shipping-Headless.exe"); + await original.copy(output.path); + await Isolate.run(() => patchHeadless(output)); + return output; + } + + File? get launcherExecutable => findExecutable(location, "FortniteLauncher.exe"); + + File? get eacExecutable => findExecutable(location, "FortniteClient-Win64-Shipping_EAC.exe"); + + File? get splashBitmap => findExecutable(location, "Splash.bmp"); +} \ No newline at end of file diff --git a/common/lib/src/extension/process.dart b/common/lib/src/extension/process.dart new file mode 100644 index 0000000..01dcd17 --- /dev/null +++ b/common/lib/src/extension/process.dart @@ -0,0 +1,8 @@ +import 'dart:convert'; +import 'dart:io'; + +extension ProcessExtension on Process { + Stream get stdOutput => this.stdout.expand((event) => utf8.decode(event).split("\n")); + + Stream get stdError => this.stderr.expand((event) => utf8.decode(event).split("\n")); +} \ No newline at end of file diff --git a/common/lib/src/extension/types.dart b/common/lib/src/extension/types.dart new file mode 100644 index 0000000..577ca04 --- /dev/null +++ b/common/lib/src/extension/types.dart @@ -0,0 +1,15 @@ +extension StringExtension on String { + bool get isBlank { + if(isEmpty) { + return true; + } + + for(var char in this.split("")) { + if(char != " ") { + return false; + } + } + + return true; + } +} \ No newline at end of file diff --git a/common/lib/src/model/fortnite_build.dart b/common/lib/src/model/fortnite_build.dart index e2d6906..268695f 100644 --- a/common/lib/src/model/fortnite_build.dart +++ b/common/lib/src/model/fortnite_build.dart @@ -5,14 +5,12 @@ class FortniteBuild { final String identifier; final String version; final String link; - final FortniteBuildSource source; - FortniteBuild({required this.identifier, required this.version, required this.link, required this.source}); -} - -enum FortniteBuildSource { - manifest, - archive + FortniteBuild({ + required this.identifier, + required this.version, + required this.link + }); } class FortniteBuildDownloadProgress { diff --git a/common/lib/src/model/game_instance.dart b/common/lib/src/model/game_instance.dart index cb2061c..39dcfd8 100644 --- a/common/lib/src/model/game_instance.dart +++ b/common/lib/src/model/game_instance.dart @@ -8,6 +8,7 @@ class GameInstance { final int? eacPid; bool hosting; bool launched; + bool movedToVirtualDesktop; bool tokenError; GameInstance? child; @@ -18,7 +19,7 @@ class GameInstance { required this.eacPid, required this.hosting, required this.child - }): tokenError = false, launched = false; + }): tokenError = false, launched = false, movedToVirtualDesktop = false; void kill() { Process.killPid(gamePid, ProcessSignal.sigabrt); @@ -42,4 +43,4 @@ class GameInstance { return false; } -} +} \ No newline at end of file diff --git a/common/lib/src/util/backend.dart b/common/lib/src/util/backend.dart index d3e06db..ef954b2 100644 --- a/common/lib/src/util/backend.dart +++ b/common/lib/src/util/backend.dart @@ -1,7 +1,9 @@ +import 'dart:async'; import 'dart:io'; import 'package:ini/ini.dart'; import 'package:reboot_common/common.dart'; +import 'package:reboot_common/src/extension/types.dart'; import 'package:shelf/shelf_io.dart'; import 'package:shelf_proxy/shelf_proxy.dart'; import 'package:sync/semaphore.dart'; @@ -33,8 +35,8 @@ Future freeBackendPort() async { } Future pingBackend(String host, int port, [bool https=false]) async { - var hostName = _getHostName(host); - var declaredScheme = _getScheme(host); + var hostName = host.replaceFirst("http://", "").replaceFirst("https://", ""); + var declaredScheme = host.startsWith("http://") ? "http" : host.startsWith("https://") ? "https" : null; try{ var uri = Uri( scheme: declaredScheme ?? (https ? "https" : "http"), @@ -52,10 +54,6 @@ Future pingBackend(String host, int port, [bool https=false]) async { } } -String? _getHostName(String host) => host.replaceFirst("http://", "").replaceFirst("https://", ""); - -String? _getScheme(String host) => host.startsWith("http://") ? "http" : host.startsWith("https://") ? "https" : null; - Stream watchMatchmakingIp() async* { if(!matchmakerConfigFile.existsSync()){ return; @@ -110,56 +108,4 @@ Future writeMatchmakingIp(String text) async { config.set("GameServer", "ip", ip); config.set("GameServer", "port", port); await matchmakerConfigFile.writeAsString(config.toString(), flush: true); -} - -Future isMatchmakerPortFree() async => await pingMatchmaker(kDefaultMatchmakerHost, kDefaultMatchmakerPort) == null; - -Future freeMatchmakerPort() async { - await killProcessByPort(kDefaultMatchmakerPort); - final standardResult = await isMatchmakerPortFree(); - if(standardResult) { - return true; - } - - return false; -} - -Future pingMatchmaker(String host, int port, [bool wss=false]) async { - var hostName = _getHostName(host); - var declaredScheme = _getScheme(host); - try{ - var uri = Uri( - scheme: declaredScheme ?? (wss ? "wss" : "ws"), - host: hostName, - port: port - ); - var completer = Completer(); - var socket = await WebSocket.connect(uri.toString()); - socket.listen( - (data) { - if(!completer.isCompleted) { - completer.complete(true); - } - }, - onError: (error) { - if(!completer.isCompleted) { - completer.complete(false); - } - }, - onDone: () { - if(!completer.isCompleted) { - completer.complete(false); - } - }, - ); - var result = await completer.future; - await socket.close(); - return result ? uri : null; - }catch(_){ - return wss || declaredScheme != null || isLocalHost(host) ? null : await pingMatchmaker(host, port, true); - } -} - -String? _getHostName(String host) => host.replaceFirst("ws://", "").replaceFirst("wss://", ""); - -String? _getScheme(String host) => host.startsWith("ws://") ? "ws" : host.startsWith("wss://") ? "wss" : null; \ No newline at end of file +} \ No newline at end of file diff --git a/common/lib/src/util/build.dart b/common/lib/src/util/build.dart index 594168d..3756783 100644 --- a/common/lib/src/util/build.dart +++ b/common/lib/src/util/build.dart @@ -8,6 +8,7 @@ import 'package:dio/dio.dart'; import 'package:dio/io.dart'; import 'package:path/path.dart' as path; import 'package:reboot_common/common.dart'; +import 'package:reboot_common/src/extension/types.dart'; const String kStopBuildDownloadSignal = "kill"; @@ -23,61 +24,14 @@ Dio _buildDioInstance() { return dio; } -final String _archiveSourceUrl = "https://raw.githubusercontent.com/simplyblk/Fortnitebuilds/main/README.md"; +final String _archiveSourceUrl = "http://185.203.216.3/versions.json"; final RegExp _rarProgressRegex = RegExp("^((100)|(\\d{1,2}(.\\d*)?))%\$"); -const String _manifestSourceUrl = "http://manifest.simplyblk.xyz"; const String _deniedConnectionError = "The connection was denied: your firewall might be blocking the download"; const String _unavailableError = "The build downloader is not available right now"; const String _genericError = "The build downloader is not working correctly"; const int _maxErrors = 100; Future> fetchBuilds(ignored) async { - (_dio.httpClientAdapter as IOHttpClientAdapter).createHttpClient = () => - HttpClient() - ..badCertificateCallback = - (X509Certificate cert, String host, int port) => true; - - final results = await Future.wait([_fetchManifestBuilds(), _fetchArchiveBuilds()]); - final data = []; - for(final result in results) { - data.addAll(result); - } - - return data; -} - -Future> _fetchManifestBuilds() async { - try { - final response = await _dio.get( - "$_manifestSourceUrl/versions.json", - options: Options( - headers: { - "Accept-Encoding": "*", - "Cookie": "_c_t_c=1" - } - ) - ); - final body = response.data; - return jsonDecode(body!).map((version) { - final nameParts = version.split("-"); - if(nameParts.length < 2) { - return null; - } - - final name = nameParts[1]; - return FortniteBuild( - identifier: name, - version: "Fortnite ${name}", - link: "$_manifestSourceUrl/$name/$name.manifest", - source: FortniteBuildSource.manifest - ); - }).whereType().toList(); - }catch(_) { - return []; - } -} - -Future> _fetchArchiveBuilds() async { final response = await _dio.get( _archiveSourceUrl, options: Options( @@ -88,32 +42,15 @@ Future> _fetchArchiveBuilds() async { return []; } + final data = jsonDecode(response.data ?? "{}"); var results = []; - for (var line in response.data?.split("\n") ?? []) { - if(!line.startsWith("|")) { - continue; - } - - var parts = line.substring(1, line.length - 1).split("|"); - if(parts.isEmpty) { - continue; - } - - var link = parts.last.trim(); - if(!link.endsWith(".zip") && !link.endsWith(".rar")) { - continue; - } - - var version = parts.first.trim(); - version = version.substring(0, version.indexOf("-")); + for(final entry in data.entries) { results.add(FortniteBuild( - identifier: version, - version: "Fortnite $version", - link: link, - source: FortniteBuildSource.archive + identifier: entry.key, + version: "${entry.value["title"]} (${entry.key})", + link: entry.value["url"] )); } - return results; } @@ -121,107 +58,23 @@ Future> _fetchArchiveBuilds() async { Future downloadArchiveBuild(FortniteBuildDownloadOptions options) async { try { final stopped = _setupLifecycle(options); - switch(options.build.source) { - case FortniteBuildSource.archive: - final outputDir = Directory("${options.destination.path}\\.build"); - await outputDir.create(recursive: true); - final fileName = options.build.link.substring(options.build.link.lastIndexOf("/") + 1); - final extension = path.extension(fileName); - final tempFile = File("${outputDir.path}\\$fileName"); - if(await tempFile.exists()) { - await tempFile.delete(recursive: true); - } - - final startTime = DateTime.now().millisecondsSinceEpoch; - final response = _downloadArchive(options, tempFile, startTime); - await Future.any([stopped.future, response]); - if(!stopped.isCompleted) { - await _extractArchive(stopped, extension, tempFile, options); - } - - delete(outputDir); - break; - case FortniteBuildSource.manifest: - final response = await _dio.get( - options.build.link, - options: Options( - headers: { - "Cookie": "_c_t_c=1" - } - ) - ); - final manifest = FortniteBuildManifestFile.fromJson(jsonDecode(response.data!)); - - final totalBytes = manifest.size; - final outputDir = options.destination; - await outputDir.create(recursive: true); - - final startTime = DateTime.now().millisecondsSinceEpoch; - final codec = GZipCodec(); - var completedBytes = 0; - var lastPercentage = 0.0; - - final writers = manifest.chunks.map((chunkedFile) async { - final outputFile = File('${outputDir.path}/${chunkedFile.file}'); - if(outputFile.existsSync()) { - if(outputFile.lengthSync() != chunkedFile.fileSize) { - await outputFile.delete(); - } else { - completedBytes += chunkedFile.fileSize; - final percentage = completedBytes * 100 / totalBytes; - if(percentage - lastPercentage > 0.1) { - _onProgress( - startTime, - DateTime.now().millisecondsSinceEpoch, - percentage, - false, - options - ); - } - return; - } - } - - await outputFile.parent.create(recursive: true); - for(final chunkId in chunkedFile.chunksIds) { - final response = await _dio.get( - "$_manifestSourceUrl/${options.build.identifier}/$chunkId.chunk", - options: Options( - responseType: ResponseType.bytes, - headers: { - "Accept-Encoding": "gzip", - "Cookie": "_c_t_c=1" - } - ), - ); - var responseBody = response.data; - if(responseBody == null) { - continue; - } - - final decodedBody = codec.decode(responseBody); - await outputFile.writeAsBytes( - decodedBody, - mode: FileMode.append, - flush: true - ); - completedBytes += decodedBody.length; - - final percentage = completedBytes * 100 / totalBytes; - if(percentage - lastPercentage > 0.1) { - _onProgress( - startTime, - DateTime.now().millisecondsSinceEpoch, - percentage, - false, - options - ); - } - } - }); - await Future.any([stopped.future, Future.wait(writers)]); - break; + final outputDir = Directory("${options.destination.path}\\.build"); + await outputDir.create(recursive: true); + final fileName = options.build.link.substring(options.build.link.lastIndexOf("/") + 1); + final extension = path.extension(fileName); + final tempFile = File("${outputDir.path}\\$fileName"); + if(await tempFile.exists()) { + await tempFile.delete(recursive: true); } + + final startTime = DateTime.now().millisecondsSinceEpoch; + final response = _downloadArchive(options, tempFile, startTime); + await Future.any([stopped.future, response]); + if(!stopped.isCompleted) { + await _extractArchive(stopped, extension, tempFile, options); + } + + delete(outputDir); }catch(error) { _onError(error, options); } @@ -358,7 +211,7 @@ Future _extractArchive(Completer stopped, String extension, File throw ArgumentError("Unexpected file extension: $extension}"); } - await Future.any([stopped.future, watchProcess(process.pid)]); + await Future.any([stopped.future, process.exitCode]); } void _onProgress(int startTime, int? now, double percentage, bool extracting, FortniteBuildDownloadOptions options) { @@ -385,7 +238,6 @@ void _onError(Object? error, FortniteBuildDownloadOptions options) { } } - Completer _setupLifecycle(FortniteBuildDownloadOptions options) { var stopped = Completer(); var lifecyclePort = ReceivePort(); diff --git a/common/lib/src/util/patcher.dart b/common/lib/src/util/patcher.dart index 143b3ac..0181844 100644 --- a/common/lib/src/util/patcher.dart +++ b/common/lib/src/util/patcher.dart @@ -29,8 +29,8 @@ Future _patch(File file, Uint8List original, Uint8List patched) async { throw Exception("Cannot mutate length of binary file"); } - var read = await file.readAsBytes(); - var length = await file.length(); + final read = await file.readAsBytes(); + final length = await file.length(); var readOffset = 0; var patchOffset = -1; var patchCount = 0; @@ -50,7 +50,6 @@ Future _patch(File file, Uint8List original, Uint8List patched) async { readOffset++; } - print("Offset: $patchOffset"); if(patchOffset == -1) { return false; } diff --git a/common/lib/src/util/path.dart b/common/lib/src/util/path.dart index e4eb028..5602ff1 100644 --- a/common/lib/src/util/path.dart +++ b/common/lib/src/util/path.dart @@ -39,41 +39,4 @@ Future delete(FileSystemEntity file) async { } }); } -} - -extension FortniteVersionExtension on FortniteVersion { - static File? findExecutable(Directory directory, String name) { - try{ - var result = directory.listSync(recursive: true) - .firstWhere((element) => path.basename(element.path) == name); - return File(result.path); - }catch(_){ - return null; - } - } - - File? get gameExecutable => findExecutable(location, "FortniteClient-Win64-Shipping.exe"); - - Future get headlessGameExecutable async { - var result = findExecutable(location, "FortniteClient-Win64-Shipping-Headless.exe"); - if(result != null) { - return result; - } - - var original = findExecutable(location, "FortniteClient-Win64-Shipping.exe"); - if(original == null) { - return null; - } - - var output = File("${original.parent.path}\\FortniteClient-Win64-Shipping-Headless.exe"); - await original.copy(output.path); - await Isolate.run(() => patchHeadless(output)); - return output; - } - - File? get launcherExecutable => findExecutable(location, "FortniteLauncher.exe"); - - File? get eacExecutable => findExecutable(location, "FortniteClient-Win64-Shipping_EAC.exe"); - - File? get splashBitmap => findExecutable(location, "Splash.bmp"); } \ No newline at end of file diff --git a/common/lib/src/util/process.dart b/common/lib/src/util/process.dart index 883048c..54b08ce 100644 --- a/common/lib/src/util/process.dart +++ b/common/lib/src/util/process.dart @@ -10,6 +10,7 @@ import 'package:path/path.dart' as path; import 'package:ffi/ffi.dart'; import 'package:reboot_common/common.dart'; +import 'package:reboot_common/src/extension/process.dart'; import 'package:sync/semaphore.dart'; import 'package:win32/win32.dart'; @@ -282,10 +283,4 @@ class _ExtendedProcess extends Process { return err; } -} - -extension ProcessExtension on Process { - Stream get stdOutput => this.stdout.expand((event) => utf8.decode(event).split("\n")); - - Stream get stdError => this.stderr.expand((event) => utf8.decode(event).split("\n")); } \ No newline at end of file diff --git a/gui/assets/backend/lawinserver.exe b/gui/assets/backend/lawinserver.exe index cdeaffc..a8bf28d 100644 Binary files a/gui/assets/backend/lawinserver.exe and b/gui/assets/backend/lawinserver.exe differ diff --git a/gui/assets/images/backend.png b/gui/assets/images/backend.png index 341b02f..0e484f1 100644 Binary files a/gui/assets/images/backend.png and b/gui/assets/images/backend.png differ diff --git a/gui/assets/images/matchmaker.png b/gui/assets/images/matchmaker.png deleted file mode 100644 index 0e484f1..0000000 Binary files a/gui/assets/images/matchmaker.png and /dev/null differ diff --git a/gui/assets/info/en/1. What is Project Reboot b/gui/assets/info/en/1. What is Project Reboot new file mode 100644 index 0000000..616f773 --- /dev/null +++ b/gui/assets/info/en/1. What is Project Reboot @@ -0,0 +1,4 @@ +Some Fortnite versions support running this game server in the background without rendering the game: this type of server is called "headless" as the game is running, but you can't see it on your screen. +If headless is not supported by the Fortnite version you want to play, or if you disabled it manually from the "Configuration" section in the "Host" tab of the launcher, you will see an instance of Fortnite open on your screen. +For convenience, this window will be opened on a new Virtual Desktop, if your Windows version supports it. This feature can be disabled as well from from the "Configuration" section in the "Host" tab of the launcher. +Just like in Minecraft, you need a game client to play the game and one to host the server." \ No newline at end of file diff --git a/gui/assets/info/en/10. Corrupted build(Failed to open descriptor file, Fortnite crash Reporter, Unreal Engine crash reporter) b/gui/assets/info/en/10. Corrupted build(Failed to open descriptor file, Fortnite crash Reporter, Unreal Engine crash reporter) new file mode 100644 index 0000000..7ecf66b --- /dev/null +++ b/gui/assets/info/en/10. Corrupted build(Failed to open descriptor file, Fortnite crash Reporter, Unreal Engine crash reporter) @@ -0,0 +1 @@ +Your version of Fortnite is corrupted, download it again from the launcher, or use another build. \ No newline at end of file diff --git a/gui/assets/info/en/11. LawinV2 and backends with email and password authentication b/gui/assets/info/en/11. LawinV2 and backends with email and password authentication new file mode 100644 index 0000000..045d357 --- /dev/null +++ b/gui/assets/info/en/11. LawinV2 and backends with email and password authentication @@ -0,0 +1,3 @@ +Support for LawinV2 is available in the launcher. +To use the backend, select a local or remote backend from the "Backend" tab in the launcher. +To use the credentials, click on the avatar on the top left of the launcher and enter your email and password \ No newline at end of file diff --git a/gui/assets/info/en/2. What is a Fortnite game server b/gui/assets/info/en/2. What is a Fortnite game server new file mode 100644 index 0000000..ec5bf41 --- /dev/null +++ b/gui/assets/info/en/2. What is a Fortnite game server @@ -0,0 +1,7 @@ +If you have ever played Minecraft multiplayer, you might know that the servers you join are hosted on a computer running a program, called Minecraft Game Server. +While the Minecraft Game server is written by the creators of Minecraft, Mojang, Epic Games doesn't provide an equivalent for Fortnite. +By exploiting the Fortnite internals, though, it's possible to create a game server just like in Minecraft: this is in easy terms what Project Reboot does. +Some Fortnite versions support running this game server in the background without rendering the game("headless"), while others still require the full game to be open. +Just like in Minecraft, you need a game client to play the game and one to host the server. +By default, a game server is automatically started on your PC when you start a Fortnite version from the "Play" section in the launcher. +If you want to play in another way, for example by joining a server hosted by one of your friends instead of running one yourself, you can checkout the "Multiplayer" section in the "Play" tab of the launcher. \ No newline at end of file diff --git a/gui/assets/info/en/3. Types of Fortnite game server b/gui/assets/info/en/3. Types of Fortnite game server new file mode 100644 index 0000000..73f672d --- /dev/null +++ b/gui/assets/info/en/3. Types of Fortnite game server @@ -0,0 +1,4 @@ +Some Fortnite versions support running this game server in the background without rendering the game: this type of server is called "headless" as the game is running, but you can't see it on your screen. +If headless is not supported by the Fortnite version you want to play, or if you disabled it manually from the "Configuration" section in the "Host" tab of the launcher, you will see an instance of Fortnite open on your screen. +For convenience, this window will be opened on a new Virtual Desktop, if your Windows version supports it. This feature can be disabled as well from from the "Configuration" section in the "Host" tab of the launcher. +Just like in Minecraft, you need a game client to play the game and one to host the server. \ No newline at end of file diff --git a/gui/assets/info/en/4. How can others join my game server b/gui/assets/info/en/4. How can others join my game server new file mode 100644 index 0000000..ecba1ed --- /dev/null +++ b/gui/assets/info/en/4. How can others join my game server @@ -0,0 +1,22 @@ +For others to join your game server, port 7777 must be accessible on your PC. +One option is to use a private VPN service like Hamachi or Radmin, but all of the players will need to download this software. +The best solution is to use port forwarding: +1. Set a static IP + If you don't have already a static IP set, set one by following any tutorial on Google +2. Log into your router's admin panel + Usually this can be accessed on any web browser by going to http://192.168.1.1/ + You might need a username and a password to log in: refer to your router's manual for precise instructions +3. Find the port forwarding section + Once logged in into the admin panel, navigate to the port forwarding section of your router's settings + This location may vary from router to router, but it's typically labelled as "Port Forwarding," "Port Mapping" or "Virtual Server" + Refer to your router's manual for precise instructions +4. Add a port forwarding rule + Now, you'll need to create a new port forwarding rule. Here's what you'll typically need to specify: + - Service Name: Choose a name for your port forwarding rule (e.g., "Fortnite Game Server") + - Port Number: Enter 7777 for both the external and internal ports + - Protocol: Select the UDP protocol + - Internal IP Address: Enter the static IP address you set earlier + - Enable: Make sure the port forwarding rule is enabled +5. Save and apply the changes + After configuring the port forwarding rule, save your changes and apply them + This step may involve clicking a "Save" or "Apply" button on your router's web interface \ No newline at end of file diff --git a/gui/assets/info/en/5. What is a backend b/gui/assets/info/en/5. What is a backend new file mode 100644 index 0000000..2108286 --- /dev/null +++ b/gui/assets/info/en/5. What is a backend @@ -0,0 +1,6 @@ +A backend is a piece of software that emulates the Epic Games server responsible for authentication and related features. +By default, the Reboot Launcher ships with a slightly customized version of LawinV1, an open source implementation available on Github. +If you are having any problems with the built in backend, enable the "Detached" option in the "Backend" tab of the Reboot Laucher to troubleshoot the issue." +LawinV1 was chosen to allow users to log into Fortnite and join games easily, but keep in mind that if you want to use features such as parties, voice chat or skins, you will need to use a custom backend. +Other popular options are LawinV2 and Momentum, both available on Github, but it's not recommended to use them if you are not an advanced user. +You can run these alternatives either either on your PC or on a server by selecting respectively "Local" or "Remote" from the "Type" section in the "Backend" tab of the Reboot Launcher. \ No newline at end of file diff --git a/gui/assets/info/en/6. What is the Unreal Engine console b/gui/assets/info/en/6. What is the Unreal Engine console new file mode 100644 index 0000000..111cc79 --- /dev/null +++ b/gui/assets/info/en/6. What is the Unreal Engine console @@ -0,0 +1,4 @@ +Many Fortnite versions don't support entering in game by clicking the \"Play\" button. +Instead, you need to click the key assigned to the Unreal Engine console, by default F8 or the tilde(the button above tab), and type open 127.0.0.1 +Keep in mind that the Unreal Engine console key is controlled by the backend, so this is true only if you are using the embedded backend: custom backends might use different keys. +When using the embedded backend, you can customize the key used to open the console in the \"Backend\" tab of the Reboot Launcher. \ No newline at end of file diff --git a/gui/assets/info/en/7. I cannot open Fortnite because of an authentication error b/gui/assets/info/en/7. I cannot open Fortnite because of an authentication error new file mode 100644 index 0000000..39ebada --- /dev/null +++ b/gui/assets/info/en/7. I cannot open Fortnite because of an authentication error @@ -0,0 +1,4 @@ +To resolve this issue: +- Check that your backend is working correctly from the "Backend" tab +- If you are using a custom backend, try to use the embedded one +- Try to run the backend as detached by enabling the "Detached" option in the "Backend" tab \ No newline at end of file diff --git a/gui/assets/info/en/8. Why do I see two Fortnite versions opened on my PC b/gui/assets/info/en/8. Why do I see two Fortnite versions opened on my PC new file mode 100644 index 0000000..7201bff --- /dev/null +++ b/gui/assets/info/en/8. Why do I see two Fortnite versions opened on my PC @@ -0,0 +1,2 @@ +As explained in the "What is a Fortnite game server?" section, one instance of Fortnite is used to host the game server, while the other is used to let you play. +The Fortnite instance used up by the game server is usually frozen, so it should be hard to use the wrong one to try to play. \ No newline at end of file diff --git a/gui/assets/info/en/9. I cannot enter in a match when I'm in Fortnite b/gui/assets/info/en/9. I cannot enter in a match when I'm in Fortnite new file mode 100644 index 0000000..607662d --- /dev/null +++ b/gui/assets/info/en/9. I cannot enter in a match when I'm in Fortnite @@ -0,0 +1,2 @@ +As explained in the "What is the Unreal Engine console?" section, the "Play" button doesn't work in many Fortnite versions. +Instead, you need to click the key assigned to the Unreal Engine console, by default F8 or the tilde(the button above tab), and type open 127.0.0.1 \ No newline at end of file diff --git a/gui/lib/l10n/reboot_en.arb b/gui/lib/l10n/reboot_en.arb index 59c8e90..2d275ef 100644 --- a/gui/lib/l10n/reboot_en.arb +++ b/gui/lib/l10n/reboot_en.arb @@ -35,6 +35,8 @@ "hostHeadlessDescription": "Runs Fortnite without graphics to optimize resources usage, may not work for old seasons", "hostVirtualDesktopName": "Virtual desktop", "hostVirtualDesktopDescription": "Runs Fortnite in a virtual desktop if headless is not supported", + "hostAutomaticRestartName": "Automatic restart", + "hostAutomaticRestartDescription": "Automatically restarts your game server when the match ends", "hostShareName": "Share", "hostShareDescription": "Make it easy for other people to join your server with the options in this section", "hostShareLinkName": "Link", @@ -59,26 +61,8 @@ "findServer": "Find a server", "copyIp": "Copy IP", "hostName": "Host", - "matchmakerName": "Matchmaker", - "matchmakerTypeName": "Type", - "matchmakerTypeDescription": "The type of matchmaker to use when queueing for a game", - "matchmakerConfigurationHostName": "Host", - "matchmakerConfigurationHostDescription": "The hostname of the matchmaker", - "matchmakerConfigurationPortName": "Port", - "matchmakerConfigurationPortDescription": "The port of the matchmaker", "matchmakerConfigurationAddressName": "Game server address", - "matchmakerConfigurationAddressDescription": "The address of the game server used by the matchmaker", - "matchmakerConfigurationDetachedName": "Detached", - "matchmakerConfigurationDetachedDescription": "Whether a separate process should be spawned, useful for debugging", - "matchmakerInstallationDirectoryName": "Installation directory", - "matchmakerInstallationDirectoryDescription": "Opens the folder where the embedded matchmaker is located", - "matchmakerInstallationDirectoryContent": "Show files", - "matchmakerResetDefaultsName": "Reset", - "matchmakerResetDefaultsDescription": "Resets the matchmaker's settings to their default values", - "matchmakerResetDefaultsContent": "Reset", - "matchmakerResetDefaultsDialogTitle": "Do you want to reset all the setting in this tab to their default values? This action is irreversible", - "matchmakerResetDefaultsDialogSecondaryAction": "Close", - "matchmakerResetDefaultsDialogPrimaryAction": "Reset", + "matchmakerConfigurationAddressDescription": "The address of the game server used by the backend", "playName": "Play", "playGameServerName": "Multiplayer", "playGameServerDescription": "See all the available options to start playing", @@ -95,8 +79,10 @@ "playGameServerCustomDescription": "Join a game server using its public IP address", "playGameServerCustomContent": "Enter IP", "settingsName": "Settings", - "settingsClientName": "Configuration", - "settingsClientDescription": "Configure the internals of Fortnite", + "settingsClientName": "Internal files", + "settingsClientDescription": "Configure the internal files used by the launcher for Fortnite", + "settingsClientOptionsName": "Options", + "settingsClientOptionsDescription": "Configure additional options for Fortnite", "settingsClientConsoleName": "Unreal engine console", "settingsClientConsoleDescription": "Unlocks the Unreal Engine Console", "settingsClientConsoleKeyName": "Unreal engine console key", @@ -108,17 +94,23 @@ "settingsClientArgsName": "Custom launch arguments", "settingsClientArgsDescription": "Additional arguments to use when launching the game", "settingsClientArgsPlaceholder": "Arguments...", - "settingsServerName": "Configuration", - "settingsServerSubtitle": "Configure the internals of your game server", + "settingsServerName": "Internal files", + "settingsServerSubtitle": "Configure the internal files used by the launcher for the game server", + "settingsServerOptionsName": "Options", + "settingsServerOptionsSubtitle": "Configure additional options for the game server", + "settingsServerTypeName": "Type", + "settingsServerTypeDescription": "The type of game server to inject", + "settingsServerTypeEmbeddedName": "Embedded", + "settingsServerTypeCustomName": "Custom", "settingsServerFileName": "Implementation", - "settingsServerFileDescription": "Creates a game server to host matches", + "settingsServerFileDescription": "The file injected to create the game server", "settingsServerPortName": "Port", - "settingsServerPortDescription": "The port used by the game server dll", + "settingsServerPortDescription": "The port the launcher expects the game server to be hosted on", "settingsServerMirrorName": "Update mirror", "settingsServerMirrorDescription": "The URL used to update the game server dll", "settingsServerMirrorPlaceholder": "mirror", "settingsServerTimerName": "Update timer", - "settingsServerTimerSubtitle": "Determines when the game server dll should be updated", + "settingsServerTimerSubtitle": "Determines when the game server should be updated", "settingsUtilsName": "Launcher", "settingsUtilsSubtitle": "This section contains settings related to the launcher", "settingsUtilsInstallationDirectoryName": "Installation directory", @@ -171,23 +163,23 @@ "passwordPlaceholder": "Type your password, if you want to use one", "cancelProfileChanges": "Cancel", "saveProfileChanges": "Save", - "startingServer": "Starting the {name}...", - "startedServer": "The {name} was started successfully", - "checkedServer": "The {name} works correctly", - "startServerError": "An error occurred while starting the {name}: {error}", - "localServerError": "The local {name} doesn't work correctly: {error}", - "stoppingServer": "Stopping the {name}...", - "stoppedServer": "The {name} was stopped successfully", - "stopServerError": "An error occurred while stopping the {name}: {error}", + "startingServer": "Starting the backend...", + "startedServer": "The backend was started successfully", + "checkedServer": "The backend works correctly", + "startServerError": "An error occurred while starting the backend: {error}", + "localServerError": "The local backend doesn't work correctly: {error}", + "stoppingServer": "Stopping the backend...", + "stoppedServer": "The backend was stopped successfully", + "stopServerError": "An error occurred while stopping the backend: {error}", "missingHostNameError": "Missing hostname in the {name} configuration", - "missingPortError": "Missing port in the {name} configuration", - "illegalPortError": "Invalid port in the {name} configuration", - "freeingPort": "Freeing port {port}...", - "freedPort": "Port {port} was freed successfully", - "freePortError": "An error occurred while freeing port {port}: {error}", - "pingingRemoteServer": "Pinging the remote {name}...", - "pingingLocalServer": "Pinging the {type} {name}...", - "pingError": "Cannot ping the {type} {name}", + "missingPortError": "Missing port in the backend configuration", + "illegalPortError": "Invalid port in the backend configuration", + "freeingPort": "Freeing the backend port...", + "freedPort": "The backend port was freed successfully", + "freePortError": "An error occurred while freeing the backend port: {error}", + "pingingRemoteServer": "Pinging the remote backend...", + "pingingLocalServer": "Pinging the {type} backend...", + "pingError": "Cannot ping the {type} backend", "joinSelfServer": "You can't join your own server", "wrongServerPassword": "Wrong password: please try again", "offlineServer": "This server isn't online right now: please try again later", @@ -236,9 +228,9 @@ "embedded": "Embedded", "remote": "Remote", "local": "Local", - "checkServer": "Check {name}", - "startServer": "Start {name}", - "stopServer": "Stop {name}", + "checkServer": "Check backend", + "startServer": "Start backend", + "stopServer": "Stop backend", "startHosting": "Start hosting", "stopHosting": "Stop hosting", "startGame": "Start fortnite", @@ -301,5 +293,10 @@ "settingsLogsSelectFolder": "Select a folder", "settingsLogsCreating": "Creating logs archive...", "settingsLogsCreated": "Logs archive created successfully", - "settingsLogsCreatedShowFile": "Show file" + "settingsLogsCreatedShowFile": "Show file", + "updateAvailable": "Version {version} is now available", + "updateAvailableAction": "Download", + "gameServerEnd": "The match ended", + "gameServerRestart": "The server will restart in {timeInSeconds} seconds", + "gameServerShutdown": "The server will shutdown in {timeInSeconds} seconds" } diff --git a/gui/lib/main.dart b/gui/lib/main.dart index 8e7533c..b3aadc2 100644 --- a/gui/lib/main.dart +++ b/gui/lib/main.dart @@ -10,31 +10,36 @@ import 'package:flutter_gen/gen_l10n/reboot_localizations.dart'; import 'package:flutter_localized_locales/flutter_localized_locales.dart'; import 'package:get/get.dart'; import 'package:get_storage/get_storage.dart'; +import 'package:local_notifier/local_notifier.dart'; +import 'package:package_info_plus/package_info_plus.dart'; import 'package:reboot_common/common.dart'; import 'package:reboot_launcher/src/controller/backend_controller.dart'; import 'package:reboot_launcher/src/controller/build_controller.dart'; import 'package:reboot_launcher/src/controller/game_controller.dart'; import 'package:reboot_launcher/src/controller/hosting_controller.dart'; import 'package:reboot_launcher/src/controller/info_controller.dart'; -import 'package:reboot_launcher/src/controller/matchmaker_controller.dart'; import 'package:reboot_launcher/src/controller/settings_controller.dart'; import 'package:reboot_launcher/src/controller/update_controller.dart'; import 'package:reboot_launcher/src/dialog/abstract/info_bar.dart'; import 'package:reboot_launcher/src/dialog/implementation/error.dart'; import 'package:reboot_launcher/src/dialog/implementation/server.dart'; import 'package:reboot_launcher/src/page/implementation/home_page.dart'; +import 'package:reboot_launcher/src/util/info.dart'; import 'package:reboot_launcher/src/util/matchmaker.dart'; import 'package:reboot_launcher/src/util/os.dart'; import 'package:reboot_launcher/src/util/translations.dart'; import 'package:supabase_flutter/supabase_flutter.dart'; import 'package:system_theme/system_theme.dart'; import 'package:url_protocol/url_protocol.dart'; +import 'package:version/version.dart'; import 'package:window_manager/window_manager.dart'; const double kDefaultWindowWidth = 1536; const double kDefaultWindowHeight = 1024; const String kCustomUrlSchema = "Reboot"; +Version? appVersion; + class _MyHttpOverrides extends HttpOverrides { @override HttpClient createHttpClient(SecurityContext? context){ @@ -53,9 +58,19 @@ void main() => runZonedGuarded( url: supabaseUrl, anonKey: supabaseAnonKey ); + await localNotifier.setup( + appName: 'Reboot Launcher', + shortcutPolicy: ShortcutPolicy.ignore + ); WidgetsFlutterBinding.ensureInitialized(); await SystemTheme.accentColor.load(); _initWindow(); + initInfoTiles(); + final versionError = await _initVersion(); + if(versionError != null) { + errors.add(versionError); + } + final storageError = await _initStorage(); if(storageError != null) { errors.add(storageError); @@ -84,10 +99,20 @@ void _handleErrors(List errors) { errors.where((element) => element != null).forEach((element) => onError(element!, null, false)); } +Future _initVersion() async { + try { + final packageInfo = await PackageInfo.fromPlatform(); + appVersion = Version.parse(packageInfo.version); + return null; + }catch(error) { + return error; + } +} + Future _checkGameServer() async { try { - var matchmakerController = Get.find(); - var address = matchmakerController.gameServerAddress.text; + var backendController = Get.find(); + var address = backendController.gameServerAddress.text; if(isLocalHost(address)) { return; } @@ -97,8 +122,8 @@ Future _checkGameServer() async { return; } - var oldOwner = matchmakerController.gameServerOwner.value; - matchmakerController.joinLocalHost(); + var oldOwner = backendController.gameServerOwner.value; + backendController.joinLocalHost(); WidgetsBinding.instance.addPostFrameCallback((_) => showInfoBar( oldOwner == null ? translations.serverNoLongerAvailableUnnamed : translations.serverNoLongerAvailable(oldOwner), severity: InfoBarSeverity.warning, @@ -128,11 +153,11 @@ Future _initUrlHandler() async { void _joinServer(Uri uri) { var hostingController = Get.find(); - var matchmakerController = Get.find(); + var backendController = Get.find(); var uuid = _parseCustomUrl(uri); var server = hostingController.findServerById(uuid); if(server != null) { - matchmakerController.joinServer(hostingController.uuid, server); + backendController.joinServer(hostingController.uuid, server); }else { showInfoBar( translations.noServerFound, @@ -176,13 +201,11 @@ Future _initStorage() async { try { await GetStorage("game", settingsDirectory.path).initStorage; await GetStorage("backend", settingsDirectory.path).initStorage; - await GetStorage("matchmaker", settingsDirectory.path).initStorage; await GetStorage("update", settingsDirectory.path).initStorage; await GetStorage("settings", settingsDirectory.path).initStorage; await GetStorage("hosting", settingsDirectory.path).initStorage; Get.put(GameController()); Get.put(BackendController()); - Get.put(MatchmakerController()); Get.put(BuildController()); Get.put(SettingsController()); Get.put(HostingController()); diff --git a/gui/lib/src/controller/backend_controller.dart b/gui/lib/src/controller/backend_controller.dart index 90966ef..acd93a3 100644 --- a/gui/lib/src/controller/backend_controller.dart +++ b/gui/lib/src/controller/backend_controller.dart @@ -1,43 +1,235 @@ +import 'dart:async'; import 'dart:io'; +import 'package:fluent_ui/fluent_ui.dart'; import 'package:get/get.dart'; +import 'package:get_storage/get_storage.dart'; import 'package:reboot_common/common.dart'; -import 'package:reboot_launcher/src/controller/server_controller.dart'; -import 'package:reboot_launcher/src/page/abstract/page_type.dart'; -import 'package:reboot_launcher/src/util/translations.dart'; -class BackendController extends ServerController { - late RxBool detached; +class BackendController extends GetxController { + late final GetStorage storage; + late final TextEditingController host; + late final TextEditingController port; + late final Rx type; + late final TextEditingController gameServerAddress; + late final FocusNode gameServerAddressFocusNode; + late final RxnString gameServerOwner; + late final RxBool started; + late final RxBool detached; + StreamSubscription? worker; + HttpServer? localServer; + HttpServer? remoteServer; - BackendController() : super() { + BackendController() { + storage = GetStorage("backend"); + started = RxBool(false); + type = Rx(ServerType.values.elementAt(storage.read("type") ?? 0)); + type.listen((value) { + host.text = _readHost(); + port.text = _readPort(); + storage.write("type", value.index); + if (!started.value) { + return; + } + + stop(); + }); + host = TextEditingController(text: _readHost()); + host.addListener(() => + storage.write("${type.value.name}_host", host.text)); + port = TextEditingController(text: _readPort()); + port.addListener(() => + storage.write("${type.value.name}_port", port.text)); detached = RxBool(storage.read("detached") ?? false); detached.listen((value) => storage.write("detached", value)); + gameServerAddress = TextEditingController(text: storage.read("game_server_address") ?? "127.0.0.1"); + var lastValue = gameServerAddress.text; + writeMatchmakingIp(lastValue); + gameServerAddress.addListener(() { + var newValue = gameServerAddress.text; + if(newValue.trim().toLowerCase() == lastValue.trim().toLowerCase()) { + return; + } + + lastValue = newValue; + gameServerAddress.selection = TextSelection.collapsed(offset: newValue.length); + storage.write("game_server_address", newValue); + writeMatchmakingIp(newValue); + }); + watchMatchmakingIp().listen((event) { + if(event != null && gameServerAddress.text != event) { + gameServerAddress.text = event; + } + }); + gameServerAddressFocusNode = FocusNode(); + gameServerOwner = RxnString(storage.read("game_server_owner")); + gameServerOwner.listen((value) => storage.write("game_server_owner", value)); } - @override - String get controllerName => translations.backendName.toLowerCase(); + void reset() async { + type.value = ServerType.values.elementAt(0); + for (final type in ServerType.values) { + storage.write("${type.name}_host", null); + storage.write("${type.name}_port", null); + } - @override - String get storageName => "backend"; + host.text = type.value != ServerType.remote ? kDefaultBackendHost : ""; + port.text = kDefaultBackendPort.toString(); + detached.value = false; + } - @override - String get defaultHost => kDefaultBackendHost; + String _readHost() { + String? value = storage.read("${type.value.name}_host"); + if (value != null && value.isNotEmpty) { + return value; + } - @override - int get defaultPort => kDefaultBackendPort; + if (type.value != ServerType.remote) { + return kDefaultBackendHost; + } - @override - Future get isPortFree => isBackendPortFree(); + return ""; + } - @override - Future freePort() => freeBackendPort(); + String _readPort() => + storage.read("${type.value.name}_port") ?? kDefaultBackendPort.toString(); - @override - RebootPageType get pageType => RebootPageType.backend; + Stream start() async* { + try { + if(started.value) { + return; + } - @override - Future startEmbeddedInternal() => startEmbeddedBackend(detached.value); + final hostData = this.host.text.trim(); + final portData = this.port.text.trim(); + if(type() != ServerType.local) { + started.value = true; + yield ServerResult(ServerResultType.starting); + }else { + started.value = false; + if(portData != kDefaultBackendPort.toString()) { + yield ServerResult(ServerResultType.starting); + } + } - @override - Future pingServer(String host, int port) => pingBackend(host, port); + if (hostData.isEmpty) { + yield ServerResult(ServerResultType.missingHostError); + started.value = false; + return; + } + + if (portData.isEmpty) { + yield ServerResult(ServerResultType.missingPortError); + started.value = false; + return; + } + + final portNumber = int.tryParse(portData); + if (portNumber == null) { + yield ServerResult(ServerResultType.illegalPortError); + started.value = false; + return; + } + + if ((type() != ServerType.local || portData != kDefaultBackendPort.toString()) && !(await isBackendPortFree())) { + yield ServerResult(ServerResultType.freeingPort); + final result = await freeBackendPort(); + yield ServerResult(result ? ServerResultType.freePortSuccess : ServerResultType.freePortError); + if(!result) { + started.value = false; + return; + } + } + + switch(type()){ + case ServerType.embedded: + final process = await startEmbeddedBackend(detached.value); + final processPid = process.pid; + watchProcess(processPid).then((value) { + if(started()) { + started.value = false; + } + }); + break; + case ServerType.remote: + yield ServerResult(ServerResultType.pingingRemote); + final uriResult = await pingBackend(hostData, portNumber); + if(uriResult == null) { + yield ServerResult(ServerResultType.pingError); + started.value = false; + return; + } + + remoteServer = await startRemoteBackendProxy(uriResult); + break; + case ServerType.local: + if(portData != kDefaultBackendPort.toString()) { + localServer = await startRemoteBackendProxy(Uri.parse("http://$kDefaultBackendHost:$portData")); + } + + break; + } + + yield ServerResult(ServerResultType.pingingLocal); + final uriResult = await pingBackend(kDefaultBackendHost, kDefaultBackendPort); + if(uriResult == null) { + yield ServerResult(ServerResultType.pingError); + remoteServer?.close(force: true); + localServer?.close(force: true); + started.value = false; + return; + } + + yield ServerResult(ServerResultType.startSuccess); + }catch(error, stackTrace) { + yield ServerResult( + ServerResultType.startError, + error: error, + stackTrace: stackTrace + ); + remoteServer?.close(force: true); + localServer?.close(force: true); + started.value = false; + } + } + + Stream stop() async* { + if(!started.value) { + return; + } + + yield ServerResult(ServerResultType.stopping); + started.value = false; + try{ + switch(type()){ + case ServerType.embedded: + killProcessByPort(kDefaultBackendPort); + break; + case ServerType.remote: + await remoteServer?.close(force: true); + remoteServer = null; + break; + case ServerType.local: + await localServer?.close(force: true); + localServer = null; + break; + } + yield ServerResult(ServerResultType.stopSuccess); + }catch(error, stackTrace){ + yield ServerResult( + ServerResultType.stopError, + error: error, + stackTrace: stackTrace + ); + started.value = true; + } + } + + Stream toggle() async* { + if(started()) { + yield* stop(); + }else { + yield* start(); + } + } } \ No newline at end of file diff --git a/gui/lib/src/controller/build_controller.dart b/gui/lib/src/controller/build_controller.dart index 0461fde..8123f20 100644 --- a/gui/lib/src/controller/build_controller.dart +++ b/gui/lib/src/controller/build_controller.dart @@ -4,10 +4,8 @@ import 'package:reboot_common/common.dart'; class BuildController extends GetxController { List? _builds; Rxn _selectedBuild; - Rx _selectedBuildSource; - BuildController() : _selectedBuild = Rxn(), - _selectedBuildSource = Rx(FortniteBuildSource.manifest); + BuildController() : _selectedBuild = Rxn(); List? get builds => _builds; @@ -15,26 +13,10 @@ class BuildController extends GetxController { set selectedBuild(FortniteBuild? value) { _selectedBuild.value = value; - if(value != null && value.source != value.source) { - _selectedBuildSource.value = value.source; - } } - FortniteBuildSource get selectedBuildSource => _selectedBuildSource.value; - - set selectedBuildSource(FortniteBuildSource value) { - _selectedBuildSource.value = value; - final selected = selectedBuild; - if(selected == null || selected.source != value) { - final selectable = builds?.firstWhereOrNull((element) => element.source == value); - _selectedBuild.value = selectable; - } - } - - set builds(List? builds) { _builds = builds; - final selectable = builds?.firstWhereOrNull((element) => element.source == selectedBuildSource); - _selectedBuild.value = selectable; + _selectedBuild.value = builds?.firstOrNull; } } diff --git a/gui/lib/src/controller/hosting_controller.dart b/gui/lib/src/controller/hosting_controller.dart index 664bb8f..3d48b9e 100644 --- a/gui/lib/src/controller/hosting_controller.dart +++ b/gui/lib/src/controller/hosting_controller.dart @@ -15,6 +15,7 @@ class HostingController extends GetxController { late final RxBool discoverable; late final RxBool headless; late final RxBool virtualDesktop; + late final RxBool autoRestart; late final RxBool started; late final RxBool published; late final Rxn instance; @@ -36,6 +37,8 @@ class HostingController extends GetxController { headless.listen((value) => _storage.write("headless", value)); virtualDesktop = RxBool(_storage.read("virtual_desktop") ?? true); virtualDesktop.listen((value) => _storage.write("virtual_desktop", value)); + autoRestart = RxBool(_storage.read("auto_restart") ?? true); + autoRestart.listen((value) => _storage.write("auto_restart", value)); started = RxBool(false); published = RxBool(false); showPassword = RxBool(false); diff --git a/gui/lib/src/controller/matchmaker_controller.dart b/gui/lib/src/controller/matchmaker_controller.dart deleted file mode 100644 index 6fadcf7..0000000 --- a/gui/lib/src/controller/matchmaker_controller.dart +++ /dev/null @@ -1,66 +0,0 @@ -import 'dart:io'; - -import 'package:fluent_ui/fluent_ui.dart'; -import 'package:get/get_rx/src/rx_types/rx_types.dart'; -import 'package:reboot_common/common.dart'; -import 'package:reboot_launcher/src/controller/server_controller.dart'; -import 'package:reboot_launcher/src/page/abstract/page_type.dart'; -import 'package:reboot_launcher/src/util/translations.dart'; - -class MatchmakerController extends ServerController { - late final TextEditingController gameServerAddress; - late final FocusNode gameServerAddressFocusNode; - late final RxnString gameServerOwner; - - MatchmakerController() : super() { - gameServerAddress = TextEditingController(text: storage.read("game_server_address") ?? kDefaultMatchmakerHost); - var lastValue = gameServerAddress.text; - writeMatchmakingIp(lastValue); - gameServerAddress.addListener(() { - var newValue = gameServerAddress.text; - if(newValue.trim().toLowerCase() == lastValue.trim().toLowerCase()) { - return; - } - - lastValue = newValue; - gameServerAddress.selection = TextSelection.collapsed(offset: newValue.length); - storage.write("game_server_address", newValue); - writeMatchmakingIp(newValue); - }); - watchMatchmakingIp().listen((event) { - if(event != null && gameServerAddress.text != event) { - gameServerAddress.text = event; - } - }); - gameServerAddressFocusNode = FocusNode(); - gameServerOwner = RxnString(storage.read("game_server_owner")); - gameServerOwner.listen((value) => storage.write("game_server_owner", value)); - } - - @override - String get controllerName => translations.matchmakerName.toLowerCase(); - - @override - String get storageName => "matchmaker"; - - @override - String get defaultHost => kDefaultMatchmakerHost; - - @override - int get defaultPort => kDefaultMatchmakerPort; - - @override - Future get isPortFree => isMatchmakerPortFree(); - - @override - Future freePort() => freeMatchmakerPort(); - - @override - RebootPageType get pageType => RebootPageType.matchmaker; - - @override - Future startEmbeddedInternal() => startEmbeddedMatchmaker(); - - @override - Future pingServer(String host, int port) => pingMatchmaker(host, port); -} \ No newline at end of file diff --git a/gui/lib/src/controller/server_controller.dart b/gui/lib/src/controller/server_controller.dart deleted file mode 100644 index 5f8ac6e..0000000 --- a/gui/lib/src/controller/server_controller.dart +++ /dev/null @@ -1,225 +0,0 @@ -import 'dart:async'; -import 'dart:io'; - -import 'package:fluent_ui/fluent_ui.dart'; -import 'package:get/get.dart'; -import 'package:get_storage/get_storage.dart'; -import 'package:reboot_common/common.dart'; -import 'package:reboot_launcher/src/page/abstract/page_type.dart'; -import 'package:sync/semaphore.dart'; - -abstract class ServerController extends GetxController { - late final GetStorage storage; - late final TextEditingController host; - late final TextEditingController port; - late final Rx type; - late final Semaphore semaphore; - late RxBool started; - StreamSubscription? worker; - HttpServer? localServer; - HttpServer? remoteServer; - - ServerController() { - storage = GetStorage(storageName); - started = RxBool(false); - type = Rx(ServerType.values.elementAt(storage.read("type") ?? 0)); - type.listen((value) { - host.text = _readHost(); - port.text = _readPort(); - storage.write("type", value.index); - if (!started.value) { - return; - } - - stop(); - }); - host = TextEditingController(text: _readHost()); - host.addListener(() => - storage.write("${type.value.name}_host", host.text)); - port = TextEditingController(text: _readPort()); - port.addListener(() => - storage.write("${type.value.name}_port", port.text)); - semaphore = Semaphore(); - } - - String get controllerName; - - String get storageName; - - String get defaultHost; - - int get defaultPort; - - Future pingServer(String host, int port); - - Future get isPortFree; - - Future get isPortTaken async => !(await isPortFree); - - RebootPageType get pageType; - - Future freePort(); - - @protected - Future startEmbeddedInternal(); - - void reset() async { - type.value = ServerType.values.elementAt(0); - for (final type in ServerType.values) { - storage.write("${type.name}_host", null); - storage.write("${type.name}_port", null); - } - - host.text = type.value != ServerType.remote ? defaultHost : ""; - port.text = defaultPort.toString(); - detached.value = false; - } - - String _readHost() { - String? value = storage.read("${type.value.name}_host"); - return value != null && value.isNotEmpty ? value - : type.value != ServerType.remote ? defaultHost : ""; - } - - String _readPort() => - storage.read("${type.value.name}_port") ?? defaultPort.toString(); - - Stream start() async* { - try { - if(started.value) { - return; - } - - final hostData = this.host.text.trim(); - final portData = this.port.text.trim(); - if(type() != ServerType.local) { - started.value = true; - yield ServerResult(ServerResultType.starting); - }else { - started.value = false; - if(portData != defaultPort.toString()) { - yield ServerResult(ServerResultType.starting); - } - } - - if (hostData.isEmpty) { - yield ServerResult(ServerResultType.missingHostError); - started.value = false; - return; - } - - if (portData.isEmpty) { - yield ServerResult(ServerResultType.missingPortError); - started.value = false; - return; - } - - final portNumber = int.tryParse(portData); - if (portNumber == null) { - yield ServerResult(ServerResultType.illegalPortError); - started.value = false; - return; - } - - if ((type() != ServerType.local || portData != defaultPort.toString()) && await isPortTaken) { - yield ServerResult(ServerResultType.freeingPort); - final result = await freePort(); - yield ServerResult(result ? ServerResultType.freePortSuccess : ServerResultType.freePortError); - if(!result) { - started.value = false; - return; - } - } - - switch(type()){ - case ServerType.embedded: - final process = await startEmbeddedInternal(); - final processPid = process.pid; - watchProcess(processPid).then((value) { - if(started()) { - started.value = false; - } - }); - break; - case ServerType.remote: - yield ServerResult(ServerResultType.pingingRemote); - final uriResult = await pingServer(hostData, portNumber); - if(uriResult == null) { - yield ServerResult(ServerResultType.pingError); - started.value = false; - return; - } - - remoteServer = await startRemoteBackendProxy(uriResult); - break; - case ServerType.local: - if(portData != defaultPort.toString()) { - localServer = await startRemoteBackendProxy(Uri.parse("http://$defaultHost:$portData")); - } - - break; - } - - yield ServerResult(ServerResultType.pingingLocal); - final uriResult = await pingServer(defaultHost, defaultPort); - if(uriResult == null) { - yield ServerResult(ServerResultType.pingError); - remoteServer?.close(force: true); - localServer?.close(force: true); - started.value = false; - return; - } - - yield ServerResult(ServerResultType.startSuccess); - }catch(error, stackTrace) { - yield ServerResult( - ServerResultType.startError, - error: error, - stackTrace: stackTrace - ); - remoteServer?.close(force: true); - localServer?.close(force: true); - started.value = false; - } - } - - Stream stop() async* { - if(!started.value) { - return; - } - - yield ServerResult(ServerResultType.stopping); - started.value = false; - try{ - switch(type()){ - case ServerType.embedded: - killProcessByPort(defaultPort); - break; - case ServerType.remote: - await remoteServer?.close(force: true); - remoteServer = null; - break; - case ServerType.local: - await localServer?.close(force: true); - localServer = null; - break; - } - yield ServerResult(ServerResultType.stopSuccess); - }catch(error, stackTrace){ - yield ServerResult( - ServerResultType.stopError, - error: error, - stackTrace: stackTrace - ); - started.value = true; - } - } - - Stream toggle() async* { - if(started()) { - yield* stop(); - }else { - yield* start(); - } - } -} \ No newline at end of file diff --git a/gui/lib/src/controller/update_controller.dart b/gui/lib/src/controller/update_controller.dart index c836d06..dc75387 100644 --- a/gui/lib/src/controller/update_controller.dart +++ b/gui/lib/src/controller/update_controller.dart @@ -1,9 +1,14 @@ import 'package:fluent_ui/fluent_ui.dart'; import 'package:get/get.dart'; import 'package:get_storage/get_storage.dart'; +import 'package:http/http.dart' as http; import 'package:reboot_common/common.dart'; +import 'package:reboot_launcher/main.dart'; import 'package:reboot_launcher/src/dialog/abstract/info_bar.dart'; import 'package:reboot_launcher/src/util/translations.dart'; +import 'package:url_launcher/url_launcher.dart'; +import 'package:version/version.dart'; +import 'package:yaml/yaml.dart'; class UpdateController { late final GetStorage _storage; @@ -11,6 +16,7 @@ class UpdateController { late final Rx status; late final Rx timer; late final TextEditingController url; + late final RxBool customGameServer; InfoBarEntry? infoBarEntry; Future? _updater; @@ -19,25 +25,63 @@ class UpdateController { timestamp = RxnInt(_storage.read("ts")); timestamp.listen((value) => _storage.write("ts", value)); var timerIndex = _storage.read("timer"); - timer = Rx(timerIndex == null ? UpdateTimer.day : UpdateTimer.values.elementAt(timerIndex)); + timer = Rx(timerIndex == null ? UpdateTimer.hour : UpdateTimer.values.elementAt(timerIndex)); timer.listen((value) => _storage.write("timer", value.index)); url = TextEditingController(text: _storage.read("update_url") ?? kRebootDownloadUrl); url.addListener(() => _storage.write("update_url", url.text)); status = Rx(UpdateStatus.waiting); + customGameServer = RxBool(_storage.read("custom_game_server") ?? false); + customGameServer.listen((value) => _storage.write("custom_game_server", value)); } - Future update([bool force = false]) async { + Future notifyLauncherUpdate() async { + if(appVersion == null) { + return; + } + + final pubspecResponse = await http.get(Uri.parse("https://raw.githubusercontent.com/Auties00/reboot_launcher/master/gui/pubspec.yaml")); + if(pubspecResponse.statusCode != 200) { + return; + } + + final pubspec = loadYaml(pubspecResponse.body); + final latestVersion = Version.parse(pubspec["version"]); + if(latestVersion <= appVersion) { + return; + } + + late InfoBarEntry infoBar; + infoBar = showInfoBar( + translations.updateAvailable(latestVersion.toString()), + duration: null, + severity: InfoBarSeverity.warning, + action: Button( + child: Text(translations.updateAvailableAction), + onPressed: () { + infoBar.close(); + launchUrl(Uri.parse("https://github.com/Auties00/reboot_launcher/releases")); + }, + ) + ); + } + + Future updateReboot([bool force = false]) async { if(_updater != null) { return await _updater; } - final result = _update(force); + final result = _updateReboot(force); _updater = result; return await result; } - Future _update([bool force = false]) async { + Future _updateReboot([bool force = false]) async { try { + if(customGameServer.value) { + status.value = UpdateStatus.success; + return; + } + final needsUpdate = await hasRebootDllUpdate( timestamp.value, hours: timer.value.hours, @@ -72,7 +116,7 @@ class UpdateController { duration: infoBarLongDuration, severity: InfoBarSeverity.error, action: Button( - onPressed: () => update(true), + onPressed: () => updateReboot(true), child: Text(translations.downloadDllRetry), ) ); @@ -86,7 +130,8 @@ class UpdateController { timer.value = UpdateTimer.never; url.text = kRebootDownloadUrl; status.value = UpdateStatus.waiting; - update(); + customGameServer.value = false; + updateReboot(); } } diff --git a/gui/lib/src/dialog/implementation/server.dart b/gui/lib/src/dialog/implementation/server.dart index db507f9..3b2bf7d 100644 --- a/gui/lib/src/dialog/implementation/server.dart +++ b/gui/lib/src/dialog/implementation/server.dart @@ -6,9 +6,8 @@ import 'package:fluent_ui/fluent_ui.dart' hide FluentIcons; import 'package:fluentui_system_icons/fluentui_system_icons.dart'; import 'package:get/get.dart'; import 'package:reboot_common/common.dart'; +import 'package:reboot_launcher/src/controller/backend_controller.dart'; import 'package:reboot_launcher/src/controller/hosting_controller.dart'; -import 'package:reboot_launcher/src/controller/matchmaker_controller.dart'; -import 'package:reboot_launcher/src/controller/server_controller.dart'; import 'package:reboot_launcher/src/dialog/abstract/dialog.dart'; import 'package:reboot_launcher/src/dialog/abstract/dialog_button.dart'; import 'package:reboot_launcher/src/dialog/abstract/info_bar.dart'; @@ -19,7 +18,9 @@ import 'package:reboot_launcher/src/util/translations.dart'; import 'package:supabase_flutter/supabase_flutter.dart'; import 'package:sync/semaphore.dart'; -extension ServerControllerDialog on ServerController { +final Semaphore _publishingSemaphore = Semaphore(); + +extension ServerControllerDialog on BackendController { Future toggleInteractive() async { final stream = toggle(); final completer = Completer(); @@ -41,19 +42,19 @@ extension ServerControllerDialog on ServerController { switch (event.type) { case ServerResultType.starting: return showInfoBar( - translations.startingServer(controllerName), + translations.startingServer, severity: InfoBarSeverity.info, loading: true, duration: null ); case ServerResultType.startSuccess: return showInfoBar( - type.value == ServerType.local ? translations.checkedServer(controllerName) : translations.startedServer(controllerName), + type.value == ServerType.local ? translations.checkedServer : translations.startedServer, severity: InfoBarSeverity.success ); case ServerResultType.startError: return showInfoBar( - type.value == ServerType.local ? translations.localServerError(event.error ?? translations.unknownError, controllerName) : translations.startServerError(event.error ?? translations.unknownError, controllerName), + type.value == ServerType.local ? translations.localServerError(event.error ?? translations.unknownError) : translations.startServerError(event.error ?? translations.unknownError), severity: InfoBarSeverity.error, duration: infoBarLongDuration ); @@ -66,75 +67,70 @@ extension ServerControllerDialog on ServerController { ); case ServerResultType.stopSuccess: return showInfoBar( - translations.stoppedServer(controllerName), + translations.stoppedServer, severity: InfoBarSeverity.success ); case ServerResultType.stopError: return showInfoBar( - translations.stopServerError( - event.error ?? translations.unknownError, controllerName), + translations.stopServerError(event.error ?? translations.unknownError), severity: InfoBarSeverity.error, duration: infoBarLongDuration ); case ServerResultType.missingHostError: return showInfoBar( - translations.missingHostNameError(controllerName), + translations.missingHostNameError, severity: InfoBarSeverity.error ); case ServerResultType.missingPortError: return showInfoBar( - translations.missingPortError(controllerName), + translations.missingPortError, severity: InfoBarSeverity.error ); case ServerResultType.illegalPortError: return showInfoBar( - translations.illegalPortError(controllerName), + translations.illegalPortError, severity: InfoBarSeverity.error ); case ServerResultType.freeingPort: return showInfoBar( - translations.freeingPort(defaultPort), + translations.freeingPort, loading: true, duration: null ); case ServerResultType.freePortSuccess: return showInfoBar( - translations.freedPort(defaultPort), + translations.freedPort, severity: InfoBarSeverity.success, duration: infoBarShortDuration ); case ServerResultType.freePortError: return showInfoBar( - translations.freePortError(event.error ?? translations.unknownError, controllerName), + translations.freePortError(event.error ?? translations.unknownError), severity: InfoBarSeverity.error, duration: infoBarLongDuration ); case ServerResultType.pingingRemote: return showInfoBar( - translations.pingingRemoteServer(controllerName), + translations.pingingRemoteServer, severity: InfoBarSeverity.info, loading: true, duration: null ); case ServerResultType.pingingLocal: return showInfoBar( - translations.pingingLocalServer(controllerName, type().name), + translations.pingingLocalServer(type.value.name), severity: InfoBarSeverity.info, loading: true, duration: null ); case ServerResultType.pingError: return showInfoBar( - translations.pingError(controllerName, type().name), + translations.pingError(type.value.name), severity: InfoBarSeverity.error ); } } -} -final Semaphore _publishingSemaphore = Semaphore(); - -extension MatchmakerControllerExtension on MatchmakerController { void joinLocalHost() { gameServerAddress.text = kDefaultGameServerHost; gameServerOwner.value = null; diff --git a/gui/lib/src/page/abstract/page_type.dart b/gui/lib/src/page/abstract/page_type.dart index d78d8fd..9ae2588 100644 --- a/gui/lib/src/page/abstract/page_type.dart +++ b/gui/lib/src/page/abstract/page_type.dart @@ -3,7 +3,6 @@ enum RebootPageType { host, browser, backend, - matchmaker, info, settings } \ No newline at end of file diff --git a/gui/lib/src/page/implementation/backend_page.dart b/gui/lib/src/page/implementation/backend_page.dart index 94758e3..1b3981c 100644 --- a/gui/lib/src/page/implementation/backend_page.dart +++ b/gui/lib/src/page/implementation/backend_page.dart @@ -9,7 +9,6 @@ import 'package:reboot_launcher/src/controller/game_controller.dart'; import 'package:reboot_launcher/src/dialog/abstract/info_bar.dart'; import 'package:reboot_launcher/src/page/abstract/page.dart'; import 'package:reboot_launcher/src/page/abstract/page_type.dart'; -import 'package:reboot_launcher/src/page/pages.dart'; import 'package:reboot_launcher/src/util/keyboard.dart'; import 'package:reboot_launcher/src/util/translations.dart'; import 'package:reboot_launcher/src/widget/server_start_button.dart'; @@ -67,12 +66,32 @@ class _BackendPageState extends RebootPageState { _type, _hostName, _port, - _detached, + _gameServerAddress, _unrealEngineConsoleKey, + _detached, _installationDirectory, _resetDefaults ]; + Widget get _gameServerAddress => Obx(() { + if(_backendController.type.value != ServerType.embedded) { + return const SizedBox.shrink(); + } + + return SettingTile( + icon: Icon( + FluentIcons.stream_input_20_regular + ), + title: Text(translations.matchmakerConfigurationAddressName), + subtitle: Text(translations.matchmakerConfigurationAddressDescription), + content: TextFormBox( + placeholder: translations.matchmakerConfigurationAddressName, + controller: _backendController.gameServerAddress, + focusNode: _backendController.gameServerAddressFocusNode + ) + ); + }); + Widget get _hostName => Obx(() { if(_backendController.type.value != ServerType.remote) { return const SizedBox.shrink(); @@ -202,13 +221,9 @@ class _BackendPageState extends RebootPageState { ), title: Text(translations.backendTypeName), subtitle: Text(translations.backendTypeDescription), - content: const ServerTypeSelector( - backend: true - ) + content: const ServerTypeSelector() ); @override - Widget get button => const ServerButton( - backend: true - ); + Widget get button => const ServerButton(); } diff --git a/gui/lib/src/page/implementation/home_page.dart b/gui/lib/src/page/implementation/home_page.dart index 76b1d47..f052faa 100644 --- a/gui/lib/src/page/implementation/home_page.dart +++ b/gui/lib/src/page/implementation/home_page.dart @@ -47,7 +47,8 @@ class _HomePageState extends State with WindowListener, AutomaticKeepA void initState() { windowManager.addListener(this); WidgetsBinding.instance.addPostFrameCallback((_) { - _updateController.update(); + _updateController.notifyLauncherUpdate(); + _updateController.updateReboot(); watchDlls().listen((filePath) => showDllDeletedDialog(() { downloadCriticalDllInteractive(filePath); })); diff --git a/gui/lib/src/page/implementation/info_page.dart b/gui/lib/src/page/implementation/info_page.dart index b617528..b1f846d 100644 --- a/gui/lib/src/page/implementation/info_page.dart +++ b/gui/lib/src/page/implementation/info_page.dart @@ -6,8 +6,8 @@ import 'package:reboot_launcher/src/controller/settings_controller.dart'; import 'package:reboot_launcher/src/page/abstract/page.dart'; import 'package:reboot_launcher/src/page/abstract/page_type.dart'; import 'package:reboot_launcher/src/page/pages.dart'; +import 'package:reboot_launcher/src/util/info.dart'; import 'package:reboot_launcher/src/util/translations.dart'; -import 'package:reboot_launcher/src/widget/info_tile.dart'; class InfoPage extends RebootPage { const InfoPage({Key? key}) : super(key: key); @@ -32,153 +32,6 @@ class _InfoPageState extends RebootPageState { final SettingsController _settingsController = Get.find(); RxInt _counter = RxInt(180); - static final List _infoTiles = [ - InfoTile( - title: Text("What is Project Reboot?"), - content: Text( - "Project Reboot is a game server for Fortnite that aims to support as many seasons as possible.\n" - "The project was started on Discord by Milxnor, while the launcher is developed by Auties00.\n" - "Both are open source on GitHub, anyone can easily contribute or audit the code!" - ) - ), - InfoTile( - title: Text("What is a Fortnite game server?"), - content: Text( - "If you have ever played Minecraft multiplayer, you might know that the servers you join are hosted on a computer running a program, called Minecraft Game Server.\n" - "While the Minecraft Game server is written by the creators of Minecraft, Mojang, Epic Games doesn't provide an equivalent for Fortnite.\n" - "By exploiting the Fortnite internals, though, it's possible to create a game server just like in Minecraft: this is in easy terms what Project Reboot does.\n" - "Some Fortnite versions support running this game server in the background without rendering the game(\"headless\"), while others still require the full game to be open.\n" - "Just like in Minecraft, you need a game client to play the game and one to host the server.\n" - "By default, a game server is automatically started on your PC when you start a Fortnite version from the \"Play\" section in the launcher.\n" - "If you want to play in another way, for example by joining a server hosted by one of your friends instead of running one yourself, you can checkout the \"Multiplayer\" section in the \"Play\" tab of the launcher." - ) - ), - InfoTile( - title: Text("Types of Fortnite game server"), - content: Text( - "Some Fortnite versions support running this game server in the background without rendering the game: this type of server is called \"headless\" as the game is running, but you can't see it on your screen.\n" - "If headless is not supported by the Fortnite version you want to play, or if you disabled it manually from the \"Configuration\" section in the \"Host\" tab of the launcher, you will see an instance of Fortnite open on your screen.\n" - "For convenience, this window will be opened on a new Virtual Desktop, if your Windows version supports it. This feature can be disabled as well from from the \"Configuration\" section in the \"Host\" tab of the launcher." - "Just like in Minecraft, you need a game client to play the game and one to host the server." - ) - ), - InfoTile( - title: Text("How can others join my game server?"), - content: Text( - "For others to join your game server, port 7777 must be accessible on your PC.\n" - "One option is to use a private VPN service like Hamachi or Radmin, but all of the players will need to download this software.\n" - "The best solution is to use port forwarding:\n" - "1. Set a static IP\n" - " If you don't have already a static IP set, set one by following any tutorial on Google\n" - "2. Log into your router's admin panel\n" - " Usually this can be accessed on any web browser by going to http://192.168.1.1/\n" - " You might need a username and a password to log in: refer to your router's manual for precise instructions\n" - "3. Find the port forwarding section\n" - " Once logged in into the admin panel, navigate to the port forwarding section of your router's settings\n" - " This location may vary from router to router, but it's typically labelled as \"Port Forwarding,\" \"Port Mapping\" or \"Virtual Server\"\n" - " Refer to your router's manual for precise instructions\n" - "4. Add a port forwarding rule\n" - " Now, you'll need to create a new port forwarding rule. Here's what you'll typically need to specify:\n" - " - Service Name: Choose a name for your port forwarding rule (e.g., \"Fortnite Game Server\")\n" - " - Port Number: Enter 7777 for both the external and internal ports\n" - " - Protocol: Select the UDP protocol\n" - " - Internal IP Address: Enter the static IP address you set earlier\n" - " - Enable: Make sure the port forwarding rule is enabled\n" - "5. Save and apply the changes\n" - " After configuring the port forwarding rule, save your changes and apply them\n" - " This step may involve clicking a \"Save\" or \"Apply\" button on your router's web interface" - ) - ), - InfoTile( - title: Text("What is a backend?"), - content: Text( - "A backend is a piece of software that emulates the Epic Games server responsible for authentication and related features.\n" - "By default, the Reboot Launcher ships with a slightly customized version of LawinV1, an open source implementation available on Github.\n" - "If you are having any problems with the built in backend, enable the \"Detached\" option in the \"Backend\" tab of the Reboot Laucher to troubleshoot the issue." - "LawinV1 was chosen to allow users to log into Fortnite and join games easily, but keep in mind that if you want to use features such as parties, voice chat or skins, you will need to use a custom backend.\n" - "Other popular options are LawinV2 and Momentum, both available on Github, but it's not recommended to use them if you are not an advanced user.\n" - "You can run these alternatives either either on your PC or on a server by selecting respectively \"Local\" or \"Remote\" from the \"Type\" section in the \"Backend\" tab of the Reboot Launcher." - ) - ), - InfoTile( - title: Text("What is the Unreal Engine console?"), - content: Text( - "Many Fortnite versions don't support entering in game by clicking the \"Play\" button.\n" - "Instead, you need to click the key assigned to the Unreal Engine console, by default F8 or the tilde(the button above tab), and type open 127.0.0.1\n" - "Keep in mind that the Unreal Engine console key is controlled by the backend, so this is true only if you are using the embedded backend: custom backends might use different keys.\n" - "When using the embedded backend, you can customize the key used to open the console in the \"Backend\" tab of the Reboot Launcher." - ) - ), - InfoTile( - title: Text("What is a matchmaker?"), - content: Text( - "A matchmaker is a piece of software that emulates the Epic Games server responsible for putting you in game when you click the \"Play\" button in Fortnite.\n" - "By default, the Reboot Launcher ships with a slightly customized version of Lawin's FortMatchmaker, an open source implementation available on Github.\n" - "If you are having any problems with the built in matchmaker, enable the \"Detached\" option in the \"Matchmaker\" tab of the Reboot Launcher to troubleshoot the issue.\n" - "Lawin's FortMatchmaker is an extremely basic implementation of a matchmaker: it takes the IP you configured in the \"Matchmaker\" tab, by default 127.0.0.1(your local machine) of the Reboot Launcher and send you with no wait to that game server.\n" - "Unfortunately right now the play button still doesn't work on many Fortnite versions, you so might need to use the Unreal Engine console.\n" - "Just like a backend, you can run a custom matchmaker, either on your PC or on a server with the appropriate configuration." - ) - ), - InfoTile( - title: Text("The backend is not working correctly"), - content: Text( - "To resolve this issue:\n" - "- Check that your backend is working correctly from the \"Backend\" tab\n" - "- If you are using a custom backend, try to use the embedded one\n" - "- Try to run the backend as detached by enabling the \"Detached\" option in the \"Backend\" tab" - ) - ), - InfoTile( - title: Text("The matchmaker is not working correctly"), - content: Text( - "To resolve this issue:\n" - "- Check that your matchmaker is working correctly from the \"Matchmaker\" tab\n" - "- If you are using a custom matchmaker, try to use the embedded one\n" - "- Try to run the matchmaker as detached by enabling the \"Detached\" option in the \"Matchmaker\" tab" - ) - ), - InfoTile( - title: Text("Why do I see two Fortnite versions opened on my PC?"), - content: Text( - "As explained in the \"What is a Fortnite game server?\" section, one instance of Fortnite is used to host the game server, while the other is used to let you play.\n" - "The Fortnite instance used up by the game server is usually frozen, so it should be hard to use the wrong one to try to play.\n" - "If you do not want to host a game server yourself, you can:\n" - "1. Set a custom IP in the \"Matchmaker\" tab\n" - "2. Set a custom matchmaker in the \"Matchmaker\" tab\n" - "3. Disable the automatic game server from the \"Configuration\" section in the \"Host\" tab\n" - ) - ), - InfoTile( - title: Text("I cannot open Fortnite because of an authentication error"), - content: Text( - "To resolve this issue:\n" - "- Check that your backend is working correctly from the \"Backend\" tab\n" - "- If you are using a custom backend, try to use the embedded one\n" - "- Try to run the backend as detached by enabling the \"Detached\" option in the \"Backend\" tab" - ) - ), - InfoTile( - title: Text("I cannot enter in a match when I'm in Fortnite"), - content: Text( - "As explained in the \"What is the Unreal Engine console?\" section, the \"Play\" button doesn't work in many Fortnite versions.\n" - "Instead, you need to click the key assigned to the Unreal Engine console, by default F8 or the tilde(the button above tab), and type open 127.0.0.1" - ) - ), - InfoTile( - title: Text("An error occurred while downloading a build (DioException)"), - content: Text( - "Unfortunately the servers that host the Fortnite builds are not reliable all the time so it might take a few tries, or downloading another version, to get started" - ) - ), - InfoTile( - title: Text("Failed to open descriptor file / Fortnite crash Reporter / Unreal Engine crash reporter"), - content: Text( - "Your version of Fortnite is corrupted, download it again from the launcher or use another build." - ) - ), - ]; - @override void initState() { if(_settingsController.firstRun.value) { @@ -195,7 +48,7 @@ class _InfoPageState extends RebootPageState { } @override - List get settings => _infoTiles; + List get settings => infoTiles; @override Widget? get button => Obx(() { diff --git a/gui/lib/src/page/implementation/matchmaker_page.dart b/gui/lib/src/page/implementation/matchmaker_page.dart deleted file mode 100644 index 0d00043..0000000 --- a/gui/lib/src/page/implementation/matchmaker_page.dart +++ /dev/null @@ -1,153 +0,0 @@ -import 'package:fluent_ui/fluent_ui.dart' as fluentUi show FluentIcons; -import 'package:fluent_ui/fluent_ui.dart' hide FluentIcons; -import 'package:fluentui_system_icons/fluentui_system_icons.dart'; -import 'package:flutter/services.dart'; -import 'package:get/get.dart'; -import 'package:reboot_common/common.dart'; -import 'package:reboot_launcher/src/controller/matchmaker_controller.dart'; -import 'package:reboot_launcher/src/dialog/implementation/data.dart'; -import 'package:reboot_launcher/src/page/abstract/page.dart'; -import 'package:reboot_launcher/src/page/abstract/page_type.dart'; -import 'package:reboot_launcher/src/util/translations.dart'; -import 'package:reboot_launcher/src/widget/server_start_button.dart'; -import 'package:reboot_launcher/src/widget/server_type_selector.dart'; -import 'package:reboot_launcher/src/widget/setting_tile.dart'; -import 'package:url_launcher/url_launcher.dart'; - -class MatchmakerPage extends RebootPage { - const MatchmakerPage({Key? key}) : super(key: key); - - @override - RebootPageState createState() => _MatchmakerPageState(); - - @override - String get name => translations.matchmakerName; - - @override - String get iconAsset => "assets/images/matchmaker.png"; - - @override - bool hasButton(String? pageName) => pageName == null; - - @override - RebootPageType get type => RebootPageType.matchmaker; -} - -class _MatchmakerPageState extends RebootPageState { - final MatchmakerController _matchmakerController = Get.find(); - - @override - Widget? get button => const ServerButton( - backend: false - ); - - @override - List get settings => [ - _type, - _hostName, - _port, - _gameServerAddress, - _installationDirectory, - _resetDefaults - ]; - - Widget get _gameServerAddress => Obx(() { - if(_matchmakerController.type.value != ServerType.embedded) { - return const SizedBox.shrink(); - } - - return SettingTile( - icon: Icon( - FluentIcons.stream_input_20_regular - ), - title: Text(translations.matchmakerConfigurationAddressName), - subtitle: Text(translations.matchmakerConfigurationAddressDescription), - content: TextFormBox( - placeholder: translations.matchmakerConfigurationAddressName, - controller: _matchmakerController.gameServerAddress, - focusNode: _matchmakerController.gameServerAddressFocusNode - ) - ); - }); - - Widget get _port => Obx(() { - if(_matchmakerController.type.value == ServerType.embedded) { - return const SizedBox.shrink(); - } - - return SettingTile( - icon: Icon( - fluentUi.FluentIcons.number_field - ), - title: Text(translations.matchmakerConfigurationPortName), - subtitle: Text(translations.matchmakerConfigurationPortDescription), - content: TextFormBox( - placeholder: translations.matchmakerConfigurationPortName, - controller: _matchmakerController.port, - keyboardType: TextInputType.number, - inputFormatters: [ - FilteringTextInputFormatter.digitsOnly - ] - ) - ); - }); - - Widget get _hostName => Obx(() { - if(_matchmakerController.type.value != ServerType.remote) { - return const SizedBox.shrink(); - } - - return SettingTile( - icon: Icon( - FluentIcons.globe_24_regular - ), - title: Text(translations.matchmakerConfigurationHostName), - subtitle: Text(translations.matchmakerConfigurationHostDescription), - content: TextFormBox( - placeholder: translations.matchmakerConfigurationHostName, - controller: _matchmakerController.host - ) - ); - }); - - Widget get _type => SettingTile( - icon: Icon( - FluentIcons.people_24_regular - ), - title: Text(translations.matchmakerTypeName), - subtitle: Text(translations.matchmakerTypeDescription), - content: const ServerTypeSelector( - backend: false - ) - ); - - Widget get _installationDirectory => Obx(() { - if(_matchmakerController.type.value != ServerType.embedded) { - return const SizedBox.shrink(); - } - - return SettingTile( - icon: Icon( - FluentIcons.folder_24_regular - ), - title: Text(translations.matchmakerInstallationDirectoryName), - subtitle: Text(translations.matchmakerInstallationDirectoryDescription), - content: Button( - onPressed: () => launchUrl(matchmakerDirectory.uri), - child: Text(translations.matchmakerInstallationDirectoryContent) - ) - ); - }); - - SettingTile get _resetDefaults => SettingTile( - icon: Icon( - FluentIcons.arrow_reset_24_regular - ), - title: Text(translations.matchmakerResetDefaultsName), - subtitle: Text(translations.matchmakerResetDefaultsDescription), - content: Button( - onPressed: () => showResetDialog(_matchmakerController.reset), - child: Text(translations.matchmakerResetDefaultsContent), - ) - ); -} diff --git a/gui/lib/src/page/implementation/play_page.dart b/gui/lib/src/page/implementation/play_page.dart index 2561d8e..fc0760e 100644 --- a/gui/lib/src/page/implementation/play_page.dart +++ b/gui/lib/src/page/implementation/play_page.dart @@ -1,17 +1,12 @@ import 'package:fluent_ui/fluent_ui.dart' hide FluentIcons; import 'package:fluentui_system_icons/fluentui_system_icons.dart'; -import 'package:flutter/services.dart'; import 'package:get/get.dart'; -import 'package:reboot_common/common.dart'; +import 'package:reboot_launcher/src/controller/backend_controller.dart'; import 'package:reboot_launcher/src/controller/game_controller.dart'; -import 'package:reboot_launcher/src/controller/hosting_controller.dart'; -import 'package:reboot_launcher/src/controller/matchmaker_controller.dart'; import 'package:reboot_launcher/src/controller/settings_controller.dart'; -import 'package:reboot_launcher/src/dialog/abstract/info_bar.dart'; import 'package:reboot_launcher/src/page/abstract/page.dart'; import 'package:reboot_launcher/src/page/abstract/page_type.dart'; import 'package:reboot_launcher/src/page/pages.dart'; -import 'package:reboot_launcher/src/util/keyboard.dart'; import 'package:reboot_launcher/src/util/translations.dart'; import 'package:reboot_launcher/src/widget/file_setting_tile.dart'; import 'package:reboot_launcher/src/widget/game_start_button.dart'; @@ -39,9 +34,9 @@ class PlayPage extends RebootPage { } class _PlayPageState extends RebootPageState { - final MatchmakerController _matchmakerController = Get.find(); final SettingsController _settingsController = Get.find(); final GameController _gameController = Get.find(); + final BackendController _backendController = Get.find(); @override Widget? get button => LaunchButton( @@ -52,8 +47,9 @@ class _PlayPageState extends RebootPageState { @override List get settings => [ - _clientSettings, versionSelectSettingTile, + _options, + _internalFiles, _multiplayer ]; @@ -70,7 +66,7 @@ class _PlayPageState extends RebootPageState { ], ); - SettingTile get _clientSettings => SettingTile( + SettingTile get _internalFiles => SettingTile( icon: Icon( FluentIcons.archive_settings_24_regular ), @@ -92,24 +88,34 @@ class _PlayPageState extends RebootPageState { description: translations.settingsClientMemoryDescription, controller: _settingsController.memoryLeakDll ), - SettingTile( - icon: Icon( - FluentIcons.options_24_regular - ), - title: Text(translations.settingsClientArgsName), - subtitle: Text(translations.settingsClientArgsDescription), - content: TextFormBox( - placeholder: translations.settingsClientArgsPlaceholder, - controller: _gameController.customLaunchArgs, - ) - ) ], ); + SettingTile get _options => SettingTile( + icon: Icon( + FluentIcons.options_24_regular + ), + title: Text(translations.settingsServerOptionsName), + subtitle: Text(translations.settingsServerOptionsSubtitle), + children: [ + SettingTile( + icon: Icon( + FluentIcons.options_24_regular + ), + title: Text(translations.settingsClientArgsName), + subtitle: Text(translations.settingsClientArgsDescription), + content: TextFormBox( + placeholder: translations.settingsClientArgsPlaceholder, + controller: _gameController.customLaunchArgs, + ) + ) + ] + ); + SettingTile get _matchmakerTile => SettingTile( onPressed: () { - pageIndex.value = RebootPageType.matchmaker.index; - WidgetsBinding.instance.addPostFrameCallback((_) => _matchmakerController.gameServerAddressFocusNode.requestFocus()); + pageIndex.value = RebootPageType.backend.index; + WidgetsBinding.instance.addPostFrameCallback((_) => _backendController.gameServerAddressFocusNode.requestFocus()); }, icon: Icon( FluentIcons.globe_24_regular diff --git a/gui/lib/src/page/implementation/server_browser_page.dart b/gui/lib/src/page/implementation/server_browser_page.dart index 1330a7e..f4349e5 100644 --- a/gui/lib/src/page/implementation/server_browser_page.dart +++ b/gui/lib/src/page/implementation/server_browser_page.dart @@ -5,8 +5,8 @@ import 'package:fluent_ui/fluent_ui.dart'; import 'package:flutter/foundation.dart'; import 'package:get/get.dart'; import 'package:reboot_common/common.dart'; +import 'package:reboot_launcher/src/controller/backend_controller.dart'; import 'package:reboot_launcher/src/controller/hosting_controller.dart'; -import 'package:reboot_launcher/src/controller/matchmaker_controller.dart'; import 'package:reboot_launcher/src/dialog/implementation/server.dart'; import 'package:reboot_launcher/src/page/abstract/page.dart'; import 'package:reboot_launcher/src/page/abstract/page_type.dart'; @@ -34,7 +34,7 @@ class BrowsePage extends RebootPage { class _BrowsePageState extends RebootPageState { final HostingController _hostingController = Get.find(); - final MatchmakerController _matchmakerController = Get.find(); + final BackendController _backendController = Get.find(); final TextEditingController _filterController = TextEditingController(); final StreamController _filterControllerStream = StreamController.broadcast(); @@ -98,11 +98,11 @@ class _BrowsePageState extends RebootPageState { title: Text("${_formatName(entry)} • ${entry["author"]}"), subtitle: Text("${_formatDescription(entry)} • ${_formatVersion(entry)}"), content: Button( - onPressed: () => _matchmakerController.joinServer(_hostingController.uuid, entry), + onPressed: () => _backendController.joinServer(_hostingController.uuid, entry), child: Row( mainAxisAlignment: MainAxisAlignment.center, children: [ - Text(_matchmakerController.type.value == ServerType.embedded ? translations.joinServer : translations.copyIp), + Text(_backendController.type.value == ServerType.embedded ? translations.joinServer : translations.copyIp), ], ), ) diff --git a/gui/lib/src/page/implementation/server_host_page.dart b/gui/lib/src/page/implementation/server_host_page.dart index b18389b..efc5734 100644 --- a/gui/lib/src/page/implementation/server_host_page.dart +++ b/gui/lib/src/page/implementation/server_host_page.dart @@ -1,5 +1,6 @@ import 'package:clipboard/clipboard.dart'; import 'package:dart_ipify/dart_ipify.dart'; +import 'package:fluent_ui/fluent_ui.dart' as fluentUi show FluentIcons; import 'package:fluent_ui/fluent_ui.dart' hide FluentIcons; import 'package:fluentui_system_icons/fluentui_system_icons.dart'; import 'package:flutter/services.dart'; @@ -20,7 +21,6 @@ import 'package:reboot_launcher/src/widget/file_setting_tile.dart'; import 'package:reboot_launcher/src/widget/game_start_button.dart'; import 'package:reboot_launcher/src/widget/setting_tile.dart'; import 'package:reboot_launcher/src/widget/version_selector_tile.dart'; -import 'package:fluent_ui/fluent_ui.dart' as fluentUi show FluentIcons; import '../../util/checks.dart'; @@ -72,8 +72,9 @@ class _HostingPageState extends RebootPageState { @override List get settings => [ _information, - _configuration, versionSelectSettingTile, + _options, + _internalFiles, _share, _resetDefaults ]; @@ -179,63 +180,104 @@ class _HostingPageState extends RebootPageState { ] ); - SettingTile get _configuration => SettingTile( + SettingTile get _internalFiles => SettingTile( icon: Icon( FluentIcons.archive_settings_24_regular ), title: Text(translations.settingsServerName), subtitle: Text(translations.settingsServerSubtitle), children: [ - createFileSetting( - title: translations.settingsServerFileName, - description: translations.settingsServerFileDescription, - controller: _settingsController.gameServerDll - ), - SettingTile( - icon: Icon( - fluentUi.FluentIcons.number_field - ), - title: Text(translations.settingsServerPortName), - subtitle: Text(translations.settingsServerPortDescription), - content: TextFormBox( - placeholder: translations.settingsServerPortName, - controller: _settingsController.gameServerPort, - keyboardType: TextInputType.number, - inputFormatters: [ - FilteringTextInputFormatter.digitsOnly - ] - ) - ), - SettingTile( - icon: Icon( - FluentIcons.globe_24_regular - ), - title: Text(translations.settingsServerMirrorName), - subtitle: Text(translations.settingsServerMirrorDescription), - content: TextFormBox( - placeholder: translations.settingsServerMirrorPlaceholder, - controller: _updateController.url, - validator: checkUpdateUrl - ) - ), SettingTile( icon: Icon( FluentIcons.timer_24_regular ), - title: Text(translations.settingsServerTimerName), - subtitle: Text(translations.settingsServerTimerSubtitle), + title: Text(translations.settingsServerTypeName), + subtitle: Text(translations.settingsServerTypeDescription), content: Obx(() => DropDownButton( - leading: Text(_updateController.timer.value.text), - items: UpdateTimer.values.map((entry) => MenuFlyoutItem( - text: Text(entry.text), + leading: Text(_updateController.customGameServer.value ? translations.settingsServerTypeCustomName : translations.settingsServerTypeEmbeddedName), + items: { + false: translations.settingsServerTypeEmbeddedName, + true: translations.settingsServerTypeCustomName + }.entries.map((entry) => MenuFlyoutItem( + text: Text(entry.value), onPressed: () { - _updateController.timer.value = entry; + final oldValue = _updateController.customGameServer.value; + if(oldValue == entry.key) { + return; + } + + _updateController.customGameServer.value = entry.key; _updateController.infoBarEntry?.close(); - _updateController.update(true); + if(!entry.key) { + _updateController.updateReboot(true); + } } )).toList() )) ), + Obx(() { + if(!_updateController.customGameServer.value) { + return const SizedBox.shrink(); + } + + return createFileSetting( + title: translations.settingsServerFileName, + description: translations.settingsServerFileDescription, + controller: _settingsController.gameServerDll + ); + }), + Obx(() { + if(_updateController.customGameServer.value) { + return const SizedBox.shrink(); + } + + return SettingTile( + icon: Icon( + FluentIcons.globe_24_regular + ), + title: Text(translations.settingsServerMirrorName), + subtitle: Text(translations.settingsServerMirrorDescription), + content: TextFormBox( + placeholder: translations.settingsServerMirrorPlaceholder, + controller: _updateController.url, + validator: checkUpdateUrl + ) + ); + }), + Obx(() { + if(_updateController.customGameServer.value) { + return const SizedBox.shrink(); + } + + return SettingTile( + icon: Icon( + FluentIcons.timer_24_regular + ), + title: Text(translations.settingsServerTimerName), + subtitle: Text(translations.settingsServerTimerSubtitle), + content: Obx(() => DropDownButton( + leading: Text(_updateController.timer.value.text), + items: UpdateTimer.values.map((entry) => MenuFlyoutItem( + text: Text(entry.text), + onPressed: () { + _updateController.timer.value = entry; + _updateController.infoBarEntry?.close(); + _updateController.updateReboot(true); + } + )).toList() + )) + ); + }), + ], + ); + + SettingTile get _options => SettingTile( + icon: Icon( + FluentIcons.options_24_regular + ), + title: Text(translations.settingsServerOptionsName), + subtitle: Text(translations.settingsServerOptionsSubtitle), + children: [ Obx(() => SettingTile( icon: Icon( FluentIcons.window_console_20_regular @@ -280,6 +322,45 @@ class _HostingPageState extends RebootPageState { ], ), )), + Obx(() => SettingTile( + icon: Icon( + FluentIcons.arrow_reset_24_regular + ), + title: Text(translations.hostAutomaticRestartName), + subtitle: Text(translations.hostAutomaticRestartDescription), + contentWidth: null, + content: Row( + children: [ + Text( + _hostingController.autoRestart.value ? translations.on : translations.off + ), + const SizedBox( + width: 16.0 + ), + ToggleSwitch( + checked: _hostingController.autoRestart.value, + onChanged: (value) => _hostingController.autoRestart.value = value + ), + ], + ), + )), + SettingTile( + icon: Icon( + fluentUi.FluentIcons.number_field + ), + title: Text(translations.settingsServerPortName), + subtitle: Text(translations.settingsServerPortDescription), + contentWidth: 64, + content: TextFormBox( + placeholder: translations.settingsServerPortName, + controller: _settingsController.gameServerPort, + keyboardType: TextInputType.number, + textAlign: TextAlign.center, + inputFormatters: [ + FilteringTextInputFormatter.digitsOnly + ] + ) + ), ], ); diff --git a/gui/lib/src/page/implementation/settings_page.dart b/gui/lib/src/page/implementation/settings_page.dart index c0264c9..8bc2284 100644 --- a/gui/lib/src/page/implementation/settings_page.dart +++ b/gui/lib/src/page/implementation/settings_page.dart @@ -1,19 +1,13 @@ -import 'dart:io'; - -import 'package:archive/archive_io.dart'; import 'package:fluent_ui/fluent_ui.dart' hide FluentIcons; import 'package:fluentui_system_icons/fluentui_system_icons.dart'; -import 'package:flutter/foundation.dart'; import 'package:flutter_gen/gen_l10n/reboot_localizations.dart'; import 'package:flutter_localized_locales/flutter_localized_locales.dart'; import 'package:get/get.dart'; import 'package:reboot_common/common.dart'; import 'package:reboot_launcher/src/controller/settings_controller.dart'; -import 'package:reboot_launcher/src/dialog/abstract/info_bar.dart'; import 'package:reboot_launcher/src/dialog/implementation/data.dart'; import 'package:reboot_launcher/src/page/abstract/page.dart'; import 'package:reboot_launcher/src/page/abstract/page_type.dart'; -import 'package:reboot_launcher/src/util/picker.dart'; import 'package:reboot_launcher/src/util/translations.dart'; import 'package:reboot_launcher/src/widget/setting_tile.dart'; import 'package:url_launcher/url_launcher.dart'; diff --git a/gui/lib/src/page/pages.dart b/gui/lib/src/page/pages.dart index edcfe6d..e4c07a0 100644 --- a/gui/lib/src/page/pages.dart +++ b/gui/lib/src/page/pages.dart @@ -3,13 +3,11 @@ import 'dart:collection'; import 'package:fluent_ui/fluent_ui.dart'; import 'package:get/get.dart'; -import 'package:get/get_rx/src/rx_types/rx_types.dart'; import 'package:reboot_launcher/src/controller/settings_controller.dart'; import 'package:reboot_launcher/src/page/abstract/page.dart'; import 'package:reboot_launcher/src/page/abstract/page_type.dart'; import 'package:reboot_launcher/src/page/implementation/backend_page.dart'; import 'package:reboot_launcher/src/page/implementation/info_page.dart'; -import 'package:reboot_launcher/src/page/implementation/matchmaker_page.dart'; import 'package:reboot_launcher/src/page/implementation/play_page.dart'; import 'package:reboot_launcher/src/page/implementation/server_browser_page.dart'; import 'package:reboot_launcher/src/page/implementation/server_host_page.dart'; @@ -24,7 +22,6 @@ final List pages = [ const HostPage(), const BrowsePage(), const BackendPage(), - const MatchmakerPage(), const InfoPage(), const SettingsPage() ]; diff --git a/gui/lib/src/util/dll.dart b/gui/lib/src/util/dll.dart index 918a411..a4add1f 100644 --- a/gui/lib/src/util/dll.dart +++ b/gui/lib/src/util/dll.dart @@ -27,7 +27,7 @@ Future _downloadCriticalDllInteractive(String filePath) async { InfoBarEntry? entry; try { if (fileName == "reboot.dll") { - await _updateController.update(true); + await _updateController.updateReboot(true); return; } diff --git a/gui/lib/src/util/info.dart b/gui/lib/src/util/info.dart new file mode 100644 index 0000000..bbf13ac --- /dev/null +++ b/gui/lib/src/util/info.dart @@ -0,0 +1,41 @@ +import 'dart:collection'; +import 'dart:io'; + +import 'package:fluent_ui/fluent_ui.dart'; +import 'package:path/path.dart' as path; +import 'package:reboot_common/common.dart'; +import 'package:reboot_launcher/src/util/log.dart'; +import 'package:reboot_launcher/src/util/translations.dart'; +import 'package:reboot_launcher/src/widget/info_tile.dart'; + +final _entries = SplayTreeMap(); + +void initInfoTiles() { + try { + final directory = Directory("${assetsDirectory.path}\\info\\$currentLocale"); + for(final entry in directory.listSync()) { + if(entry is File) { + final name = Uri.decodeQueryComponent(path.basename(entry.path)); + final splitter = name.indexOf("."); + if(splitter == -1) { + continue; + } + + final index = int.tryParse(name.substring(0, splitter)); + if(index == null) { + continue; + } + + final questionName = Uri.decodeQueryComponent(name.substring(splitter + 2)); + _entries[index] = InfoTile( + title: Text(questionName), + content: Text(entry.readAsStringSync()) + ); + } + } + }catch(error) { + log("[INFO] Error occurred while initializing info tiles: $error"); + } +} + +List get infoTiles => _entries.values.toList(growable: false); \ No newline at end of file diff --git a/gui/lib/src/util/os.dart b/gui/lib/src/util/os.dart index c5eebc8..ea8d355 100644 --- a/gui/lib/src/util/os.dart +++ b/gui/lib/src/util/os.dart @@ -1,10 +1,10 @@ -import 'dart:io'; - -import 'package:fluent_ui/fluent_ui.dart'; -import 'package:flutter/scheduler.dart'; import 'dart:collection'; import 'dart:ffi'; +import 'dart:io'; + import 'package:ffi/ffi.dart'; +import 'package:fluent_ui/fluent_ui.dart'; +import 'package:flutter/scheduler.dart'; import 'package:win32/win32.dart'; final RegExp _winBuildRegex = RegExp(r'(?<=\(Build )(.*)(?=\))'); @@ -38,15 +38,15 @@ class _ServiceProvider10 extends IUnknown { Pointer queryService(String classId, String instanceId) { final result = calloc(); final code = (ptr.ref.vtable + 3) - .cast< - Pointer< - NativeFunction< - HRESULT Function(Pointer, Pointer, Pointer, - Pointer)>>>() - .value - .asFunction< - int Function(Pointer, Pointer, Pointer, - Pointer)>()(ptr.ref.lpVtbl, + .cast< + Pointer< + NativeFunction< + HRESULT Function(Pointer, Pointer, Pointer, + Pointer)>>>() + .value + .asFunction< + int Function(Pointer, Pointer, Pointer, + Pointer)>()(ptr.ref.lpVtbl, GUIDFromString(classId), GUIDFromString(instanceId), result); if (code != 0) { free(result); @@ -66,11 +66,11 @@ class IVirtualDesktop extends IUnknown { final result = calloc(); final code = (ptr.ref.vtable + 5) .cast< - Pointer< - NativeFunction)>>>() + Pointer< + NativeFunction)>>>() .value .asFunction< - int Function(Pointer, Pointer)>()(ptr.ref.lpVtbl, result); + int Function(Pointer, Pointer)>()(ptr.ref.lpVtbl, result); if (code != 0) { free(result); throw WindowsException(code); @@ -93,11 +93,11 @@ class _IObjectArray extends IUnknown { final result = calloc(); final code = (ptr.ref.vtable + 3) .cast< - Pointer< - NativeFunction)>>>() + Pointer< + NativeFunction)>>>() .value .asFunction< - int Function(Pointer, Pointer)>()(ptr.ref.lpVtbl, result); + int Function(Pointer, Pointer)>()(ptr.ref.lpVtbl, result); if (code != 0) { free(result); throw WindowsException(code); @@ -109,15 +109,15 @@ class _IObjectArray extends IUnknown { Pointer getAt(int index, String guid) { final result = calloc(); final code = (ptr.ref.vtable + 4) - .cast< - Pointer< - NativeFunction< - HRESULT Function(Pointer, Int32 index, Pointer, - Pointer)>>>() - .value - .asFunction< - int Function( - Pointer, int index, Pointer, Pointer)>()( + .cast< + Pointer< + NativeFunction< + HRESULT Function(Pointer, Int32 index, Pointer, + Pointer)>>>() + .value + .asFunction< + int Function( + Pointer, int index, Pointer, Pointer)>()( ptr.ref.lpVtbl, index, GUIDFromString(guid), result); if (code != 0) { free(result); @@ -137,8 +137,8 @@ class _IObjectArrayList extends ListBase { _IObjectArrayList( {required _IObjectArray array, - required String guid, - required _IObjectMapper mapper}) + required String guid, + required _IObjectMapper mapper}) : _array = array, _guid = guid, _mapper = mapper; @@ -173,11 +173,11 @@ class _IVirtualDesktopManagerInternal extends IUnknown { final result = calloc(); final code = (ptr.ref.vtable + 3) .cast< - Pointer< - NativeFunction)>>>() + Pointer< + NativeFunction)>>>() .value .asFunction< - int Function(Pointer, Pointer)>()(ptr.ref.lpVtbl, result); + int Function(Pointer, Pointer)>()(ptr.ref.lpVtbl, result); if (code != 0) { free(result); throw WindowsException(code); @@ -189,12 +189,12 @@ class _IVirtualDesktopManagerInternal extends IUnknown { List getDesktops() { final result = calloc(); final code = (ptr.ref.vtable + 7) - .cast< - Pointer< - NativeFunction< - HRESULT Function(Pointer, Pointer)>>>() - .value - .asFunction)>()( + .cast< + Pointer< + NativeFunction< + HRESULT Function(Pointer, Pointer)>>>() + .value + .asFunction)>()( ptr.ref.lpVtbl, result); if (code != 0) { free(result); @@ -210,27 +210,27 @@ class _IVirtualDesktopManagerInternal extends IUnknown { void moveWindowToDesktop(IApplicationView view, IVirtualDesktop desktop) { final code = (ptr.ref.vtable + 4) - .cast< - Pointer< - NativeFunction< - Int32 Function(Pointer, COMObject, COMObject)>>>() - .value - .asFunction()( + .cast< + Pointer< + NativeFunction< + Int32 Function(Pointer, COMObject, COMObject)>>>() + .value + .asFunction()( ptr.ref.lpVtbl, view.ptr.ref, desktop.ptr.ref); if (code != 0) { - throw WindowsException(code); + throw WindowsException(code, message: "Cannot move window"); } } IVirtualDesktop createDesktop() { final result = calloc(); final code = (ptr.ref.vtable + 10) - .cast< - Pointer< - NativeFunction< - HRESULT Function(Pointer, Pointer)>>>() - .value - .asFunction)>()( + .cast< + Pointer< + NativeFunction< + HRESULT Function(Pointer, Pointer)>>>() + .value + .asFunction)>()( ptr.ref.lpVtbl, result); if (code != 0) { free(result); @@ -242,12 +242,12 @@ class _IVirtualDesktopManagerInternal extends IUnknown { void removeDesktop(IVirtualDesktop desktop, IVirtualDesktop fallback) { final code = (ptr.ref.vtable + 12) - .cast< - Pointer< - NativeFunction< - HRESULT Function(Pointer, COMObject, COMObject)>>>() - .value - .asFunction()( + .cast< + Pointer< + NativeFunction< + HRESULT Function(Pointer, COMObject, COMObject)>>>() + .value + .asFunction()( ptr.ref.lpVtbl, desktop.ptr.ref, fallback.ptr.ref); if (code != 0) { throw WindowsException(code); @@ -256,14 +256,14 @@ class _IVirtualDesktopManagerInternal extends IUnknown { void setDesktopName(IVirtualDesktop desktop, String newName) { final code = - (ptr.ref.vtable + 15) - .cast< - Pointer< - NativeFunction< - HRESULT Function(Pointer, COMObject, Int8)>>>() - .value - .asFunction()( - ptr.ref.lpVtbl, desktop.ptr.ref, convertToHString(newName)); + (ptr.ref.vtable + 15) + .cast< + Pointer< + NativeFunction< + HRESULT Function(Pointer, COMObject, Int8)>>>() + .value + .asFunction()( + ptr.ref.lpVtbl, desktop.ptr.ref, convertToHString(newName)); if (code != 0) { throw WindowsException(code); } @@ -276,57 +276,75 @@ class _IApplicationViewCollection extends IUnknown { _IApplicationViewCollection._internal(super.ptr); - IApplicationView getViewForHWnd(int HWnd) { + IApplicationView? getViewForHWnd(int HWnd) { final result = calloc(); final code = - (ptr.ref.vtable + 6) - .cast< - Pointer< - NativeFunction< - HRESULT Function( - Pointer, IntPtr, Pointer)>>>() - .value - .asFunction)>()( - ptr.ref.lpVtbl, HWnd, result); + (ptr.ref.vtable + 6) + .cast< + Pointer< + NativeFunction< + HRESULT Function( + Pointer, IntPtr, Pointer)>>>() + .value + .asFunction)>()( + ptr.ref.lpVtbl, HWnd, result); if (code != 0) { free(result); - throw WindowsException(code); + return null; } return IApplicationView._internal(result); } } -final class _Process extends Struct { +final class Win32Process extends Struct { @Uint32() external int pid; @Uint32() - external int HWnd; + external int HWndLength; - static int _filter(int HWnd, int lParam) { - final structure = Pointer.fromAddress(lParam).cast<_Process>(); - final pidPointer = calloc(); - GetWindowThreadProcessId(HWnd, pidPointer); - final pid = pidPointer.value; - free(pidPointer); - if (pid != structure.ref.pid) { - return TRUE; + external Pointer HWnd; +} + +int _filter(int HWnd, int lParam) { + final structure = Pointer.fromAddress(lParam).cast(); + final pidPointer = calloc(); + GetWindowThreadProcessId(HWnd, pidPointer); + final pid = pidPointer.value; + if (pid == structure.ref.pid) { + final length = structure.ref.HWndLength; + final newLength = length + 1; + final ptr = malloc.allocate(sizeOf() * newLength); + final list = structure.ref.HWnd.asTypedList(length); + for (var i = 0; i < list.length; i++) { + (ptr + i).value = list[i]; } - - structure.ref.HWnd = HWnd; - return FALSE; + ptr[list.length] = HWnd; + structure.ref.HWndLength = newLength; + free(structure.ref.HWnd); + structure.ref.HWnd = ptr; } - static int getHWndFromPid(int pid) { - final result = calloc<_Process>(); - result.ref.pid = pid; - EnumWindows( - Pointer.fromFunction(_filter, TRUE), result.address); - final HWnd = result.ref.HWnd; + free(pidPointer); + return TRUE; +} + +List _getHWnds(int pid) { + final result = calloc(); + result.ref.pid = pid; + EnumWindows(Pointer.fromFunction(_filter, TRUE), result.address); + final length = result.ref.HWndLength; + final HWndsPointer = result.ref.HWnd; + if(HWndsPointer == nullptr) { calloc.free(result); - return HWnd; + return []; } + + final HWnds = HWndsPointer.asTypedList(length) + .toList(growable: false); + calloc.free(result); + return HWnds; } class VirtualDesktopManager { @@ -382,10 +400,24 @@ class VirtualDesktopManager { List getDesktops() => windowManager.getDesktops(); - void moveWindowToDesktop(int pid, IVirtualDesktop desktop) { - final HWnd = _Process.getHWndFromPid(pid); - final window = applicationViewCollection.getViewForHWnd(HWnd); - windowManager.moveWindowToDesktop(window, desktop); + Future moveWindowToDesktop(int pid, IVirtualDesktop desktop, {Duration pollTime = const Duration(seconds: 1)}) async { + final hWNDs = _getHWnds(pid); + if(hWNDs.isEmpty) { + await Future.delayed(pollTime); + await moveWindowToDesktop(pid, desktop, pollTime: pollTime); + return; + } + + for(final hWND in hWNDs) { + final window = applicationViewCollection.getViewForHWnd(hWND); + if(window != null) { + windowManager.moveWindowToDesktop(window, desktop); + return; + } + } + + await Future.delayed(pollTime); + await moveWindowToDesktop(pid, desktop, pollTime: pollTime); } IVirtualDesktop createDesktop() => windowManager.createDesktop(); diff --git a/gui/lib/src/widget/add_server_version.dart b/gui/lib/src/widget/add_server_version.dart index 7f31e8e..c1ce6d1 100644 --- a/gui/lib/src/widget/add_server_version.dart +++ b/gui/lib/src/widget/add_server_version.dart @@ -256,12 +256,6 @@ class _AddServerVersionState extends State { mainAxisSize: MainAxisSize.min, crossAxisAlignment: CrossAxisAlignment.start, children: [ - _buildSelectorType(), - - const SizedBox( - height: 16.0 - ), - _buildSelector(), const SizedBox( @@ -291,24 +285,6 @@ class _AddServerVersionState extends State { ], ); - Widget _buildSelectorType() => InfoLabel( - label: translations.source, - child: Obx(() => ComboBox( - placeholder: Text(translations.selectBuild), - isExpanded: true, - items: _buildSources, - value: _buildController.selectedBuildSource, - onChanged: (value) { - if(value == null){ - return; - } - - _buildController.selectedBuildSource = value; - _updateFormDefaults(); - } - )) - ); - Widget _buildSelector() => InfoLabel( label: translations.build, child: Obx(() => ComboBox( @@ -328,7 +304,6 @@ class _AddServerVersionState extends State { ); List> get _builds => _buildController.builds! - .where((element) => element.source == _buildController.selectedBuild?.source) .map((element) => _buildItem(element)) .toList(); @@ -337,24 +312,6 @@ class _AddServerVersionState extends State { child: Text(element.version.toString()) ); - List> get _buildSources => FortniteBuildSource.values - .map((element) => _buildSourceItem(element)) - .toList(); - - ComboBoxItem _buildSourceItem(FortniteBuildSource element) => ComboBoxItem( - value: element, - child: Text(_getBuildSourceName(element)) - ); - - String _getBuildSourceName(FortniteBuildSource element) { - switch(element) { - case FortniteBuildSource.archive: - return translations.archive; - case FortniteBuildSource.manifest: - return translations.manifest; - } - } - List get _stopButton => [ DialogButton( text: "Stop", diff --git a/gui/lib/src/widget/game_start_button.dart b/gui/lib/src/widget/game_start_button.dart index d011f10..f89cef0 100644 --- a/gui/lib/src/widget/game_start_button.dart +++ b/gui/lib/src/widget/game_start_button.dart @@ -5,13 +5,14 @@ import 'package:async/async.dart'; import 'package:dart_ipify/dart_ipify.dart'; import 'package:fluent_ui/fluent_ui.dart'; import 'package:get/get.dart'; +import 'package:local_notifier/local_notifier.dart'; import 'package:path/path.dart'; import 'package:reboot_common/common.dart'; import 'package:reboot_launcher/src/controller/backend_controller.dart'; import 'package:reboot_launcher/src/controller/game_controller.dart'; import 'package:reboot_launcher/src/controller/hosting_controller.dart'; -import 'package:reboot_launcher/src/controller/matchmaker_controller.dart'; import 'package:reboot_launcher/src/controller/settings_controller.dart'; +import 'package:reboot_launcher/src/controller/update_controller.dart'; import 'package:reboot_launcher/src/dialog/abstract/dialog.dart'; import 'package:reboot_launcher/src/dialog/abstract/dialog_button.dart'; import 'package:reboot_launcher/src/dialog/abstract/info_bar.dart'; @@ -23,7 +24,6 @@ import 'package:reboot_launcher/src/util/log.dart'; import 'package:reboot_launcher/src/util/matchmaker.dart'; import 'package:reboot_launcher/src/util/os.dart'; import 'package:reboot_launcher/src/util/translations.dart'; -import 'package:url_launcher/url_launcher.dart'; class LaunchButton extends StatefulWidget { final bool host; @@ -37,11 +37,13 @@ class LaunchButton extends StatefulWidget { } class _LaunchButtonState extends State { + static const Duration _kRebootDelay = Duration(seconds: 10); + final GameController _gameController = Get.find(); final HostingController _hostingController = Get.find(); final BackendController _backendController = Get.find(); - final MatchmakerController _matchmakerController = Get.find(); final SettingsController _settingsController = Get.find(); + final UpdateController _updateController = Get.find(); InfoBarEntry? _gameClientInfoBar; InfoBarEntry? _gameServerInfoBar; CancelableOperation? _operation; @@ -129,18 +131,6 @@ class _LaunchButtonState extends State { return; } log("[${widget.host ? 'HOST' : 'GAME'}] Backend works"); - - log("[${widget.host ? 'HOST' : 'GAME'}] Checking matchmaker(port: ${_matchmakerController.type.value.name}, type: ${_matchmakerController.type.value.name})..."); - final matchmakerResult = _matchmakerController.started() || await _matchmakerController.toggleInteractive(); - if(!matchmakerResult){ - log("[${widget.host ? 'HOST' : 'GAME'}] Cannot start matchmaker"); - _onStop( - reason: _StopReason.matchmakerError - ); - return; - } - log("[${widget.host ? 'HOST' : 'GAME'}] Matchmaker works"); - final headless = !forceGUI && _hostingController.headless.value; final virtualDesktop = _hostingController.virtualDesktop.value; log("[${widget.host ? 'HOST' : 'GAME'}] Implicit game server metadata: headless($headless)"); @@ -170,9 +160,8 @@ class _LaunchButtonState extends State { return null; } - final matchmakingIp = _matchmakerController.gameServerAddress.text; - if(!isLocalHost(matchmakingIp)) { - log("[${widget.host ? 'HOST' : 'GAME'}] The current IP($matchmakingIp) is not set to localhost"); + if(_backendController.type.value != ServerType.embedded || !isLocalHost(_backendController.gameServerAddress.text)) { + log("[${widget.host ? 'HOST' : 'GAME'}] Backend is not set to embedded and/or not pointing to the local game server"); return null; } @@ -267,7 +256,7 @@ class _LaunchButtonState extends State { _gameController.password.text, host, _hostingController.headless.value, - _gameController.customLaunchArgs.text + "" ); log("[${host ? 'HOST' : 'GAME'}] Generated game args: $gameArgs"); final gameProcess = await startProcess( @@ -276,60 +265,37 @@ class _LaunchButtonState extends State { wrapProcess: false, name: "${version.name}-${host ? 'HOST' : 'GAME'}" ); - gameProcess.stdOutput.listen((line) => _onGameOutput(line, host, virtualDesktop, false)); - gameProcess.stdError.listen((line) => _onGameOutput(line, host, virtualDesktop, true)); + gameProcess.stdOutput.listen((line) => _onGameOutput(line, version, host, virtualDesktop, false)); + gameProcess.stdError.listen((line) => _onGameOutput(line, version, host, virtualDesktop, true)); watchProcess(gameProcess.pid).then((_) async { final instance = host ? _hostingController.instance.value : _gameController.instance.value; - if(instance == null || !host || !headless || instance.launched) { + if(instance == null) { + return; + } + + if(!host || !headless || instance.launched) { _onStop(reason: _StopReason.exitCode); return; } - if(widget.host) { - await _onStop(reason: _StopReason.exitCode); - _toggle(forceGUI: true); - return; - } - - await _onStop( - reason: _StopReason.exitCode, - host: true - ); - final linkedHostingInstance = await _startMatchMakingServer(version, false, virtualDesktop, true); - _gameController.instance.value?.child = linkedHostingInstance; - if(linkedHostingInstance != null){ - _setStarted(true, true); - _showLaunchingGameServerWidget(); - } + await _restartGameServer(version, virtualDesktop, _StopReason.exitCode); }); - if(host && !headless && virtualDesktop) { - final name = version.name; - final pid = gameProcess.pid; - _moveProcessToVirtualDesktop(name, pid); - } return gameProcess.pid; } - Future _moveProcessToVirtualDesktop(String versionName, int pid) async { - try { - final windowManager = VirtualDesktopManager.getInstance(); - _virtualDesktop = windowManager.createDesktop(); - windowManager.setDesktopName(_virtualDesktop!, "$versionName Server (Reboot Launcher)"); - Object? lastError; - for(var i = 0; i < 10; i++) { - try { - windowManager.moveWindowToDesktop(pid, _virtualDesktop!); - break; - }catch(error) { - lastError = error; - await Future.delayed(Duration(seconds: 1)); - } + Future _restartGameServer(FortniteVersion version, bool virtualDesktop, _StopReason reason) async { + if (widget.host) { + await _onStop(reason: reason); + _toggle(forceGUI: true); + } else { + await _onStop(reason: reason, host: true); + final linkedHostingInstance = + await _startMatchMakingServer(version, false, virtualDesktop, true); + _gameController.instance.value?.child = linkedHostingInstance; + if (linkedHostingInstance != null) { + _setStarted(true, true); + _showLaunchingGameServerWidget(); } - if(lastError != null) { - log("[VIRTUAL_DESKTOP] Cannot move window: $lastError"); - } - }catch(error) { - log("[VIRTUAL_DESKTOP] Virtual desktop is not supported: $error"); } } @@ -348,7 +314,7 @@ class _LaunchButtonState extends State { return pid; } - void _onGameOutput(String line, bool host, bool virtualDesktop, bool error) async { + void _onGameOutput(String line, FortniteVersion version, bool host, bool virtualDesktop, bool error) async { if (line.contains(kShutdownLine)) { _onStop( reason: _StopReason.normal @@ -371,17 +337,74 @@ class _LaunchButtonState extends State { } if(kLoggedInLines.every((entry) => line.contains(entry))) { - await _injectOrShowError(_Injectable.memoryFix, host); - if(!host){ - await _injectOrShowError(_Injectable.console, host); - _onGameClientInjected(); - }else { - await _injectOrShowError(_Injectable.reboot, host); - _onGameServerInjected(); - } final instance = host ? _hostingController.instance.value : _gameController.instance.value; - instance?.launched = true; - instance?.tokenError = false; + if(instance != null && !instance.launched) { + instance.launched = true; + instance.tokenError = false; + await _injectOrShowError(_Injectable.memoryFix, host); + if(!host){ + await _injectOrShowError(_Injectable.console, host); + _onGameClientInjected(); + }else { + final gameServerPort = int.tryParse(_settingsController.gameServerPort.text); + if(gameServerPort != null) { + await killProcessByPort(gameServerPort); + } + await _injectOrShowError(_Injectable.reboot, host); + _onGameServerInjected(); + } + } + + return; + } + + if(line.contains(kGameFinishedLine) && host) { + if(_hostingController.autoRestart.value) { + final notification = LocalNotification( + title: translations.gameServerEnd, + body: translations.gameServerRestart(_kRebootDelay.inSeconds), + ); + notification.show(); + Future.delayed(_kRebootDelay).then((_) { + _restartGameServer(version, virtualDesktop, _StopReason.normal); + }); + }else { + final notification = LocalNotification( + title: translations.gameServerEnd, + body: translations.gameServerShutdown(_kRebootDelay.inSeconds) + ); + notification.show(); + Future.delayed(_kRebootDelay).then((_) { + _onStop(reason: _StopReason.normal, host: true); + }); + } + return; + } + + if(line.contains("Display") && host && virtualDesktop) { + final hostingInstance = _hostingController.instance.value; + if(hostingInstance != null && !hostingInstance.movedToVirtualDesktop) { + hostingInstance.movedToVirtualDesktop = true; + try { + final windowManager = VirtualDesktopManager.getInstance(); + _virtualDesktop = windowManager.createDesktop(); + windowManager.setDesktopName(_virtualDesktop!, "${version.name} Server (Reboot Launcher)"); + try { + await windowManager.moveWindowToDesktop(hostingInstance.gamePid, _virtualDesktop!); + }catch(error) { + log("[VIRTUAL_DESKTOP] $error"); + try { + windowManager.removeDesktop(_virtualDesktop!); + }catch(error) { + log("[VIRTUAL_DESKTOP] $error"); + }finally { + _virtualDesktop = null; + } + } + }catch(error) { + log("[VIRTUAL_DESKTOP] $error"); + } + } } } @@ -404,12 +427,12 @@ class _LaunchButtonState extends State { duration: null ); final gameServerPort = _settingsController.gameServerPort.text; + _gameServerInfoBar?.close(); final localPingResult = await pingGameServer( "127.0.0.1:$gameServerPort", timeout: const Duration(minutes: 2) ); if (!localPingResult) { - _gameServerInfoBar?.close(); showInfoBar( translations.gameServerStartWarning, severity: InfoBarSeverity.error, @@ -418,7 +441,7 @@ class _LaunchButtonState extends State { return; } - _matchmakerController.joinLocalHost(); + _backendController.joinLocalHost(); final accessible = await _checkGameServer(theme, gameServerPort); if (!accessible) { showInfoBar( @@ -445,7 +468,6 @@ class _LaunchButtonState extends State { Future _checkGameServer(FluentThemeData theme, String gameServerPort) async { try { - _gameServerInfoBar?.close(); _gameServerInfoBar = showInfoBar( translations.checkingGameServer, loading: true, @@ -494,11 +516,11 @@ class _LaunchButtonState extends State { await _operation?.cancel(); _operation = null; await _backendController.worker?.cancel(); - await _matchmakerController.worker?.cancel(); } host = host ?? widget.host; log("[${host ? 'HOST' : 'GAME'}] Called stop with reason $reason, error data $error $stackTrace"); + log("[${host ? 'HOST' : 'GAME'}] Caller: ${StackTrace.current}"); if(host) { _hostingController.discardServer(); } @@ -526,12 +548,10 @@ class _LaunchButtonState extends State { } _setStarted(host, false); - if(!reason.isError) { - if(host) { - _gameServerInfoBar?.close(); - }else { - _gameClientInfoBar?.close(); - } + if(host) { + _gameServerInfoBar?.close(); + }else { + _gameClientInfoBar?.close(); } switch(reason) { @@ -633,7 +653,14 @@ class _LaunchButtonState extends State { String _getDllPath(_Injectable injectable) { switch(injectable){ case _Injectable.reboot: - return _settingsController.gameServerDll.text; + if(_updateController.customGameServer.value) { + final file = File(_settingsController.gameServerDll.text); + if(file.existsSync()) { + return file.path; + } + } + + return rebootDllFile.path; case _Injectable.console: return _settingsController.unrealEngineConsoleDll.text; case _Injectable.sslBypassV2: diff --git a/gui/lib/src/widget/info_tile.dart b/gui/lib/src/widget/info_tile.dart index 6714726..7c1763a 100644 --- a/gui/lib/src/widget/info_tile.dart +++ b/gui/lib/src/widget/info_tile.dart @@ -1,7 +1,5 @@ import 'package:fluent_ui/fluent_ui.dart' hide FluentIcons; import 'package:fluentui_system_icons/fluentui_system_icons.dart'; -import 'package:reboot_launcher/src/page/pages.dart'; -import 'package:skeletons/skeletons.dart'; class InfoTile extends StatelessWidget { final Key? expanderKey; diff --git a/gui/lib/src/widget/server_start_button.dart b/gui/lib/src/widget/server_start_button.dart index d79e297..2292547 100644 --- a/gui/lib/src/widget/server_start_button.dart +++ b/gui/lib/src/widget/server_start_button.dart @@ -4,21 +4,18 @@ import 'package:fluent_ui/fluent_ui.dart'; import 'package:get/get.dart'; import 'package:reboot_common/common.dart'; import 'package:reboot_launcher/src/controller/backend_controller.dart'; -import 'package:reboot_launcher/src/controller/matchmaker_controller.dart'; -import 'package:reboot_launcher/src/controller/server_controller.dart'; import 'package:reboot_launcher/src/dialog/implementation/server.dart'; import 'package:reboot_launcher/src/util/translations.dart'; class ServerButton extends StatefulWidget { - final bool backend; - const ServerButton({Key? key, required this.backend}) : super(key: key); + const ServerButton({Key? key}) : super(key: key); @override State createState() => _ServerButtonState(); } class _ServerButtonState extends State { - late final ServerController _controller = widget.backend ? Get.find() : Get.find(); + late final BackendController _controller = Get.find(); late final StreamController _textController = StreamController.broadcast(); late final void Function() _listener = () => _textController.add(null); @@ -55,14 +52,14 @@ class _ServerButtonState extends State { ); String get _buttonText { - if(_controller.type.value == ServerType.local && _controller.port.text.trim() == _controller.defaultPort.toString()){ - return translations.checkServer(_controller.controllerName); + if(_controller.type.value == ServerType.local && _controller.port.text.trim() == kDefaultBackendPort.toString()){ + return translations.checkServer; } if(_controller.started.value){ - return translations.stopServer(_controller.controllerName); + return translations.stopServer; } - return translations.startServer(_controller.controllerName); + return translations.startServer; } } diff --git a/gui/lib/src/widget/server_type_selector.dart b/gui/lib/src/widget/server_type_selector.dart index 4b455d1..15c6151 100644 --- a/gui/lib/src/widget/server_type_selector.dart +++ b/gui/lib/src/widget/server_type_selector.dart @@ -2,14 +2,10 @@ import 'package:fluent_ui/fluent_ui.dart'; import 'package:get/get.dart'; import 'package:reboot_common/common.dart'; import 'package:reboot_launcher/src/controller/backend_controller.dart'; -import 'package:reboot_launcher/src/controller/matchmaker_controller.dart'; -import 'package:reboot_launcher/src/controller/server_controller.dart'; import 'package:reboot_launcher/src/util/translations.dart'; class ServerTypeSelector extends StatefulWidget { - final bool backend; - - const ServerTypeSelector({Key? key, required this.backend}) + const ServerTypeSelector({Key? key}) : super(key: key); @override @@ -17,7 +13,7 @@ class ServerTypeSelector extends StatefulWidget { } class _ServerTypeSelectorState extends State { - late final ServerController _controller = widget.backend ? Get.find() : Get.find(); + late final BackendController _controller = Get.find(); @override Widget build(BuildContext context) { diff --git a/gui/lib/src/widget/title_bar.dart b/gui/lib/src/widget/title_bar.dart index 2ecc843..7b324b5 100644 --- a/gui/lib/src/widget/title_bar.dart +++ b/gui/lib/src/widget/title_bar.dart @@ -1,5 +1,4 @@ import 'package:fluent_ui/fluent_ui.dart'; -import 'package:reboot_common/common.dart'; import 'package:reboot_launcher/src/util/os.dart'; import 'package:reboot_launcher/src/widget/title_bar_buttons.dart'; import 'package:system_theme/system_theme.dart'; diff --git a/gui/lib/src/widget/version_selector_tile.dart b/gui/lib/src/widget/version_selector_tile.dart index 70309cf..c77ca45 100644 --- a/gui/lib/src/widget/version_selector_tile.dart +++ b/gui/lib/src/widget/version_selector_tile.dart @@ -1,7 +1,5 @@ import 'package:fluent_ui/fluent_ui.dart' hide FluentIcons; import 'package:fluentui_system_icons/fluentui_system_icons.dart'; -import 'package:get/get.dart'; -import 'package:reboot_launcher/src/controller/game_controller.dart'; import 'package:reboot_launcher/src/util/translations.dart'; import 'package:reboot_launcher/src/widget/setting_tile.dart'; import 'package:reboot_launcher/src/widget/version_selector.dart'; diff --git a/gui/pubspec.yaml b/gui/pubspec.yaml index f6519e6..985372c 100644 --- a/gui/pubspec.yaml +++ b/gui/pubspec.yaml @@ -1,6 +1,6 @@ name: reboot_launcher description: Graphical User Interface for Project Reboot -version: "9.0.7" +version: "9.0.8" publish_to: 'none' @@ -8,43 +8,69 @@ environment: sdk: ">=3.0.0 <=3.3.4" dependencies: + # The flutter SDK flutter: sdk: flutter + # Reboot common module reboot_common: path: ./../common + + # Windows UI 3 + fluent_ui: ^4.8.7 flutter_acrylic: path: ./dependencies/flutter_acrylic - fluent_ui: ^4.8.7 fluentui_system_icons: ^1.1.238 - bitsdojo_window: ^0.1.5 system_theme: ^2.0.0 - file_picker: ^8.0.3 - url_launcher: ^6.1.5 - archive: ^3.3.1 - crypto: ^3.0.2 - async: ^2.8.2 - get: ^4.6.5 - get_storage: ^2.0.3 - window_manager: ^0.3.8 - clipboard: ^0.1.3 - universal_disk_space: ^0.2.3 - uuid: ^3.0.6 - supabase_flutter: ^2.5.2 skeletons: ^0.0.3 + + # Window management + bitsdojo_window: ^0.1.5 + window_manager: ^0.3.8 + + # Extract zip archives (for example the reboot.zip coming from github) + archive: ^3.3.1 + + # Cryptographic functions + crypto: ^3.0.2 bcrypt: ^1.1.3 - dart_ipify: ^1.1.1 - path: ^1.8.3 pointycastle: ^3.7.3 + + # Async helpers + async: ^2.8.2 sync: ^0.3.0 - process_run: ^0.14.2 - auto_animated_list: ^1.0.4 + + # State management + get: ^4.6.5 + + # Native utilities + clipboard: ^0.1.3 app_links: ^6.0.2 url_protocol: ^1.0.0 - intl: any windows_taskbar: ^1.1.2 + file_picker: ^8.0.3 + url_launcher: ^6.1.5 + local_notifier: ^0.1.6 + + # Server browser + supabase_flutter: ^2.5.2 + uuid: ^3.0.6 + dart_ipify: ^1.1.1 + + # Storage + get_storage: ^2.0.3 + universal_disk_space: ^0.2.3 + path: ^1.8.3 + + # Translations + intl: any flutter_localized_locales: ^2.0.5 + # Auto updater + yaml: ^3.1.2 + package_info_plus: ^8.0.0 + version: ^3.0.2 + dependency_overrides: xml: ^6.3.0 http: ^0.13.5 @@ -72,14 +98,14 @@ flutter: - assets/backend/profiles/ - assets/backend/public/ - assets/backend/responses/ - - assets/matchmaker/ - assets/build/ + - assets/info/en/ msix_config: display_name: Reboot Launcher publisher_display_name: Auties00 identity_name: 31868Auties00.RebootLauncher - msix_version: 9.0.0.7 + msix_version: 9.0.0.8 publisher: CN=E6CD08C6-DECF-4034-A3EB-2D5FA2CA8029 logo_path: ./assets/icons/reboot.ico architecture: x64 diff --git a/gui/windows/flutter/generated_plugin_registrant.cc b/gui/windows/flutter/generated_plugin_registrant.cc index 281077a..5b5a819 100644 --- a/gui/windows/flutter/generated_plugin_registrant.cc +++ b/gui/windows/flutter/generated_plugin_registrant.cc @@ -9,6 +9,7 @@ #include #include #include +#include #include #include #include @@ -22,6 +23,8 @@ void RegisterPlugins(flutter::PluginRegistry* registry) { registry->GetRegistrarForPlugin("BitsdojoWindowPlugin")); FlutterAcrylicPluginRegisterWithRegistrar( registry->GetRegistrarForPlugin("FlutterAcrylicPlugin")); + LocalNotifierPluginRegisterWithRegistrar( + registry->GetRegistrarForPlugin("LocalNotifierPlugin")); ScreenRetrieverPluginRegisterWithRegistrar( registry->GetRegistrarForPlugin("ScreenRetrieverPlugin")); SystemThemePluginRegisterWithRegistrar( diff --git a/gui/windows/flutter/generated_plugins.cmake b/gui/windows/flutter/generated_plugins.cmake index 9e8d035..0116766 100644 --- a/gui/windows/flutter/generated_plugins.cmake +++ b/gui/windows/flutter/generated_plugins.cmake @@ -6,6 +6,7 @@ list(APPEND FLUTTER_PLUGIN_LIST app_links bitsdojo_window_windows flutter_acrylic + local_notifier screen_retriever system_theme url_launcher_windows diff --git a/lawin/build.bat b/lawin/build.bat index 72b60ca..9e23c76 100644 --- a/lawin/build.bat +++ b/lawin/build.bat @@ -1,2 +1 @@ -# https://github.com/nexe/nexe npx nexe --build \ No newline at end of file diff --git a/lawin/structure/matchmaker.js b/lawin/structure/matchmaker.js new file mode 100644 index 0000000..50805a7 --- /dev/null +++ b/lawin/structure/matchmaker.js @@ -0,0 +1,77 @@ +const functions = require("./functions.js"); + +module.exports = async (ws) => { + const ticketId = functions.MakeID().replace(/-/gi, ""); + const matchId = functions.MakeID().replace(/-/gi, ""); + const sessionId = functions.MakeID().replace(/-/gi, ""); + + Connecting(); + Waiting(); + Queued(); + SessionAssignment(); + Join(); + + function Connecting() { + ws.send( + JSON.stringify({ + payload: { + state: "Connecting", + }, + name: "StatusUpdate", + }) + ); + } + + function Waiting() { + ws.send( + JSON.stringify({ + payload: { + totalPlayers: 1, + connectedPlayers: 1, + state: "Waiting", + }, + name: "StatusUpdate", + }) + ); + } + + function Queued() { + ws.send( + JSON.stringify({ + payload: { + ticketId: ticketId, + queuedPlayers: 0, + estimatedWaitSec: 0, + status: {}, + state: "Queued", + }, + name: "StatusUpdate", + }) + ); + } + + function SessionAssignment() { + ws.send( + JSON.stringify({ + payload: { + matchId: matchId, + state: "SessionAssignment", + }, + name: "StatusUpdate", + }) + ); + } + + function Join() { + ws.send( + JSON.stringify({ + payload: { + matchId: matchId, + sessionId: sessionId, + joinDelaySec: 1, + }, + name: "Play", + }) + ); + } +}; \ No newline at end of file diff --git a/lawin/structure/matchmaking.js b/lawin/structure/matchmaking.js index 37615cf..f1fbb0a 100644 --- a/lawin/structure/matchmaking.js +++ b/lawin/structure/matchmaking.js @@ -15,7 +15,7 @@ express.get("/fortnite/api/game/v2/matchmakingservice/ticket/player/*", async (r res.cookie("currentbuildUniqueId", req.query.bucketId.split(":")[0]); res.json({ - "serviceUrl": "ws://127.0.0.1:8080", + "serviceUrl": "ws://127.0.0.1:80", "ticketType": "mms-player", "payload": "69=", "signature": "420=" diff --git a/lawin/structure/xmpp.js b/lawin/structure/xmpp.js index a662d61..084448c 100644 --- a/lawin/structure/xmpp.js +++ b/lawin/structure/xmpp.js @@ -3,10 +3,11 @@ const XMLBuilder = require("xmlbuilder"); const XMLParser = require("xml-parser"); const functions = require("./../structure/functions.js"); +const matchmaker = require("./matchmaker.js"); const port = 80; -const wss = new WebSocket({ port: port }, () => console.log("XMPP listening on port", port)); +const wss = new WebSocket({ port: port }, () => console.log("XMPP and Matchmaker started listening on port", port)); wss.on("error", (err) => { console.log("XMPP and Matchmaker \x1b[31mFAILED\x1b[0m to start hosting."); }) @@ -16,11 +17,9 @@ global.Clients = []; wss.on('connection', async (ws) => { ws.on('error', () => {}); - - if (ws.protocol.toLowerCase() != "xmpp") { - return; - } - + + if (ws.protocol.toLowerCase() != "xmpp") return matchmaker(ws); + var accountId = ""; var jid = ""; var id = ""; @@ -40,7 +39,7 @@ wss.on('connection', async (ws) => { .attribute("id", ID) .attribute("version", "1.0") .attribute("xml:lang", "en").toString()) - + if (Authenticated == true) { ws.send(XMLBuilder.create("stream:features").attribute("xmlns:stream", "http://etherx.jabber.org/streams") .element("ver").attribute("xmlns", "urn:xmpp:features:rosterver").up() @@ -73,7 +72,7 @@ wss.on('connection', async (ws) => { if (decodedBase64 && accountId && decodedBase64.length == 3) { Authenticated = true; - + console.log(`An xmpp client with the account id ${accountId} has logged in.`); ws.send(XMLBuilder.create("success").attribute("xmlns", "urn:ietf:params:xml:ns:xmpp-sasl").toString()); @@ -273,4 +272,4 @@ function ifJSON(str) { return false; } return true; -} +} \ No newline at end of file