forked from ModOrganizer2/modorganizer-basic_games
-
Notifications
You must be signed in to change notification settings - Fork 1
/
game_tdu.py
35 lines (29 loc) · 985 Bytes
/
game_tdu.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# -*- encoding: utf-8 -*-
import mobase
from PyQt6.QtCore import QFileInfo
from ..basic_game import BasicGame
class TDUGame(BasicGame):
Name = "Test Drive Unlimited Support Plugin"
Author = "uwx"
Version = "1.0.0"
GameName = "Test Drive Unlimited"
GameShortName = "tdu"
GameNexusName = "testdriveunlimited"
GameNexusId = 4615
GameBinary = "TestDriveUnlimited.exe"
GameDataPath = ""
def executables(self):
return [
mobase.ExecutableInfo(
"Test Drive Unlimited",
QFileInfo(self.gameDirectory().absoluteFilePath(self.binaryName())),
).withArgument("-w -wx -vsync -bigbnks -offline"),
mobase.ExecutableInfo(
"Project Paradise Launcher",
QFileInfo(
self.gameDirectory().absoluteFilePath(
"TDU - Project Paradise Launcher.exe"
)
),
),
]