Advertisement
sweetjebus

Angel's Checklist

Mar 25th, 2014
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.63 KB | None | 0 0
  1. os.loadAPI("monmon")
  2. m = peripheral.wrap("left")
  3. listA = {}
  4.  
  5. listA[1] = {"One",true}
  6. listA[2] = {"Two",true}
  7. listA[3] = {"Tree",false}
  8. listA[4] = {"Four",true}
  9. listA[5] = {"Five",true}
  10. listA[6] = {"Six",false}
  11. listA[7] = {"Seven",false}
  12.  
  13. --[[
  14. Data type
  15. data = [ {["Text"],[true]}, {["Text2"],[false]}]
  16. list[1] = {"text",true}
  17. list[2] = {"text2",false}
  18. print(textutils.serialize(list))
  19. --]]
  20.  
  21. function loadList()
  22.  local file = fs.open("list.txt","r")
  23.  local data = file.readAll()
  24.  file.close()
  25.  list = textutils.unserialize(data)
  26. -- print(textutils.serialize(list))
  27. end
  28.  
  29.  
  30. function display()
  31.  
  32.  if fs.exists("list.txt") then
  33.   print("List found, loading...")
  34.   local file = fs.open("list.txt","r")
  35.   local data = file.readAll()
  36.   file.close()
  37.   list = textutils.unserialize(data)
  38.  else
  39.   list = listA
  40.  end
  41.  
  42.  monmon.loadImage("chl")
  43.  
  44.  term.clear()
  45.  term.setCursorPos(1,1)
  46.  print("AngelMalus CheckList")
  47.  print("")
  48.  m.setTextColor(colors.lime)
  49.  m.setBackgroundColor(colors.black)
  50.  
  51. for i=1, 7 do
  52.  if list[i][2] then res = "X" else res = " " end
  53.  print("["..res .."] "..list[i][1])
  54.  m.setCursorPos(3,i+4)
  55.  m.write(res)
  56.  m.setCursorPos(6,i+4)
  57.  m.write(list[i][1])
  58. end
  59.  
  60.  print("")
  61.  print("* To modify left click on a line")
  62.  print("* To check/uncheck right click on a line")
  63.  print("* To remove, middle click")
  64.  print("* To exit click this line")
  65. end
  66.  
  67. function termClick(btn,x,y)
  68.  
  69.  if btn == 3 then
  70.   if y >=3 and y<=9 then
  71.    list[y-2] = {"",false}
  72.    local file = fs.open("list.txt","w")
  73.    file.write(textutils.serialize(list))
  74.    file.close()
  75.    display()
  76.   end
  77.  end
  78.  
  79.  if btn == 2 then
  80.   if y >=3 and y<=9 then
  81.    list[y-2][2] = not(list[y-2][2])
  82.    local file = fs.open("list.txt","w")
  83.    file.write(textutils.serialize(list))
  84.    file.close()
  85.    display()
  86.   end
  87.  end
  88.  
  89.  if btn == 1 then
  90.   if y >=3 and y<=9 then
  91.    list[y-2][1] = ""
  92.    local file = fs.open("list.txt","w")
  93.    file.write(textutils.serialize(list))
  94.    file.close()
  95.    display()
  96.    term.setCursorPos(5,y)
  97.    res = read()
  98.    list[y-2][1] = res
  99.    local file = fs.open("list.txt","w")
  100.    file.write(textutils.serialize(list))
  101.    file.close()
  102.    display()
  103.   end
  104.  end
  105. end
  106.  
  107. function monClick(x,y)
  108. if y >= 5 and y<= 10 then
  109.    list[y-4][2] = not(list[y-4][2])
  110.    local file = fs.open("list.txt","w")
  111.    file.write(textutils.serialize(list))
  112.    file.close()
  113.    display()
  114.  end
  115. end
  116.  
  117.  
  118.  
  119. while true do
  120.  
  121.  display()
  122.  evt, v1,v2,v3 = os.pullEvent()
  123.  
  124.  if evt == "mouse_click" then
  125.   if v3 == 14 then
  126.    break
  127.   else
  128.    termClick(v1,v2,v3)
  129.   end
  130.  end
  131.  if evt == "monitor_touch" then
  132.   monClick(v2,v3)
  133.  end
  134.  
  135. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement