mirror of
https://github.com/maddievision/Celestial.git
synced 2024-08-14 23:55:37 +00:00
9 lines
287 B
Ruby
9 lines
287 B
Ruby
require "./celeste_map"
|
|
# fn = 'app/Content/Maps/1-ForsakenCity.bin'
|
|
|
|
ARGV.each do |fn|
|
|
base = File.basename(fn, ".bin")
|
|
a = CelesteMap.new(fn)
|
|
File.open("#{base}.xml", "wb") { |f| f.write a.root.inspect } # Note: not valid XML, just for display
|
|
a.write_json("#{base}.json")
|
|
end
|