terminal_commands.lua 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. local term = require("terminal")
  2. local function tout(...) term:tout(...) end
  3. local CMD = {}
  4. function CMD.help()
  5. tout("COMMANDS <REQUIRED> [OPTIONAL]",13)
  6. --tout()
  7. tout("HELP: SHOW THIS HELP",7)
  8. tout("NEW: CLEARS THE MEMORY",7)
  9. tout("RELOAD: RELOADS THE EDITORSHEET",7)
  10. tout("RUN: RUNS THE CURRENT GAME",7)
  11. tout("SAVE <NAME>: SAVES THE CURRENT GAME",7)
  12. tout("LOAD <NAME> [args]: LOADS A GAME",7)
  13. tout("IMPORT <PATH>: IMPORTS A SPRITESHEET",7)
  14. tout("EXPORT <PATH>: EXPORTS THE SPRITESHEET",7)
  15. tout("CLS: CLEARS THE SCREEN",7)
  16. tout("VER: SHOWS LIKO12'S TITLE",7)
  17. --tout()
  18. tout("PRESS ESC TO OPEN THE EDITOR/EXIT THE GAME",9)
  19. tout("READ LIKO-12.TXT TO GET STARTED !",12)
  20. end
  21. function CMD.cls()
  22. for i=1, term.linesLimit do tout() end term:setLine(1)
  23. end
  24. function CMD.ver() tout() tout("-[[liko12]]-") tout(_LK12VER,_LK12VERC) end
  25. function CMD.run()
  26. local sm = require("editor.sprite"):export()
  27. local cd = require("editor.code"):export()
  28. local rt = require("runtime")
  29. local sprsheet = api.SpriteSheet(api.ImageData(sm):image(),24,12)
  30. local ok, err = rt:loadGame(cd,sprsheet,function(err)
  31. _auto_exitgame()
  32. tout("ERR: "..err,9)
  33. tout(term.rootDir.."> ",8,true)
  34. end)
  35. if not ok then
  36. _auto_exitgame()
  37. tout("ERR: "..err,9)
  38. tout(term.rootDir.."> ",8,true)
  39. else
  40. _auto_switchgame()
  41. end
  42. end
  43. function CMD.new()
  44. require("editor.sprite"):load()
  45. require("editor.code"):load()
  46. require("editor").lastCart = nil
  47. require("editor").lastSprpng = nil
  48. tout("CLEARED MEMORY",7)
  49. end
  50. function CMD.reload()
  51. api.EditorSheet = api.SpriteSheet(api.Image("/editorsheet.png"),24,12)
  52. api.loadDefaultCursors()
  53. tout("RELOADED EDITORSHEET",7)
  54. end
  55. function CMD.save(command,name)
  56. local name = name or require("editor").lastCart
  57. if not name then tout("PLEASE PROVIDE A NAME TO SAVE",9) return end
  58. local sm = require("editor.sprite"):export()
  59. local cd = require("editor.code"):export()
  60. local saveCode = "local code = [["..cd.."]]\n\n"
  61. saveCode = saveCode .. "local spritemap = '"..sm.."'\n\n"
  62. saveCode = saveCode .. "return {code=code,spritemap=spritemap}"
  63. local ok, err = api.fs.write((name)..".lk12",saveCode)
  64. if ok then
  65. tout("SAVED TO "..term.rootDir..(name)..".lk12",12)
  66. else
  67. tout("ERR: "..err,9)
  68. end
  69. require("editor").lastCart = name
  70. end
  71. function CMD.load(command,name,...)
  72. if not name then tout("PLEASE PROVIDE A NAME TO LOAD",9) return end
  73. if not api.fs.exists(term.rootDir..name..".lk12") then tout(term.rootDir..name..".lk12 DOES NOT EXISTS !",9) return end
  74. local code = api.fs.read(term.rootDir..name..".lk12")
  75. code, err = loadstring(code)
  76. if not code then tout("ERR: "..err,9) return end
  77. local args = {...}
  78. setfenv(code,{})
  79. local ok, data = pcall(code,unpack(args))
  80. if not ok then tout("ERR: "..data,9) return end
  81. api.SpriteMap = api.SpriteSheet(api.ImageData(data.spritemap):image(),24,12)
  82. require("editor").lastsprpng = nil
  83. require("editor.code"):load(data.code)
  84. tout("LOADED "..term.rootDir..name..".lk12",12)
  85. require("editor").lastCart = name
  86. end
  87. function CMD.export(command,path)
  88. local path = path or require("editor").lastSprpng
  89. if not path then tout("PLEASE PROVIDE A PATH TO EXPORT TO",9) return end
  90. require("editor.sprite"):export(path)
  91. tout("EXPORTED TO "..path..".PNG",12)
  92. end
  93. function CMD.import(command,path)
  94. if not path then tout("PLEASE PROVIDE A PATH TO IMPORT FROM",9) return end
  95. if not love.filesystem.exists(path..".png") then tout(path..".png DOES NOT EXISTS !") return end
  96. require("editor.sprite"):load(path)
  97. tout("IMPORTED /"..path..".PNG",12)
  98. require("editor").lastSprpng = path
  99. end
  100. function CMD.cd(command,path)
  101. if not path then tout("PLEASE PROVIDE A PATH FIRST",9) return end
  102. local curpath = path:sub(0,1) == "/" and path.."/" or term.rootDir..path.."/"
  103. if path == ".." then curpath = "/" end
  104. if not api.fs.exists(curpath) then tout(curpath.." DOES NOT EXISTS !",9) return end
  105. if not api.fs.isDir(curpath) then tout(path.." IS NOT A DIRECTORY !",9) return end
  106. term.rootDir = curpath
  107. end
  108. function CMD.mkdir(command,path)
  109. if not path then tout("PLEASE PROVIDE A PATH FIRST",9) return end
  110. local curpath = path:sub(0,1) == "/" and path or term.rootDir..path
  111. if api.fs.exists(curpath) then tout(path.." ALREADY EXISTS !",9) return end
  112. local ok, err = api.fs.mkDir(curpath)
  113. if ok then
  114. tout("MAKED DIRECTORY SUCCESSFULLY",12)
  115. else
  116. tout("ERR: "..err,9)
  117. end
  118. end
  119. function CMD.dir(command,path)
  120. local path = path or ""
  121. local curpath = path:sub(0,1) == "/" and path.."/" or term.rootDir..path.."/"
  122. local files = api.fs.dirItems(curpath)
  123. local dirstring = ""
  124. local filestring = ""
  125. for k,v in ipairs(files) do
  126. if api.fs.isDir(curpath..v) then
  127. dirstring = dirstring.." "..v
  128. else
  129. filestring = filestring.." "..v
  130. end
  131. end
  132. if dirstring ~= "" then tout(dirstring,12) end
  133. if filestring ~= "" then tout(filestring,8) end
  134. end
  135. CMD.ls = CMD.dir
  136. function CMD.del(command,path)
  137. if not path then tout("PLEASE PROVIDE A PATH FIRST",9) return end
  138. local curpath = term.rootDir..path
  139. if not api.fs.exists(curpath) then tout(curpath.." DOES NOT EXISTS !",9) return end
  140. local ok, err = api.fs.del(curpath)
  141. if ok then
  142. tout("DELETED "..path.." SUCCESSFULLY",12)
  143. else
  144. tout("ERR: "..(err or "UNKNOWN"),9)
  145. end
  146. if not love.filesystem.exists("/data/") then love.filesystem.createDirectory("/data/") end
  147. end
  148. return CMD