67 lines
2.1 KiB
Fennel
67 lines
2.1 KiB
Fennel
(local util (require :lib.util))
|
|
(local lume (require :lib.lume))
|
|
|
|
(local flags [:walkable :neutable :debris :sittable])
|
|
(local flag-to-bit {})
|
|
(each [iflag flag (ipairs flags)]
|
|
(tset flag-to-bit flag (bit.lshift 1 (- iflag 1))))
|
|
|
|
(local encoded-tile-fields [:gfx :neut])
|
|
(fn convert [tile field method]
|
|
(local oldval (. tile field))
|
|
(when oldval
|
|
(tset tile field (: oldval method)))
|
|
tile)
|
|
(fn convert-all [tile method]
|
|
(each [_ field (ipairs encoded-tile-fields)]
|
|
(convert tile field method))
|
|
tile)
|
|
|
|
(fn deserialize [tile]
|
|
(match (type tile)
|
|
:string {:gfx (tile:fromhex) :flags {}}
|
|
:table (convert-all tile :fromhex)))
|
|
|
|
(fn serialize [tile] (convert-all (lume.clone tile) :tohex))
|
|
|
|
(local fn-tiles "game/tiles.json")
|
|
(local fn-portraits "game/portraits.json")
|
|
(local fn-font "game/font.json")
|
|
|
|
(fn loadgfx [filename] (lume.map (util.readjson filename) deserialize))
|
|
(fn savegfx [filename gfx] (util.writejson filename (lume.map gfx serialize)))
|
|
|
|
(fn appendgfx [org gfx ?key ?ignore-labels]
|
|
(each [_ g (ipairs gfx)]
|
|
(when (and g.label (not ?ignore-labels)) (org:append g.label))
|
|
(org:append [:bytes (. g (or ?key :gfx))])))
|
|
|
|
(fn appendtiles [org]
|
|
(local tiles (loadgfx fn-tiles))
|
|
(org:append [:align 0x100] :jaye-tileset)
|
|
(appendgfx org tiles)
|
|
(org:append [:align 0x100] :neut-tileset)
|
|
(appendgfx org tiles :neut true)
|
|
(appendgfx org (loadgfx fn-portraits))
|
|
(org:append :tileflags)
|
|
(each [_ tile (ipairs tiles)]
|
|
(var flags 0)
|
|
(each [flag _ (pairs tile.flags)]
|
|
(set flags (bit.bor flags (. flag-to-bit flag))))
|
|
(org:append [:db flags])))
|
|
|
|
(fn encode-yx [xy]
|
|
(if xy (bit.bor (bit.lshift (- xy.y 1) 8) (- xy.x 1)) 0xffff))
|
|
|
|
(fn find-itile [tiles label ?itilenext]
|
|
(local itile (or ?itilenext 1))
|
|
(local tile (. tiles itile))
|
|
(assert (not= tile nil) (.. "No such tile " label))
|
|
(if (= tile.label label)
|
|
(bit.bor (bit.lshift (bit.band (- itile 1) 0x07) 5) (bit.rshift (bit.band (- itile 1) 0xf8) 3))
|
|
(find-itile tiles label (+ itile 1))))
|
|
|
|
{: loadgfx : savegfx : appendtiles : appendgfx : flags : flag-to-bit : find-itile
|
|
: fn-tiles : fn-portraits : fn-font : encode-yx}
|
|
|