Advertisement
Andy73

AndyCode Archiver

Apr 15th, 2014
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.56 KB | None | 0 0
  1. --[[
  2. Pure Lua archiver made by Andy73 a.k.a. viluon
  3.  
  4. Copyright 2014
  5. version 0.3 BETA (2nd public release)
  6.  
  7. usage: archiver <compress|extract|help> <file input path> <file output path>
  8.  
  9. FUNCTIONAL!!!
  10. ]]
  11.  
  12. local s=48
  13.  
  14. local function help()
  15. print("Pure Lua archiver by Andy a.k.a. viluon copyright 2014")
  16. print("version 0.3 BETA")
  17. print("")
  18. print("Current dictionary size: "..s.." keywords")
  19. print("")
  20. print("Please note:Beta versions can cause unexpected data changes. Andy is not responsible for any data corruption or removals caused by this program. Use at your own risk.")
  21. end
  22.  
  23. local function usage()
  24. print("Usage:")
  25. print(" archiver <compress|extract|help> <file input path> <file output path>")
  26. print("'compress','extract' or 'help' can be shortened to 'c','e' or '?'")
  27. end
  28.  
  29. local tArgs={...}
  30.  
  31. local t=nil
  32.  
  33. local function r(a,b)
  34. t=string.gsub(t,a,b)
  35. end
  36.  
  37. --COMPRESS
  38. local function compress(...)
  39. local args={...}
  40. local file=fs.open(tostring(args[1]),"r")
  41. print("FileSize original:"..fs.getSize(shell.resolve(tostring(args[1]))))
  42. t=file.readAll()
  43. file:close()
  44. --FIRST ROUND SYMBOL @ (12x)
  45. r("true","@Ä›") --new format
  46. r("false","@š")
  47. r("setTextScale","@ÄŤ")
  48. r("setBackgroundColor","@Ĺ™")
  49. r("os.loadAPI","@Ĺľ")
  50. r("color","@Ă˝")
  51. r("setTextColor","@á")
  52. r("text","@Ă­")
  53. r("Text","@Ă©")
  54. r("write","@Ăş")
  55. r("elseif","@ĹŻ")
  56. r("local","@ˇ")
  57. r("function","@´")
  58. --SECOND ROUND SYMBOL # (12x)
  59. r("then","#Ä›")
  60. r("end","#š")
  61. r("else","#ÄŤ")
  62. r("tostring%(","#Ĺ™")
  63. r("tonumber%(","#Ĺľ")
  64. r("string","#Ă˝")
  65. r("math","#á")
  66. r("=os.pullEventRaw%(","#Ă­")
  67. r("=os.pullEvent%(","#Ă©")
  68. r("= os.pullEventRaw%(","#Ăş")
  69. r("= os.pullEvent%(","#ĹŻ")
  70. r("window","#ˇ")
  71. r("process","#´")
  72. --THIRD ROUND SYMBOL ! (12x)
  73. r("and","!Ä›")
  74. r("not","!š")
  75. r("print","!ÄŤ")
  76. r(" == ","!Ĺ™")
  77. r(" ~= ","!Ĺľ")
  78. r("= fs.exists%(","!Ă˝")
  79. r("=pcall%(","!á")
  80. r("= pcall%(","!Ă­")
  81. r("pcall%(","!Ă©")
  82. r("=fs.open%(","!Ăş")
  83. r("= fs.open%(","!ĹŻ")
  84. r("fs.exists%(","!ˇ")
  85. r("print%(","!´")
  86. --FOURTH ROUND SYMBOL / (12x)
  87. r("=fs.isDir%(","/š")
  88. r("= fs.isDir%(","/ÄŤ")
  89. r("fs.isDir%(","/Ĺ™")
  90. r("=fs.isReadOnly%(","/Ĺľ")
  91. r("= fs.isReadOnly%(","/Ă˝")
  92. r("fs.isReadOnly%(","/á")
  93. r("=fs.getDrive%(","/Ă­")
  94. r("= fs.getDrive%(","/Ă©")
  95. r("fs.getDrive%(","/Ăş")
  96. r("=fs.getSize%(","/ĹŻ")
  97. r("= fs.getSize%(","/ˇ")
  98. r("fs.getSize%(","/´")
  99.  
  100. local target=fs.open(tostring(args[2]),"w")
  101. target.write(t)
  102. target:close()
  103.  
  104. print("FileSize comprimed:"..fs.getSize(args[2]))
  105. one=fs.getSize(args[1])/100
  106. size=fs.getSize(args[2])
  107. percent=100-size/one
  108. print("comprimed by "..percent.."%")
  109. end
  110.  
  111. --EXTRACT
  112. local function extract(...)
  113. local args={...}
  114. local file=fs.open(shell.resolve(tostring(args[1])),"r") print("asd")
  115. t=file.readAll()
  116. file:close()
  117. --FIRST ROUND SYMBOL @ (12x)
  118. r("@Ä›","true")
  119. r("@š","false")
  120. r("@ÄŤ","setTextScale")
  121. r("@Ĺ™","setBackgroundColor")
  122. r("@Ĺľ","os.loadAPI")
  123. r("@Ă˝","color")
  124. r("@á","setTextColor")
  125. r("@Ă­","text")
  126. r("@Ă©","Text")
  127. r("@Ăş","write")
  128. r("@ĹŻ","elseif")
  129. r("@ˇ","local")
  130. r("@´","function")
  131. --SECOND ROUND SYMBOL # (12x)
  132. r("#Ä›","then")
  133. r("#š","end")
  134. r("#ÄŤ","else")
  135. r("#Ĺ™","tostring%(")
  136. r("#Ĺľ","tonumber%(")
  137. r("#Ă˝","string")
  138. r("#á","math")
  139. r("#Ă­","=os.pullEventRaw%(")
  140. r("#Ă©","=os.pullEvent%(")
  141. r("#Ăş","= os.pullEventRaw%(")
  142. r("#ĹŻ","= os.pullEvent%(")
  143. r("#ˇ","window")
  144. r("#´","process")
  145. --THIRD ROUND SYMBOL ! (12x)
  146. r("!Ä›","and")
  147. r("!š","not")
  148. r("!ÄŤ","print")
  149. r("!Ĺ™"," == ")
  150. r("!Ĺľ"," ~= ")
  151. r("!Ă˝","= fs.exists%(")
  152. r("!á","=pcall%(")
  153. r("!Ă­","= pcall%(")
  154. r("!Ă©","pcall%(")
  155. r("!Ăş","=fs.open%(")
  156. r("!ĹŻ","= fs.open%(")
  157. r("!ˇ","fs.exists%(")
  158. r("!´","print%(")
  159. --FOURTH ROUND SYMBOL / (12x)
  160. r("/š","=fs.isDir%(")
  161. r("/ÄŤ","= fs.isDir%(")
  162. r("/Ĺ™","fs.isDir%(")
  163. r("/Ĺľ","=fs.isReadOnly%(")
  164. r("/Ă˝","= fs.isReadOnly%(")
  165. r("/á","fs.isReadOnly%(")
  166. r("/Ă­","=fs.getDrive%(")
  167. r("/Ă©","= fs.getDrive%(")
  168. r("/Ăş","fs.getDrive%(")
  169. r("/ĹŻ","=fs.getSize%(")
  170. r("/ˇ","= fs.getSize%(")
  171. r("/´","fs.getSize%(")
  172.  
  173. local target=fs.open(args[2],"w")
  174. target.write(t)
  175. target:close()
  176.  
  177. print("done!")
  178. end
  179.  
  180. if tostring(tArgs[1])=="compress" or tostring(tArgs[1])=="c" then
  181. compress(tArgs[2],tArgs[3])
  182. elseif tostring(tArgs[1])=="extract" or tostring(tArgs[1])=="e" then
  183. extract(tArgs[2],tArgs[3])
  184. elseif tostring(tArgs[1])=="help" or tostring(tArgs[1])=="?" then
  185. help()
  186. else
  187. usage()
  188. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement