Advertisement
Andy73

Dictionary App for AndyCode Archiver

Apr 13th, 2014
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.94 KB | None | 0 0
  1. --[[
  2. Copyright 2014 by Andy a.k.a. viluon
  3.  
  4. Dictionary app for AndyCode archiver
  5. WARNING: NOT DESIGNED FOR COMPUTERCRAFT
  6.  
  7. note:add those l00ps!
  8. note:check letter 'printability'
  9.  
  10. 17/1219
  11. ]]
  12. d=io.open("storage/sdcard0/DWorkspace/ACOS Archiver/dev/asd","w")
  13. d:write("")
  14. d:close()
  15. local function addCom(txt,tr)
  16. out=io.open("storage/sdcard0/DWorkspace/ACOS Archiver/dev/asd","a")
  17. out:write("r('"..txt.."','"..tr.."')\n")
  18. out:close()
  19. end
  20. local function addExt(tr,txt)
  21. out=io.open("storage/sdcard0/DWorkspace/ACOS Archiver/dev/asd","a")
  22. out:write("r('"..txt.."','"..tr.."')\n")
  23. out:close()
  24. end
  25. local tOrigin={
  26. "while true do",
  27. "false",
  28. "true",
  29. "local function ",
  30. "local ",
  31. "tostring%(",
  32. "tonumber%(",
  33. "function%(%)",
  34. "function",
  35. "elseif ",
  36. "if ",
  37. "else",
  38. "return ",
  39. "then",
  40. "while ",
  41. "for ",
  42. "end", }
  43. local tDictionaryA={
  44. "@",
  45. "#",
  46. "$",
  47. "*",
  48. "&",
  49. "/",
  50. "~",
  51. "|",
  52. "!",
  53. "•",
  54. "√",
  55. "π",
  56. "÷",
  57. "×",
  58. "£",
  59. "¢",
  60. "€",
  61. "°",
  62. "_",
  63. "™",
  64. "®",
  65. "©",
  66. "¶",
  67. "^", }
  68. local tDictionaryB={
  69. "á",
  70. "à",
  71. "â",
  72. "ä",
  73. "æ",
  74. "ã",
  75. "å",
  76. "ā",
  77. "ě",
  78. "é",
  79. "è",
  80. "ê",
  81. "ë",
  82. "ę",
  83. "ė",
  84. "ē",
  85. "ï",
  86. "î",
  87. "í",
  88. "ī",
  89. "ì",
  90. "į",
  91. "ò",
  92. "ô",
  93. "ö",
  94. "ó",
  95. "ō",
  96. "ø",
  97. "œ",
  98. "õ",
  99. "ů",
  100. "ú",
  101. "û",
  102. "ü",
  103. "ù",
  104. "ū",
  105. "ý",
  106. "ÿ",
  107.  
  108.  
  109.  
  110. "ř",
  111. "ť",
  112. "ź",
  113. "ž",
  114. "ż",
  115. "š",
  116. "ß",
  117. "ś",
  118. "ď",
  119. "ć",
  120. "č",
  121. "ç",
  122. "ń",
  123. "ň",
  124. "ñ",
  125. "`", }
  126. local function main()
  127. local b=0
  128. local count=0
  129. for a=1,#tDictionaryA do
  130. for index=1,#tDictionaryB do
  131. b=b+1
  132. if b>#tOrigin then break end
  133. count=count+1
  134. addCom(tostring(tOrigin[b]),tostring(tDictionaryA[a])..tostring(tDictionaryB[index]))
  135. end
  136. end
  137. b=0
  138. for a=1,#tDictionaryA do
  139. for index=1,#tDictionaryB do
  140. b=b+1
  141. if b>#tOrigin then break end
  142. addExt(tostring(tOrigin[b]),tostring(tDictionaryA[a])..tostring(tDictionaryB[index]))
  143. end
  144. end
  145. print(count)
  146. end
  147. --[[
  148. "",
  149. "",
  150. "",
  151. "",
  152.  
  153. ]]
  154. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement