terminal_commands.lua 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. local Terminal = require("terminal")
  2. local function tout(...) Terminal:tout(...) end
  3. local CMD = {}
  4. local function wrap_string(str,ml)
  5. local lt = floor(str:len()/ml+0.99)
  6. if lt <= 1 then return {str} end
  7. local t = {}
  8. for i = 1, lt+1 do
  9. table.insert(t,str:sub(0,ml-1))
  10. str=str:sub(ml,-1)
  11. end
  12. return t
  13. end
  14. function CMD.help()
  15. tout("COMMANDS <REQUIRED> [OPTIONAL]",13)
  16. --tout()
  17. tout("HELP: SHOW THIS HELP",7)
  18. tout("NEW: CLEARS THE MEMORY",7)
  19. tout("RELOAD: RELOADS THE EDITORSHEET",7)
  20. tout("RUN: RUNS THE CURRENT GAME",7)
  21. tout("SAVE <NAME>: SAVES THE CURRENT GAME",7)
  22. tout("LOAD <NAME>: LOADS A GAME",7)
  23. tout("IMPORT <PATH>: IMPORTS A SPRITESHEET",7)
  24. tout("EXPORT <PATH>: EXPORTS THE SPRITESHEET",7)
  25. tout("CLS: CLEARS THE SCREEN",7)
  26. tout("VER: SHOWS LIKO12'S TITLE",7)
  27. --tout()
  28. tout("PRESS ESC TO OPEN THE EDITOR/EXIT THE GAME",9)
  29. tout("READ LIKO-12.TXT TO GET STARTED !",12)
  30. end
  31. function CMD.cls()
  32. for i=1, Terminal.linesLimit do tout() end Terminal:setLine(1)
  33. end
  34. function CMD.ver() tout() tout("-[[liko12]]-") tout(_LK12VER,_LK12VERC) end
  35. function CMD.run()
  36. local sm = require("editor.sprite"):export()
  37. local cd = require("editor.code"):export()
  38. local rt = require("runtime")
  39. local spr = SpriteSheet(ImageData(sm):image(),24,12)
  40. local ok, err = rt:loadGame(cd,spr,function(err)
  41. _auto_exitgame()
  42. for line,text in ipairs(wrap_string(err,38)) do
  43. tout(line == 1 and "ERR: "..text or text,9)
  44. end
  45. tout("> ",8,true)
  46. end)
  47. if not ok then
  48. _auto_exitgame()
  49. for line,text in ipairs(wrap_string(err,38)) do
  50. tout(line == 1 and "ERR: "..text or text,9)
  51. end
  52. tout("> ",8,true)
  53. else
  54. _auto_switchgame()
  55. end
  56. end
  57. function CMD.new()
  58. require("editor.sprite"):load()
  59. require("editor.code"):load()
  60. tout("CLEARED MEMORY",7)
  61. end
  62. function CMD.reload()
  63. EditorSheet = SpriteSheet(Image("/editorsheet.png"),24,12)
  64. loadDefaultCursors()
  65. tout("RELOADED EDITORSHEET",7)
  66. end
  67. function CMD.save(command,name)
  68. if not name then tout("PLEASE PROVIDE A NAME TO SAVE",9) return end
  69. local sm = require("editor.sprite"):export()
  70. local cd = require("editor.code"):export()
  71. local saveCode = "local code = [["..cd.."]]\n\n"
  72. saveCode = saveCode .. "local spritemap = '"..sm.."'\n\n"
  73. saveCode = saveCode .. "return {code=code,spritemap=spritemap}"
  74. FS.write("/"..(name)..".lk12",saveCode)
  75. tout("SAVED TO "..(name)..".lk12",12)
  76. end
  77. function CMD.load(command,name)
  78. if not name then tout("PLEASE PROVIDE A NAME TO LOAD",9) return end
  79. local code = FS.read("/"..name..".lk12")
  80. code = loadstring(code)
  81. setfenv(code,{})
  82. local data = code()
  83. SpriteMap = SpriteSheet(ImageData(data.spritemap):image(),24,12)
  84. require("editor.code"):load(data.code)
  85. tout("LOADED /"..name..".lk12",12)
  86. end
  87. function CMD.export(command,path)
  88. require("editor.sprite"):export(path)
  89. tout("EXPORTED TO /"..path..".PNG",12)
  90. end
  91. function CMD.import(command,path)
  92. require("editor.sprite"):load(path)
  93. tout("IMPORTED /"..path..".PNG",12)
  94. end
  95. return CMD