mirror of
https://github.com/teoxoy/factorio-blueprint-editor.git
synced 2025-03-19 21:08:03 +02:00
98 lines
3.6 KiB
HTML
98 lines
3.6 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="initial-scale=1, maximum-scale=1, user-scalable=no, minimum-scale=1, width=device-width, height=device-height"
|
|
/>
|
|
<meta
|
|
name="description"
|
|
content="A feature-rich Factorio Blueprint Editor. You can now edit your blueprints in the browser!"
|
|
/>
|
|
|
|
<title>Factorio Blueprint Editor</title>
|
|
|
|
<link rel="icon" href="/favicon.png" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="loadingScreen" class="active">
|
|
<img id="logo" src="/logo.svg" alt />
|
|
<img class="loadingWheel" src="/loadingWheel.svg" alt />
|
|
</div>
|
|
<div id="corner-panel">
|
|
<img src="/logo-small.svg" alt />
|
|
<span>Press I for info</span>
|
|
</div>
|
|
<div id="buttons">
|
|
<a
|
|
class="discord-button"
|
|
href="https://discord.gg/c5eXyBU"
|
|
target="_blank"
|
|
rel="noopener"
|
|
>
|
|
<span>Discord</span>
|
|
<img src="/discord.svg" alt />
|
|
</a>
|
|
<a
|
|
class="github-button"
|
|
href="https://github.com/Teoxoy/factorio-blueprint-editor"
|
|
target="_blank"
|
|
rel="noopener"
|
|
>
|
|
<span>Github</span>
|
|
<img src="/github.svg" alt />
|
|
</a>
|
|
</div>
|
|
<div id="info-panel">
|
|
<h1>INFO</h1>
|
|
<ul class="info-list">
|
|
<li>To access the inventory and start building press <mark>E</mark></li>
|
|
<li>To import/export a blueprint string use <mark>ctrl/cmd + C/V</mark></li>
|
|
<li>
|
|
Check out the settings area for an in depth look at the settings and
|
|
<mark>keybinds</mark>
|
|
</li>
|
|
<li>
|
|
Leave your suggestions, ideas, new features or bug reports inside the app via
|
|
the Feedback button or on Github
|
|
</li>
|
|
</ul>
|
|
<h2>Features</h2>
|
|
<ul>
|
|
<li>rendering and editing blueprints</li>
|
|
<li>history (undo/redo)</li>
|
|
<li>copy and delete selections</li>
|
|
<li>
|
|
import blueprints and books from multiple sources (direct bp string, pastebin,
|
|
hastebin, gist, gitlab, factorioprints, factorio.school, google docs)
|
|
</li>
|
|
<li>generating blueprint images</li>
|
|
<li>oil outpost generator</li>
|
|
<li>customizable keybinds</li>
|
|
<li>"creative" entities</li>
|
|
</ul>
|
|
<h2>Planned Features</h2>
|
|
<ul>
|
|
<li>more blueprint tools</li>
|
|
<li>more entity editors</li>
|
|
<li>full rails support</li>
|
|
<li>trains support</li>
|
|
<li>mod support</li>
|
|
</ul>
|
|
<h3>Available url query parameters</h3>
|
|
<ul>
|
|
<li>source=<BPSTRING_OR_URL_TO_BPSTRING></li>
|
|
<li>index=<INDEX_OF_BP_IN_BOOK></li>
|
|
</ul>
|
|
<p class="copyright-notice">
|
|
All art assets, spritesheets and other Factorio game data used in this project
|
|
belong to Wube Software Ltd and are not for redistribution
|
|
</p>
|
|
</div>
|
|
<canvas id="editor" tabindex="1"></canvas>
|
|
<script type="module" src="/src/index.ts"></script>
|
|
</body>
|
|
</html>
|