flora-search-aurora/res/maps/tmx→lisp.lisp

22 lines
609 B
Common Lisp

(ql:quickload '(alexandria cl-tiled assoc-utils str uiop))
(load "packages.lisp")
(load "util.lisp")
(load "overworld.util.lisp")
(load "overworld.tiled.lisp")
(defun local-path (subpath)
(format nil "~A~A" (uiop:getcwd) subpath))
(mapcar
(lambda (map-name)
(🌍.::save-map-to-file
(local-path (format nil "res/maps/~A.tmx.lisp" map-name))
(overworld.tiled:load-map (local-path (format nil "res/maps/~A.tmx" map-name)))
":FLORA-SEARCH-AURORA"
(format nil "*~A-map-plist*" map-name)))
'("base" "casino" "flashback-base" "flashback-casino" "flashback-school" "outdoors"))
(quit)