- CheckMates
- :
- Products
- :
- General Topics
- :
- Re: Installing Doom in SmartConsole
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Are you a member of CheckMates?
×- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Installing Doom in SmartConsole
Hello everyone,
I was inspired by the following article sk164752 Installing DOOM on Gaia and I was considering whether this would also work in the SmartConsole. Since the SmartConsole is web based and uses Javascript, I was hopeful!
For copyright reasons, I do not want to provide a ready SmartConsole Extension here.
To run the game and other DOS games, you can use the javascript DOS box from:
https://js-dos.com
However, you can easily install the game and other games by following the steps below.
- Chapters
- descriptions off, selected
- captions settings, opens captions settings dialog
- captions off, selected
This is a modal window.
Beginning of dialog window. Escape will cancel and close the window.
End of dialog window.
This is a modal window. This modal can be closed by pressing the Escape key or activating the close button.
Please note this procedure is not supported and not secure.
Under no circumstances should this be done in a production environment.
This is a proof of concept and for fun:
1) Upload the following files to your web server.
-> https://js-dos.com/cdn/DOOM.png
-> https://js-dos.com/cdn/js-dos-api.js
-> https://js-dos.com/cdn/js-dos-v3.js
2) Find the following place in the file „js-dos-api.js“ and remove the crossed out area.
…
return new Dosbox.Xhr('https://js-dos.com/cdn/js-dos-v3.js', {
…
3) Search on Google for the following file and copy it to your web server.
-> DOOM-@evilution.zip
4) Create the following manifest file on the web server.
-> doom.json
{
"extension": {
"name": "Doom",
"version": "1.0",
"description": "---",
"author": "---",
"email": "---",
"product-url": "---e",
"provider": "---",
"license": "GPL",
"extension-version-requirements": {
"minimum-version": "1.2"
}
},
"locations": [
{
"location": "details-pane",
"relevant-types": ["gateways"],
"ui-element": {
"type": "tab",
"caption": "Doom",
"tooltip": "Doom Tip.",
"action": {
"details-level": "full",
"method": "get",
"trigger-id": "gateways-details-pane",
"url": "doom.htm"
}
}
}
],
"requested-permissions": {
"client": ["get-read-only-session", "run-read-only-commands"]
}
}
5) Create the following html file on the web server
-> doom.htm
<!doctype html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>DOOM</title>
<style type="text/css">
.dosbox-container { width: 640px; height: 400px; }
.dosbox-container > .dosbox-overlay { background: url(DOOM.png); }
</style>
</head>
<body>
<div id="dosbox"></div>
<script type="text/javascript" src="js-dos-api.js"></script>
<script type="text/javascript">
var dosbox = new Dosbox({
id: "dosbox",
onload: function (dosbox) {
dosbox.run("DOOM-@evilution.zip", "./DOOM/DOOM.EXE");
},
onrun: function (dosbox, app) {
console.log("App '" + app + "' is runned");
}
});
</script>
</body>
</html>
Now you can install the manifest file "doom.json" over the SmartConsole.
Have fun playing Doom.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Have created a git repository:
git clone https://github.com/fgdoom1/doom1.git
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
What exactly do I have to do to install the Doom repository?
What steps are necessary?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Web Server |
1) Change to the web root directory of your web server.
2) Execute the command:
# git clone https://github.com/fgdoom1/doom1.git
Smart Console |
1) On SmartConsole, go to Manage & Settings > Preferences > SmartConsole Extensions
Click the + to import SmartConsole Extension
2) Enter the URL for the Doom manifest file.
https://<your-web-server>/doom1/doom1.json
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Even if you can, it does not mean you should 🙂
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Is there also the game Grand Theft Auto available?
😂😀🤣
