Advertisement
Guest User

computercraft widget API v1.0

a guest
Aug 10th, 2013
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 14.54 KB | None | 0 0
  1. --  Copyright Thomas Bogue 2013
  2. --  This program is free software: you can redistribute it and/or modify
  3. --  it under the terms of the GNU Lesser General Public License as published by
  4. --  the Free Software Foundation, either version 3 of the License, or
  5. --  (at your option) any later version.
  6.  
  7. --  This program is distributed in the hope that it will be useful,
  8. --  but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. --  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10. --  GNU Lesser General Public License for more details.
  11.  
  12. --  You should have received a copy of the GNU Lesser General Public License
  13. --  along with this program.  If not, see <http://www.gnu.org/licenses/>.
  14.  
  15. monitor=nil
  16. defaultButtonBackground=colors.blue
  17. defaultButtonForeground=colors.white
  18. terminalBackground=colors.black
  19. defaultSliderForeground=colors.white
  20. defaultSliderBackground=colors.gray
  21. defaultFlagMonitorForeground=colors.white
  22. defaultProgressBarForeground=colors.white
  23. defaultProgressBarBackground=colors.gray
  24. redrawNeeded=false
  25.  
  26. function version()
  27.   return "widget library v1.0"
  28. end
  29.  
  30. local function nop()
  31. end
  32.  
  33. function getMonitor()
  34.   return monitor
  35. end
  36.  
  37. function setMonitor(m)
  38.   monitor=m
  39. end
  40.  
  41. function getDefaultMonitor()
  42.   --print("searching for advanced monitor...")
  43.   facings={"top","bottom","right","left","front","back"}
  44.   for key,facing in pairs(facings) do
  45.     mon=peripheral.wrap(facing)
  46.     --print("looking for an advanced monitor " .. facing .. " " .. tostring(mon))
  47.     if (mon~=nil) then
  48.       --print("peripheral found")
  49.       if (mon.setTextColor~=nil) then
  50.         --print("monitor found on ".. facing)
  51.         return mon
  52.       end
  53.     end
  54.   end
  55.   --print("no advanced monitor found.  Is this an advanced computer?")
  56.   if (term.isColor()) then
  57.     print("using the terminal as an advanced computer")
  58.     return(term)
  59.   else
  60.     error("no advanced monitor or advanced computer found.  This program requires advanced interface hardward.  Please install either an advanced computer or an advanced monitor")
  61.   end
  62. end
  63.  
  64. function newWidget()
  65.   widget={}
  66.   widget.draw=nop -- draw(widget)
  67.   widget.onClick=nop -- onClick(widget,x,y)
  68.   widget.onResize=nop -- onResize(widget)
  69.   widget.hWeight=1
  70.   widget.vWeight=1
  71.   widget.width=nil
  72.   widget.height=nil
  73.   widget.x1=nil
  74.   widget.y1=nil
  75.   widget.x2=nil
  76.   widget.y2=nil
  77.  
  78.   function widget.size(widget)
  79.     if (monitor==nil) then
  80.       monitor=getDefaultMonitor()
  81.     end
  82.     widget.width,widget.height=monitor.getSize()
  83.     widget.x1=1
  84.     widget.y1=1
  85.     widget.x2=widget.width
  86.     widget.y2=widget.height
  87.     widget.onResize(widget)
  88.     widget.sized=true
  89.   end
  90.  
  91.   function widget.run(widget)
  92.     if (widget==null) then
  93.       error("invalid call to member function widget:run.  Did you type widget.run instead?")
  94.     end
  95.     if (widget.sized==true) then
  96.     else
  97.       widget:size()
  98.     end
  99.     monitor.setBackgroundColor(terminalBackground)
  100.     monitor.clear()
  101.     widget:draw()
  102.     widget.quit=false
  103.     while not widget.quit do
  104.       if (monitor==term) then
  105.         event,side,x,y=os.pullEvent("mouse_click")
  106.       else
  107.         event,side,x,y=os.pullEvent("monitor_touch")
  108.       end
  109.       widget:onClick(x,y)
  110.       if (redrawNeeded) then
  111.         monitor.setBackgroundColor(terminalBackground)
  112.         monitor.clear()
  113.         widget:draw()
  114.       end
  115.     end
  116.     monitor.setBackgroundColor(terminalBackground)
  117.     monitor.clear()
  118.   end
  119.  
  120.   return(widget)
  121. end
  122.  
  123. function newContainer()
  124.   container=newWidget()
  125.   container.children={}
  126.   container.vSpacingWeight=.1
  127.   container.hSpacingWeight=.1
  128.  
  129.   function container.draw(container)
  130.     for key,child in pairs(container.children) do
  131.       child:draw()
  132.     end
  133.   end
  134.  
  135.   function container.onClick(container,x,y)
  136.     for key,child in pairs(container.children) do
  137.       if x>=child.x1 and x<=child.x2 and y>=child.y1 and y<=child.y2 then
  138.         child:onClick(x,y)
  139.       end
  140.     end
  141.   end
  142.  
  143.   function container.resizeChildren(container)
  144.     for key,child in pairs(container.children) do
  145.       child:onResize()
  146.     end
  147.   end
  148.  
  149.   container.onResize=resizeChildren
  150.  
  151.   function container.add(container,widget)
  152.     if (widget==nil) then
  153.       error("attempt to add nil widget to a container.  Did you perhaps type row.add when you meant row:add?  Or column.add when you meant column:add?")
  154.     end
  155.     container.children[#container.children+1]=widget
  156.   end  
  157.  
  158.   return(container)
  159. end
  160.  
  161. function newButton(label)
  162.   button=newWidget()
  163.   button.label=label
  164.   button.backgroundColor=defaultButtonBackground
  165.   button.foregroundColor=defaultButtonForeground
  166.   button.labelX=nil
  167.   button.labelY=nil
  168.  
  169.   function button.drawFull(button)
  170.     button.labelX=math.floor((button.x1+button.x2-button.label:len())/2)
  171.     button.labelY=(button.y1+button.y2)/2
  172.     monitor.setBackgroundColor(button.backgroundColor)
  173.     monitor.setTextColor(button.foregroundColor)
  174.     for x=button.x1,button.x2 do
  175.       for y=button.y1,button.y2 do
  176.         monitor.setCursorPos(x,y)
  177.         monitor.write(" ")
  178.       end
  179.     end
  180.     monitor.setCursorPos(button.labelX,button.labelY)
  181.     monitor.write(button.label)
  182.   end
  183.  
  184.   function button.drawOutline(button)
  185.     button.labelX=math.floor((button.x1+button.x2-button.label:len())/2)
  186.     button.labelY=(button.y1+button.y2)/2
  187.     monitor.setBackgroundColor(button.backgroundColor)
  188.     for x=button.x1,button.x2 do
  189.       monitor.setCursorPos(x,button.y1)
  190.       monitor.write(" ")
  191.       monitor.setCursorPos(x,button.y2)
  192.       monitor.write(" ")
  193.     end
  194.     for y=button.y1+1,button.y2-1 do
  195.       monitor.setCursorPos(button.x1,y)
  196.       monitor.write(" ")
  197.       monitor.setCursorPos(button.x2,y)
  198.       monitor.write(" ")
  199.     end
  200.     monitor.setBackgroundColor(terminalBackground)
  201.     for x=button.x1+1,button.x2-1 do
  202.       for y=button.y1+1,button.y2-1 do
  203.         monitor.setCursorPos(x,y)
  204.         monitor.write(" ")
  205.       end
  206.     end
  207.     monitor.setTextColor(button.foregroundColor)
  208.     monitor.setCursorPos(button.labelX,button.labelY)
  209.     monitor.write(button.label)
  210.   end
  211.  
  212.   function button.blink(button)
  213.     button:drawOutline()
  214.     os.sleep(.1)
  215.     button:draw()
  216.   end
  217.  
  218.   button.draw=button.drawFull
  219.   return(button)
  220. end
  221.  
  222. function newRow()
  223.   row=newContainer()
  224.  
  225.   function row.onResize(row)
  226.     totalWeight=row.hSpacingWeight*(#row.children-1)
  227.     for key,child in pairs(row.children) do
  228.       totalWeight=totalWeight+child.hWeight
  229.     end
  230.     widths={}
  231.     totalWidgetWidth=0
  232.     for key,child in pairs(row.children) do
  233.       widths[key]=math.floor(row.width*child.hWeight/totalWeight)
  234.       totalWidgetWidth=totalWidgetWidth+widths[key]
  235.     end
  236.     remainingWidth=row.width-totalWidgetWidth
  237.     if (#row.children>=1) then
  238.       separatorWidth=1
  239.     else
  240.       separatorWidth=math.floor(remainingWidth/(#row.children-1))
  241.     end
  242.     currentPosition=row.x1 + math.floor((row.width-totalWidgetWidth-separatorWidth*(#row.children-1))/2)
  243.     for key,child in pairs(row.children) do
  244.       child.x1=currentPosition
  245.       child.y1=row.y1
  246.       currentPosition=currentPosition+widths[key]-1
  247.       child.x2=currentPosition
  248.       child.y2=row.y2
  249.       currentPosition=currentPosition+separatorWidth+1
  250.       child.width=widths[key]
  251.       child.height=row.height
  252.     end
  253.     row:resizeChildren()
  254.   end
  255.  
  256.   return(row)
  257. end
  258.  
  259. function newColumn()
  260.   column=newContainer()
  261.  
  262.   function column.onResize(column)
  263.     totalWeight=column.vSpacingWeight*(#column.children-1)
  264.     for key,child in pairs(column.children) do
  265.       totalWeight=totalWeight+child.vWeight
  266.     end
  267.     widths={}
  268.     totalWidgetWidth=0
  269.     for key,child in pairs(column.children) do
  270.       widths[key]=math.floor(column.height*child.vWeight/totalWeight)
  271.       totalWidgetWidth=totalWidgetWidth+widths[key]
  272.     end
  273.     remainingWidth=column.height-totalWidgetWidth
  274.     if (#column.children>=1) then
  275.       separatorWidth=1
  276.     else
  277.       separatorWidth=math.floor(remainingWidth/(#column.children-1))
  278.     end
  279.     currentPosition=column.y1 + math.floor((column.height-totalWidgetWidth-separatorWidth*(#column.children-1))/2)
  280.     for key,child in pairs(column.children) do
  281.       child.x1=column.x1
  282.       child.y1=currentPosition
  283.       currentPosition=currentPosition+widths[key]-1
  284.       child.x2=column.x2
  285.       child.y2=currentPosition
  286.       child.width=column.width
  287.       child.height=widths[key]
  288.       currentPosition=currentPosition+separatorWidth+1
  289.     end
  290.     column:resizeChildren()
  291.   end
  292.  
  293.   return(column)
  294. end
  295.  
  296. function newToggleButton(label)
  297.   button=newButton(label)
  298.   function button.toggle(button)
  299.     button.state=not button.state
  300.     button:draw()
  301.   end
  302.  
  303.   function button.draw(button)
  304.     if button.state then
  305.       button:drawFull()
  306.     else
  307.       button:drawOutline()
  308.     end
  309.   end
  310.  
  311.   button.onClick=button.toggle
  312.   button.state=false
  313.   return(button)
  314. end
  315.  
  316. function newLabel(text)
  317.   label=newWidget()
  318.   label.text=text
  319.   label.textColor=defaultButtonForeground
  320.   function label.draw(label)
  321.     leftMargin=math.floor((label.width-label.text:len())/2)
  322.     rightMargin=label.width-label.text:len()-leftMargin
  323.     y=math.floor((label.y1+label.y2)/2)
  324.     paddedText=string.rep(" ",leftMargin)..label.text..string.rep(" ",rightMargin)
  325.     monitor.setTextColor(label.textColor)
  326.     monitor.setCursorPos(label.x1,y)
  327.     monitor.write(paddedText)
  328.   end
  329.  
  330.   return(label)
  331. end
  332.  
  333. function newSlider(min,max)
  334.   slider=newWidget()
  335.   slider.min=min
  336.   slider.max=max
  337.   slider.value=min
  338.   slider.left=nil
  339.   slider.foregroundColor=defaultSliderForeground
  340.   slider.backgroundColor=defaultSliderBackground
  341.  
  342.   function slider.draw(slider)
  343.     range=slider.max-slider.min+1
  344.     slider.left=math.floor((slider.x1+slider.x2-range)/2)
  345.     margin=slider.left-slider.x1
  346.     y=math.floor((slider.y1+slider.y2)/2)
  347.     left=slider.value-slider.min+1
  348.     right=slider.max-slider.value
  349.     monitor.setCursorPos(slider.x1,y)
  350.     monitor.setBackgroundColor(terminalBackground)
  351.     monitor.write(string.rep(" ",margin))
  352.     monitor.setBackgroundColor(slider.foregroundColor)
  353.     monitor.write(string.rep(" ",left))
  354.     monitor.setBackgroundColor(slider.backgroundColor)
  355.     monitor.write(string.rep(" ",right))
  356.     monitor.setBackgroundColor(terminalBackground)
  357.     monitor.setTextColor(slider.foregroundColor)
  358.     tag=" "..tostring(slider.value)
  359.     roomleft=slider.width-margin-range-tag:len()
  360.     if (roomleft>=0) then
  361.       monitor.write(tag..string.rep(" ",slider.width-margin-tag:len()-range))
  362.     end
  363.   end
  364.  
  365.   function slider.onClick(slider,x,y)
  366.     slider.value=x-slider.left+slider.min
  367.     if (slider.value<slider.min) then
  368.       slider.value=slider.min
  369.     else
  370.       if (slider.value>slider.max) then
  371.         slider.value=slider.max
  372.       end
  373.     end
  374.     slider:draw()
  375.   end
  376.  
  377.   slider.adjust=slider.onClick
  378.   return(slider)
  379. end
  380.  
  381. function newFlagMonitor(side) -- signal display widget
  382.   flag=newWidget()
  383.   flag.side=side
  384.   flag.flags=0
  385.   flag.sized=false
  386.   flag.foregroundColor=defaultFlagMonitorForeground
  387.  
  388.   function flag.get(flag,n)
  389.     x=bit.blshift(1,n-1)
  390.     y=bit.band(flag.flags,x)
  391.     z=(y~=0)
  392.     return z
  393.   end
  394.  
  395.   function flag.set(flag,n,value)
  396.     if (value==nil) then
  397.       value=true
  398.     end
  399.     if (value) then
  400.       flag.flags=bit.bor(flag.flags,bit.blshift(1,n-1))
  401.     else
  402.       flag.flags=bit.band(flag.flags,bit.bnot(bit.blshift(1,n-1)))
  403.     end
  404.     flag:transmit()
  405.   end
  406.  
  407.   function flag.clear(flag,n)
  408.     flag.flags=bit.band(flag.flags,bit.bnot(bit.blshift(1,n-1)))
  409.     flag:transmit()
  410.   end
  411.  
  412.   function flag.toggle(flag,n)
  413.     flag.flags=bit.bxor(flag.flags,bit.blshift(1,n-1))
  414.     flag:transmit()
  415.   end
  416.  
  417.   function flag.transmit(flag)
  418.     --print("transmitting " .. flag.flags .. " to " .. flag.side)
  419.     redstone.setBundledOutput(flag.side,flag.flags)
  420.     flag:draw()
  421.   end
  422.  
  423.   function flag.draw(flag)
  424.     if ( not flag.sized ) then
  425.       return
  426.     end
  427.     ylocal=math.floor((flag.y1+flag.y2)/2)
  428.     xlocal=math.floor((flag.x1+flag.x2-8)/2)
  429.     monitor.setCursorPos(xlocal,ylocal)
  430.     for i=1,16 do
  431.       color=bit.blshift(1,i-1)
  432.       if (flag:get(i)) then
  433.         monitor.setBackgroundColor(color)
  434.         monitor.setTextColor(flag.foregroundColor)
  435.         monitor.write(" ")
  436.       else
  437.         monitor.setBackgroundColor(terminalBackground)
  438.         monitor.setTextColor(color)
  439.         monitor.write(".")
  440.       end
  441.       if (i==8) then
  442.         monitor.setCursorPos(xlocal,ylocal+1)
  443.       end
  444.     end
  445.   end
  446.  
  447.   function flag.onResize(flag)
  448.     flag.sized=true
  449.   end
  450.  
  451.   return(flag)
  452. end
  453.  
  454. function newChooser(choice,options)
  455.   chooser=newButton(choice)
  456.   chooser.options=options
  457.  
  458.   function chooser.choose(chooser)
  459.     if (chooser.tab==nil) then
  460.       chooser:formTab()
  461.     end
  462.     chooser.tab:run()
  463.     redrawNeeded=true
  464.   end
  465.  
  466.   function chooser.buttonOnClick(button)
  467.     button:blink()
  468.     button.chooser.label=button.label
  469.     button.chooser.tab.quit=true
  470.   end
  471.  
  472.   function chooser.formTab(chooser)
  473.     chooser.tab=newRow()
  474.     width,height=monitor.getSize()
  475.     buttonsPerColumn=math.floor(height/4)
  476.     numButtons=#(chooser.options)
  477.     numColumns=math.ceil(numButtons/buttonsPerColumn)
  478.     columnNum=1
  479.     rowNum=1
  480.     currentColumn=newColumn()
  481.     for key,option in pairs(chooser.options) do
  482.       if (rowNum>buttonsPerColumn) then
  483.         rowNum=1
  484.         columnNum=columnNum+1
  485.         chooser.tab:add(currentColumn)
  486.         currentColumn=newColumn()
  487.       end
  488.       choiceButton=newButton(option)
  489.       choiceButton.vWeight=.3
  490.       choiceButton.chooser=chooser
  491.       choiceButton.onClick=chooser.buttonOnClick
  492.       currentColumn:add(choiceButton)
  493.       rowNum=rowNum+1
  494.     end
  495.     chooser.tab:add(currentColumn)
  496.   end
  497.  
  498.   chooser.onClick=chooser.choose
  499.   chooser.tab=nil
  500.   return(chooser)
  501. end
  502.  
  503. function newProgressBar(max)
  504.   bar=newWidget()
  505.   if (max==nil) then
  506.     bar.max=1.0
  507.   else
  508.     bar.max=max
  509.   end
  510.   bar.value=0
  511.   bar.foreground=defaultProgressBarForeground
  512.   bar.background=defaultProgressBarBackground
  513.  
  514.   function bar.draw(bar)
  515.     y=math.floor((bar.y1+bar.y2)/2)
  516.     xOn=math.floor(bar.width*bar.value/bar.max)
  517.     xOff=bar.width-xOn
  518.     monitor.setBackgroundColor(bar.foreground)
  519.     monitor.setCursorPos(bar.x1,y)
  520.     monitor.write(string.rep(" ",xOn))
  521.     monitor.setBackgroundColor(bar.background)
  522.     monitor.write(string.rep(" ",xOff))
  523.   end
  524.  
  525.   function bar.setValue(bar,value)
  526.     bar.value=value
  527.     bar:draw()
  528.   end
  529.  
  530.   function bar.getValue(bar)
  531.     return(bar.value)
  532.   end
  533.  
  534.   return(bar)
  535. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement