restored mapCrypt looping
This commit is contained in:
parent
ba73d8f3b6
commit
eb8db81789
@ -4,21 +4,30 @@ local map = {
|
|||||||
{ "-", "_", "w", "w", "-", "-", "-", "-", "-", "-" },
|
{ "-", "_", "w", "w", "-", "-", "-", "-", "-", "-" },
|
||||||
{ "-", "-", "w", "w", "-", "w", "-", "-", "-", "-" },
|
{ "-", "-", "w", "w", "-", "w", "-", "-", "-", "-" },
|
||||||
{ "w", "-", "-", "-", "w", "w", "-", "-", "-", "-" },
|
{ "w", "-", "-", "-", "w", "w", "-", "-", "-", "-" },
|
||||||
{ "w", "-", "w", "-", "-", "w", "w", "w", "-", "-" },
|
{ "w", "-", "ww", "-", "-", "w", "w", "w", "-", "-" },
|
||||||
{ "w", "-", "w", "-", "-", "w", "-", "-", "-", "-" },
|
{ "w", "-", "ww", "-", "-", "w", "-", "-", "-", "-" },
|
||||||
{ "-", "-", "w", "-", "-", "w", "-", "w", "-", "-" },
|
{ "-", "-", "ww", "-", "-", "w", "-", "w", "-", "-" },
|
||||||
{ "-", "-", "-", "-", "-", "-", "-", "w", "-", "-" },
|
{ "-", "-", "-", "-", "-", "-", "-", "w", "-", "-" },
|
||||||
{ "-", "-", "w", "-", "-", "-", "-", "w", "w", "-" },
|
{ "-", "-", "ww", "-", "-", "-", "-", "w", "w", "-" },
|
||||||
{ "-", "-", "w", "-", "-", "-", "-", "-", "w", "-" }
|
{ "-", "-", "ww", "-", "-", "-", "-", "-", "w", "-" }
|
||||||
|
},
|
||||||
|
tileset = {
|
||||||
|
display = { "-", "_", "w", "ww" },
|
||||||
|
db = { "floor_stone,", "floor_wood", "wall_stone", "wall_wood" }
|
||||||
},
|
},
|
||||||
mapCrypt = function(self, tile)
|
mapCrypt = function(self, tile)
|
||||||
if tile == "-" then
|
for i=1, #self.tileset.display do
|
||||||
return "floor_stone"
|
if self.tileset.display[i] == tile then
|
||||||
elseif tile == "_" then
|
return self.tileset.db[i]
|
||||||
return "floor_wood"
|
end
|
||||||
elseif tile == "w" then
|
|
||||||
return "wall_stone"
|
|
||||||
end
|
end
|
||||||
|
--if tile == "-" then
|
||||||
|
-- return "floor_stone"
|
||||||
|
--elseif tile == "_" then
|
||||||
|
-- return "floor_wood"
|
||||||
|
--elseif tile == "w" then
|
||||||
|
-- return "wall_stone"
|
||||||
|
--end
|
||||||
end,
|
end,
|
||||||
mapDecrypt = function(self, tile)
|
mapDecrypt = function(self, tile)
|
||||||
-- TODO: Rework function so it returns both char and mat type
|
-- TODO: Rework function so it returns both char and mat type
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<script src="/static/htmx.min.js"></script>
|
<script src="/static/htmx.min.js"></script>
|
||||||
|
<% if not isPopulated then %>
|
||||||
|
<div id="clickable">
|
||||||
|
<button hx-post="/clickme" hx-target="#clickable">Start</button>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
<article>
|
<article>
|
||||||
<p style="text-align: center;">Game</p>
|
<p style="text-align: center;">Game</p>
|
||||||
<main style="width: 50%;" class="container" id="map" hx-get="/map/render" hx-trigger="every 1s,load">
|
<main style="width: 50%;" class="container" id="map" hx-get="/map/render" hx-trigger="every 1s,load">
|
||||||
|
@ -6,10 +6,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<article>
|
<a href="/game">Play Now</a>
|
||||||
<p style="text-align: center;">Game</p>
|
|
||||||
<main style="width: 50%;" class="container" id="map" hx-get="/map/render" hx-trigger="every 1s,load">
|
|
||||||
</article>
|
|
||||||
|
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user