2023-09-15 19:35:32 -05:00
|
|
|
from PyQt6.QtCore import QFileInfo
|
2021-02-25 20:35:51 -06:00
|
|
|
|
2025-04-25 08:23:10 +02:00
|
|
|
import mobase
|
|
|
|
|
|
2020-12-29 22:20:54 +01:00
|
|
|
from ..basic_game import BasicGame
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class NoMansSkyGame(BasicGame):
|
2021-02-19 19:52:07 +01:00
|
|
|
Name = "No Man's Sky Support Plugin"
|
2020-12-29 22:20:54 +01:00
|
|
|
Author = "Luca/EzioTheDeadPoet"
|
|
|
|
|
Version = "1.0.0"
|
|
|
|
|
|
2021-02-19 19:49:53 +01:00
|
|
|
GameName = "No Man's Sky"
|
2020-12-29 22:20:54 +01:00
|
|
|
GameShortName = "nomanssky"
|
2021-02-24 13:36:17 -06:00
|
|
|
GameNexusName = "nomanssky"
|
|
|
|
|
GameNexusId = 1634
|
2020-12-29 22:20:54 +01:00
|
|
|
GameSteamId = 275850
|
|
|
|
|
GameGogId = 1446213994
|
|
|
|
|
GameBinary = "Binaries/NMS.exe"
|
2025-03-14 10:56:00 -04:00
|
|
|
GameDataPath = "GAMEDATA/MODS"
|
2021-12-27 00:57:18 -07:00
|
|
|
GameSupportURL = (
|
|
|
|
|
r"https://github.com/ModOrganizer2/modorganizer-basic_games/wiki/"
|
|
|
|
|
"Game:-No-Man's-Sky"
|
|
|
|
|
)
|
2021-02-25 20:35:51 -06:00
|
|
|
|
|
|
|
|
def executables(self):
|
|
|
|
|
return [
|
|
|
|
|
mobase.ExecutableInfo(
|
|
|
|
|
"No Man's Sky",
|
|
|
|
|
QFileInfo(self.gameDirectory().absoluteFilePath(self.binaryName())),
|
|
|
|
|
),
|
|
|
|
|
mobase.ExecutableInfo(
|
|
|
|
|
"No Man's Sky VR",
|
|
|
|
|
QFileInfo(self.gameDirectory().absoluteFilePath(self.binaryName())),
|
|
|
|
|
).withArgument("-HmdEnable 1"),
|
2021-02-26 09:16:36 -06:00
|
|
|
]
|