Advertisement
Guest User

Crashing Improved ToDo list

a guest
Apr 16th, 2014
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 8.24 KB | None | 0 0
  1. if fs.exists("/.todocfg") then
  2.     opfile = fs.open("/.todocfg", "r")
  3.     local color1 = tonumber(opfile.readLine())
  4.     local color2 = tonumber(opfile.readLine())
  5.     opfile.close()
  6. else
  7.     local color1 = colors.lime
  8.     local color2 = colors.white
  9. end
  10. local choice = 5
  11. local choice2 = 0
  12.  
  13. local colnames = {[0] = "White",
  14.                 [1] = "Orange",
  15.                 [2] = "Magenta",
  16.                 [3] = "Light Blue",
  17.                 [4] = "Yellow",
  18.                 [5] = "Lime",
  19.                 [6] = "Pink",
  20.                 [7] = "Gray",
  21.                 [8] = "Light Gray",
  22.                 [9] = "Cyan",
  23.                 [10] = "Purple",
  24.                 [11] = "Blue",
  25.                 [12] = "Brown",
  26.                 [13] = "Green",
  27.                 [14] = "Red",
  28.                 [15] = "Black"}
  29.                
  30. local numconv = {[0] = colors.white,
  31.                 [1] = colors.orange,
  32.                 [2] = colors.magenta,
  33.                 [3] = colors.lightBlue,
  34.                 [4] = colors.yellow,
  35.                 [5] = colors.lime,
  36.                 [6] = colors.pink,
  37.                 [7] = colors.gray,
  38.                 [8] = colors.lightGray,
  39.                 [9] = colors.cyan,
  40.                 [10] = colors.purple,
  41.                 [11] = colors.blue,
  42.                 [12] = colors.brown,
  43.                 [13] = colors.green,
  44.                 [14] = colors.red,
  45.                 [15] = colors.black}
  46. local taskFile = "/.tasks"
  47. local page = 1
  48. local isUsing = true
  49. local Options = false
  50.  
  51. local function getTasks()
  52.  if not fs.exists(taskFile) then
  53.   local A = fs.open(taskFile, "w")
  54.   A.write("{}")
  55.   A.close()
  56.   return {}
  57.  else
  58.   local A = fs.open(taskFile, "r")
  59.   local tmp = textutils.unserialize(A.readAll())
  60.   A.close()
  61.   return tmp
  62.  end
  63. end
  64.  
  65. local function redraw(page)
  66.  if isUsing and not Options then
  67.     local tasks = getTasks()
  68.     local maxX, maxY = term.getSize()
  69.     local nMaxY = maxY - 2
  70.  
  71.     term.clear()
  72.     term.setCursorPos(1,1)
  73.     term.setBackgroundColour(color1)
  74.     if color1 ~= color2 and color1 ~= colors.white then
  75.         term.setTextColour(color2)
  76.     elseif color1 == color2 and color1 ~= colors.white then
  77.         term.setTextColor(colors.white)
  78.     else
  79.         term.setTextColor(colors.black)
  80.     end
  81.     term.clearLine()
  82.     print(" + / -  |   Options   Exit")
  83.    
  84.     for i=1, nMaxY do
  85.         if i%2 == 1 and color1 ~= color2 then
  86.             term.setBackgroundColour(color2)
  87.             term.setTextColour(color1)
  88.         elseif color1 ~= color2 then
  89.             term.setBackgroundColour(color1)
  90.             term.setTextColour(color2)
  91.         elseif color1 == colors.white then
  92.             term.setBackgroundColor(color1)
  93.             term.setTextColor(colors.black)
  94.         else
  95.             term.setBackgroundColor(color1)
  96.             term.setTextColor(colors.black)
  97.         end
  98.  
  99.         term.setCursorPos(1,1+i)
  100.         term.clearLine()
  101.  
  102.         local num = i+(nMaxY*(page-1))
  103.  
  104.         if tasks[num] ~= nil then
  105.             write(num..": "..tasks[num])
  106.         else
  107.             write(num..": ")
  108.         end
  109.     end
  110.  
  111.  if maxY%2 == 0 and color1 ~= color2 then
  112.   term.setBackgroundColour(color2)
  113.   term.setTextColour(color1)
  114.  elseif color1 ~= color2 then
  115.   term.setBackgroundColour(color1)
  116.   term.setTextColour(color2)
  117.  elseif color1 == colors.white then
  118.     term.setBackgroundColor(color1)
  119.     term.setTextColor(colors.black)
  120.  else
  121.     term.setBackgroundColor(color1)
  122.     term.setTextColor(colors.white)
  123.  end
  124. term.setCursorPos(2,maxY)
  125.  term.clearLine()
  126.  write("<")
  127.  term.setCursorPos((maxX/2-#tostring(page)/2)+1,maxY)
  128.  write(page)
  129.  term.setCursorPos(maxX-1,maxY)
  130.  write(">")
  131.  elseif not isUsing and not Options then
  132.     term.setBackgroundColor(colors.black)
  133.     term.setTextColor(colors.white)
  134.     term.clear()
  135.     term.setCursorPos(1,1)
  136.     print("Goodbye !")
  137.  elseif isUsing and Options then
  138.     term.setBackgroundColor(colors.gray)
  139.     if color1 ~= colors.white then
  140.         term.setTextColor(colors.white)
  141.     else
  142.         term.setTextColor(colors.black)
  143.     end
  144.     term.clear()
  145.     color1 = numconv[choice]
  146.     color2 = numconv[choice2]
  147.     paintutils.drawLine(1,1,26,1,color1)
  148.     term.setCursorPos(1,1)
  149.     print("    Options  |  Return    ")
  150.     term.setBackgroundColor(colors.gray)
  151.     term.setTextColor(colors.white)
  152.     term.setCursorPos(15,3)
  153.     print("<->")
  154.     paintutils.drawLine(14,4,14+string.len(colnames[choice]),4,numconv[choice])
  155.     term.setCursorPos(3,4)
  156.     if color1 ~= colors.white then
  157.         term.setTextColor(colors.white)
  158.     else
  159.         term.setTextColor(colors.black)
  160.     end
  161.     print("1st color : " .. colnames[choice])
  162.     term.setBackgroundColor(colors.gray)
  163.     paintutils.drawLine(14,6,14+string.len(colnames[choice2]),6,numconv[choice2])
  164.     if color2 ~= colors.white then
  165.         term.setTextColor(colors.white)
  166.     else
  167.         term.setTextColor(colors.black)
  168.     end
  169.     term.setCursorPos(3,6)
  170.     print("2nd color : " .. colnames[choice2])
  171.     term.setBackgroundColor(colors.gray)
  172.     term.setTextColor(colors.white)
  173.     term.setCursorPos(15,7)
  174.     print("<->")
  175.     term.setCursorPos(8,10)
  176.     print("Save config")
  177.  end
  178. end
  179.  
  180. local function saveTasks(tbl)
  181.  local A = fs.open(taskFile, "w")
  182.  A.write(textutils.serialize(tbl))
  183.  A.close()
  184. end
  185.  
  186. local function addTask()
  187.  local tasks = getTasks()
  188.  term.setBackgroundColour(colors.black)
  189.  term.setTextColour(colors.white)
  190.  term.clear()
  191.  term.setCursorPos(1,1)
  192.  term.setCursorBlink(true)
  193.  write("Task: ")
  194.  local tsk = read()
  195.  table.insert(tasks, tsk)
  196.  saveTasks(tasks)
  197. end
  198.  
  199. local function delTask()
  200.  local tasks = getTasks()
  201.  term.setBackgroundColour(colors.black)
  202.  term.setTextColour(colors.white)
  203.  term.clear()
  204.  term.setCursorPos(1,1)
  205.  write("Task number: ")
  206.  local tsknmbr = tonumber(read())
  207.  table.remove(tasks, tsknmbr)
  208.  saveTasks(tasks)
  209. end
  210.  
  211. local function showTask(pg, pos, h, w)
  212.  local tasks = getTasks()
  213.  local step1 = (h-2)*(pg-1)
  214.  local step2 = (pos-1)+step1
  215.  term.setBackgroundColour(color2)
  216.  term.setTextColour(color1)
  217.  term.clear()
  218.  term.setCursorPos(1,1)
  219.  if tasks[step2] ~= nil then
  220.   write("Task #"..step2..":")
  221.   local text = tasks[step2]
  222.   local k = 1
  223.   for i=1, h-1 do
  224.    term.setCursorPos(1,i+1)
  225.    for j=1,w do
  226.     write(string.sub(text, k, k))
  227.     k = k + 1
  228.    end
  229.   end
  230.  term.setCursorPos(1,h)
  231.  write("Press any key to continue")
  232.  os.pullEvent("key")
  233.  end
  234. end
  235.  
  236. redraw(page)
  237. local maxX, maxY = term.getSize()
  238. while isUsing do
  239.  sleep(0)
  240.  ev, b, xPos, yPos = os.pullEvent()
  241.  if ev == "mouse_click" then
  242.   if xPos == 2 and yPos == 1 and not Options then
  243.    addTask()
  244.   elseif xPos == 6 and yPos == 1 and not Options then
  245.    delTask()
  246.   elseif xPos >= 13 and xPos <= 19 and yPos == 1 and not Options then
  247.   Options = true
  248.   elseif xPos >=23 and xPos <= 26 and yPos == 1 and not Options then
  249.   isUsing = false
  250.   elseif xPos == 2 and yPos == maxY and not Options then
  251.    if page > 1 then
  252.     page = page - 1
  253.    end
  254.   elseif xPos == maxX-1 and yPos == maxY and not Options then
  255.    page = page + 1
  256.   elseif xPos > 1 and yPos < maxY and not Options then
  257.    showTask(page, yPos, maxY, maxX)
  258.   elseif xPos >= 17 and xPos <= 22 and yPos == 1 and Options then
  259.   Options = false
  260.   elseif xPos == 15 and yPos == 3 and Options then
  261.     if choice-1 ~= -1 then
  262.         choice = choice-1
  263.     else
  264.         choice = 15
  265.     end
  266.     redraw(page)
  267.   elseif xPos == 17 and yPos == 3 and Options then
  268.     if choice+1 ~= 16 then
  269.         choice = choice+1
  270.     else
  271.         choice = 0
  272.     end
  273.     redraw(page)
  274.   elseif xPos == 15 and yPos == 7 and Options then
  275.     if choice2-1 ~= -1 then
  276.         choice2 = choice2-1
  277.     else
  278.         choice2 = 15
  279.     end
  280.     redraw(page)
  281.   elseif xPos == 17 and yPos == 7 and Options then
  282.     if choice2+1 ~= 16 then
  283.         choice2 = choice2+1
  284.     else
  285.         choice2 = 0
  286.     end
  287.     redraw(page)
  288.   elseif xPos >= 8 and xPos <= 19 and yPos == 10 and Options then
  289.     --local settings = fs.open("/.todocfg", "w")
  290.     -- settings.writeLine(color1)
  291.     -- settings.write(color2)
  292.     -- settings.close()
  293.  elseif ev == "mouse_scroll" then
  294.   if b == -1 then
  295.    if page > 1 then page = page - 1 end
  296.   elseif b == 1 then
  297.    page = page + 1
  298.   end
  299.  end
  300.  redraw(page)
  301. end
  302. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement