Advertisement
DOGGYWOOF

Doggy OS BIOS system

Jan 15th, 2025 (edited)
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.51 KB | None | 0 0
  1. local w, h = term.getSize()
  2.  
  3. -- Function to center text horizontally
  4. local function centerText(y, text)
  5. local x = math.floor((w - #text) / 2)
  6. term.setCursorPos(x, y)
  7. term.write(text)
  8. end
  9.  
  10. -- Function to draw the spinner animation
  11. local function drawSpinner(x, y, duration)
  12. local spinnerFrames = {
  13. "[ ]",
  14. "[= ]",
  15. "[== ]",
  16. "[=== ]",
  17. "[====]",
  18. "[ ===]",
  19. "[ ==]",
  20. "[ =]",
  21. "[ ]",
  22. "[ =]",
  23. "[ ==]",
  24. "[ ===]",
  25. "[====]",
  26. "[=== ]",
  27. "[== ]",
  28. "[= ]"
  29. }
  30. local delay = 0.1
  31. local frameCount = #spinnerFrames
  32.  
  33. local spinnerX = x
  34. local spinnerY = y
  35.  
  36. local spinnerIndex = 1
  37. local startTime = os.clock()
  38. while os.clock() - startTime < duration do
  39. term.setCursorPos(spinnerX, spinnerY)
  40. term.write(spinnerFrames[spinnerIndex])
  41.  
  42. spinnerIndex = spinnerIndex % frameCount + 1
  43. os.sleep(delay)
  44. end
  45. end
  46.  
  47. -- ASCII art dog image
  48. local dogImage = {
  49. " |\\_/| ",
  50. " | @ @ Doggy OS ",
  51. " | <> _ ",
  52. " | _/\\------____ ((| |))",
  53. " | `--' | ",
  54. " _____|_ ___| |___.' ",
  55. "/_/_____/____/_______| "
  56. }
  57.  
  58. -- Function to draw the ASCII art
  59. local function drawASCIIArt(y)
  60. for i, line in ipairs(dogImage) do
  61. centerText(y + i - 1, line)
  62. end
  63. end
  64.  
  65. -- Function to show UEFI messages
  66. local function showUEFIMessage(message)
  67. term.setBackgroundColor(colors.black)
  68. term.clear()
  69. term.setTextColor(colors.white)
  70. local artHeight = #dogImage
  71. local artY = math.floor((h - artHeight) / 2)
  72. drawASCIIArt(artY)
  73.  
  74. local spinnerX = math.floor(w / 2) - 3
  75. local spinnerY = artY + #dogImage + 2
  76. centerText(spinnerY, message)
  77. end
  78.  
  79. -- Placeholder function for boot options
  80. local function loadBootOptions()
  81. term.setBackgroundColor(colors.black)
  82. term.clear()
  83. term.setTextColor(colors.white)
  84. centerText(math.floor(h / 2), "Boot options loading...")
  85. os.sleep(2.5)
  86. end
  87.  
  88. -- Placeholder function for boot animation
  89. local function loadBootAnimation()
  90. term.setBackgroundColor(colors.black)
  91. term.clear()
  92.  
  93. term.setTextColor(colors.white)
  94. local artHeight = #dogImage
  95. local artY = math.floor((h - artHeight) / 2)
  96. drawASCIIArt(artY)
  97.  
  98. -- Calculate spinner position
  99. local spinnerX = math.floor(w / 2) - 3
  100. local spinnerY = artY + artHeight + 2
  101.  
  102. -- Start spinner animation
  103. drawSpinner(spinnerX, spinnerY, 9) -- Spinner runs for 9 seconds
  104. end
  105.  
  106. -- Main function
  107. local function main()
  108. showUEFIMessage("Press DEL to show startup options")
  109. local timer = os.startTimer(2.5) -- Set a timer for 2.5 seconds
  110.  
  111. while true do
  112. local event, param = os.pullEvent()
  113. if event == "key" and param == keys.delete then
  114. -- If DELETE key is pressed, load boot options
  115. showUEFIMessage("Loading startup menu...")
  116. os.sleep(2.5)
  117. shell.run("disk/boot/boot-options")
  118. return
  119. elseif event == "timer" and param == timer then
  120. -- If timer expires, load boot animation
  121. loadBootAnimation()
  122. return
  123. end
  124. end
  125. end
  126.  
  127. -- Run the main function
  128. main()
  129.  
  130. -- Clear screen after shutdown
  131. term.setBackgroundColor(colors.black)
  132. term.clear()
  133.  
  134. -- Load lockscreen
  135. shell.run("disk/os/lock.lua")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement