Advertisement
Guest User

Untitled

a guest
Jun 9th, 2014
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 14.91 KB | None | 0 0
  1. content =
  2. {
  3.     page1 =
  4.     {
  5.         background = nil,
  6.         visible = false,
  7.         setBackground = function(path)
  8.             content.page1.background = paintutils.loadImage(path)
  9.         end,
  10.         getBackground = function()
  11.             return content.page1.background
  12.         end,
  13.         getPageContent = function()
  14.             return pageContent
  15.         end,
  16.         setVisable = function(vis)
  17.             visible = vis
  18.         end,
  19.         pageContent =
  20.         {
  21.             buttons = {},
  22.             labels = {},
  23.             dropDowns = {},
  24.             images = {},
  25.             getButtons = function()
  26.                 return content.page1.pageContent.buttons
  27.             end,
  28.             addButton = function(text,xpos,ypos,wid,high,c,tc,f)
  29.                 content.page1.pageContent.buttons[#content.page1.pageContent.buttons+1] =
  30.                                       {name = text,x = xpos,y = ypos
  31.                                       ,width = wid,height = high,color = c
  32.                                       ,textcolor = tc, buttonFunction = f}
  33.                 return #content.page1.pageContent.buttons
  34.             end,
  35.             drawButton = function(index)
  36.                 b = content.page1.pageContent.buttons[index]
  37.                 drawing.fillArea(b.color,b.x,b.y,b.width,b.height)      
  38.                 drawing.writeTextCentered(b.name,b.x,b.y,b.width,b.height,b.textcolor,b.color)
  39.             end,
  40.             getLabels = function()
  41.                 return content.page1.pageContent.labels
  42.             end,
  43.             addLabel = function(text,xpos,ypos,l,cent,c,tc)
  44.                 content.page1.pageContent.labels[#content.page1.pageContent.labels+1] =
  45.                                     {name = text,x = xpos,y = ypos,labelLength = l,centered = cent,color = c,textcolor = tc}
  46.             end,
  47.             setLabelText = function(index,text)
  48.                 content.page1.pageContent.labels[index].name = text
  49.             end,
  50.             drawLabel = function(index)
  51.  
  52.                 b = content.page1.pageContent.labels[index]
  53.                 drawing.fillArea(b.color,b.x,b.y,b.labelLength,1)
  54.                 if(b.centered)then
  55.                     drawing.writeTextCentered(b.name,b.x,b.y,b.labelLength,1,b.textcolor,b.color)
  56.                 else
  57.                     drawing.writeText(b.name,b.x,b.y,b.textcolor,b.color)
  58.                 end
  59.             end,
  60.             addImage = function(i,xpos,ypos)
  61.                 content.page1.pageContent.images[#content.page1.pageContent.images+1] = {image = paintutils.loadImage(i),x = xpos,y = ypos}
  62.             end,
  63.             getImages = function()
  64.                 return content.page1.pageContent.images
  65.             end,
  66.             drawImage = function(index)
  67.                 i=content.page1.pageContent.images[index]
  68.                 drawing.displayImage(i.image,i.x,i.y)
  69.             end,
  70.             addDropDown = function(n,xpos,ypos,l,c,tc,ddc,ddtc)
  71.                 content.page1.pageContent.dropDowns[#content.page1.pageContent.dropDowns+1] = {name = n,x = xpos,y = ypos,dropDownLength = l,color = c,textColor = tc, dropDownColor = ddc,dropDownTextColor = ddtc,visible = false,elements = {}}
  72.             end,
  73.             addDropDownElement = function(index,n,f)
  74.                 content.page1.pageContent.dropDowns[index].elements[#content.page1.pageContent.dropDowns[index].elements+1] = {name = n,elementFunction = f}
  75.             end,
  76.             drawDropDown = function(index)
  77.                 d=content.page1.pageContent.dropDowns[index]
  78.                 drawing.fillArea(d.color,d.x,d.y,d.dropDownLength,1)
  79.                 drawing.writeText(d.name,d.x,d.y,d.color,d.textColor)
  80.                 drawing.fillArea(d.dropDownColor,d.x,d.y+1,d.dropDownLength,#content.page3.pageContent.dropDowns[index].elements)
  81.                 if(visible)then
  82.                     for i=1,#content.page3.pageContent.dropDowns[index].elements,1 do
  83.                         drawing.writeText(d.elements[x].name,d.x,d.y+i,d.dropDownColor,d.dropDownTextColor)
  84.                     end
  85.                 end
  86.             end,
  87.             getDropDowns = function()
  88.                 return content.page1.pageContent.dropDowns
  89.             end
  90.         }
  91.        
  92.     },
  93.     page2 =
  94.     {
  95.         background = nil,
  96.         visible = false,
  97.         setBackground = function(path)
  98.             content.page2.background = paintutils.loadImage(path)
  99.         end,
  100.         getBackground = function()
  101.             return content.page2.background
  102.         end,
  103.         getPageContent = function()
  104.             return pageContent
  105.         end,
  106.         setVisable = function(vis)
  107.             visible = vis
  108.         end,
  109.         pageContent =
  110.         {
  111.             buttons = {},
  112.             labels = {},
  113.             dropDowns = {},
  114.             images = {},
  115.             getButtons = function()
  116.                 return content.page2.pageContent.buttons
  117.             end,
  118.             addButton = function(text,xpos,ypos,wid,high,c,tc,f)
  119.                 content.page2.pageContent.buttons[#content.page2.pageContent.buttons+1] =
  120.                                       {name = text,x = xpos,y = ypos
  121.                                       ,width = wid,height = high,color = c
  122.                                       ,textcolor = tc, buttonFunction = f}
  123.                 return #content.page2.pageContent.buttons
  124.             end,
  125.             drawButton = function(index)
  126.                 b = content.page2.pageContent.buttons[index]
  127.                 drawing.fillArea(b.color,b.x,b.y,b.width,b.height)      
  128.                 drawing.writeTextCentered(b.name,b.x,b.y,b.width,b.height,b.textcolor,b.color)
  129.             end,
  130.             getLabels = function()
  131.                 return content.page2.pageContent.labels
  132.             end,
  133.             addLabel = function(text,xpos,ypos,l,cent,c,tc)
  134.                 content.page2.pageContent.labels[#content.page2.pageContent.labels+1] =
  135.                                     {name = text,x = xpos,y = ypos,labelLength = l,centered = cent,color = c,textcolor = tc}
  136.             end,
  137.             setLabelText = function(index,text)
  138.                 content.page2.pageContent.labels[index].name = text
  139.             end,
  140.             drawLabel = function(index)
  141.  
  142.                 b = content.page2.pageContent.labels[index]
  143.                 drawing.fillArea(b.color,b.x,b.y,b.labelLength,1)
  144.                 if(b.centered)then
  145.                     drawing.writeTextCentered(b.name,b.x,b.y,b.labelLength,1,b.textcolor,b.color)
  146.                 else
  147.                     drawing.writeText(b.name,b.x,b.y,b.textcolor,b.color)
  148.                 end
  149.             end,
  150.             addImage = function(i,xpos,ypos)
  151.                 content.page2.pageContent.images[#content.page2.pageContent.images+1] = {image = paintutils.loadImage(i),x = xpos,y = ypos}
  152.             end,
  153.             getImages = function()
  154.                 return content.page2.pageContent.images
  155.             end,
  156.             drawImage = function(index)
  157.                 i=content.page2.pageContent.images[index]
  158.                 drawing.displayImage(i.image,i.x,i.y)
  159.             end,
  160.             addDropDown = function(n,xpos,ypos,l,c,tc,ddc,ddtc)
  161.                 content.page2.pageContent.dropDowns[#content.page2.pageContent.dropDowns+1] = {name = n,x = xpos,y = ypos,dropDownLength = l,color = c,textColor = tc, dropDownColor = ddc,dropDownTextColor = ddtc,visible = false,elements = {}}
  162.             end,
  163.             addDropDownElement = function(index,n,f)
  164.                 content.page2.pageContent.dropDowns[index].elements[#content.page2.pageContent.dropDowns[index].elements+1] = {name = n,elementFunction = f}
  165.             end,
  166.             drawDropDown = function(index)
  167.                 d=content.page2.pageContent.dropDowns[index]
  168.                 drawing.fillArea(d.color,d.x,d.y,d.dropDownLength,1)
  169.                 drawing.writeText(d.name,d.x,d.y,d.color,d.textColor)
  170.                 drawing.fillArea(d.dropDownColor,d.x,d.y+1,d.dropDownLength,#content.page3.pageContent.dropDowns[index].elements)
  171.                 if(visible)then
  172.                     for i=1,#content.page3.pageContent.dropDowns[index].elements,1 do
  173.                         drawing.writeText(d.elements[x].name,d.x,d.y+i,d.dropDownColor,d.dropDownTextColor)
  174.                     end
  175.                 end
  176.             end,
  177.             getDropDowns = function()
  178.                 return content.page2.pageContent.dropDowns
  179.             end
  180.         }
  181.     },
  182.     page3 =
  183.     {
  184.         background = nil,
  185.         visible = false,
  186.         setBackground = function(path)
  187.             content.page3.background = paintutils.loadImage(path)
  188.         end,
  189.         getBackground = function()
  190.             return content.page3.background
  191.         end,
  192.         getPageContent = function()
  193.             return pageContent
  194.         end,
  195.         setVisable = function(vis)
  196.             visible = vis
  197.         end,
  198.         pageContent =
  199.         {
  200.             buttons = {},
  201.             labels = {},
  202.             dropDowns = {},
  203.             images = {},
  204.             getButtons = function()
  205.                 return content.page3.pageContent.buttons
  206.             end,
  207.             addButton = function(text,xpos,ypos,wid,high,c,tc,f)
  208.                 content.page3.pageContent.buttons[#content.page3.pageContent.buttons+1] =
  209.                                       {name = text,x = xpos,y = ypos
  210.                                       ,width = wid,height = high,color = c
  211.                                       ,textcolor = tc, buttonFunction = f}
  212.                 return #content.page3.pageContent.buttons
  213.             end,
  214.             drawButton = function(index)
  215.                 b = content.page3.pageContent.buttons[index]
  216.                 drawing.fillArea(b.color,b.x,b.y,b.width,b.height)      
  217.                 drawing.writeTextCentered(b.name,b.x,b.y,b.width,b.height,b.textcolor,b.color)
  218.             end,
  219.             getLabels = function()
  220.                 return content.page3.pageContent.labels
  221.             end,
  222.             addLabel = function(text,xpos,ypos,l,cent,c,tc)
  223.                 content.page3.pageContent.labels[#content.page3.pageContent.labels+1] =
  224.                                     {name = text,x = xpos,y = ypos,labelLength = l,centered = cent,color = c,textcolor = tc}
  225.             end,
  226.             setLabelText = function(index,text)
  227.                 content.page3.pageContent.labels[index].name = text
  228.             end,
  229.             drawLabel = function(index)
  230.  
  231.                 b = content.page3.pageContent.labels[index]
  232.                 drawing.fillArea(b.color,b.x,b.y,b.labelLength,1)
  233.                 if(b.centered)then
  234.                     drawing.writeTextCentered(b.name,b.x,b.y,b.labelLength,1,b.textcolor,b.color)
  235.                 else
  236.                     drawing.writeText(b.name,b.x,b.y,b.textcolor,b.color)
  237.                 end
  238.             end,
  239.             addImage = function(i,xpos,ypos)
  240.                 content.page3.pageContent.images[#content.page3.pageContent.images+1] = {image = paintutils.loadImage(i),x = xpos,y = ypos}
  241.             end,
  242.             getImages = function()
  243.                 return content.page3.pageContent.images
  244.             end,
  245.             drawImage = function(index)
  246.                 i=content.page3.pageContent.images[index]
  247.                 drawing.displayImage(i.image,i.x,i.y)
  248.             end,
  249.             addDropDown = function(n,xpos,ypos,l,c,tc,ddc,ddtc)
  250.                 content.page3.pageContent.dropDowns[#content.page3.pageContent.dropDowns+1] = {name = n,x = xpos,y = ypos,dropDownLength = l,color = c,textColor = tc, dropDownColor = ddc,dropDownTextColor = ddtc,visible = false,elements = {}}
  251.             end,
  252.             addDropDownElement = function(index,n,f)
  253.                 content.page3.pageContent.dropDowns[index].elements[#content.page3.pageContent.dropDowns[index].elements+1] = {name = n,elementFunction = f}
  254.             end,
  255.             drawDropDown = function(index)
  256.                 d=content.page3.pageContent.dropDowns[index]
  257.                 drawing.fillArea(d.color,d.x,d.y,d.dropDownLength,1)
  258.                 drawing.writeText(d.name,d.x,d.y,d.color,d.textColor)
  259.                 if(content.page3.pageContent.dropDowns[index].visible)then
  260.                     drawing.fillArea(d.dropDownColor,d.x,d.y+1,d.dropDownLength,#content.page3.pageContent.dropDowns[index].elements)
  261.                     for i=1,#content.page3.pageContent.dropDowns[index].elements,1 do
  262.                         drawing.writeText(d.elements[i].name,d.x,d.y+i,d.dropDownColor,d.dropDownTextColor)
  263.                     end
  264.                 end
  265.             end,
  266.             getDropDowns = function()
  267.                 return content.page3.pageContent.dropDowns
  268.             end
  269.         }
  270.     },
  271.     pages =
  272.     {
  273.         content.page1,
  274.         content.page2,
  275.         content.page3
  276.     }
  277. }
  278.  
  279. drawing =
  280. {
  281.     displayImage = function(image,x,y)
  282.         paintutils.drawImage(image,x,y)
  283.     end,
  284.     fillArea = function(color,xpos,ypos,wid,high)
  285.         term.setCursorPos(1,1)
  286.  
  287.         term.setBackgroundColor(color)
  288.         for y=ypos,ypos+high-1,1 do
  289.             for x=xpos,xpos+wid-1,1 do
  290.                 term.setCursorPos(x,y)
  291.                 write(" ")
  292.             end
  293.         end
  294.     end,
  295.     writeText = function(text,x,y,color,bgcolor)
  296.         term.setBackgroundColor(color)
  297.         term.setCursorPos(x,y)
  298.         write(text)
  299.     end,
  300.     writeTextCentered = function(text,x,y,wid,high,color,bgcolor)
  301.         term.setCursorPos(x+(wid-#text)/2,y+high/2)
  302.         term.setTextColor(color)
  303.         term.setBackgroundColor(bgcolor)
  304.         term.write(text)
  305.     end,
  306.     clear = function()
  307.         term.setBackgroundColor(colors.black)
  308.         term.clear()
  309.         term.setCursorPos(1,1)
  310.     end
  311. }
  312. function drawPageContent()
  313.     showButtons(currentPage.pageContent.getButtons())
  314.     showLabels(currentPage.pageContent.getLabels())
  315.     showImages(currentPage.pageContent.getImages())
  316.     showDropDowns(currentPage.pageContent.getDropDowns())
  317. end
  318.  
  319. function showButtons(buttons)
  320.     for x=1,#buttons,1 do
  321.         currentPage.pageContent.drawButton(x)
  322.     end
  323. end
  324.  
  325. function showLabels(labels)
  326.     for x=1,#labels,1 do
  327.         currentPage.pageContent.drawLabel(x)
  328.     end
  329. end
  330.  
  331. function showImages(images)
  332.     for x=1,#images,1 do
  333.         currentPage.pageContent.drawImage(x)
  334.     end
  335. end
  336.  
  337. function showDropDowns(dropDowns)
  338.     for x=1,#dropDowns,1 do
  339.         currentPage.pageContent.drawDropDown(x)
  340.     end
  341. end
  342.  
  343. function analyseClick(xpos,ypos)
  344.     buttons = currentPage.pageContent.getButtons()
  345.     for i=1,#buttons,1 do
  346.         if(xpos>=buttons[i].x and xpos<=buttons[i].x+buttons[i].width-1) then
  347.             if(ypos>=buttons[i].y and ypos<=buttons[i].y+buttons[i].height) then
  348.                 buttons[i].buttonFunction()
  349.             end
  350.         end
  351.     end
  352.     dropDowns = currentPage.pageContent.getDropDowns()
  353.     for i=1,#dropDowns,1 do
  354.         if(xpos>=dropDowns[i].x and xpos<=dropDowns[i].x+dropDowns[i].dropDownLength-1) then
  355.             if(ypos==dropDowns[i].y) then
  356.                 dropDowns[i].visible = not dropDowns[i].visible
  357.             elseif (dropDowns[i].visible) then  
  358.                 for a=1,#dropDowns[i].elements,1 do
  359.                     if(ypos==dropDowns[i].y+a) then
  360.                         dropDowns[i].elements[a].elementFunction()
  361.                     end
  362.                 end
  363.             end
  364.         end
  365.     end
  366. end
  367.  
  368. running = true
  369. currentPage = content.pages[1]
  370. local termWidth,termHeight = term.getSize()
  371.  
  372. content.page1.setBackground("page1")
  373. content.page2.setBackground("page2")
  374. content.page3.setBackground("page3")
  375. content.page1.pageContent.addButton("test",15,15,6,3,colors.blue,colors.black,function()end)
  376. content.page1.pageContent.addButton("Exit",termWidth-5,1,6,3,colors.red,colors.white,function() running = false end)
  377. content.page1.pageContent.addButton("test2",30,5,7,3,colors.green,colors.black,function()if(content.page1.pageContent.buttons[3].name=="test2")then content.page1.pageContent.buttons[3].name = "boop" else content.page1.pageContent.buttons[3].name = "test2" end end)
  378. content.page1.pageContent.addButton("Next Page",termWidth-10,termHeight-2,11,3,colors.orange,colors.white,function() currentPage = content.pages[2] end)
  379. content.page2.pageContent.addButton("Next Page",termWidth-10,termHeight-2,11,3,colors.orange,colors.white,function() currentPage = content.pages[3] end)
  380. content.page3.pageContent.addButton("Next Page",termWidth-10,termHeight-2,11,3,colors.orange,colors.white,function() currentPage = content.pages[1] end)
  381. content.page2.pageContent.addLabel("0",5,5,4,true,colors.lightGray,colors.black)
  382. content.page2.pageContent.addButton("/\\",5,4,4,1,colors.gray,colors.black,function() content.page2.pageContent.setLabelText(1,tostring(tonumber(content.page2.pageContent.labels[1].name)+1))end)
  383. content.page2.pageContent.addButton("\\/",5,6,4,1,colors.gray,colors.black,function() content.page2.pageContent.setLabelText(1,tostring(tonumber(content.page2.pageContent.labels[1].name)-1))end)
  384. content.page2.pageContent.addImage("testImage",15,12)
  385. content.page3.pageContent.addDropDown("drop Down",1,1,10,colors.lightGray,colors.white,colors.blue,colors.white)
  386.     content.page3.pageContent.addDropDownElement(1,"test",function()drawing.writeText("boop",content.page3.pageContent.dropDowns[1].x+10,content.page3.pageContent.dropDowns[1].y+1,colors.red,colors.white) sleep(1)end)
  387.     content.page3.pageContent.addDropDownElement(1,"test2",function()end)
  388.     content.page3.pageContent.addDropDownElement(1,"test3",function()end)
  389. content.page3.pageContent.addDropDown("Pages",12,1,10,colors.lightGray,colors.white,colors.blue,colors.white)
  390.     content.page3.pageContent.addDropDownElement(2,"page 1",function() currentPage = content.pages[1] end)
  391.     content.page3.pageContent.addDropDownElement(2,"page 2",function() currentPage = content.pages[2] end)
  392.     content.page3.pageContent.addDropDownElement(2,"page 3",function() currentPage = content.pages[3] end)
  393.  
  394. while running do
  395.     drawing.clear()
  396.     drawing.displayImage(currentPage.getBackground(),1,1)
  397.     drawPageContent()
  398.     event, button, x, y = os.pullEvent("mouse_click")
  399.     analyseClick(x,y)
  400. end
  401. drawing.clear()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement