Advertisement
Guest User

API

a guest
Aug 15th, 2012
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- Extended Term API For Computers And Monitors
  2. -- Made By Jadengregory00
  3.  
  4. function clearScreen()
  5. term.clear()
  6. term.setCursorPos(1,1)
  7. end
  8.  
  9.  
  10. function cPrint(text)
  11. local w, h = term.getSize()
  12. local x, y = term.getCursorPos()
  13. term.setCursorPos(math.ceil((w / 2) - (text:len() / 2)), y)
  14. print(text)
  15. end
  16.  
  17. function printBorder()
  18. -- Note If Use In Programs Remember When Setting New Pos Do term.setCursorPos(2, <line>)
  19. local w, h = term.getSize()
  20. local x, y = term.getCursorPos()
  21. term.setCursorPos(1, 1)
  22. write("+")
  23. length = w - 3
  24. for i = 1, length do
  25. write("-")
  26. end
  27. print("+")
  28. down = h - 3
  29. gap = length
  30. for i = 1, down do
  31. write("|")
  32. for i = 1, gap do
  33. write(" ")
  34. end
  35. print("|")
  36. end
  37. write("+")
  38. for i = 1, length do
  39. write("-")
  40. end
  41. print("+")
  42. term.setCursorPos(1,2)
  43. end
  44.  
  45. function clearLineTo(line)
  46. local width, height = term.getCursorPos()
  47. height = height - 1
  48. n = height-line
  49. n = n + 1
  50. for i = 1, n do
  51. term.setCursorPos(1, height)
  52. term.clearLine()
  53. height = height - 1
  54. end
  55. end
  56.  
  57. function redOpen()
  58. rednet.open("right")
  59. rednet.open("left")
  60. rednet.open("bottom")
  61. rednet.open("top")
  62. rednet.open("back")
  63. rednet.open("front")
  64. end
  65.  
  66. function monPrint(text, side, size)
  67. if peripheral.isPresent( side ) then
  68. mon = peripheral.wrap( side )
  69. mon.setTextScale( size )
  70. local width , height = mon.getCursorPos()
  71. print(height)
  72. mon.write( text )
  73. useHeight = height
  74. useHeight = useHeight + 1
  75. mon.setCursorPos(1, useHeight)
  76. else
  77. print("No Monitor On That Side")
  78. end
  79. end
  80.  
  81. function monClear(side)
  82. if peripheral.isPresent( side ) then
  83. mon = peripheral.wrap( side )
  84. mon.clear()
  85. mon.setCursorPos(1,1)
  86. end
  87. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement