Advertisement
Guest User

test

a guest
Dec 30th, 2013
797
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. monitors = {
  2. peripheral.wrap("monitor_0");
  3. peripheral.wrap("monitor_1");
  4. }
  5. for o=1,#monitors do
  6. monitors[o].setBackgroundColor(colors.black)
  7. monitors[o].clear()
  8. end
  9. liste1 = {}
  10.  function buildgui()
  11.   for p=1,#monitors do
  12.     actmonitor = p
  13.    color("b","black")
  14.    monitors[p].clear()
  15.    local w,h = monitors[p].getSize()
  16.    --Default GUI
  17.    monitors[p].setCursorPos(1,1)
  18.    color("b","blue")
  19.    monitors[p].setCursorPos(1,1)
  20.     for i=0,w do
  21.      monitors[p].write(" ")
  22.     end
  23.    monitors[p].setCursorPos(1,1)
  24.    monitors[p].write(" CodersOS - CID:"..os.getComputerID())
  25.    monitors[p].setCursorPos(1,2)
  26.     for i=2,h do
  27.      monitors[p].setCursorPos(1,i)
  28.      monitors[p].write(" ")
  29.     end
  30.      monitors[p].setCursorPos(1,h)
  31.     for i=1,w do
  32.      monitors[p].write(" ")
  33.     end
  34.   --END basic
  35.   --INHALT
  36.     inhalt()
  37.    color("b","blue")
  38.    monitors[p].setCursorPos(w,1)
  39.     for i=1,h do
  40.      monitors[p].setCursorPos(w,i)
  41.      monitors[p].write(" ")
  42.     end
  43.    
  44.    end
  45.  end
  46.  
  47.  function color(tb,clr)
  48.  if tb=="b" then
  49.   if clr=="black" then
  50.    monitors[actmonitor].setBackgroundColor(colors.black)
  51.    elseif clr=="blue" then
  52.     monitors[actmonitor].setBackgroundColor(colors.blue)
  53.      elseif clr=="white" then
  54.       monitors[actmonitor].setBackgroundColor(colors.white)
  55.        elseif clr=="green" then
  56.         monitors[actmonitor].setBackgroundColor(colors.green)
  57.          elseif clr=="red" then
  58.           monitors[actmonitor].setBackgroundColor(colors.red)
  59.   end
  60.    elseif tb=="t" then
  61.     if clr=="black" then
  62.      monitors[actmonitor].setTextColor(colors.black)
  63.       elseif clr=="blue" then
  64.        monitors[actmonitor].setTextColor(colors.blue)
  65.         elseif clr=="white" then
  66.          monitors[actmonitor].setTextColor(colors.white)
  67.           elseif clr=="green" then
  68.            monitors[actmonitor].setTextColor(colors.reen)
  69.             elseif clr=="red" then
  70.              monitors[actmonitor].setBackgroundColor(colors.red)
  71.      end
  72.    end
  73.  
  74.  end
  75.  
  76.  function inhalt()
  77.   color("b","black")
  78.   monitors[actmonitor].setCursorPos(3,3)
  79.   color("b","white")
  80.   color("t","black")
  81.   monitors[actmonitor].write("   Pinnwand   ".."Anzahl:"..#liste1)
  82.   color("b","black")
  83.   color("t","white")
  84.   for i=1,#liste1 do
  85.  
  86.    
  87.    monitors[actmonitor].setCursorPos(3,i+4)
  88.    monitors[actmonitor].write(i..". "..liste1[i])
  89.    
  90.   end
  91.  end
  92.  
  93.  function additem()
  94.  term.write("Neues Item: ")
  95.   inpt = io.read()
  96.  liste1[(#liste1+1)]= inpt
  97.  end
  98.  
  99.  function removeitem()
  100.   term.write("Welche Nummer?:")
  101.   inpt = io.read()
  102.   help=""
  103.   --for i=inpt,#liste1 do
  104.    --liste1[i]=tostring(liste1[i+1])
  105.   --end
  106.   table.remove(liste1,inpt)
  107.  end
  108.  
  109.  function menu()
  110.   term.clear()
  111.   term.setCursorPos(1,1)
  112.   term.write("Was wollen sie tuen(add/remove/clear):")
  113.    sel =io.read()
  114.   if sel=="add" then
  115.   additem()
  116.   elseif sel =="remove" then
  117.   removeitem()
  118.   buildgui()
  119.    elseif sel =="clear" then
  120.     for i=1,#liste1 do
  121.      table.remove(liste1,#liste1)
  122.     end
  123.     buildgui()
  124.  end
  125.  
  126.  
  127.  end
  128.  
  129. function getvalues()
  130.  
  131.  
  132. end
  133. while true do
  134. buildgui()
  135. menu()
  136. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement