Advertisement
Matt21

Perm gen Error

Jun 23rd, 2013
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 12.11 KB | None | 0 0
  1. --[[
  2.    
  3.    
  4.  
  5. ]]-- Config Below - Configuration ci-dessous - Konfiguration unter
  6.  
  7. disableUpdate = true
  8.  
  9.  
  10. -- CODE PART --
  11.  
  12. function clear()
  13. term.clear()
  14. term.setCursorPos(1,1)
  15. end
  16.  
  17. function fileReader(fileName)-- UNUSED
  18. file = fs.open(fileName, "r")
  19.  
  20. fLines = { }
  21.  
  22. repeat
  23.  
  24. line = file.readLine()
  25.  
  26. if line == "STOP" then
  27. stop = true
  28. else
  29. fLines[#fLines + 1] = line
  30. end
  31.  
  32.  
  33.  
  34. until stop == true
  35. end
  36.  
  37. function langauge() -- MSG STORAGE
  38. if ln == "en" then
  39. yes, no = "Yes", "No"
  40. lmsg = "Load packs"
  41. lmsg2 = "It's all."
  42. lmsg3 = "I want to load others packs."
  43. lmsg4 = "Enter file name"
  44. lmsg5 = "File not found!"
  45. lmsg6 = "Starting processing procedure"
  46. lmsg7 = "Not compatible with the chosen version of CraftBukkit"
  47. elseif ln == "es" then
  48. yes, no = "Si", "No"
  49. LMSG = "packs de carga"
  50. lmsg2 = "No es todo."
  51. lmsg3 = "quiero cargar otros paquetes."
  52. lmsg4 = "Introduzca nombre de archivo"
  53. lmsg5 = "Archivo no encontrado"
  54. lmsg6 = "Inicio de procedimiento de procesamiento"
  55. lmsg7 = "No es compatible con la version elegida de CraftBukkit"
  56. elseif ln == "fr" then
  57. yes, no = "Oui", "Non"
  58. lmsg = "Chargez les packs"
  59. lmsg2 = "J'ai fini de choisir les packs"
  60. lmsg3 = "Je veux ajouter un autre pack a la selection"
  61. lmsg4 = "Entrez le nom du fichier"
  62. lmsg5 = "Fichier introuvable!"
  63. lmsg6 = [[Demarrage de la procedure de traitement;
  64. messages en anglais uniquement]]
  65. lmsg7 = "Non compatible avec la version craftbukkit choisie"
  66. elseif ln == "de" then
  67. yes, no = "Ja", "Nicht"
  68. lmsg = "Wahlen Sie alle Pakete"
  69. lmsg2 = "Ich beendete Auswahl von Paketen"
  70. lmsg3 = "Ich mochte einen anderen Satz hinzufugen"
  71. lmsg4 = "Geben Sie den Dateinamen"
  72. lmsg5 = "Datei nicht gefunden!"
  73. lmsg6 = [[Startup Modalitäten der Verarbeitung,
  74. Meldungen nur in englischer Sprache.]]
  75. lmsg7 = "Nicht kompatibel mit der gewählten Version CraftBukkit"
  76. end
  77. end
  78.  
  79. function uniLang()
  80. umsg =  [[Choose your langauge
  81. Selectionez votre langue
  82. Wahlen Sie eine Sprache]]
  83. umsg2 = [[
  84. OUTDATED DEPASSE UBERHOLT ANTICUADO
  85. Please go to:
  86. Veuillez aller sur:
  87. Gehen Sie bitte auf:
  88. Por favor vaya a:
  89.  
  90. [MASKED LINK]
  91.  
  92. and update this program. Thanks
  93. et mettre a jour le programme. Merci
  94. und aktualisieren das Programm. Danke.
  95. y actualizar el programa. Gracias.
  96. ]]
  97. end
  98.  
  99. clear()
  100.  
  101. function updatePart()
  102. if disableUpdate == false then
  103. page = http.get("http://pastebin.com/raw.php?i=[MASKED]")
  104. upVerS = page.readLine()
  105. page.close()
  106. upVer = tonumber(upVerS)
  107. if v < upVer then
  108. outdatedScreen()
  109. end
  110. else
  111. print "WARNING: Update function disabled!"
  112. sleep(5)
  113. clear()
  114. end
  115. end
  116.  
  117. function selectingPart()
  118.  
  119. clear()
  120.  
  121. -- Start screen
  122. print[[
  123.  
  124.  
  125.  
  126.  
  127. ============================
  128. [Insert name of the program here]
  129. ============================
  130. ]]
  131.  
  132. sleep(4)
  133. clear()
  134. menu1Stat = 0
  135.  
  136.  
  137. ---- LANG PART ----
  138.  
  139. repeat
  140. pressedOk = false
  141. clear()
  142. print (umsg)
  143. if menu1Stat == 0 then
  144. print[[> English]]
  145. print[[  Francais]]
  146. print[[  Deutsch(BETA)]]
  147. print[[  Espanol(BETA)]]
  148. elseif menu1Stat == 1 then
  149. print[[  English]]
  150. print[[> Francais]]
  151. print[[  Deutsch(BETA)]]
  152. print[[  Espanol(BETA)]]
  153. elseif menu1Stat == 2 then
  154. print[[  English]]
  155. print[[  Francais]]
  156. print[[> Deutsch(BETA)]]
  157. print[[  Espanol(BETA)]]
  158. elseif menu1Stat == 3 then
  159. print[[  English]]
  160. print[[  Francais]]
  161. print[[  Deutsch(BETA)]]
  162. print[[> Espanol(BETA)]]
  163. end
  164. event, param1 = os.pullEvent("key")
  165. if param1 == 208 then
  166. menu1Stat = menu1Stat + 1
  167. elseif param1 == 200 then
  168. menu1Stat = menu1Stat - 1
  169. elseif param1 == 28 then
  170. pressedOk = true
  171. end
  172. if menu1Stat == 4 then menu1Stat = 0
  173. elseif menu1Stat == -1 then menu1Stat = 3 end
  174. until pressedOk == true
  175. if menu1Stat == 0 then ln = "en"
  176. elseif menu1Stat == 1 then ln = "fr"
  177. elseif menu1Stat == 2 then ln = "de"
  178. elseif menu1Stat == 2 then ln = "es" end
  179. langauge()
  180.  
  181. function checkVer(file2Check)
  182. tnFile = fs.open(file2Check, "r")
  183. ug = tnFile.readLine()
  184. ug = nil
  185.  
  186. end
  187.  
  188. ---- END LANG PART ----
  189.  
  190.  
  191.  
  192. ---- TXT PART ----
  193.  
  194. err = false
  195. exi = false
  196. repeat
  197.  
  198. clear()
  199.  
  200. print (lmsg4.." (*.txt):")
  201.  
  202. if err == true then print(lmsg5) end
  203.  
  204. inFile = read()
  205.  
  206. if fs.exists(inFile) == true then exi = true
  207. else err = true end
  208.  
  209. until exi == true
  210.  
  211. txtFile = inFile
  212.  
  213. ---- END TXT PART ----
  214.  
  215.  
  216.  
  217. ---- PERMG PART ----
  218.  
  219. done = false
  220. permgFiles = { }
  221. clear()
  222. repeat
  223. clear()
  224. done3 = false
  225. repeat
  226.  
  227. print (lmsg)
  228. print "=========="
  229. print (lmsg4.." (*.permg)")
  230. if err == true then print(lmsg5) end
  231. if nbc == true then print(lmsg6) end
  232. err, nbc = false, false
  233. tmp = read()
  234.  
  235. if fs.exists(tmp) == true then done3 = true
  236. else err = true end
  237.  
  238. until done3 == true
  239.  
  240. useless = true -- Just for Notepad++ ;)
  241.  
  242. if useless == true then -- Again Menu
  243. pressedOk = false
  244. menu1Stat = 0
  245. repeat
  246. pressedOk = false
  247. clear()
  248. print (lmsg)
  249. print "=========="
  250. if menu1Stat == 0 then
  251. print ("> "..lmsg2)
  252. print ("  "..lmsg3)
  253. elseif menu1Stat == 1 then
  254. print ("  "..lmsg2)
  255. print ("> "..lmsg3)
  256. end
  257. event, param1 = os.pullEvent("key")
  258. if param1 == 208 then
  259. menu1Stat = menu1Stat + 1
  260. elseif param1 == 200 then
  261. menu1Stat = menu1Stat - 1
  262. elseif param1 == 28 then
  263. pressedOk = true
  264. end
  265. if menu1Stat == 2 then menu1Stat = 0
  266. elseif menu1Stat == -1 then menu1Stat = 1 end
  267. until pressedOk == true
  268. end
  269.  
  270. if menu1Stat == 0 then done = true end
  271.  
  272. until done == true
  273.  
  274. ---- END PERMG PART ----
  275.  
  276.  
  277. end
  278.  
  279. function processingPart()
  280.  
  281. permgCmd = { }
  282. permgPrm = { }
  283.  
  284.  
  285. --------------------------
  286.  
  287. function readPermg(permgFile)
  288.  
  289. print("Reading "..permgFile.." ...")
  290. x = os.clock()
  291. sleep(1)
  292. aFile = fs.open(permgFile, "r")
  293. hRead = false
  294.  
  295. repeat
  296.  
  297. sleep(0.2)
  298.  
  299. line = aFile.readLine()
  300. print(line)
  301.  
  302. if line == "STOP" then
  303.  
  304. --print "stop"
  305. hRead = true
  306.  
  307. else
  308.  
  309. permgCmd[#permgCmd + 1] = line
  310.  
  311. line2 = aFile.readLine()
  312. --print (line2)
  313. permgPrm[#permgPrm + 1] = line2
  314.  
  315. end
  316.  
  317. until hRead == true or line == "STOP" or line2 == "STOP" or line == "stop" or line2 == "stop" or line == "" or line == nil or line2 == nil or line2 == ""
  318.  
  319. sleep(0.5)
  320. y = os.clock()-x
  321. print ("Done in "..y.." sec.")
  322. sleep(4)
  323. end
  324.  
  325. --------------------------
  326.  
  327. clear()
  328.  
  329. print (lmsg6)
  330. -- permgFiles
  331. -- txtFile
  332. sleep(5)
  333. print "Starting Packages Reading..."
  334. sleep(4)
  335.  
  336.  
  337. if #permgFiles > 0 then readPermg(permgFiles[1]) end -- 1
  338. if #permgFiles > 1 then readPermg(permgFiles[2]) end -- 2
  339. if #permgFiles > 2 then readPermg(permgFiles[3]) end -- 3
  340. if #permgFiles > 3 then readPermg(permgFiles[4]) end -- 4
  341. if #permgFiles > 4 then readPermg(permgFiles[5]) end -- 5
  342. if #permgFiles > 5 then readPermg(permgFiles[6]) end -- 6
  343. if #permgFiles > 6 then readPermg(permgFiles[7]) end -- 7
  344. print "Packages Reading Done."
  345. sleep(3)
  346.  
  347. --[[ LOG TEST - IGNORE IT
  348. tFile = fs.open("OUT.txt", "w")
  349. tFile.writeLine(permgCmd[55])
  350. tFile.writeLine(permgPrm[55])
  351. tFile.writeLine(permgCmd[56])
  352. tFile.writeLine(permgPrm[56])
  353. tFile.writeLine(permgCmd[57])
  354. tFile.writeLine(permgPrm[57])
  355. tFile.close()
  356. ]]--
  357.  
  358. print "Starting Server File Reading..."
  359. sleep(3)
  360. print ("Reading file "..txtFile.." ...")
  361. sleep(1)
  362.  
  363. ---
  364.  
  365. function uls()
  366. ulss = txFile.readLine()
  367. end
  368.  
  369. function us()
  370. return(txFile.readLine())
  371. end
  372.  
  373.  
  374.  
  375. ---- TXT READ PART ----
  376.  
  377. txtNames, txtPlc = { }, { }
  378. txtColors, txtColorsID = { }, { }
  379.  
  380. acGroup = 0
  381.  
  382. txFile = fs.open(txtFile, "r")
  383. serverName = txFile.readLine()
  384. uls()
  385. finish = false
  386. line = nil
  387.  
  388. cmdsG1, cmdsG2 = { }, { }
  389. cmdsG3, cmdsG4 = { }, { }
  390. cmdsG5, cmdsG6 = { }, { }
  391. cmdsG7, cmdsG8 = { }, { }
  392. cmdsG9 = { }
  393.  
  394.  
  395.  
  396.  
  397.  
  398.  
  399.  
  400.  
  401. repeat ------------------------------------------------
  402.  
  403. sleep(0.2)
  404. line = txFile.readLine()
  405.  
  406. if line == nil or line == "" or line == "stop" or line == "STOP" then
  407. finish = true
  408. print "stop"
  409. else
  410.  
  411. if line == "START GROUP" then
  412.  
  413. acGroup = acGroup + 1
  414.  
  415. -- Group Info
  416.  
  417. txtNames[#txtNames + 1] = txFile.readLine()
  418. txtPlc[#txtPlc + 1] = txFile.readLine()
  419. txtColors[#txtColors + 1] = txFile.readLine()
  420.  
  421. -- Commands
  422.  
  423. fni2 = false
  424. repeat
  425. sleep(0.1)
  426. tnpLine = txFile.readLine()
  427. if tnpLine == "END GROUP" then fni2 = true
  428. else
  429.  
  430. if acGroup == 1 then cmdsG1[#cmdsG1 + 1] = tnpLine
  431. elseif acGroup == 2 then cmdsG2[#cmdsG2 + 1] = tnpLine
  432. elseif acGroup == 3 then cmdsG3[#cmdsG3 + 1] = tnpLine
  433. elseif acGroup == 4 then cmdsG4[#cmdsG4 + 1] = tnpLine
  434. elseif acGroup == 5 then cmdsG5[#cmdsG5 + 1] = tnpLine
  435. elseif acGroup == 6 then cmdsG6[#cmdsG6 + 1] = tnpLine
  436. elseif acGroup == 7 then cmdsG7[#cmdsG7 + 1] = tnpLine
  437. elseif acGroup == 8 then cmdsG8[#cmdsG8 + 1] = tnpLine
  438. elseif acGroup == 9 then cmdsG9[#cmdsG9 + 1] = tnpLine end
  439.  
  440.  
  441. end
  442.  
  443.  
  444.  
  445.  
  446. until fni2 == true
  447.  
  448. end
  449.  
  450.  
  451.  
  452.  
  453.  
  454. end
  455.  
  456. until finish == true -------------------------------
  457.  
  458. txFile.close()
  459.  
  460. ---- END TXT READ PART ----
  461.  
  462.  
  463. ---- TEMP LOG TEST ----
  464.  
  465. --[[
  466. jFile = fs.open("LOGTEST.txt", "w")
  467. jFile.write(txtNames[1])
  468. jFile.write(txtNames[2])
  469. jFile.write(txtPlc[1])
  470. jFile.write(txtPlc[2])
  471. jFile.write(txtColors[1])
  472. jFile.write(txtColors[2])
  473.  
  474. jFile.write(cmdsG1[1])
  475. jFile.write(cmdsG1[2])
  476. jFile.write(cmdsG1[3])
  477.  
  478. jFile.write(cmdsG2[1])
  479. jFile.write(cmdsG2[2])
  480. ]]--
  481.  
  482. ---- END TEMP LOG TEST ----
  483.  
  484.  
  485.  
  486. end --processingPart
  487.  
  488. function convertingPart() --------------------------------------------------    WORK HERE
  489. print "Starting Converting Part..."
  490. sleep(3)
  491. print "Converting colors..."
  492.  
  493. tmpLoop = 0
  494.  
  495. repeat -- Color converter
  496.  
  497. sleep(0,1)
  498. tmpLoop = tmpLoop + 1
  499.  
  500. if txtColors[tmpLoop] == "Black" then txtColorsID[tmpLoop] = "0"
  501. elseif txtColors[tmpLoop] == "Dark Blue" then txtColorsID[tmpLoop] = "1"
  502. elseif txtColors[tmpLoop] == "Dark Green" then txtColorsID[tmpLoop] = "2"
  503. elseif txtColors[tmpLoop] == "Dark Teal" then txtColorsID[tmpLoop] = "3"
  504. elseif txtColors[tmpLoop] == "Dark Red" then txtColorsID[tmpLoop] = "4"
  505. elseif txtColors[tmpLoop] == "Purple" then txtColorsID[tmpLoop] = "5"
  506. elseif txtColors[tmpLoop] == "Gold" then txtColorsID[tmpLoop] = "6"
  507. elseif txtColors[tmpLoop] == "Gray" then txtColorsID[tmpLoop] = "7"
  508. elseif txtColors[tmpLoop] == "Dark Gray" then txtColorsID[tmpLoop] = "8"
  509. elseif txtColors[tmpLoop] == "Blue" then txtColorsID[tmpLoop] = "9"
  510. elseif txtColors[tmpLoop] == "Bright Green" then txtColorsID[tmpLoop] = "a"
  511. elseif txtColors[tmpLoop] == "Teal" then txtColorsID[tmpLoop] = "b"
  512. elseif txtColors[tmpLoop] == "Red" then txtColorsID[tmpLoop] = "c"
  513. elseif txtColors[tmpLoop] == "Pink" then txtColorsID[tmpLoop] = "d"
  514. elseif txtColors[tmpLoop] == "Yellow" then txtColorsID[tmpLoop] = "e"
  515. elseif txtColors[tmpLoop] == "White" then txtColorsID[tmpLoop] = "f"
  516.  
  517. end
  518.  
  519.  
  520. until tmpLoop == 10
  521.  
  522. print "Colors converted."
  523. tmpLoop = nil
  524. sleep(3)
  525. print "Converting commands..."
  526. sleep(1)
  527.  
  528. function uCmdConverter(command) -- COMMAND FINDER
  529. print("544, "..command)
  530. sleep(2)
  531. ucmdLoop = 0
  532. repeat
  533. ucmdLoop = ucmdLoop + 1
  534. sleep(0.1)
  535. print(ucmdLoop)
  536. sleep(0.5)
  537.  
  538. if permgCmd[ucmdLoop] == command then
  539.  
  540. print (command.." founded in ID "..ucmdLoop.. ".")
  541. sleep(1)
  542. toreturn = ucmdLoop
  543. quitsc = true
  544. end
  545. print "557"
  546. until ucmdLoop > #permgCmd + 1 or quitsc == true
  547.  
  548.  
  549. end
  550.  
  551. function cmdConverter(groupID) -- GROUP CONVERTER (commands --> perms)
  552. print "564"
  553. if groupID == 1 then cdm = cmdsG1
  554. elseif groupID == 2 then cdm = cmdsG2
  555. elseif groupID == 3 then cdm = cmdsG3
  556. elseif groupID == 4 then cdm = cmdsG4
  557. elseif groupID == 5 then cdm = cmdsG5
  558. elseif groupID == 6 then cdm = cmdsG6
  559. elseif groupID == 7 then cdm = cmdsG7
  560. elseif groupID == 8 then cdm = cmdsG8
  561. elseif groupID == 9 then cdm = cmdsG9
  562. end
  563. print(groupID..", "..type(groupID))
  564. cdmLoop = 0
  565. sleep(0.2)
  566. repeat
  567. sleep(0.1)
  568. cdmLoop = cdmLoop + 1
  569. if cdm[cdmLoop] == nil then
  570. sleep(0.1)
  571. else
  572. print("582")
  573. print(cdmLoop)
  574. sleep(2)
  575. uCmdConverter(cdm[cdmLoop])
  576. end
  577. until cdmLoop > 75
  578.  
  579.  
  580. end
  581.  
  582.  
  583.  
  584.  
  585. tmpLoopp = 0
  586.  
  587. repeat
  588. sleep(2)
  589. tmpLoopp = tmpLoopp + 1
  590.  
  591. if txtNames[tmpLoopp] == nil then
  592. print ("No group at ID "..tmpLoopp..".")
  593. else
  594. print ("Processing Group ID "..tmpLoopp.." ("..txtNames[1]..") ...")
  595. sleep(2)
  596. cmdConverter(tmpLoopp)
  597. end
  598.  
  599. until tmpLoopp == 10
  600.  
  601.  
  602.  
  603. end
  604.  
  605.  
  606.  
  607.  
  608. function writingPart()
  609. [not writed yet]
  610. end
  611.  
  612. function outdatedScreen()
  613. while true do
  614. print(umsg2)
  615. sleep(999)
  616. clear()
  617. end
  618. end
  619.  
  620.  
  621.  
  622. ---- PROGRAM LAUNCHING ----
  623.  
  624. uniLang()
  625. v = 100
  626. updatePart()
  627. selectingPart()
  628. processingPart()
  629. convertingPart()
  630. writingPart()
  631.  
  632. ---- END PROGRAM LAUNCHING ----
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement