Advertisement
Guest User

Terminal

a guest
Jul 17th, 2013
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.82 KB | None | 0 0
  1. os.pullEvent=os.pullEventRaw
  2.  
  3. term.clear()
  4. term.setCursorPos(1, 1)
  5. x, y = term.getSize()
  6.  
  7. function cwrite(text, yp)
  8. cx = math.ceil((x/2)-(string.len(text)/2))
  9. term.setCursorPos(cx, yp)
  10. write(text)
  11. end
  12.  
  13. function Graphics()
  14.  
  15. term.setBackgroundColor(colors.lime)
  16. term.setTextColor(colors.white)
  17. cwrite("+---------------------+", 6)
  18. cwrite("|                     |", 7)
  19. cwrite("|                     |", 8)
  20. cwrite("|                     |", 9)
  21. cwrite("|                     |", 10)
  22. cwrite("|                     |", 11)
  23. cwrite("+---------------------+", 12)
  24. term.setTextColor(colors.purple)
  25. cwrite("     [1]PowerToggle", 8)
  26. cwrite("[2]Credits", 9)
  27. cwrite("[3]LogOut", 10)
  28. term.setCursorPos(1, 14)
  29. term.setTextColor(colors.white)
  30. term.setBackgroundColor(colors.black)
  31.  
  32. end
  33.  
  34. function OldColor()
  35.  
  36. term.setTextColor(colors.white)
  37. term.setBackgroundColor(colors.black)
  38.  
  39. end
  40.  
  41. function NewColor()
  42.  
  43. term.setBackgroundColor(colors.lime)
  44. term.setTextColor(colors.white)
  45.  
  46. end
  47.  
  48. function Box()
  49.  
  50. term.clear()
  51. term.setCursorPos(1, 1)
  52. term.setBackgroundColor(colors.lime)
  53. cwrite("+--------------------+", 7)
  54. cwrite("|                    |", 8)
  55. cwrite("|                    |", 9)
  56. cwrite("|                    |", 10)
  57. cwrite("+--------------------+", 11)
  58. term.setBackgroundColor(colors.black)
  59.  
  60. end
  61.  
  62. function Credits()
  63.  
  64. Box()
  65. term.setBackgroundColor(colors.lime)
  66. term.setTextColor(colors.blue)
  67. cwrite("Terminal Version 1.0", 9)
  68. sleep(2)
  69. term.setTextColor(colors.white)
  70. term.setBackgroundColor(colors.black)
  71. Box()
  72. term.setBackgroundColor(colors.lime)
  73. term.setTextColor(colors.orange)
  74. cwrite("Codeing: 8000", 9)
  75. sleep(2)
  76. term.setBackgroundColor(colors.black)
  77. term.setTextColor(colors.white)
  78. Box()
  79. term.setBackgroundColor(colors.lime)
  80. term.setTextColor(colors.cyan)
  81. cwrite("Assistant: Mickvvt", 9)
  82. sleep(2)
  83. term.setBackgroundColor(colors.lime)
  84. term.setTextColor(colors.white)
  85. term.setBackgroundColor(colors.black)
  86. shell.run("Terminal")
  87.  
  88. end
  89.  
  90. function Loading()
  91.  
  92. Box()
  93. term.setBackgroundColor(colors.lime)
  94. term.setTextColor(colors.white)
  95. cwrite("Loading", 9)
  96. sleep(0.2)
  97. OldColor()
  98.  
  99.  
  100. Box()
  101. NewColor()
  102. cwrite("Loading.", 9)
  103. sleep(0.2)
  104. OldColor()
  105.  
  106. Box()
  107. NewColor()
  108. cwrite("Loading..", 9)
  109. sleep(0.2)
  110. OldColor()
  111.  
  112. Box()
  113. NewColor()
  114. cwrite("Loading...", 9)
  115. sleep(0.2)
  116.  
  117. OldColor()
  118. term.setCursorPos(1, 13)
  119.  
  120. end
  121.  
  122. function PowerToggle()
  123.  
  124. rs.setOutput("back", true)
  125. sleep(1)
  126. rs.setOutput("back", false)
  127. shell.run("Terminal")
  128.  
  129. end
  130.  
  131. Graphics()
  132.  
  133. local input = read()
  134. if input == '1' then
  135. Loading()
  136. Loading()
  137. Loading()
  138. Loading()
  139. PowerToggle()
  140.  
  141. elseif input == '3' then
  142. term.clear()
  143. term.setCursorPos(1, 1)
  144. shell.run("startup")
  145.  
  146. elseif input == '2' then
  147.  
  148. Credits()
  149.  
  150. else
  151. term.clear()
  152. term.setCursorPos(1, 1)
  153. Box()
  154. cwrite("Unknown command", 9)
  155. sleep(2)
  156. shell.run("Terminal")
  157. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement