Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions Applications/Games/PC Building Simulator/Steam/script.js
Original file line number Diff line number Diff line change
@@ -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);
11 changes: 11 additions & 0 deletions Applications/Games/PC Building Simulator/Steam/script.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"scriptName" : "Steam",
"id" : "pcbs_steam",
"compatibleOperatingSystems" : [
"MACOSX",
"LINUX"
],
"testingOperatingSystems" : [],
"free" : false,
"requiresPatch" : false
}
5 changes: 5 additions & 0 deletions Applications/Games/PC Building Simulator/application.json
Original file line number Diff line number Diff line change
@@ -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!"
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.