mirror of
https://github.com/He4eT/elseifplayer.git
synced 2026-05-05 01:17:22 +00:00
Linting
This commit is contained in:
parent
c9f42e497a
commit
0474e0355e
6 changed files with 10 additions and 15 deletions
|
|
@ -1,14 +1,14 @@
|
|||
import { h } from 'preact'
|
||||
import { useState, useEffect } from 'preact/hooks'
|
||||
|
||||
import { prepareVM } from '~/src/common/if'
|
||||
import { prepareVM } from './common/if'
|
||||
|
||||
const INITIAL_STATUS = {
|
||||
stage: 'loading',
|
||||
details: 'Loading...'
|
||||
}
|
||||
|
||||
export default function ({url}) {
|
||||
export default function ({ url }) {
|
||||
const [status, setStatus] = useState(INITIAL_STATUS)
|
||||
|
||||
const [vm, setVM] = useState(null)
|
||||
|
|
@ -25,7 +25,6 @@ export default function ({url}) {
|
|||
|
||||
return (
|
||||
<main>
|
||||
{url}
|
||||
{status.details}
|
||||
</main>)
|
||||
}
|
||||
|
|
|
|||
44
src/components/player/common/engines.js
Normal file
44
src/components/player/common/engines.js
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
import bocfel from 'emglken/src/bocfel.js'
|
||||
import glulxe from 'emglken/src/glulxe.js'
|
||||
import git from 'emglken/src/git.js'
|
||||
import hugo from 'emglken/src/hugo.js'
|
||||
import tads from 'emglken/src/tads.js'
|
||||
|
||||
const formats = [
|
||||
{
|
||||
id: 'bocfel',
|
||||
extensions: /z([3458]|blorb)$/,
|
||||
engine: bocfel
|
||||
},
|
||||
{
|
||||
id: 'glulxe',
|
||||
extensions: /(gblorb|ulx)$/,
|
||||
engine: glulxe
|
||||
},
|
||||
{
|
||||
id: 'git',
|
||||
extensions: /(gblorb|ulx)$/,
|
||||
engine: git
|
||||
},
|
||||
{
|
||||
id: 'hugo',
|
||||
extensions: /hex$/,
|
||||
engine: hugo
|
||||
},
|
||||
{
|
||||
id: 'tads',
|
||||
extensions: /(gam|t3)$/,
|
||||
engine: tads
|
||||
}
|
||||
]
|
||||
|
||||
export const engineByFilename = filename => {
|
||||
const format = formats.find(x =>
|
||||
x.extensions.test(filename))
|
||||
|
||||
if (format) {
|
||||
return format.engine
|
||||
} else {
|
||||
throw new Error(`Unsupported file type: ${filename}`)
|
||||
}
|
||||
}
|
||||
45
src/components/player/common/if.js
Normal file
45
src/components/player/common/if.js
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
// import CheapGlkOte from 'cheap-glkote'
|
||||
// import engine from 'emglken/src/tads.js'
|
||||
|
||||
import { engineByFilename } from './engines'
|
||||
|
||||
export const prepareVM = ({ url, setStatus, setVM }) => _ => {
|
||||
const st = (stage, details) => args => {
|
||||
setStatus({ stage, details })
|
||||
return args
|
||||
}
|
||||
|
||||
return Promise.resolve()
|
||||
.then(st('loading', 'Downloading file...'))
|
||||
.then(_ => fetch(url))
|
||||
.then(st('loading', 'Processing file...'))
|
||||
.then(response => response.arrayBuffer())
|
||||
.then(arrayBuffer => new Uint8Array(arrayBuffer))
|
||||
.then(st('loading', 'Downloading engine...'))
|
||||
.then(file => setVM({
|
||||
file,
|
||||
engine: engineByFilename(url)
|
||||
}))
|
||||
.then(st('loading', 'Running...'))
|
||||
.catch(e => {
|
||||
console.error(e)
|
||||
setStatus({ stage: 'fail', details: e.message })
|
||||
})
|
||||
}
|
||||
|
||||
// export const fetchGameFile = url => fetch(url)
|
||||
// .then(response => (console.log(response), response))
|
||||
// .then(response => response.blob())
|
||||
// .then(blob => new Response(blob).arrayBuffer())
|
||||
// .then(buffer => new Uint8Array(buffer))
|
||||
// .then(file => {
|
||||
// const { glkInterface, sendFn } = CheapGlkOte({
|
||||
// onUpdateContent: messages => console.log(messages)
|
||||
// })
|
||||
// window.send = sendFn
|
||||
|
||||
// const vm = new engine()
|
||||
// vm.prepare(file, glkInterface)
|
||||
// vm.start()
|
||||
// })
|
||||
// .catch(console.log)
|
||||
Loading…
Add table
Add a link
Reference in a new issue