-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
134 lines (110 loc) · 7.46 KB
/
index.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!doctype html>
<html lang="en">
<head>
<title>Super Game Boy Border Injector</title>
<meta name="description" content="This tool can easily inject a Super Game Boy border into a Game Boy ROM."/>
<meta name="keywords" content="super, game, boy, border, injector, sgb, snes"/>
<meta http-equiv="content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
<link type="text/css" rel="stylesheet" href="web-injector/app/style.css" media="all"/>
<link rel="shortcut icon" href="web-injector/assets/favicon.png" type="image/png" sizes="16x16"/>
<!-- social network metatags -->
<meta name="twitter:site" content="@marc_robledo">
<meta name="twitter:creator" content="@marc_robledo">
<meta name="twitter:domain" content="marcrobledo.com">
<meta property="og:title" content="Super Game Boy Border Injector">
<meta name="twitter:title" content="Super Game Boy Border Injector">
<meta name="twitter:description" content="This tool can easily inject a Super Game Boy border into a Game Boy ROM.">
<meta property="og:image" content="https://www.marcrobledo.com/super-game-boy-border-injector/web-injector/assets/thumbnail.jpg">
<meta name="twitter:image" content="https://www.marcrobledo.com/super-game-boy-border-injector/web-injector/assets/thumbnail.jpg">
<meta name="twitter:card" content="photo">
<script src="web-injector/app/cash.min.js"></script>
<script src="web-injector/app/FileSaver.min.js"></script>
<script type="module" src="web-injector/app/main.js"></script>
</head>
<body>
<div style="flex-grow:1; display:flex; align-items:center; flex-direction:column;justify-content: center;">
<header>
<h1>Super Game Boy Border Injector</h1>
<img id="logo" src="web-injector/assets/logo.png" loading="lazy" alt="Super Game Boy Border Injector logo" />
</header>
<div id="wrapper">
<main>
<div id="intro">
<div>
<p>This tool allows you to easily add a Super Game Boy border to your favorite Game Boy game!<span class="help" title="a few Game Boy games might not be compatible">*</span></p>
<p>Choose between a collection of fan-made borders or attach your own border.</p>
</div>
<div>
<a href="https://www.paypal.com/paypalme/marcrobledo/5" target="_blank"><button class="btn btn-donate"><img src="web-injector/assets/octicon_heart.svg" alt="love" class="octicon" /> <span>Donate</span></button></a>
</div>
</div>
<p>Provide a Game Boy ROM and a border below:</p>
<div id="pickers">
<!-- ROM -->
<button id="picker-rom" class="picker">
<div class="picker-thumbnail">
<img src="web-injector/assets/cartridge_gb.png" />
</div>
<div id="picker-header-rom" class="picker-header"><span id="picker-check-rom" class="picker-check"></span>Game ROM</div>
<div id="picker-title-rom" class="picker-title">None</div>
</button>
<input type="file" id="input-file-rom" accept=".gb,.gbc" />
<!-- BORDER -->
<button id="picker-border" class="picker">
<div class="picker-thumbnail">
<canvas id="canvas-preview" width="256" height="224"></canvas>
</div>
<div id="picker-header-border" class="picker-header"><span id="picker-check-border" class="picker-check"></span>Border</div>
<div id="picker-title-border" class="picker-title">None</div>
</button>
<!-- PALETTE -->
<button id="picker-palette" class="picker">
<div class="picker-thumbnail">
<div id="palette"><span id="palette-color0" class="palette-color"></span><span id="palette-color1" class="palette-color"></span><span id="palette-color2" class="palette-color"></span><span id="palette-color3" class="palette-color"></span></div>
</div>
<input type="color" id="input-color0" class="input-color" value="#e0f8d0" />
<input type="color" id="input-color1" class="input-color" value="#88c070" />
<input type="color" id="input-color2" class="input-color" value="#346856" />
<input type="color" id="input-color3" class="input-color" value="#081820" />
<div d="picker-header-palette" class="picker-header"><span id="picker-check-palette" class="picker-check"></span>Custom SGB palette</div>
<div id="picker-title-palette" class="picker-title">No</div>
</button>
</div>
<div class="text-center">
<button type="button" id="btn-build" class="btn btn-primary" disabled><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="currentColor" d="M2.75 14A1.75 1.75 0 0 1 1 12.25v-2.5a.75.75 0 0 1 1.5 0v2.5c0 .14.11.25.25.25h10.5a.25.25 0 0 0 .25-.25v-2.5a.75.75 0 0 1 1.5 0v2.5A1.75 1.75 0 0 1 13.25 14Z"/><path fill="currentColor" d="M7.25 7.69V2a.75.75 0 0 1 1.5 0v5.69l1.97-1.97a.75.75 0 1 1 1.06 1.06l-3.25 3.25a.75.75 0 0 1-1.06 0L4.22 6.78a.75.75 0 1 1 1.06-1.06l1.97 1.97Z"/></svg> <span>Create Super Game Boy ROM</span></button>
</div>
</main>
</div>
</div>
<dialog id="dialog-borders">
<div id="dialog-borders-header">
<div>
<label><input type="radio" name="radio-border" id="radio-border-file" checked /> Custom border</label>
<label><input type="radio" name="radio-border" id="radio-border-gallery" /> Choose from gallery</label>
</div>
<button class="btn-dialog-close"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16"><path d="M3.72 3.72a.75.75 0 0 1 1.06 0L8 6.94l3.22-3.22a.75.75 0 0 1 1.27.33.75.75 0 0 1-.21.73L9.06 8l3.22 3.22a.75.75 0 0 1-.33 1.27.75.75 0 0 1-.73-.21L8 9.06l-3.22 3.22a.75.75 0 0 1-1.04-.02.75.75 0 0 1-.02-1.04L6.94 8 3.72 4.78a.75.75 0 0 1 0-1.06Z"/></svg></button>
</div>
<div id="choose-border-file">
<p>In order to inject your own custom border, you need to provide the <span class="mono">.sgb</span> file or the three <span class="mono">.bin</span> files (map, tiles and palette) containing the required SGB data.</p>
<div style="display:flex; gap:24px; align-items:center; justify-content: center; min-height:80px;">
<button id="btn-custom-border" class="btn btn-primary">
<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16"><path d="M2.75 14A1.75 1.75 0 0 1 1 12.25v-2.5a.75.75 0 0 1 1.5 0v2.5c0 .14.11.25.25.25h10.5a.25.25 0 0 0 .25-.25v-2.5a.75.75 0 0 1 1.5 0v2.5A1.75 1.75 0 0 1 13.25 14Z"/><path d="M11.78 4.72a.75.75 0 1 1-1.06 1.06L8.75 3.81V9.5a.75.75 0 0 1-1.5 0V3.81L5.28 5.78a.75.75 0 1 1-1.06-1.06l3.25-3.25a.75.75 0 0 1 1.06 0l3.25 3.25Z"/></svg> <span>Attach SGB data files</span>
</button>
<div id="temp-data-log"></div>
</div>
<input type="file" id="input-file-border" accept=".bin,.sgb" multiple />
<p>If you are looking to convert an image file to SGB data files, use <a href="https://www.marcrobledo.com/super-game-boy-border-converter" target="_blank">Super Game Boy Border Converter</a> first.</p>
</div>
<div id="choose-border-gallery">
<p class="text-center">Want to add your own border to the gallery? <a href="https://github.com/marcrobledo/super-game-boy-border-injector/issues/12" target="_blank">Contribute here!</a></p>
<div id="border-gallery"></div>
</div>
</dialog>
<footer>
Super Game Boy Border Injector v2.0<br/>
made with <span class="love" title="Super love">Super <img src="web-injector/assets/octicon_heart_color.svg" alt="love" class="octicon" /></span> by <a href="https://www.marcrobledo.com" target="_blank">Marc Robledo</a>
<img src="web-injector/assets/octicon_github.svg" alt="GitHub logo" class="octicon" /> <a href="https://github.com/marcrobledo/super-game-boy-border-injector/" target="_blank">See sourcecode in GitHub</a>
</footer>
</body>
</html>