Advertisement
RyuuzakiJulio

MonitorLayoutEditor

Mar 8th, 2013
551
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 13.36 KB | None | 0 0
  1. version = 1.1
  2.  
  3. --[[
  4.  by AngelMalus
  5.  youtube.com/angelmalusplays
  6.  MAR 14 7AM
  7. --]]
  8.  
  9. -- Set global variables
  10.  tw, th = term.getSize()
  11.  monSide = nil
  12.  startX = nil
  13.  startY = nil
  14.  mW = nil
  15.  mH = nil
  16.  m = nil
  17.  tScale = 1
  18.  fC = colors.white
  19.  bC = colors.black
  20.  terminate = false
  21.  mode = "Single"
  22.  
  23. img={}
  24.  
  25.  
  26. function message(mes)
  27.  term.setBackgroundColor(colors.red)
  28.  term.setCursorPos(1,th)
  29.  term.clearLine()
  30.  term.write(mes)
  31. end
  32.  
  33. function monAni()
  34.  for i=mH,1,-1 do
  35.   m.setBackgroundColor(colors.white)
  36.   m.setCursorPos(1,i)
  37.   m.clearLine()
  38.   sleep(0.1)
  39.  end
  40.  for i=mH,1,-1 do
  41.   m.setBackgroundColor(colors.black)
  42.   m.setCursorPos(1,i)
  43.   m.clearLine()
  44.   sleep(0.1)
  45.  end
  46. end
  47.  
  48. function imgReset()
  49.  mW, mH = m.getSize()
  50.  img = nil
  51.  img = {}
  52.  message("Set size data")
  53.  img[1]={ tostring(mW),tostring(mH),monSide,tScale}
  54.  message("Set background data")
  55.  
  56.  img[2]={}
  57.  img[3]={}
  58.  img[4]={}
  59.  fC = colors.white
  60.  bC = colors.black
  61.  message("Writing bg data")
  62.  --Set black background data
  63.   for i=1,mW*mH do
  64.    img[2][i] = "F"
  65.   end
  66.  --Set white text color data
  67.   for i=1,mW*mH do
  68.    img[3][i] = "0"
  69.   end
  70.  --Clear ascii data
  71.   for i=1,mW*mH do
  72.    img[4][i] = " "
  73.   end
  74. end
  75.  
  76. function setMon()
  77.  message("Right-Click monitor to select")
  78.  evt, monSide, xCli, yCli = os.pullEvent("monitor_touch")
  79.  message("Monitor selected: "..monSide)
  80.  m = peripheral.wrap(monSide)
  81.  m.setTextScale(tScale)
  82.  
  83.  imgReset()
  84.  
  85.  monAni()
  86. end
  87.  
  88. function downloadApi(CODE,FILE)
  89. resp = http.get("http://pastebin.com/raw.php?i="..CODE)
  90.   if resp then
  91.     handler=io.open(FILE,"w")
  92.     handler:write(resp.readAll())
  93.     handler:close()
  94.     return true -- It worked
  95.   else
  96.     return fasle -- It failed
  97.   end
  98. end
  99.  
  100.  
  101.  
  102. -- Print Splash Screen
  103. function splashScreen(secs)
  104.  e=1
  105.  term.setBackgroundColor(colors.blue)
  106.  term.clear()
  107.  msg = "Monitor screen editor by AngelMalus"
  108.  term.setCursorPos(tw/2-string.len(msg)/2,th/2+e)
  109.  print(msg)
  110.  msg = "Version "..tostring(version)
  111.  term.setCursorPos(tw/2-string.len(msg)/2,th/2+1+e)
  112.  print(msg)
  113.  
  114.  
  115.  message("Checking for API..")
  116.  sleep(0.5)
  117.  if not fs.exists("monmon") then
  118.    message("API does not exist, atempting download...")
  119.    sleep(0.5)
  120.    if downloadApi("eJ4piAXL","monmon") then
  121.     message("API Downloaded...")
  122.    sleep(0.5)
  123.    else
  124.     message("Error: Couldn't download API")
  125.     sleep(3)
  126.    end
  127.  else
  128.     message("API found!")  
  129.     sleep(0.5)
  130.     message("Loading program...")
  131.  end
  132.  
  133.  sleep(secs)
  134.  term.clear()
  135. end
  136.  
  137.  
  138. function printImg(startX,startY,imgD)
  139.  pX = startX
  140.  pY = startY
  141.  
  142.  for i=1, tonumber(imgD[1][1])*tonumber(imgD[1][2]) do
  143.  
  144.   m.setBackgroundColor(math.pow(2,tonumber("0X"..imgD[2][i])))
  145.   m.setTextColor(math.pow(2,tonumber("0X"..imgD[3][i])))
  146.   m.setCursorPos(pX-startX+1,pY-startY+1)
  147.   m.write(imgD[4][i])
  148.  
  149.  
  150.   term.setBackgroundColor(math.pow(2,tonumber("0X"..imgD[2][i])))
  151.   term.setTextColor(math.pow(2,tonumber("0X"..imgD[3][i])))
  152.   term.setCursorPos(pX,pY)
  153.   term.write(imgD[4][i])
  154.    
  155.   pX=pX+1  
  156.   if i%imgD[1][1] == 0 then
  157.    pY=pY+1
  158.    pX=startX
  159.   end
  160.  end
  161. end
  162.  
  163. function display()
  164.   local tgui = {
  165.   --"123456789012345678901234567890123456789012345678901"
  166.     " Monitor Screen Editor                       [Menu]",
  167.     "",
  168.     "",
  169.     " Monitor   :   ",
  170.     " M. Width  :",
  171.     " M. Height :",
  172.     " F Color   :",
  173.     " B Color   :",
  174.     " Text Size :",
  175.     "          [-][+]",
  176.     "",
  177.     " F Colors ",
  178.     "",
  179.     "",
  180.     " B Colors ",
  181.     "",
  182.     "",
  183.     " Mode: ",
  184.     }
  185.  
  186.   term.setBackgroundColor(colors.blue)
  187.   term.clear()
  188.   term.setCursorPos(1,1)
  189.  
  190.   term.setBackgroundColor(colors.red)
  191.   term.clearLine()
  192.   print(tgui[1])
  193.   term.setBackgroundColor(colors.blue)
  194.  
  195.   term.setTextColor(colors.white)
  196.   for i=2, #tgui do
  197.     term.clearLine()
  198.     print(tgui[i])
  199.   end
  200.  
  201.     --Print mode
  202.     term.setCursorPos(16-string.len(mode),18)
  203.     term.write("["..mode.."]")  
  204.  
  205.  
  206.   if monSide ~= nil then
  207.    term.setCursorPos(14,4)
  208.    term.write(monSide)
  209.    term.setCursorPos(14,5)
  210.    term.write(math.floor(mW))
  211.    term.setCursorPos(14,6)
  212.    term.write(math.floor(mH))
  213.   end
  214.   --Print F Color Sample
  215.    term.setBackgroundColor(fC)
  216.    term.setCursorPos(14,7)
  217.    term.write("   ")
  218.   --Print B Color Sample
  219.    term.setBackgroundColor(bC)
  220.    term.setCursorPos(14,8)
  221.    term.write("   ")
  222.   --Print TextScale
  223.    term.setBackgroundColor(colors.blue)
  224.    term.setCursorPos(14,9)
  225.    term.write(tScale)
  226.   --Print F Color Selector
  227.     term.setCursorPos(2,13)
  228.     j=1
  229.     for i=1,16 do
  230.      term.setBackgroundColor(j)
  231.      term.write(" ")
  232.      j=j*2
  233.     end
  234.   --Print B Color Selector
  235.     term.setCursorPos(2,16)
  236.     j=1
  237.     for i=1,16 do
  238.      term.setBackgroundColor(j)
  239.      term.write(" ")
  240.      j=j*2
  241.     end    
  242.    
  243.   --Print Vertical Separation Line
  244.     for i=2,tw-1 do
  245.      term.setBackgroundColor(colors.white)
  246.      term.setCursorPos(20,i)
  247.      term.write(" ")
  248.     end
  249.   --Print bottom Status bar area
  250.     term.setBackgroundColor(colors.red)
  251.     term.setCursorPos(1,th)
  252.     term.clearLine()
  253.  
  254.  --Center the screen area on the editor
  255.  --Gets value for startX and startY
  256.  if mW ~= nil then
  257.   areaW = tw-20
  258.   startX = math.ceil(areaW/2 - mW/2) + 20
  259.  
  260.   areaH = th - 2
  261.   startY = math.ceil(areaH/2 - mH/2) + 2
  262.  
  263.   if img ~= nil then
  264.    printImg(startX,startY,img)
  265.   end
  266.  
  267.  end
  268. end
  269.  
  270. function printMenu()
  271.  term.setBackgroundColor(colors.red)
  272.  term.setCursorPos(tw-10,2)
  273.  term.write(" Mon Sel  ")
  274.  term.setCursorPos(tw-10,3)
  275.  term.write(" Open...  ")
  276.  term.setCursorPos(tw-10,4)
  277.  term.write(" Save...  ")
  278.  term.setCursorPos(tw-10,5)
  279.  term.write("----------")
  280.  term.setCursorPos(tw-10,6)
  281.  term.write(" Exit     ")
  282. end
  283.  
  284. function tSizeUp()
  285.  tScale = tScale+0.5
  286.  if tScale > 5 then tScale = 5 end
  287.  m.setTextScale(tScale)
  288.  mW, mH = m.getSize()
  289.  imgReset()
  290. end
  291.  
  292. function tSizeDn()
  293.  tScale = tScale-0.5
  294.  if tScale < 0.5 then tScale = 0.5 end
  295.  m.setTextScale(tScale)
  296.  mW, mH = m.getSize()
  297.  imgReset()
  298. end
  299.  
  300. function c2x(color)
  301.  for i=0,15 do
  302.   if math.pow(2,i)==color then
  303.    return string.format("%X",i)
  304.   end
  305.  end
  306. end
  307.  
  308. function getTxt(len)
  309. local breaking = false
  310. local fileName = ""
  311. local curX,curY = term.getCursorPos()
  312.  term.setCursorBlink(true)
  313.  
  314. while not breaking do
  315.  evt, p1,p2,p3 = os.pullEvent()
  316.  if evt == "char" then
  317.   fileName = fileName..p1
  318.   term.setCursorPos(curX,curY)
  319.   term.write(fileName)
  320.  end
  321.  if evt == "key" then
  322.   if p1 == 14 then
  323.   term.setCursorPos(curX,curY)
  324.   for i=1,string.len(fileName) do
  325.    term.write(" ")
  326.   end
  327.   fileName = string.sub(fileName,1,string.len(fileName)-1)
  328.   term.setCursorPos(curX,curY)
  329.   term.write(fileName)
  330.   end
  331.   if p1 == 28 then
  332.    breaking = true
  333.   end
  334.  end
  335.  if evt == "mouse_click" then
  336.   if p2 >= 18 and p2 <= 21 and p3 == 11 then
  337.    breaking = true
  338.   end
  339.   if p2 >= 27 and p2 <= 32 and p3 == 11 then
  340.    fileName = ""
  341.    breaking = true
  342.   end
  343.  end
  344. end
  345.  term.setCursorBlink(false)
  346.  return fileName
  347. end
  348.  
  349. function saveFileAs(name)
  350.  local file = fs.open(name,"w")
  351.  file.write(textutils.serialize(img))
  352.  file.close()
  353. end
  354.  
  355. function saveFile()
  356. if img[1] ~= nil then
  357.   sFileWindow = {
  358.   " Save as:            ",
  359.   "                     ",
  360.   "                     ",
  361.   "                     ",
  362.   "  [Save]   [Cancel]  ",
  363.   "                     "
  364.   }
  365.    display()
  366.    term.setBackgroundColor(colors.red)
  367.    for i=1,#sFileWindow do
  368.     if i>1 then term.setBackgroundColor(colors.cyan) end
  369.     term.setCursorPos(tw/2-10,th/2-3+i)
  370.     term.write(sFileWindow[i])
  371.    end
  372.    message("Type filename and press Enter")
  373.    term.setCursorPos(tw/2-9,th/2)
  374.    term.setBackgroundColor(colors.black)
  375.    term.write("                   ")
  376.    term.setCursorPos(tw/2-9,th/2)
  377.    fname = ""
  378.    fname = getTxt()
  379.    if fname ~= "" then
  380.    
  381.     saveFileAs(fname)
  382.        
  383.     message("File saved as "..fname)
  384.     sleep(2)
  385.    end
  386.    
  387. else
  388.   alertWindow = {
  389.   " Alert               ",
  390.   "                     ",
  391.   "  No image data      ",
  392.   "                     "
  393.   }
  394.   display()
  395.    term.setBackgroundColor(colors.red)
  396.    for i=1,#alertWindow do
  397.     if i>1 then term.setBackgroundColor(colors.cyan) end
  398.     term.setCursorPos(tw/2-10,th/2-3+i)
  399.     term.write(alertWindow[i])
  400.    end
  401.    sleep(2)
  402. end  
  403. end
  404.  
  405. function loadImageFromFile(name)
  406.  local file = fs.open(name,"r")
  407.  local data = file.readAll()
  408.  file.close()
  409.  img = textutils.unserialize(data)
  410.  
  411.  monSide = img[1][3]
  412.  tScale = img[1][4]
  413.  
  414.  m = peripheral.wrap(monSide)
  415.  m.setTextScale(tScale)
  416.  mW, mH = m.getSize()
  417.  
  418.  display()
  419. end
  420.  
  421.  
  422. function openFile()
  423.    oFileWindow = {
  424.   " Open:            ",
  425.   "                     ",
  426.   "                     ",
  427.   "                     ",
  428.   "  [Open]   [Cancel]  ",
  429.   "                     "
  430.   }
  431.    display()
  432.    term.setBackgroundColor(colors.red)
  433.    for i=1,#oFileWindow do
  434.     if i>1 then term.setBackgroundColor(colors.cyan) end
  435.     term.setCursorPos(tw/2-10,th/2-3+i)
  436.     term.write(oFileWindow[i])
  437.    end
  438.    message("Type filename and press Enter")
  439.    term.setCursorPos(tw/2-9,th/2)
  440.    term.setBackgroundColor(colors.black)
  441.    term.write("                   ")
  442.    term.setCursorPos(tw/2-9,th/2)
  443.    fname = ""
  444.    fname = getTxt()
  445.    if fname ~= "" then
  446.     if fs.exists(fname) then
  447.      loadImageFromFile(fname)
  448.      message("Image loaded from"..fname)
  449.      sleep(2)
  450.     else
  451.      message("File "..fname.." not found!")
  452.      sleep(2)
  453.     end
  454.      
  455.    end
  456.  
  457. end
  458.  
  459. function clicked(btn, pox, poy)
  460.  --Terminal Left Click
  461.  if btn == 1 then
  462.   if pox>=47 and pox<=50 and poy == 1 then
  463.     printMenu()
  464.     message("Select menu item")
  465.     evt2, btn2, posX2, posY2 = os.pullEvent("mouse_click")
  466.    
  467.     --SetMon
  468.     if (posX2>=42) and (posX2<=49) and (posY2==2) then
  469.      display()
  470.      setMon()
  471.     end
  472.  
  473.     -- Open
  474.     if posX2>=42 and posX2<=49 and posY2 == 3 then
  475.     openFile()    
  476.     end
  477.  
  478.     -- Save
  479.     if posX2>=42 and posX2<=49 and posY2 == 4 then
  480.     saveFile()    
  481.     end
  482.     if posX2>=42 and posX2<=49 and posY2 == 6 then
  483.      terminate = true
  484.     end
  485.  
  486.   end
  487.  
  488.  
  489.   if pox==12 and poy == 10 and monSide~= nil then
  490.    tSizeDn()
  491.    display()
  492.    monAni()
  493.   end
  494.  
  495.   if pox==15 and poy == 10 and monSide ~= nil then
  496.    tSizeUp()
  497.    display()
  498.    monAni()
  499.   end
  500.  
  501.   if pox>=2 and pox<=17 and poy == 13 then
  502.  --change F Color
  503.      j=1
  504.     if pox>2 then
  505.      for i=3,pox do
  506.      j=j*2
  507.      end
  508.     end
  509.     fC=j
  510.     display()
  511.   end
  512.  
  513.   if pox>=2 and pox<=17 and poy == 16 then
  514.  --Change B Color
  515.      j=1
  516.     if pox>2 then
  517.      for i=3,pox do
  518.      j=j*2
  519.      end
  520.     end
  521.     bC=j
  522.     display()
  523.   end
  524.  
  525.   if pox>=2 and pox<=17 and poy == 16 then
  526.    
  527.   end
  528.  
  529.  
  530.  
  531.   if startX ~= nil then
  532.   if pox>=startX and pox<=startX+mW then
  533.    if poy>=startY and poy<=startY+mH then
  534.  
  535.     message("Press a key (space for clear)")
  536.  
  537.     term.setCursorPos(pox,poy)
  538.     editMode = true
  539.  
  540.       dataY = poy-startY+1
  541.       dataX = pox-startX+1
  542.       dataPos = mW*(dataY-1)+dataX
  543.      
  544.      
  545.    while editMode do
  546.      
  547.       evto, cha,p1,p2 = os.pullEventRaw()
  548.    
  549.      if evto == "char" then    
  550.       img[2][dataPos] = c2x(bC)
  551.       img[3][dataPos] = c2x(fC)
  552.       img[4][dataPos] = cha
  553.       dataPos = dataPos+1
  554.      end
  555.      
  556.      if evto == "key" and cha == 28 then
  557.       editMode = false
  558.      end
  559.  
  560.      if evto == "mouse_click" and cha == 1 then
  561.      
  562.        if p1>=startX and p1<=startX+mW then
  563.        if p2>=startY and p2<=startY+mH then
  564.         pox = p1
  565.         poy = p2
  566.         dataY = poy-startY+1
  567.         dataX = pox-startX+1
  568.         dataPos = mW*(dataY-1)+dataX
  569.         else
  570.         editMode = false
  571.  
  572.        end
  573.         else
  574.         editMode = false
  575.        end
  576.        
  577.      end
  578.  
  579.  
  580.      display()
  581.      message("Text Edit Mode")
  582.      
  583.      if dataPos > mW*mH then
  584.       editMode = false
  585.      end    
  586.        
  587.     end
  588.        
  589.     term.setCursorBlink(false)
  590.      
  591.    
  592.    end
  593.   end
  594.   end
  595.  
  596.  
  597.  
  598.  end
  599.  --Terminal Right Click
  600.  if btn == 2 then
  601.    if startX ~= nil then
  602.     if pox>=startX and pox<=startX+mW then
  603.       if poy>=startY and poy<=startY+mH then
  604.    
  605.        dataY = poy-startY+1
  606.        dataX = pox-startX+1
  607.  
  608.        mess ="Coords: "..tostring(dataX).." "..tostring(dataY)
  609.        mess = mess.." : "..tostring(mW*(dataY-1)+dataX)
  610.        message(mess)
  611.    
  612.        img[2][mW*(dataY-1)+dataX] = c2x(bC)
  613.        img[3][mW*(dataY-1)+dataX] = c2x(fC)
  614. --       img[4][mW*(dataY-1)+dataX] = " "
  615.    
  616.      end
  617.    end
  618.   end
  619.  
  620.  end
  621.  --Touchscreen click
  622.  if btn == 5 and mW ~= nil then
  623.        mess ="Coords: "..tostring(pox).." "..tostring(poy)
  624.        location = mW*(poy-1)+pox
  625.        mess = mess.." : "..tostring(location)
  626.        message(mess)
  627.        img[2][location] = c2x(bC)
  628.        img[3][location] = c2x(fC)
  629.  end
  630.  
  631. end
  632.  
  633.  
  634. function main()
  635.  
  636.   splashScreen(2)
  637.  
  638.  
  639.   display()
  640.  
  641.   while not terminate do
  642.    evt, btn, posX, posY = os.pullEvent()
  643.    if evt == "mouse_click" then
  644.     clicked(btn,posX,posY)
  645.     display()
  646.    end
  647.  
  648.    if evt == "mouse_drag" then
  649.     clicked(btn,posX,posY)
  650.     display()
  651.    end
  652.  
  653.    
  654.    if evt == "monitor_touch" then
  655.     clicked(5,posX,posY)
  656.     display()
  657.    end
  658.    
  659.    
  660.    
  661.   end
  662.  
  663.  --Reset Screen to default (cleaning after program)
  664.   term.setBackgroundColor(colors.black)
  665.   term.setTextColor(colors.white)
  666.   term.setCursorPos(1,1)
  667.  
  668.   term.clear()
  669. end
  670.  
  671.  
  672.  
  673. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement