forked from ahmet360/oldGBA
-
Notifications
You must be signed in to change notification settings - Fork 4
/
launchpad.html
120 lines (101 loc) · 5.28 KB
/
launchpad.html
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html>
<head>
<script async src="https://arc.io/widget.min.js#C5tJKq6m"></script>
<link rel="stylesheet" href = user_css/popup.css>
<title>EmulatorJS</title>
<link rel = icon href = docs/favicon.ico sizes = "16x16 32x32 48x48 64x64" type = image/vnd.microsoft.icon>
<meta name = viewport content = "width = device-width, initial-scale = 1">
<meta name="description" content= """>
<link rel = stylesheet href = user_css/player.css>
<!-- Google tag (gtag.js) -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-5358301512554034"
crossorigin="anonymous"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-0EWLVXK992"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-0EWLVXK992');
</script>
<style>
body, html {
height: 100%;
}
body {
font-family: monospace;
font-weight: bold;
font-size: 20px;
margin: 0;
}
</style>
</head>
<body>
<div class="gameplayer-2">
<div id='game'></div>
</div>
<script src="data/js/loadgame/loadGbagame.js"></script>
<script src="data/js/loadgame/loadGbgame.js"></script>
<script src="data/js/loadgame/loadGbcgame.js"></script>
<script src="data/js/loadgame/loadAtari52game.js"></script>
<script src="data/js/loadgame/loadN64game.js"></script>
<script src="data/js/loadgame/loadNdsgame.js"></script>
<script src="data/js/loadgame/loadNesgame.js"></script>
<script src="data/js/loadgame/loadPsxgame.js"></script>
<script src="data/js/loadgame/loadSnesgame.js"></script>
<script src="data/js/loadgame/loadSegaMDgame.js"></script>
<script src="data/js/type.js"></script>
<script src="data/js/loadtype.js"></script>
<script src="data/js/swap.js"></script>
<script type='text/javascript'>
EJS_player = '#game';
EJS_core = gameCoreType;
// URL to Bios file
EJS_biosUrl = gameName;
// URL to Game rom
EJS_gameUrl = gameName;
/*
* Path to the WASM / JS files
* HAS TO BE in the same directory.
*/
EJS_gameID = gameTypeID;
EJS_oldCores = doOldCores;
EJS_DEBUG_XX = true;
EJS_pathtodata = 'data/';
EJS_netplayUrl = "https://56022252-0447-4941-90a5-f79b0cdbaabb.id.repl.co:/";
</script>
<script src='data/loader.js'></script>
<div class="bottom-content">
<p class="heading"> Return <a href="index.html">Home</a></p>
<p class="heading">Like this game? Star it to find it later! <a href="index_beta.html" onclick="gameStarSelected();">Star me!</a> <input style="width: 200px;" type="text" value="" id="inputText"> <button onclick="copyFunction()">Share Link!</button></p>
<p class="heading">Want to embed this game on your site? <input style="width: 200px;" type="text" value="" id="inputText"> <button onclick="embedCopy()">Get Embed Code!</button></p>
<p class="heading"> Remember to save your games manually too sometimes! </p>
<p class="heading"> Have a ROM of your own? <a href="testlaunch.html">Click here</a> to upload and play it!</p>
<br>
</div>
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<div class="center-row">
<p>All chromeOS users on our website, please fill out this one question survey, takes like 20 seconds, and helps us unblock things! Filling it out will hide this message permanently.</p>
</div>
<div class="space-frame"></div>
<div class="button-row"><a class="bottom-buttons button-frame frame-three" href="https://hardwaresurvery.i10.repl.co/" onclick="dontShowAgain();">Main Survey Link</a> <a class="bottom-buttons button-frame frame-three" onclick="dontShowAgain();" href="https://hard.pablobingle.me/">Backup Link</a></div>
</div>
</div>
<div id="myModal1" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<div class="center-row">
<p>You may get asked for camera permissions when playing GB and GBC games. This is due to fact the Game Boy has an attachment called the Game Boy Camera. Your camera is NOT being used in anyway by us. This includes recording, viewing, saving, tracking, etc. The only time the canera MAY be actually used is when you open the GBC game for the GBC, and it probably won't even work....<br><br> We are telling you this because we feel like privacy is important! If you have ANY questions, ask us in our server!</p>
</div>
<div class="space-frame"></div>
<div class="button-row"><a class="bottom-buttons button-frame frame-three" href="#" onclick="dontShowAgain();">Acknowledge This</a></div>
</div>
</div>
</body>
<script src="user_scripts/player-theme.js"></script>
<script src="user_scripts/popup.js"></script>
</html>