diff --git a/Applications/Games/PC Building Simulator/Steam/script.js b/Applications/Games/PC Building Simulator/Steam/script.js new file mode 100644 index 0000000000..6d2fb6a94d --- /dev/null +++ b/Applications/Games/PC Building Simulator/Steam/script.js @@ -0,0 +1,28 @@ +include("engines.wine.quick_script.steam_script"); +include("engines.wine.plugins.virtual_desktop"); +include("engines.wine.verbs.corefonts"); +include("utils.functions.apps.resources"); + +var installerImplementation = { + run: function () { + new SteamScript() + .name("PC Building Simulator") + .editor("Claudiu Kiss, The Irregular Corporation") + .author("Zemogiter") + .applicationHomepage("http://www.pcbuildingsim.com/") + .wineVersion(LATEST_DEVELOPMENT_VERSION) + .wineArchitecture("amd64") + .appId(621060) + .preInstall(function (wine, wizard) { + wizard.message(tr("The game is functional but benchmark animations on the monitors are not displayed. Feel free to drop a feedback if you know how to fix this issue.")); + wine.corefonts(); + var screenSize = java.awt.Toolkit.getDefaultToolkit().getScreenSize(); + wine.setVirtualDesktop(screenSize.width, screenSize.height); + }) + .gameOverlay(false) + .go(); + } +}; + +/* exported Installer */ +var Installer = Java.extend(org.phoenicis.scripts.Installer, installerImplementation); diff --git a/Applications/Games/PC Building Simulator/Steam/script.json b/Applications/Games/PC Building Simulator/Steam/script.json new file mode 100644 index 0000000000..ccc5cb3d30 --- /dev/null +++ b/Applications/Games/PC Building Simulator/Steam/script.json @@ -0,0 +1,11 @@ +{ + "scriptName" : "Steam", + "id" : "pcbs_steam", + "compatibleOperatingSystems" : [ + "MACOSX", + "LINUX" + ], + "testingOperatingSystems" : [], + "free" : false, + "requiresPatch" : false +} diff --git a/Applications/Games/PC Building Simulator/application.json b/Applications/Games/PC Building Simulator/application.json new file mode 100644 index 0000000000..9c8a31cf7c --- /dev/null +++ b/Applications/Games/PC Building Simulator/application.json @@ -0,0 +1,5 @@ +{ + "name" : "PC Building Simulator", + "id" : "pcbs", + "description" : "Build your very own PC empire, from simple diagnosis and repairs to bespoke, boutique creations that would be the envy of any enthusiast. With an ever-expanding marketplace full of real-world components you can finally stop dreaming of that ultimate PC and get out there, build it and see how it benchmarks in 3DMark!" +} diff --git a/Applications/Games/PC Building Simulator/miniatures/main.png b/Applications/Games/PC Building Simulator/miniatures/main.png new file mode 100644 index 0000000000..c551f98910 Binary files /dev/null and b/Applications/Games/PC Building Simulator/miniatures/main.png differ