Advertisement
Nicro

noGPS converter V1.0

Apr 18th, 2016
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.55 KB | None | 0 0
  1. -- noGPS converter
  2. -- Version 1.0
  3. -- by ChaosNicro
  4.  
  5. local arg = {...}
  6.  
  7. -- help
  8. function help()
  9. print("usage:")
  10. print("converter <filename> <direction> <keep> ")
  11. print("")
  12. print("filename: Name of the file to convert.")
  13. print("")
  14. print("direction: Whether to convert the file to noGPS format(true)")
  15. print("or revert a converted file back to the native format.")
  16. print("")
  17. print("keep: Whether to keep the original file (true) or to overwrite it (false).")
  18. print("")
  19. print("When keep is true the output will be named filename-noGPS.")
  20. error() -- using empty prints instead of /n is a personal preference
  21. end
  22.  
  23.  
  24. -- variables
  25. if (arg[1] == nil) or (not fs.exists(arg[1])) then
  26. help()
  27. end
  28. local filename = arg[1] -- name of the original file
  29. local direction -- true = convert, false = revert
  30. if arg[2] == "false" then  direction = false elseif arg[2] == "true" then direction = true else help() end
  31. local keep -- Whether to keep the original file
  32. if arg[3] == "false" then  keep = false elseif arg[3] == "true" then keep = true else help() end
  33. local currline = "something"
  34. local convFilename = filename.."-converted"
  35.  
  36. -- handles
  37. local orfile = assert(fs.open(filename, "r"), "could not open file")
  38. local newfile = assert(fs.open(convFilename, "w"), "could not create new file")
  39.  
  40. -- logic
  41. if direction then
  42. newfile.writeLine("os.loadAPI(\"noGPS\")")
  43. end
  44. while true do
  45. currline = orfile.readLine()
  46. if (currline ~= nil) and (direction) then
  47. currline = string.gsub(currline, "turtle.forward", "noGPS.forward")
  48. currline = string.gsub(currline, "turtle.back", "noGPS.back")
  49. currline = string.gsub(currline, "turtle.up", "noGPS.up")
  50. currline = string.gsub(currline, "turtle.down", "noGPS.down")
  51. currline = string.gsub(currline, "turtle.turnLeft", "noGPS.turnLeft")
  52. currline = string.gsub(currline, "turtle.turnRight", "noGPS.turnRight")
  53. newfile.writeLine(currline)
  54. elseif (currline ~= nil) and (not direction) then
  55. if currline ~= "os.loadAPI(\"noGPS\")" then
  56. currline = string.gsub(currline, "noGPS.forward", "turtle.forward")
  57. currline = string.gsub(currline, "noGPS.back", "turtle.back")
  58. currline = string.gsub(currline, "noGPS.up", "turtle.up")
  59. currline = string.gsub(currline, "noGPS.down", "turtle.down")
  60. currline = string.gsub(currline, "noGPS.turnLeft", "turtle.turnLeft")
  61. currline = string.gsub(currline, "noGPS.turnRight", "turtle.turnRight")
  62. newfile.writeLine(currline)
  63. end
  64.  
  65. elseif currline == nil then
  66. break
  67. end
  68. end
  69.  
  70. orfile.close()
  71. newfile.close()
  72. if not keep then
  73. fs.delete(filename)
  74. fs.move(convFilename, filename)
  75. end
  76. print("finished!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement