Advertisement
Guest User

Untitled

a guest
Jun 1st, 2014
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 7.00 KB | None | 0 0
  1. content =
  2. {
  3.     page1 =
  4.     {
  5.         background = nil,
  6.         visible = true,
  7.         setBackground = function(path)
  8.             background = paintutils.loadImage(path)
  9.         end,
  10.         getBackground = function()
  11.             return 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.             images = {},
  24.             getButtons = function()
  25.                 return content.page1.pageContent.buttons
  26.             end,
  27.             addButton = function(text,xpos,ypos,wid,high,c,tc,f)
  28.                 content.page1.pageContent.buttons[#content.page1.pageContent.buttons+1] =
  29.                                       {name = text,x = xpos,y = ypos
  30.                                       ,width = wid,height = high,color = c
  31.                                       ,textcolor = tc, buttonFunction = f}
  32.                 return #content.page1.pageContent.buttons-1
  33.             end,
  34.             drawButton = function(index)
  35.                 b = content.page1.pageContent.buttons[index]
  36.                 drawing.fillArea(b.color,b.x,b.y,b.width,b.height)      
  37.                 drawing.writeTextCentered(b.name,b.x,b.y,b.width,b.height,b.textcolor,b.color)
  38.             end,
  39.             getLabels = function()
  40.                 return content.page1.pageContent.labels
  41.             end,
  42.             addLabel = function(text,xpos,ypos,c,tc)
  43.                 content.page1.pageContent.labels[#content.page1.pageContent.labels+1] =
  44.                                     {name = text,x = xpos,y = ypos,labelLength = l,centred = cent,color = c,textcolor = tc}
  45.             end,
  46.             setLabelText = function(index,text)
  47.                 content.page1.pageContent.buttons[index].name = text
  48.             end,
  49.             drawLabel = function(index)
  50.             --print("page 1 ",#content.page1.pageContent.labels)
  51.             sleep(1)
  52.                 b = content.page1.pageContent.labels[index]
  53.                 drawing.fillArea(b.color,b.x,b.y,b.labelLength,1)
  54.                 if(b.centred)then
  55.                     drawing.writeTextCentered(b.name,b.x,b.y,b.labelLength,1,b.textcolor,b.color)
  56.                 else
  57.                     draw.writeText(b.name,b.x,b.y,b.textcolor,b.color)
  58.                 end
  59.             end,
  60.             addImage = function(i,xpos,ypos)
  61.                 images[#content.page1.pageContent.images] = {image = i,x = xpos,y = ypos}
  62.             end,
  63.             getImages = function()
  64.                 return images
  65.             end
  66.         }
  67.        
  68.     },
  69.     page2 =
  70.     {
  71.         background = nil,
  72.         visible = false,
  73.         setBackground = function(path)
  74.             background = paintutils.loadImage(path)
  75.         end,
  76.         getBackground = function()
  77.             return background
  78.         end,
  79.         getPageContent = function()
  80.             return pageContent
  81.         end,
  82.         setVisable = function(vis)
  83.             visible = vis
  84.         end,
  85.         pageContent =
  86.         {
  87.             buttons = {},
  88.             labels = {},
  89.             images = {},
  90.             getButtons = function()
  91.                 return content.page2.pageContent.buttons
  92.             end,
  93.             addButton = function(text,xpos,ypos,wid,high,c,tc,f)
  94.                 content.page2.pageContent.buttons[#content.page2.pageContent.buttons+1] =
  95.                                       {name = text,x = xpos,y = ypos
  96.                                       ,width = wid,height = high,color = c
  97.                                       ,textcolor = tc, buttonFunction = f}
  98.                 return #content.page2.pageContent.buttons-1
  99.             end,
  100.             drawButton = function(index)
  101.                 b = content.page2.pageContent.buttons[index]
  102.                 drawing.fillArea(b.color,b.x,b.y,b.width,b.height)      
  103.                 drawing.writeTextCentered(b.name,b.x,b.y,b.width,b.height,b.textcolor,b.color)
  104.             end,
  105.             getLabels = function()
  106.                 return content.page2.pageContent.labels
  107.             end,
  108.             addLabel = function(text,xpos,ypos,c,tc)
  109.                 content.page1.pageContent.labels[#content.page1.pageContent.labels+1] =
  110.                                     {name = text,x = xpos,y = ypos,labelLength = l,centred = cent,color = c,textcolor = tc}
  111.             end,
  112.             setLabelText = function(index,text)
  113.                 content.page2.pageContent.buttons[index].name = text
  114.             end,
  115.             drawLabel = function(index)
  116.             --print("page 2 ",#content.page2.pageContent.labels)
  117.             sleep(1)
  118.                 b = content.page1.pageContent.labels[index]
  119.                 drawing.fillArea(b.color,b.x,b.y,b.labelLength,1)
  120.                 if(b.centred)then
  121.                     drawing.writeTextCentered(b.name,b.x,b.y,b.labelLength,1,b.textcolor,b.color)
  122.                 else
  123.                     draw.writeText(b.name,b.x,b.y,b.textcolor,b.color)
  124.                 end
  125.             end,
  126.             addImage = function(i,xpos,ypos)
  127.                 images[#content.page2.pageContent.images] = {image = i,x = xpos,y = ypos}
  128.             end,
  129.             getImages = function()
  130.                 return images
  131.             end
  132.         }
  133.     },
  134.     pages =
  135.     {
  136.         content.page1,
  137.         content.page2
  138.     }
  139. }
  140.  
  141. drawing =
  142. {
  143.     drawImage = function(image,x,y)
  144.         paintutils.drawImage(image,x,y)
  145.     end,
  146.     fillArea = function(color,xpos,ypos,wid,high)
  147.         term.setCursorPos(1,1)
  148.         --print("<",currentPage.visible,">",xpos,",",ypos,",",wid)
  149.         --sleep(1)
  150.         term.setBackgroundColor(color)
  151.         for y=ypos,ypos+high-1,1 do
  152.             for x=xpos,xpos+wid-1,1 do
  153.                 term.setCursorPos(x,y)
  154.                 write(" ")
  155.             end
  156.         end
  157.     end,
  158.     writeText = function(text,x,y,color,bgcolor)
  159.         term.setBackgroundColor(color)
  160.         term.setCursorPos(x,y)
  161.         write(text)
  162.     end,
  163.     writeTextCentered = function(text,x,y,wid,high,color,bgcolor)
  164.         term.setCursorPos(x+(wid-#text)/2,y+high/2)
  165.         term.setTextColor(color)
  166.         term.setBackgroundColor(bgcolor)
  167.         term.write(text)
  168.     end,
  169.     clear = function()
  170.         term.setBackgroundColor(colors.black)
  171.         term.clear()
  172.         term.setCursorPos(1,1)
  173.     end
  174. }
  175. function drawPageContent()
  176.     showButtons(currentPage.pageContent.getButtons())
  177.     showLabels(currentPage.pageContent.getLabels())
  178. end
  179.  
  180. function showButtons(button)
  181.     for x=1,#button,1 do
  182.         currentPage.pageContent.drawButton(x)
  183.     end
  184. end
  185.  
  186. function showLabels(label)
  187.     for x=1,#label,1 do
  188.         currentPage.pageContent.drawLabel(x)
  189.     end
  190. end
  191.  
  192. function analyseClick(xpos,ypos)
  193.     buttons = currentPage.pageContent.getButtons()
  194.     for i=1,#buttons,1 do
  195.         if(xpos>=buttons[i].x and xpos<=buttons[i].x+buttons[i].width) then
  196.             if(ypos>=buttons[i].y and ypos<=buttons[i].y+buttons[i].height) then
  197.                 buttons[i].buttonFunction()
  198.             end
  199.         end
  200.     end
  201. end
  202.  
  203. running = true
  204. currentPage = content.pages[1]
  205. local termWidth,termHeight = term.getSize()
  206. content.page1.setBackground("page1")
  207. content.page2.setBackground("page2")
  208. content.page1.pageContent.addButton("test",15,15,6,3,colors.blue,colors.black,function()end)
  209. content.page1.pageContent.addButton("Exit",termWidth-5,1,6,3,colors.red,colors.white,function() running = false end)
  210. content.page1.pageContent.addButton("test2",30,5,7,3,colors.green,colors.black,function()end)
  211. content.page1.pageContent.addButton("Next Page",termWidth-10,termHeight-2,11,3,colors.orange,colors.white,function() currentPage = content.pages[2] end)
  212. content.page2.pageContent.addButton("Next Page",termWidth-10,termHeight-2,11,3,colors.orange,colors.white,function() currentPage = content.pages[1] end)
  213. content.page2.pageContent.addLabel("0",5,5,4,true,colors.white,colors.black)
  214. content.page2.pageContent.addButton("/\\",5,4,4,1,colors.gray,colors.black,function() content.page2.pageContent.labels[1].setLabelText(tostring(tonumber(currentPage.pageContent.buttons[2].name)+1))end)
  215. content.page2.pageContent.addButton("\\/",5,6,4,1,colors.gray,colors.black,function() content.page2.pageContent.labels[1].setLabelText(tostring(tonumber(currentPage.pageContent.buttons[2].name)-1))end)
  216.  
  217. while running do
  218.     drawing.clear()
  219.     drawing.drawImage(currentPage.getBackground(),1,1)
  220.     drawPageContent()
  221.     event, button, x, y = os.pullEvent("mouse_click")
  222.     analyseClick(x,y)
  223. end
  224. drawing.clear()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement