initial
This commit is contained in:
commit
0d44851d63
9 changed files with 3091 additions and 0 deletions
BIN
assets/ACCESSiON - Cyberzerk intro.xm
Normal file
BIN
assets/ACCESSiON - Cyberzerk intro.xm
Normal file
Binary file not shown.
400
assets/chiptune2.js
Normal file
400
assets/chiptune2.js
Normal file
|
@ -0,0 +1,400 @@
|
||||||
|
var __awaiter = (this && this.__awaiter) || function(thisArg, _arguments, P, generator) {
|
||||||
|
function adopt(value) { return value instanceof P ? value : new P(function(resolve) { resolve(value); }); }
|
||||||
|
return new(P || (P = Promise))(function(resolve, reject) {
|
||||||
|
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||||
|
|
||||||
|
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||||
|
|
||||||
|
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||||
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||||
|
});
|
||||||
|
};
|
||||||
|
var __generator = (this && this.__generator) || function(thisArg, body) {
|
||||||
|
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] },
|
||||||
|
f, y, t, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
||||||
|
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
||||||
|
|
||||||
|
function verb(n) { return function(v) { return step([n, v]); }; }
|
||||||
|
|
||||||
|
function step(op) {
|
||||||
|
if (f) throw new TypeError("Generator is already executing.");
|
||||||
|
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
||||||
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
||||||
|
if (y = 0, t) op = [op[0] & 2, t.value];
|
||||||
|
switch (op[0]) {
|
||||||
|
case 0:
|
||||||
|
case 1:
|
||||||
|
t = op;
|
||||||
|
break;
|
||||||
|
case 4:
|
||||||
|
_.label++;
|
||||||
|
return { value: op[1], done: false };
|
||||||
|
case 5:
|
||||||
|
_.label++;
|
||||||
|
y = op[1];
|
||||||
|
op = [0];
|
||||||
|
continue;
|
||||||
|
case 7:
|
||||||
|
op = _.ops.pop();
|
||||||
|
_.trys.pop();
|
||||||
|
continue;
|
||||||
|
default:
|
||||||
|
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
||||||
|
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
||||||
|
if (op[0] === 6 && _.label < t[1]) {
|
||||||
|
_.label = t[1];
|
||||||
|
t = op;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (t && _.label < t[2]) {
|
||||||
|
_.label = t[2];
|
||||||
|
_.ops.push(op);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (t[2]) _.ops.pop();
|
||||||
|
_.trys.pop();
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
op = body.call(thisArg, _);
|
||||||
|
} catch (e) {
|
||||||
|
op = [6, e];
|
||||||
|
y = 0;
|
||||||
|
} finally { f = t = 0; }
|
||||||
|
if (op[0] & 5) throw op[1];
|
||||||
|
return { value: op[0] ? op[1] : void 0, done: true };
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
/* eslint-disable */
|
||||||
|
var ChiptuneAudioContext = window.AudioContext || window.webkitAudioContext;
|
||||||
|
var libopenmpt;
|
||||||
|
var libopenmptLoadPromise;
|
||||||
|
|
||||||
|
class ChiptuneJsConfig {
|
||||||
|
constructor(repeatCount, context) {
|
||||||
|
this.repeatCount = repeatCount;
|
||||||
|
this.context = context;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
class ChiptuneJsPlayer {
|
||||||
|
constructor(config) {
|
||||||
|
this.config = config;
|
||||||
|
this.audioContext = config.context || new ChiptuneAudioContext();
|
||||||
|
this.context = this.audioContext.createGain();
|
||||||
|
this.currentPlayingNode = null;
|
||||||
|
this.handlers = [];
|
||||||
|
this.touchLocked = true;
|
||||||
|
this.volume = 1;
|
||||||
|
}
|
||||||
|
initialize() {
|
||||||
|
var _this = this;
|
||||||
|
if (libopenmptLoadPromise)
|
||||||
|
return libopenmptLoadPromise;
|
||||||
|
if (libopenmpt)
|
||||||
|
return Promise.resolve();
|
||||||
|
libopenmptLoadPromise = new Promise(function(resolve, reject) {
|
||||||
|
return __awaiter(_this, void 0, void 0, function() {
|
||||||
|
var Module_1, e_1;
|
||||||
|
return __generator(this, function(_a) {
|
||||||
|
switch (_a.label) {
|
||||||
|
case 0:
|
||||||
|
_a.trys.push([0, 3, 4, 5]);
|
||||||
|
return [4 /*yield*/ , Promise.resolve().then(function() { return require('./libopenmpt/libopenmpt.js'); })];
|
||||||
|
case 1:
|
||||||
|
Module_1 = (_a.sent()).Module;
|
||||||
|
return [4 /*yield*/ , new Promise(function(resolve) {
|
||||||
|
Module_1['onRuntimeInitialized'] = resolve;
|
||||||
|
})];
|
||||||
|
case 2:
|
||||||
|
_a.sent();
|
||||||
|
libopenmpt = Module_1;
|
||||||
|
resolve();
|
||||||
|
return [3 /*break*/ , 5];
|
||||||
|
case 3:
|
||||||
|
e_1 = _a.sent();
|
||||||
|
reject(e_1);
|
||||||
|
return [3 /*break*/ , 5];
|
||||||
|
case 4:
|
||||||
|
libopenmptLoadPromise = undefined;
|
||||||
|
return [7 /*endfinally*/ ];
|
||||||
|
case 5:
|
||||||
|
return [2 /*return*/ ];
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
return libopenmptLoadPromise;
|
||||||
|
}
|
||||||
|
fireEvent(eventName, response) {
|
||||||
|
var handlers = this.handlers;
|
||||||
|
if (handlers.length > 0) {
|
||||||
|
for (var _i = 0, handlers_1 = handlers; _i < handlers_1.length; _i++) {
|
||||||
|
var handler = handlers_1[_i];
|
||||||
|
if (handler.eventName === eventName) {
|
||||||
|
handler.handler(response);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
addHandler(eventName, handler) {
|
||||||
|
this.handlers.push({ eventName: eventName, handler: handler });
|
||||||
|
}
|
||||||
|
onEnded(handler) {
|
||||||
|
this.addHandler('onEnded', handler);
|
||||||
|
}
|
||||||
|
onError(handler) {
|
||||||
|
this.addHandler('onError', handler);
|
||||||
|
}
|
||||||
|
duration() {
|
||||||
|
return libopenmpt._openmpt_module_get_duration_seconds(this.currentPlayingNode.modulePtr);
|
||||||
|
}
|
||||||
|
position() {
|
||||||
|
return libopenmpt._openmpt_module_get_position_seconds(this.currentPlayingNode.modulePtr);
|
||||||
|
}
|
||||||
|
seek(position) {
|
||||||
|
if (this.currentPlayingNode) {
|
||||||
|
libopenmpt._openmpt_module_set_position_seconds(this.currentPlayingNode.modulePtr, position);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
metadata() {
|
||||||
|
var data = {};
|
||||||
|
var keys = libopenmpt.UTF8ToString(libopenmpt._openmpt_module_get_metadata_keys(this.currentPlayingNode.modulePtr)).split(';');
|
||||||
|
var keyNameBuffer = 0;
|
||||||
|
for (var _i = 0, keys_1 = keys; _i < keys_1.length; _i++) {
|
||||||
|
var key = keys_1[_i];
|
||||||
|
keyNameBuffer = libopenmpt._malloc(key.length + 1);
|
||||||
|
libopenmpt.writeAsciiToMemory(key, keyNameBuffer);
|
||||||
|
data[key] = libopenmpt.UTF8ToString(libopenmpt._openmpt_module_get_metadata(this.currentPlayingNode.modulePtr, keyNameBuffer));
|
||||||
|
libopenmpt._free(keyNameBuffer);
|
||||||
|
}
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
unlock() {
|
||||||
|
var context = this.audioContext;
|
||||||
|
var buffer = context.createBuffer(1, 1, 22050);
|
||||||
|
var unlockSource = context.createBufferSource();
|
||||||
|
unlockSource.buffer = buffer;
|
||||||
|
unlockSource.connect(this.context);
|
||||||
|
this.context.connect(context.destination);
|
||||||
|
unlockSource.start(0);
|
||||||
|
this.touchLocked = false;
|
||||||
|
}
|
||||||
|
load(input) {
|
||||||
|
var _this = this;
|
||||||
|
return this.initialize().then(function() {
|
||||||
|
return new Promise(function(resolve, reject) {
|
||||||
|
if (_this.touchLocked) {
|
||||||
|
_this.unlock();
|
||||||
|
}
|
||||||
|
var player = _this;
|
||||||
|
if (input instanceof File) {
|
||||||
|
var reader_1 = new FileReader();
|
||||||
|
reader_1.onload = function() {
|
||||||
|
resolve(reader_1.result);
|
||||||
|
};
|
||||||
|
reader_1.readAsArrayBuffer(input);
|
||||||
|
} else {
|
||||||
|
window.fetch(input).then(function(response) {
|
||||||
|
response.arrayBuffer().then(function(arrayBuffer) {
|
||||||
|
resolve(arrayBuffer);
|
||||||
|
}).catch(function(error) {
|
||||||
|
reject(error);
|
||||||
|
});
|
||||||
|
}).catch(function(error) {
|
||||||
|
reject(error);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
play(buffer) {
|
||||||
|
this.unlock();
|
||||||
|
this.stop();
|
||||||
|
var processNode = this.createLibopenmptNode(buffer, this.buffer);
|
||||||
|
if (processNode === null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
libopenmpt._openmpt_module_set_repeat_count(processNode.modulePtr, this.config.repeatCount || 0);
|
||||||
|
this.currentPlayingNode = processNode;
|
||||||
|
processNode.connect(this.context);
|
||||||
|
this.context.connect(this.audioContext.destination);
|
||||||
|
}
|
||||||
|
stop() {
|
||||||
|
if (this.currentPlayingNode != null) {
|
||||||
|
this.currentPlayingNode.disconnect();
|
||||||
|
this.currentPlayingNode.cleanup();
|
||||||
|
this.currentPlayingNode = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
togglePause() {
|
||||||
|
if (this.currentPlayingNode != null) {
|
||||||
|
this.currentPlayingNode.togglePause();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
getPattern() {
|
||||||
|
if (this.currentPlayingNode && this.currentPlayingNode.modulePtr) {
|
||||||
|
return libopenmpt._openmpt_module_get_current_pattern(this.currentPlayingNode.modulePtr);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
getRow() {
|
||||||
|
if (this.currentPlayingNode && this.currentPlayingNode.modulePtr) {
|
||||||
|
return libopenmpt._openmpt_module_get_current_row(this.currentPlayingNode.modulePtr);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
getNumPatterns() {
|
||||||
|
if (this.currentPlayingNode && this.currentPlayingNode.modulePtr) {
|
||||||
|
return libopenmpt._openmpt_module_get_num_patterns(this.currentPlayingNode.modulePtr);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
getCurrentSpeed() {
|
||||||
|
if (this.currentPlayingNode && this.currentPlayingNode.modulePtr) {
|
||||||
|
return libopenmpt._openmpt_module_get_current_speed(this.currentPlayingNode.modulePtr);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
getCurrentTempo() {
|
||||||
|
if (this.currentPlayingNode && this.currentPlayingNode.modulePtr) {
|
||||||
|
return libopenmpt._openmpt_module_get_current_tempo(this.currentPlayingNode.modulePtr);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
getPatternNumRows(pattern) {
|
||||||
|
if (this.currentPlayingNode && this.currentPlayingNode.modulePtr) {
|
||||||
|
return libopenmpt._openmpt_module_get_pattern_num_rows(this.currentPlayingNode.modulePtr, pattern);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
getPatternRowChannel(pattern, row, channel) {
|
||||||
|
if (this.currentPlayingNode && this.currentPlayingNode.modulePtr) {
|
||||||
|
return libopenmpt.UTF8ToString(libopenmpt._openmpt_module_format_pattern_row_channel(this.currentPlayingNode.modulePtr, pattern, row, channel, 0, true));
|
||||||
|
}
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
getCtls() {
|
||||||
|
if (this.currentPlayingNode && this.currentPlayingNode.modulePtr) {
|
||||||
|
return libopenmpt._openmpt_module_get_ctls(this.currentPlayingNode.modulePtr);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
version() {
|
||||||
|
if (this.currentPlayingNode && this.currentPlayingNode.modulePtr) {
|
||||||
|
return libopenmpt._openmpt_get_library_version();
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
createLibopenmptNode(buffer, config) {
|
||||||
|
var maxFramesPerChunk = 4096;
|
||||||
|
var processNode = this.audioContext.createScriptProcessor(2048, 0, 2);
|
||||||
|
processNode.config = config;
|
||||||
|
processNode.player = this;
|
||||||
|
var byteArray = new Int8Array(buffer);
|
||||||
|
var ptrToFile = libopenmpt._malloc(byteArray.byteLength);
|
||||||
|
libopenmpt.HEAPU8.set(byteArray, ptrToFile);
|
||||||
|
processNode.modulePtr = libopenmpt._openmpt_module_create_from_memory(ptrToFile, byteArray.byteLength, 0, 0, 0);
|
||||||
|
processNode.nbChannels = libopenmpt._openmpt_module_get_num_channels(processNode.modulePtr);
|
||||||
|
processNode.patternIndex = -1;
|
||||||
|
processNode.paused = false;
|
||||||
|
processNode.leftBufferPtr = libopenmpt._malloc(4 * maxFramesPerChunk);
|
||||||
|
processNode.rightBufferPtr = libopenmpt._malloc(4 * maxFramesPerChunk);
|
||||||
|
processNode.perf = { 'current': 0, 'max': 0 };
|
||||||
|
processNode.cleanup = function() {
|
||||||
|
if (this.modulePtr !== 0) {
|
||||||
|
libopenmpt._openmpt_module_destroy(this.modulePtr);
|
||||||
|
this.modulePtr = 0;
|
||||||
|
}
|
||||||
|
if (this.leftBufferPtr !== 0) {
|
||||||
|
libopenmpt._free(this.leftBufferPtr);
|
||||||
|
this.leftBufferPtr = 0;
|
||||||
|
}
|
||||||
|
if (this.rightBufferPtr !== 0) {
|
||||||
|
libopenmpt._free(this.rightBufferPtr);
|
||||||
|
this.rightBufferPtr = 0;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
processNode.stop = function() {
|
||||||
|
this.disconnect();
|
||||||
|
this.cleanup();
|
||||||
|
};
|
||||||
|
processNode.pause = function() {
|
||||||
|
this.paused = true;
|
||||||
|
};
|
||||||
|
processNode.unpause = function() {
|
||||||
|
this.paused = false;
|
||||||
|
};
|
||||||
|
processNode.togglePause = function() {
|
||||||
|
this.paused = !this.paused;
|
||||||
|
};
|
||||||
|
processNode.getProcessTime = function() {
|
||||||
|
var max = this.perf.max;
|
||||||
|
this.perf.max = 0;
|
||||||
|
return { 'current': this.perf.current, 'max': max };
|
||||||
|
};
|
||||||
|
processNode.onaudioprocess = function(e) {
|
||||||
|
var startTimeP1 = performance.now();
|
||||||
|
var outputL = e.outputBuffer.getChannelData(0);
|
||||||
|
var outputR = e.outputBuffer.getChannelData(1);
|
||||||
|
var framesToRender = outputL.length;
|
||||||
|
if (this.ModulePtr === 0) {
|
||||||
|
for (var i = 0; i < framesToRender; ++i) {
|
||||||
|
outputL[i] = 0;
|
||||||
|
outputR[i] = 0;
|
||||||
|
}
|
||||||
|
this.disconnect();
|
||||||
|
this.cleanup();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (this.paused) {
|
||||||
|
for (var i = 0; i < framesToRender; ++i) {
|
||||||
|
outputL[i] = 0;
|
||||||
|
outputR[i] = 0;
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
var framesRendered = 0;
|
||||||
|
var ended = false;
|
||||||
|
var error = false;
|
||||||
|
var currentPattern = libopenmpt._openmpt_module_get_current_pattern(this.modulePtr);
|
||||||
|
var currentRow = libopenmpt._openmpt_module_get_current_row(this.modulePtr);
|
||||||
|
startTimeP1 = startTimeP1 - performance.now();
|
||||||
|
if (currentPattern !== this.patternIndex) {
|
||||||
|
processNode.player.fireEvent('onPatternChange');
|
||||||
|
}
|
||||||
|
processNode.player.fireEvent('onRowChange', { index: currentRow });
|
||||||
|
var startTimeP2 = performance.now();
|
||||||
|
while (framesToRender > 0) {
|
||||||
|
var framesPerChunk = Math.min(framesToRender, maxFramesPerChunk);
|
||||||
|
var actualFramesPerChunk = libopenmpt._openmpt_module_read_float_stereo(this.modulePtr, this.context.sampleRate, framesPerChunk, this.leftBufferPtr, this.rightBufferPtr);
|
||||||
|
if (actualFramesPerChunk === 0) {
|
||||||
|
ended = true;
|
||||||
|
// modulePtr will be 0 on openmpt: error: openmpt_module_read_float_stereo: ERROR: module * not valid or other openmpt error
|
||||||
|
error = !this.modulePtr;
|
||||||
|
}
|
||||||
|
var rawAudioLeft = libopenmpt.HEAPF32.subarray(this.leftBufferPtr / 4, this.leftBufferPtr / 4 + actualFramesPerChunk);
|
||||||
|
var rawAudioRight = libopenmpt.HEAPF32.subarray(this.rightBufferPtr / 4, this.rightBufferPtr / 4 + actualFramesPerChunk);
|
||||||
|
for (var i = 0; i < actualFramesPerChunk; ++i) {
|
||||||
|
outputL[framesRendered + i] = rawAudioLeft[i];
|
||||||
|
outputR[framesRendered + i] = rawAudioRight[i];
|
||||||
|
}
|
||||||
|
for (var i = actualFramesPerChunk; i < framesPerChunk; ++i) {
|
||||||
|
outputL[framesRendered + i] = 0;
|
||||||
|
outputR[framesRendered + i] = 0;
|
||||||
|
}
|
||||||
|
framesToRender -= framesPerChunk;
|
||||||
|
framesRendered += framesPerChunk;
|
||||||
|
}
|
||||||
|
if (ended) {
|
||||||
|
this.disconnect();
|
||||||
|
this.cleanup();
|
||||||
|
error ? processNode.player.fireEvent('onError', { type: 'openmpt' }) : processNode.player.fireEvent('onEnded');
|
||||||
|
}
|
||||||
|
this.perf.current = performance.now() - startTimeP2 + startTimeP1;
|
||||||
|
if (this.perf.current > this.perf.max)
|
||||||
|
this.perf.max = this.perf.current;
|
||||||
|
};
|
||||||
|
return processNode;
|
||||||
|
}
|
||||||
|
};
|
40
assets/custom.css
Normal file
40
assets/custom.css
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
width: 100vw;
|
||||||
|
height: 100vh;
|
||||||
|
background-image: url(https://wparena.com/wp-content/uploads/2009/09/img0.jpg);
|
||||||
|
background-size: cover;
|
||||||
|
background-position: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.window {
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title-bar-text {
|
||||||
|
text-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title-bar-text img {
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.generate {
|
||||||
|
background: var(--button-gradient) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
[type="search"]:placeholder-shown {
|
||||||
|
background: var(--button-highlight) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.generate::before,
|
||||||
|
.generate::after {
|
||||||
|
content: unset;
|
||||||
|
}
|
98
assets/custom.js
Normal file
98
assets/custom.js
Normal file
|
@ -0,0 +1,98 @@
|
||||||
|
const loadMain = src => {
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
const script = document.createElement('script')
|
||||||
|
script.type = 'text/javascript'
|
||||||
|
script.onload = resolve
|
||||||
|
script.onerror = reject
|
||||||
|
script.src = "https://cdn.jsdelivr.net/npm/butterchurn@latest/lib/" + src
|
||||||
|
document.head.append(script)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
const loadPreset = src => {
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
const script = document.createElement('script')
|
||||||
|
script.type = 'text/javascript'
|
||||||
|
script.onload = resolve
|
||||||
|
script.onerror = reject
|
||||||
|
script.src = "https://cdn.jsdelivr.net/npm/butterchurn-presets@latest/lib/" + src
|
||||||
|
document.head.append(script)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
function initMilkdrop() {
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
Promise.all([
|
||||||
|
loadMain("butterchurn.min.js"),
|
||||||
|
loadMain("butterchurnExtraImages.min.js"),
|
||||||
|
loadPreset("butterchurnPresets.min.js"),
|
||||||
|
loadPreset("butterchurnPresetsExtra.min.js"),
|
||||||
|
loadPreset("butterchurnPresetsExtra2.min.js"),
|
||||||
|
])
|
||||||
|
.then(resolve)
|
||||||
|
.catch(e => {
|
||||||
|
console.log("Script Loading Error", e);
|
||||||
|
reject(e);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
window['libopenmpt'] = {};
|
||||||
|
libopenmpt.onRuntimeInitialized = function() {
|
||||||
|
window.player = new ChiptuneJsPlayer(new ChiptuneJsConfig(-1));
|
||||||
|
|
||||||
|
initMilkdrop().then(function() {
|
||||||
|
window.visualizer = butterchurn.default.createVisualizer(player.audioContext, canvas, {
|
||||||
|
width: canvas.width,
|
||||||
|
height: canvas.height
|
||||||
|
});
|
||||||
|
|
||||||
|
visualizer.loadExtraImages(butterchurnExtraImages.default.getImages());
|
||||||
|
|
||||||
|
const presets = {};
|
||||||
|
Object.assign(presets, butterchurnPresets.getPresets());
|
||||||
|
Object.assign(presets, butterchurnPresetsExtra.getPresets());
|
||||||
|
Object.assign(presets, butterchurnPresetsExtra2.getPresets());
|
||||||
|
visualizer.loadPreset(presets["444"], 0.0);
|
||||||
|
|
||||||
|
var select = document.getElementById("preset");
|
||||||
|
for (const preset of Object.keys(presets)) {
|
||||||
|
var option = document.createElement("option");
|
||||||
|
option.value = option.innerText = preset;
|
||||||
|
if (preset == "444")
|
||||||
|
option.selected = true;
|
||||||
|
select.appendChild(option);
|
||||||
|
}
|
||||||
|
select.addEventListener("change", function() {
|
||||||
|
visualizer.loadPreset(presets[select.value], 0.0);
|
||||||
|
})
|
||||||
|
|
||||||
|
function animate() {
|
||||||
|
visualizer.render();
|
||||||
|
requestAnimationFrame(animate);
|
||||||
|
}
|
||||||
|
|
||||||
|
animate();
|
||||||
|
})
|
||||||
|
|
||||||
|
player.load("assets/ACCESSiON - Cyberzerk intro.xm").then(buffer => {
|
||||||
|
window.playTunes = function() {
|
||||||
|
if (!player.currentPlayingNode) {
|
||||||
|
player.play(buffer);
|
||||||
|
player.currentPlayingNode.paused = true;
|
||||||
|
visualizer.connectAudio(player.currentPlayingNode);
|
||||||
|
}
|
||||||
|
player.togglePause();
|
||||||
|
playbutton.innerText = player.currentPlayingNode.paused ? "▶️" : "⏸";
|
||||||
|
}
|
||||||
|
});
|
||||||
|
player.addHandler('onRowChange', () => {
|
||||||
|
progress.style.width = `${((player.position() % player.duration()) / player.duration()) * 100}%`;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function keygen() {
|
||||||
|
fetch(`https://sponsor.ajay.app/api/generateToken/free?key=${Date.now()}`).then(r => r.json()).then(d => {
|
||||||
|
document.getElementById("key").value = d.licenseKey;
|
||||||
|
});
|
||||||
|
}
|
108
assets/font.css
Normal file
108
assets/font.css
Normal file
File diff suppressed because one or more lines are too long
2397
assets/libopenmpt.js
Normal file
2397
assets/libopenmpt.js
Normal file
File diff suppressed because it is too large
Load diff
BIN
assets/libopenmpt.wasm
Normal file
BIN
assets/libopenmpt.wasm
Normal file
Binary file not shown.
BIN
dearrow.7z
Normal file
BIN
dearrow.7z
Normal file
Binary file not shown.
48
index.html
Normal file
48
index.html
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>DeArrow Keygen</title>
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/7.css">
|
||||||
|
<link rel="stylesheet" href="assets/custom.css">
|
||||||
|
<link rel="stylesheet" href="assets/font.css">
|
||||||
|
|
||||||
|
<script src="assets/custom.js"></script>
|
||||||
|
<script defer src="assets/chiptune2.js"></script>
|
||||||
|
<script defer src="assets/libopenmpt.js"></script>
|
||||||
|
<link rel="shortcut icon" href="https://dearrow.ajay.app/favicon-32x32.png" type="image/png">
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="window glass active main">
|
||||||
|
<div class="title-bar">
|
||||||
|
<div class="title-bar-text">
|
||||||
|
<img src="https://dearrow.ajay.app/favicon-32x32.png" height="14px" alt=""> DeArrow Keygen 2.0
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="window-body has-space">
|
||||||
|
<div class="searchbox" style="width: 100%">
|
||||||
|
<input type="search" id="key" readonly autocomplete="off" value="" placeholder="License key..." style="width: 100%">
|
||||||
|
<button onclick="keygen();" class="generate" aria-label="search">🔁</button>
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
<canvas id="canvas"></canvas><br>
|
||||||
|
<select id="preset" style="max-width: 300px; text-overflow: ellipsis;"></select>
|
||||||
|
</div>
|
||||||
|
<div class="status-bar">
|
||||||
|
<div class="status-bar-field" style="width: 100%">
|
||||||
|
<div role="progressbar" class="animate">
|
||||||
|
<div id="progress" style="width: 0;"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="status-bar-field" style="width: 1rem; text-align: center;" onclick="playTunes();">
|
||||||
|
<span id="playbutton">▶️</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
Loading…
Reference in a new issue