Advertisement
Andy73

Compressor

Apr 11th, 2014
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.29 KB | None | 0 0
  1. --[[
  2. Pure Lua compressor made by Andy73 a.k.a. viluon
  3.  
  4. Copyright 2014
  5. version 0.2 BETA (1st public release)
  6.  
  7. usage: compressor <file input path> <file output path>
  8. ]]
  9.  
  10.  
  11. local args={...}
  12. local file=fs.open(args[1],"r")
  13. local r=string.gsub
  14. print("FileSize original:"..fs.getSize(args[1]))
  15. local t=file.readAll()
  16. file:close()
  17. --t is a string, will be later saved
  18. --FIRST ROUND SYMBOL @ (12x)
  19. t=r(t,"true","@ě")
  20. t=r(t,"false","@š")
  21. t=r(t,"setTextScale","@č")
  22. t=r(t,"setBackgroundColor","@ř")
  23. t=r(t,"os.loadAPI","@ž")
  24. t=r(t,"color","@ý")
  25. t=r(t,"setTextColor","@á")
  26. t=r(t,"text","@í")
  27. t=r(t,"Text","@é")
  28. t=r(t,"write","@ú")
  29. t=r(t,"elseif","@ů")
  30. t=r(t,"local","@ˇ")
  31. t=r(t,"function","@´")
  32. --SECOND ROUND SYMBOL # (12x)
  33. t=r(t,"then","#ě")
  34. t=r(t,"end","#š")
  35. t=r(t,"else","#č")
  36. t=r(t,"tostring%(","#ř")
  37. t=r(t,"tonumber%(","#ž")
  38. t=r(t,"string","#ý")
  39. t=r(t,"math","#á")
  40. t=r(t,"=os.pullEventRaw%(","#í")
  41. t=r(t,"=os.pullEvent%(","#é")
  42. t=r(t,"= os.pullEventRaw%(","#ú")
  43. t=r(t,"= os.pullEvent%(","#ů")
  44. t=r(t,"window","#ˇ")
  45. t=r(t,"process","#´")
  46. --THIRD ROUND SYMBOL ! (12x)
  47. t=r(t,"and","!ě")
  48. t=r(t,"not","!š")
  49. t=r(t,"print","!č")
  50. t=r(t," == ","!ř")
  51. t=r(t," ~= ","!ž")
  52. t=r(t,"= fs.exists%(","!ý")
  53. t=r(t,"=pcall%(","!á")
  54. t=r(t,"= pcall%(","!í")
  55. t=r(t,"pcall%(","!é")
  56. t=r(t,"=fs.open%(","!ú")
  57. t=r(t,"= fs.open%(","!ů")
  58. t=r(t,"fs.exists%(","!ˇ")
  59. t=r(t,"print%(","!´")
  60. --FOURTH ROUND SYMBOL / (12x)
  61. t=r(t,"=fs.isDir%(","/š")
  62. t=r(t,"= fs.isDir%(","/č")
  63. t=r(t,"fs.isDir%(","/ř")
  64. t=r(t,"=fs.isReadOnly%(","/ž")
  65. t=r(t,"= fs.isReadOnly%(","/ý")
  66. t=r(t,"fs.isReadOnly%(","/á")
  67. t=r(t,"=fs.getDrive%(","/í")
  68. t=r(t,"= fs.getDrive%(","/é")
  69. t=r(t,"fs.getDrive%(","/ú")
  70. t=r(t,"=fs.getSize%(","/ů")
  71. t=r(t,"= fs.getSize%(","/ˇ")
  72. t=r(t,"fs.getSize%(","/´")
  73.  
  74. local target=fs.open(args[2],"w")
  75. target.write(t)
  76. target:close()
  77.  
  78. print("FileSize comprimed:"..fs.getSize(args[2]))
  79. one=fs.getSize(args[1])/100
  80. size=fs.getSize(args[2])
  81. percent=100-size/one
  82. print("comprimed by "..percent.."%")
  83.  
  84.  
  85.  
  86. --[[
  87. t=r(t,"true","/š")
  88. t=r(t,"true","/č")
  89. t=r(t,"true","/ř")
  90. t=r(t,"true","/ž")
  91. t=r(t,"true","/ý")
  92. t=r(t,"true","/á")
  93. t=r(t,"true","/í")
  94. t=r(t,"true","/é")
  95. t=r(t,"true","/ú")
  96. t=r(t,"true","/ů")
  97. t=r(t,"true","/ˇ")
  98. t=r(t,"true","/´")
  99. ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement