2023-10-12 02:49:07 -04:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8"></meta>
|
|
|
|
<meta name="viewport" content="initial-scale=2.0"></meta>
|
|
|
|
<meta name="description" content="A HTML client for icondumper2"></meta>
|
|
|
|
<title>input validation test</title>
|
|
|
|
<script src="icon.js"></script>
|
|
|
|
<style>
|
|
|
|
html {color: #ccc; background: black; font-family: sans-serif}
|
|
|
|
#title1, #title2 {
|
|
|
|
color: yellow;
|
|
|
|
text-align: right;
|
|
|
|
/*text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;*/
|
|
|
|
right: 8px;
|
|
|
|
position: relative;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
#version {position: fixed;bottom:4px;right:4px}
|
2023-10-15 15:28:59 -04:00
|
|
|
#advanced {display: none}
|
2023-10-17 10:26:08 -04:00
|
|
|
#iconcanvas {position: absolute; left: 8px}
|
2023-10-12 02:49:07 -04:00
|
|
|
</style>
|
2023-10-17 10:26:08 -04:00
|
|
|
<meta data-comment="WebGL Shader: Icon">
|
|
|
|
<script type="text/plain" id="shader-icon-v">
|
|
|
|
attribute vec3 a_position;
|
|
|
|
attribute vec3 a_normal;
|
|
|
|
attribute vec2 a_textureCoords;
|
|
|
|
attribute vec4 a_color;
|
|
|
|
|
|
|
|
varying lowp vec4 v_color;
|
2023-10-17 15:59:54 -04:00
|
|
|
varying lowp vec2 v_textureCoords;
|
2023-10-17 10:26:08 -04:00
|
|
|
|
|
|
|
void main() {
|
|
|
|
// x, y, z, scale (w)
|
|
|
|
gl_Position = vec4(
|
|
|
|
a_position.x,
|
|
|
|
(0.0 - a_position.y) - 2.75, // invert the y position and move down -2.75, which will center the model
|
|
|
|
a_position.z,
|
|
|
|
3.0
|
|
|
|
);
|
|
|
|
// flip it, scale it
|
|
|
|
v_textureCoords = a_textureCoords;
|
2023-10-17 15:59:54 -04:00
|
|
|
v_color = a_color;
|
2023-10-17 10:26:08 -04:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<script type="text/plain" id="shader-icon-f">
|
|
|
|
varying lowp vec4 v_color;
|
|
|
|
|
|
|
|
void main() {
|
|
|
|
gl_FragColor = v_color;
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<script type="text/plain" id="shader-icon-f2">
|
2023-10-17 15:59:54 -04:00
|
|
|
varying lowp vec2 v_textureCoords;
|
2023-10-17 10:26:08 -04:00
|
|
|
uniform sampler2D u_sampler;
|
|
|
|
|
|
|
|
void main() {
|
|
|
|
gl_FragColor = texture2D(u_sampler, v_textureCoords);
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<meta data-comment="WebGL Shader: Background">
|
|
|
|
<script type="text/plain" id="shader-bg-v">
|
|
|
|
attribute vec2 a_position;
|
2023-10-12 02:49:07 -04:00
|
|
|
attribute vec4 a_color;
|
|
|
|
|
|
|
|
varying lowp vec4 vColor;
|
|
|
|
|
|
|
|
void main() {
|
2023-10-17 10:26:08 -04:00
|
|
|
// x, y, z, scale (w)
|
|
|
|
gl_Position = vec4(a_position, 0.99, 1.0);
|
2023-10-12 02:49:07 -04:00
|
|
|
vColor = a_color;
|
|
|
|
}
|
|
|
|
</script>
|
2023-10-17 10:26:08 -04:00
|
|
|
<script type="text/plain" id="shader-bg-f">
|
2023-10-12 02:49:07 -04:00
|
|
|
precision mediump float;
|
|
|
|
varying lowp vec4 vColor;
|
|
|
|
|
|
|
|
void main() {
|
|
|
|
gl_FragColor = vColor;
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<label for="strictnessOption">enable strict mode</label>
|
|
|
|
<input id="strictnessOption" type="checkbox" checked></input>
|
2023-10-15 15:28:59 -04:00
|
|
|
<span>(enables console-accurate title parsing) | </span>
|
|
|
|
<label for="showExtractedInputOption">show other import options</label>
|
|
|
|
<input id="showExtractedInputOption" type="checkbox"></input>
|
2023-10-12 02:49:07 -04:00
|
|
|
<hr>
|
|
|
|
<br>
|
|
|
|
<h1 id="title1">No File</h1>
|
|
|
|
<h1 id="title2">Loaded</h1>
|
2023-10-17 10:26:08 -04:00
|
|
|
<span>Background/icon preview:</span><br>
|
|
|
|
<canvas id="bgcanvas" width="360" height="360"></canvas>
|
|
|
|
<canvas id="iconcanvas" width="360" height="360"></canvas>
|
2023-10-12 02:49:07 -04:00
|
|
|
<hr>
|
2023-10-17 10:26:08 -04:00
|
|
|
<p>Normal: <kbd id="iconn">(no file)</kbd> Copying: <kbd id="iconc">(no file)</kbd> Deleting: <kbd id="icond">(no file)</kbd></p>
|
2023-10-15 15:28:59 -04:00
|
|
|
<div id="advanced">
|
|
|
|
<hr>
|
|
|
|
<label for="input">icon.sys goes here:</label>
|
|
|
|
<input type="file" id="input" name="input" accept=".sys" />
|
|
|
|
<br>
|
|
|
|
<label for="icon">.ic(n|o) goes here:</label>
|
|
|
|
<input type="file" id="icon" name="icon" accept=".icn, .ico" />
|
|
|
|
<br>
|
|
|
|
</div>
|
2023-10-12 02:49:07 -04:00
|
|
|
<hr>
|
2023-10-12 05:51:46 -04:00
|
|
|
<label for="psuinput">EMS Memory Adapter export file (.psu) goes here:</label>
|
2023-10-12 02:49:07 -04:00
|
|
|
<input type="file" id="psuinput" name="psuinput" accept=".psu" />
|
|
|
|
<br>
|
2023-10-12 05:51:46 -04:00
|
|
|
<label for="psvinput">PS3 export file (.psv) goes here:</label>
|
|
|
|
<input type="file" id="psvinput" name="psvinput" accept=".psv" />
|
|
|
|
<br>
|
2023-10-15 15:28:59 -04:00
|
|
|
<label for="spsinput">SharkPort/X-Port export file (.sps, .xps) goes here:</label>
|
|
|
|
<input type="file" id="spsinput" name="spsinput" accept=".sps, .xps" />
|
|
|
|
<br>
|
2023-10-12 02:49:07 -04:00
|
|
|
<p>
|
|
|
|
<span>Date created: </span><span id="dateCreated">--:--:-- --/--/----</span><span> UTC+09:00</span>
|
|
|
|
<br>
|
|
|
|
<span>Date modified: </span><span id="dateModified">--:--:-- --/--/----</span><span> UTC+09:00</span>
|
|
|
|
</p>
|
2023-10-15 15:28:59 -04:00
|
|
|
<p>
|
|
|
|
<span>File comments: </span><span id="fileCommentGame">(no title)</span></span><span> - </span><span id="fileCommentName">(no description)</span>
|
|
|
|
</p>
|
2023-10-12 02:49:07 -04:00
|
|
|
<script>
|
2023-10-17 10:26:08 -04:00
|
|
|
// I usually don't do in-body <script>'s, but I didn't want to do an await onload again
|
2023-10-12 02:49:07 -04:00
|
|
|
function updateDisplay(input) {
|
|
|
|
document.getElementById("title1").textContent = input.title[0];
|
|
|
|
document.getElementById("title2").textContent = input.title[1];
|
|
|
|
document.getElementById("iconn").textContent = input.filenames.n;
|
|
|
|
document.getElementById("iconc").textContent = input.filenames.c;
|
|
|
|
document.getElementById("icond").textContent = input.filenames.d;
|
2023-10-17 10:26:08 -04:00
|
|
|
let colours = input.background;
|
|
|
|
if(glBgContext !== null) {
|
2023-10-12 02:49:07 -04:00
|
|
|
colors = [
|
2023-10-17 10:26:08 -04:00
|
|
|
colours.colors[0].r/255,
|
|
|
|
colours.colors[0].g/255,
|
|
|
|
colours.colors[0].b/255,
|
|
|
|
(colours.alpha*2)/255,
|
|
|
|
colours.colors[1].r/255,
|
|
|
|
colours.colors[1].g/255,
|
|
|
|
colours.colors[1].b/255,
|
|
|
|
(colours.alpha*2)/255,
|
|
|
|
colours.colors[2].r/255,
|
|
|
|
colours.colors[2].g/255,
|
|
|
|
colours.colors[2].b/255,
|
|
|
|
(colours.alpha*2)/255,
|
|
|
|
colours.colors[3].r/255,
|
|
|
|
colours.colors[3].g/255,
|
|
|
|
colours.colors[3].b/255,
|
|
|
|
(colours.alpha*2)/255
|
2023-10-12 02:49:07 -04:00
|
|
|
];
|
2023-10-17 10:26:08 -04:00
|
|
|
drawBackground(colors);
|
2023-10-12 02:49:07 -04:00
|
|
|
}
|
|
|
|
}
|
2023-10-12 05:51:46 -04:00
|
|
|
function resetDisplay() {
|
|
|
|
document.getElementById("title1").textContent = "\uff0d";
|
|
|
|
document.getElementById("title2").textContent = "\uff0d";
|
|
|
|
document.getElementById("iconn").textContent = "?";
|
|
|
|
document.getElementById("iconc").textContent = "?";
|
|
|
|
document.getElementById("icond").textContent = "?";
|
|
|
|
document.getElementById("dateCreated").textContent = "--:--:-- --/--/----";
|
|
|
|
document.getElementById("dateModified").textContent = "--:--:-- --/--/----";
|
2023-10-17 15:59:54 -04:00
|
|
|
document.getElementById("fileCommentGame").textContent = "(no title)";
|
|
|
|
document.getElementById("fileCommentName").textContent = "(no description)";
|
2023-10-17 10:26:08 -04:00
|
|
|
}
|
|
|
|
function renderIcon(iconData) {
|
|
|
|
if(glFgContext === null) {return -1;} else {
|
|
|
|
const texture = glFgContext.createTexture();
|
|
|
|
glFgContext.bindTexture(glFgContext.TEXTURE_2D, texture);
|
2023-10-17 15:59:54 -04:00
|
|
|
if (iconData.textureFormat !== "N") {
|
|
|
|
let rgb5a1_converted;
|
|
|
|
if (iconData.textureFormat === "C") {
|
|
|
|
let uncompressed = uncompressTexture(iconData.texture.data);
|
|
|
|
rgb5a1_converted = convertBGR5A1toRGB5A1(uncompressed.buffer);
|
|
|
|
} else {
|
|
|
|
rgb5a1_converted = convertBGR5A1toRGB5A1(iconData.texture.buffer);
|
|
|
|
}
|
|
|
|
glFgContext.texImage2D(glFgContext.TEXTURE_2D, 0, glFgContext.RGBA, 128, 128, 0, glFgContext.RGBA, glFgContext.UNSIGNED_SHORT_5_5_5_1, rgb5a1_converted);
|
2023-10-17 10:26:08 -04:00
|
|
|
glFgContext.generateMipmap(glFgContext.TEXTURE_2D);
|
|
|
|
}
|
|
|
|
//.section PROGRAM.icon
|
|
|
|
if(iconData.textureFormat !== "N") {
|
2023-10-17 15:59:54 -04:00
|
|
|
var iconVertexShader = createShader(glFgContext, glFgContext.VERTEX_SHADER, document.getElementById("shader-icon-v").text);
|
2023-10-17 10:26:08 -04:00
|
|
|
var iconFragmentShader = createShader(glFgContext, glFgContext.FRAGMENT_SHADER, document.getElementById("shader-icon-f2").text);
|
|
|
|
} else {
|
|
|
|
var iconVertexShader = createShader(glFgContext, glFgContext.VERTEX_SHADER, document.getElementById("shader-icon-v").text);
|
|
|
|
var iconFragmentShader = createShader(glFgContext, glFgContext.FRAGMENT_SHADER, document.getElementById("shader-icon-f").text);
|
|
|
|
}
|
|
|
|
var iconProgram = createProgram(glFgContext, iconVertexShader, iconFragmentShader);
|
|
|
|
glFgContext.useProgram(iconProgram);
|
|
|
|
if(iconData.textureFormat !== "N") {
|
|
|
|
var attributes = {
|
|
|
|
position: glFgContext.getAttribLocation(iconProgram, "a_position"),
|
|
|
|
textureCoords: glFgContext.getAttribLocation(iconProgram, "a_textureCoords")
|
|
|
|
};
|
|
|
|
var uniforms = {
|
|
|
|
sampler: glFgContext.getUniformLocation(iconProgram, "u_sampler")
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
var attributes = {
|
|
|
|
position: glFgContext.getAttribLocation(iconProgram, "a_position"),
|
|
|
|
color: glFgContext.getAttribLocation(iconProgram, "a_color")
|
|
|
|
};
|
|
|
|
}
|
|
|
|
//.section SETUP
|
|
|
|
let verticesArray = new Array();
|
|
|
|
let colourArray = new Array();
|
|
|
|
let uvArray = new Array();
|
|
|
|
iconData.vertices.forEach(function(vertexObject){
|
|
|
|
verticesArray.push(vertexObject.shapes[0].x);
|
|
|
|
verticesArray.push(vertexObject.shapes[0].y);
|
|
|
|
verticesArray.push(vertexObject.shapes[0].z);
|
|
|
|
colourArray.push(vertexObject.color.r/255);
|
|
|
|
colourArray.push(vertexObject.color.g/255);
|
|
|
|
colourArray.push(vertexObject.color.b/255);
|
|
|
|
colourArray.push(vertexObject.color.a/255);
|
|
|
|
uvArray.push(vertexObject.uv.u);
|
|
|
|
uvArray.push(vertexObject.uv.v);
|
|
|
|
});
|
|
|
|
//.section VERTICES
|
|
|
|
const positionBuffer = glFgContext.createBuffer();
|
|
|
|
glFgContext.bindBuffer(glFgContext.ARRAY_BUFFER, positionBuffer);
|
|
|
|
glFgContext.enableVertexAttribArray(attributes.position);
|
|
|
|
glFgContext.bufferData(glFgContext.ARRAY_BUFFER, new Float32Array(verticesArray), glFgContext.STATIC_DRAW);
|
|
|
|
glFgContext.vertexAttribPointer(attributes.position, 3, glFgContext.FLOAT, false, 0, 0);
|
|
|
|
if(iconData.textureFormat === "N") {
|
|
|
|
//.section COLOURS
|
|
|
|
const colorBuffer = glFgContext.createBuffer();
|
|
|
|
glFgContext.bindBuffer(glFgContext.ARRAY_BUFFER, colorBuffer);
|
|
|
|
glFgContext.enableVertexAttribArray(attributes.color);
|
|
|
|
glFgContext.bufferData(glFgContext.ARRAY_BUFFER, new Float32Array(colourArray), glFgContext.STATIC_DRAW);
|
|
|
|
glFgContext.vertexAttribPointer(attributes.color, 4, glFgContext.FLOAT, false, 0, 0);
|
|
|
|
} else {
|
|
|
|
//.section UV
|
|
|
|
const uvBuffer = glFgContext.createBuffer();
|
|
|
|
glFgContext.bindBuffer(glFgContext.ARRAY_BUFFER, uvBuffer);
|
|
|
|
glFgContext.enableVertexAttribArray(attributes.textureCoords);
|
|
|
|
glFgContext.bufferData(glFgContext.ARRAY_BUFFER, new Float32Array(uvArray), glFgContext.STATIC_DRAW);
|
|
|
|
glFgContext.vertexAttribPointer(attributes.textureCoords, 2, glFgContext.FLOAT, false, 0, 0);
|
|
|
|
//.section TEXTURE
|
|
|
|
glFgContext.activeTexture(glFgContext.TEXTURE0);
|
|
|
|
glFgContext.bindTexture(glFgContext.TEXTURE_2D, texture);
|
|
|
|
glFgContext.uniform1i(uniforms.sampler, 0);
|
|
|
|
}
|
|
|
|
//.section WRITE
|
|
|
|
glFgContext.drawArrays(glFgContext.TRIANGLES, 0, (verticesArray.length/3));
|
|
|
|
}
|
|
|
|
}
|
2023-10-12 02:49:07 -04:00
|
|
|
document.getElementById("strictnessOption").onchange = function(e) {
|
|
|
|
setStrictness(e.target.checked);
|
|
|
|
if(!!filebox.files.length) {filebox.onchange();}
|
|
|
|
if(!!iconbox.files.length) {iconbox.onchange();}
|
|
|
|
if(!!psubox.files.length) {psubox.onchange();}
|
|
|
|
}
|
|
|
|
filebox = document.getElementById("input");
|
|
|
|
filebox.onchange = function(e) {
|
2023-10-12 05:51:46 -04:00
|
|
|
resetDisplay();
|
2023-10-12 02:49:07 -04:00
|
|
|
if(filebox.files.length === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
filebox.files[0].arrayBuffer().then(function(d){
|
|
|
|
try {
|
|
|
|
let output = readPS2D(d);
|
|
|
|
console.log("icon.sys", output);
|
|
|
|
updateDisplay(output);
|
|
|
|
} catch(e) {
|
2023-10-17 10:26:08 -04:00
|
|
|
if(glBgContext!==null){glBgContext.clear(glBgContext.COLOR_BUFFER_BIT);}
|
2023-10-12 02:49:07 -04:00
|
|
|
alert(e);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
iconbox = document.getElementById("icon");
|
|
|
|
iconbox.onchange = function(e) {
|
|
|
|
if(iconbox.files.length === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
iconbox.files[0].arrayBuffer().then(function(d){
|
|
|
|
try {
|
|
|
|
let output = readIconFile(d);
|
2023-10-17 10:26:08 -04:00
|
|
|
renderIcon(output);
|
2023-10-12 02:49:07 -04:00
|
|
|
console.log("model data",output);
|
|
|
|
} catch(e) {
|
2023-10-17 10:26:08 -04:00
|
|
|
if(glFgContext!==null){glFgContext.clear(glFgContext.COLOR_BUFFER_BIT | glFgContext.DEPTH_BUFFER_BIT);}
|
2023-10-12 02:49:07 -04:00
|
|
|
alert(e);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
psubox = document.getElementById("psuinput");
|
|
|
|
psubox.onchange = function(e) {
|
2023-10-12 05:51:46 -04:00
|
|
|
resetDisplay();
|
2023-10-12 02:49:07 -04:00
|
|
|
if(psubox.files.length === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
psubox.files[0].arrayBuffer().then(function(d){
|
|
|
|
try {
|
|
|
|
let vFilesystem = readEmsPsuFile(d);
|
|
|
|
let output = readPS2D(vFilesystem[vFilesystem.rootDirectory]["icon.sys"].data);
|
|
|
|
updateDisplay(output);
|
|
|
|
let output2 = new Object();
|
|
|
|
Object.keys(output.filenames).forEach(function(file) {
|
|
|
|
output2[file] = readIconFile(vFilesystem[vFilesystem.rootDirectory][output.filenames[file]].data);
|
|
|
|
});
|
2023-10-17 10:26:08 -04:00
|
|
|
renderIcon(output2.n);
|
2023-10-12 02:49:07 -04:00
|
|
|
let cTime = vFilesystem.timestamps.created;
|
|
|
|
let mTime = vFilesystem.timestamps.modified;
|
|
|
|
//TODO: use Time() to align JST times to user-local timezone
|
|
|
|
document.getElementById("dateCreated").textContent = `${cTime.hours.toString().padStart("2","0")}:${cTime.minutes.toString().padStart("2","0")}:${cTime.seconds.toString().padStart("2","0")} ${cTime.day.toString().padStart("2","0")}/${cTime.month.toString().padStart("2","0")}/${cTime.year}`;
|
|
|
|
document.getElementById("dateModified").textContent = `${mTime.hours.toString().padStart("2","0")}:${mTime.minutes.toString().padStart("2","0")}:${mTime.seconds.toString().padStart("2","0")} ${mTime.day.toString().padStart("2","0")}/${mTime.month.toString().padStart("2","0")}/${mTime.year}`;
|
|
|
|
console.log("model files", output2);
|
|
|
|
} catch(e) {
|
2023-10-17 10:26:08 -04:00
|
|
|
if(glBgContext!==null){glBgContext.clear(glBgContext.COLOR_BUFFER_BIT);}
|
|
|
|
if(glFgContext!==null){glFgContext.clear(glFgContext.COLOR_BUFFER_BIT | glFgContext.DEPTH_BUFFER_BIT);}
|
2023-10-12 02:49:07 -04:00
|
|
|
alert(e);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2023-10-12 05:51:46 -04:00
|
|
|
psvbox = document.getElementById("psvinput");
|
|
|
|
psvbox.onchange = function(e) {
|
|
|
|
resetDisplay();
|
|
|
|
if(psvbox.files.length === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
psvbox.files[0].arrayBuffer().then(function(d){
|
|
|
|
try {
|
|
|
|
let inputData = readPsvFile(d);
|
|
|
|
let output = readPS2D(inputData["icon.sys"]);
|
|
|
|
updateDisplay(output);
|
2023-10-17 15:59:54 -04:00
|
|
|
renderIcon(readIconFile(inputData.icons.n));
|
2023-10-12 16:59:39 -04:00
|
|
|
let cTime = inputData.timestamps.created;
|
|
|
|
let mTime = inputData.timestamps.modified;
|
|
|
|
//TODO: use Time() to align JST times to user-local timezone
|
|
|
|
document.getElementById("dateCreated").textContent = `${cTime.hours.toString().padStart("2","0")}:${cTime.minutes.toString().padStart("2","0")}:${cTime.seconds.toString().padStart("2","0")} ${cTime.day.toString().padStart("2","0")}/${cTime.month.toString().padStart("2","0")}/${cTime.year}`;
|
|
|
|
document.getElementById("dateModified").textContent = `${mTime.hours.toString().padStart("2","0")}:${mTime.minutes.toString().padStart("2","0")}:${mTime.seconds.toString().padStart("2","0")} ${mTime.day.toString().padStart("2","0")}/${mTime.month.toString().padStart("2","0")}/${mTime.year}`;
|
2023-10-12 05:51:46 -04:00
|
|
|
} catch(e) {
|
2023-10-17 10:26:08 -04:00
|
|
|
if(glBgContext!==null){glBgContext.clear(glBgContext.COLOR_BUFFER_BIT);}
|
|
|
|
if(glFgContext!==null){glFgContext.clear(glFgContext.COLOR_BUFFER_BIT | glFgContext.DEPTH_BUFFER_BIT);}
|
2023-10-12 05:51:46 -04:00
|
|
|
alert(e);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2023-10-15 15:28:59 -04:00
|
|
|
spsbox = document.getElementById("spsinput");
|
|
|
|
spsbox.onchange = function(e) {
|
|
|
|
resetDisplay();
|
|
|
|
if(spsbox.files.length === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
spsbox.files[0].arrayBuffer().then(function(d){
|
|
|
|
try {
|
|
|
|
let vFilesystem = readSharkXPortSxpsFile(d);
|
|
|
|
let output = readPS2D(vFilesystem[vFilesystem.rootDirectory]["icon.sys"].data);
|
|
|
|
updateDisplay(output);
|
|
|
|
let output2 = new Object();
|
|
|
|
Object.keys(output.filenames).forEach(function(file) {
|
|
|
|
output2[file] = readIconFile(vFilesystem[vFilesystem.rootDirectory][output.filenames[file]].data);
|
|
|
|
});
|
2023-10-17 10:26:08 -04:00
|
|
|
renderIcon(output2.n);
|
2023-10-15 15:28:59 -04:00
|
|
|
let cTime = vFilesystem.timestamps.created;
|
|
|
|
let mTime = vFilesystem.timestamps.modified;
|
|
|
|
//TODO: use Time() to align JST times to user-local timezone
|
|
|
|
document.getElementById("dateCreated").textContent = `${cTime.hours.toString().padStart("2","0")}:${cTime.minutes.toString().padStart("2","0")}:${cTime.seconds.toString().padStart("2","0")} ${cTime.day.toString().padStart("2","0")}/${cTime.month.toString().padStart("2","0")}/${cTime.year}`;
|
|
|
|
document.getElementById("dateModified").textContent = `${mTime.hours.toString().padStart("2","0")}:${mTime.minutes.toString().padStart("2","0")}:${mTime.seconds.toString().padStart("2","0")} ${mTime.day.toString().padStart("2","0")}/${mTime.month.toString().padStart("2","0")}/${mTime.year}`;
|
|
|
|
document.getElementById("fileCommentGame").textContent = vFilesystem.comments.game;
|
|
|
|
document.getElementById("fileCommentName").textContent = vFilesystem.comments.name;
|
|
|
|
console.log("model files", output2);
|
|
|
|
} catch(e) {
|
2023-10-17 10:26:08 -04:00
|
|
|
if(glBgContext!==null){glBgContext.clear(glBgContext.COLOR_BUFFER_BIT);}
|
|
|
|
if(glFgContext!==null){glFgContext.clear(glFgContext.COLOR_BUFFER_BIT | glFgContext.DEPTH_BUFFER_BIT);}
|
2023-10-15 15:28:59 -04:00
|
|
|
alert(e);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2023-10-12 02:49:07 -04:00
|
|
|
function createShader(gl, type, source) {
|
|
|
|
var shader = gl.createShader(type);
|
|
|
|
gl.shaderSource(shader, source);
|
|
|
|
gl.compileShader(shader);
|
|
|
|
var success = gl.getShaderParameter(shader, gl.COMPILE_STATUS);
|
|
|
|
if (success) {
|
|
|
|
return shader;
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log(gl.getShaderInfoLog(shader));
|
|
|
|
gl.deleteShader(shader);
|
|
|
|
}
|
|
|
|
function createProgram(gl, vertexShader, fragmentShader) {
|
|
|
|
var program = gl.createProgram();
|
|
|
|
gl.attachShader(program, vertexShader);
|
|
|
|
gl.attachShader(program, fragmentShader);
|
|
|
|
gl.linkProgram(program);
|
|
|
|
var success = gl.getProgramParameter(program, gl.LINK_STATUS);
|
|
|
|
if (success) {
|
|
|
|
return program;
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log(gl.getProgramInfoLog(program));
|
|
|
|
gl.deleteProgram(program);
|
|
|
|
}
|
2023-10-17 10:26:08 -04:00
|
|
|
const bgCanvas = document.getElementById("bgcanvas");
|
|
|
|
const glBgContext = bgCanvas.getContext("webgl");
|
|
|
|
const fgCanvas = document.getElementById("iconcanvas");
|
|
|
|
const glFgContext = fgCanvas.getContext("webgl");
|
|
|
|
function drawBackground(colorInput) {
|
|
|
|
//.section PROGRAM.background
|
|
|
|
let backgroundVertexShader = createShader(glBgContext, glBgContext.VERTEX_SHADER, document.getElementById("shader-bg-v").text);
|
|
|
|
let backgroundFragmentShader = createShader(glBgContext, glBgContext.FRAGMENT_SHADER, document.getElementById("shader-bg-f").text);
|
|
|
|
let backgroundProgram = createProgram(glBgContext, backgroundVertexShader, backgroundFragmentShader);
|
|
|
|
glBgContext.useProgram(backgroundProgram);
|
|
|
|
let attributes = {
|
|
|
|
position: glBgContext.getAttribLocation(backgroundProgram, "a_position"),
|
|
|
|
color: glBgContext.getAttribLocation(backgroundProgram, "a_color")
|
2023-10-12 02:49:07 -04:00
|
|
|
};
|
|
|
|
//.section POSITION
|
2023-10-17 10:26:08 -04:00
|
|
|
const positions = [-1,1, 1,1, -1,-1, 1,-1, -1,-1, 1,1];
|
|
|
|
const positionBuffer = glBgContext.createBuffer();
|
|
|
|
glBgContext.bindBuffer(glBgContext.ARRAY_BUFFER, positionBuffer);
|
|
|
|
glBgContext.enableVertexAttribArray(attributes.position);
|
|
|
|
glBgContext.bufferData(glBgContext.ARRAY_BUFFER, new Float32Array(positions), glBgContext.STATIC_DRAW);
|
|
|
|
glBgContext.vertexAttribPointer(attributes.position, 2, glBgContext.FLOAT, false, 0, 0);
|
2023-10-12 02:49:07 -04:00
|
|
|
//.section COLOR
|
2023-10-17 10:26:08 -04:00
|
|
|
const colorTemp = (Array.isArray(colorInput)) ? colorInput : [1,0,0,1, 0,1,0,1, 0,0,1,1, 1,1,1,1];
|
|
|
|
const colors = [...colorTemp,
|
|
|
|
colorTemp[8], colorTemp[9], colorTemp[10], colorTemp[11],
|
|
|
|
colorTemp[4], colorTemp[5], colorTemp[6], colorTemp[7]
|
|
|
|
];
|
|
|
|
const colorBuffer = glBgContext.createBuffer();
|
|
|
|
glBgContext.bindBuffer(glBgContext.ARRAY_BUFFER, colorBuffer);
|
|
|
|
glBgContext.enableVertexAttribArray(attributes.color);
|
|
|
|
glBgContext.bufferData(glBgContext.ARRAY_BUFFER, new Float32Array(colors), glBgContext.STATIC_DRAW);
|
|
|
|
glBgContext.vertexAttribPointer(attributes.color, 4, glBgContext.FLOAT, false, 0, 0);
|
2023-10-12 02:49:07 -04:00
|
|
|
//.section WRITE
|
2023-10-17 10:26:08 -04:00
|
|
|
glBgContext.drawArrays(glBgContext.TRIANGLES, 0, 6);
|
|
|
|
|
|
|
|
}
|
|
|
|
if(glBgContext !== null) {
|
|
|
|
//.section CONFIGURATION
|
|
|
|
glBgContext.enable(glBgContext.DEPTH_TEST);
|
|
|
|
glFgContext.enable(glFgContext.DEPTH_TEST);
|
|
|
|
//.section CLEAR
|
|
|
|
glBgContext.clearColor(0.1,0.1,0.4,1);
|
|
|
|
glBgContext.clear(glBgContext.COLOR_BUFFER_BIT | glBgContext.DEPTH_BUFFER_BIT);
|
|
|
|
glFgContext.clear(glBgContext.COLOR_BUFFER_BIT | glBgContext.DEPTH_BUFFER_BIT);
|
|
|
|
drawBackground();
|
2023-10-12 02:49:07 -04:00
|
|
|
} else {
|
2023-10-17 10:26:08 -04:00
|
|
|
bgCanvas.style.display = "none";
|
|
|
|
fgCanvas.style.display = "none";
|
2023-10-12 02:49:07 -04:00
|
|
|
}
|
2023-10-15 15:28:59 -04:00
|
|
|
document.getElementById("showExtractedInputOption").onchange = function(e) {
|
|
|
|
document.getElementById("advanced").style.display = ((e.target.checked) ? "block" : "none");
|
|
|
|
}
|
2023-10-17 15:59:54 -04:00
|
|
|
//todo: Animation parsing, animation tweening, whatever's going on with texture type 15
|
2023-10-12 02:49:07 -04:00
|
|
|
</script>
|
2023-10-17 10:26:08 -04:00
|
|
|
<span id="version">icondumper2 <span id="iconjsVersion">(unknown icon.js version)</span> [C: <span id="clientVersion">Loading...</span>] - © 2023 yellows111</span>
|
2023-10-12 05:51:46 -04:00
|
|
|
<script>document.getElementById("iconjsVersion").textContent = ICONJS_VERSION;</script>
|
2023-10-17 15:59:54 -04:00
|
|
|
<script>document.getElementById("clientVersion").textContent = "0.5.1";</script>
|
2023-10-12 02:49:07 -04:00
|
|
|
</body>
|
|
|
|
</html>
|