Initial commit

I cleared the project history to start fresh on the public version
This commit is contained in:
Renan LE CARO 2025-02-15 19:21:00 +01:00
commit d2cfce2a0e
34 changed files with 11578 additions and 0 deletions

50
editserver.js Normal file
View file

@ -0,0 +1,50 @@
const express = require('express')
const bodyParser = require('body-parser');
const fs = require('fs')
const app = express()
const port = 4400
const srcPath = 'app/src/main/assets/levels.js'
app.use(bodyParser.text({
type: 'text/plain',
limit:'1MB'
}));
app.get('/', (req, res) => {
res.end(`<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Level editor</title>
<link rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🎨</text></svg>"
/>
</head>
<body>
<div id="levels"></div>
<div id="palette">
<button id="new-level">new</button>
</div>
<style>
${fs.readFileSync('./editclient.css').toString()}
</style>
<script>${fs.readFileSync(srcPath).toString()}</script>
<script>${fs.readFileSync('./editclient.js').toString()}</script>
</body>
`)
})
app.post('/', (req, res) => {
console.log(req.body)
if(req.body?.trim()) {
fs.writeFileSync(srcPath, req.body)
}
res.end('OK')
})
app.listen(port, () => {
console.log(`Example app listening on port http://localhost:${port}`)
})