Advertisement
Cavious

personalComputer

Jun 18th, 2014
320
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.07 KB | None | 0 0
  1. --[[
  2. FILENAME: personalComputer.lua(Startup.lua)
  3. AUTHOR: Donald R. Valverde (Cavious)
  4. VERSION: 1.0-ALPHA
  5. --]]
  6. os.loadAPI("gb_os/api/api_button")
  7.  
  8. version = "2.0-ALPHA"
  9.  
  10. position_y = 2 -- for chat
  11.  
  12. local args = {...}
  13.  
  14.  
  15. function drawText(text, xPos, yPos, backgroundColor, fontColor)
  16.     term.setCursorPos(xPos, yPos)
  17.     term.setBackgroundColor(backgroundColor)
  18.     term.setTextColor(fontColor)
  19.     term.write(text)
  20. end
  21.  
  22. local function clearPart(x1, x2, y)
  23.   term.setCursorPos(x1, y)
  24.   term.write(string.rep(" ", (x2 - x1) + 1))
  25. end
  26.  
  27. function chatBoxClick()
  28.     term.setCursorPos(2, 16)
  29.     term.setBackgroundColor(colors.gray)
  30.     local input = read()
  31.     clearPart(2,25, 16)
  32.     local outgoing = args[1]..": "..input
  33.     return outgoing
  34. end
  35.  
  36. function sendToScreen(input)
  37.     local lineCap = 24
  38.     local starting_point = 1
  39.    
  40.     if(position_y > 14) then
  41.         position_y = 2
  42.         local image = paintutils.loadImage("gb_os/img/image_chatboard")
  43.         paintutils.drawImage(image, 2, 2)
  44.    
  45.     end
  46.     while(starting_point < input:len()) do
  47.         line = string.sub(input, starting_point, lineCap)
  48.         starting_point = lineCap + 1
  49.         lineCap = lineCap + 24
  50.         term.setCursorPos(2, position_y)
  51.         if(position_y%2 == 1) then
  52.             term.setBackgroundColor(colors.lime)
  53.         else
  54.             term.setBackgroundColor(colors.green)
  55.         end
  56.         term.write(line)
  57.         position_y = position_y + 1
  58.     end
  59.    
  60. end
  61.  
  62. function red()
  63.     local buttonList = {}
  64.    
  65.     local image = paintutils.loadImage("gb_os/img/image_redstone")
  66.     paintutils.drawImage(image, 1, 1)
  67.    
  68.     local image = paintutils.loadImage("gb_os/img/image_redstone_end")
  69.     paintutils.drawImage(image, 25, 1)
  70.    
  71.     api_button.createButton(buttonList, "btnDF01", "DF01", colors.white, colors.orange, 4, 4, mainMenu)
  72.     api_button.createButton(buttonList, "btnBack", "Back", colors.white, colors.orange, 2, 18, mainMenu)
  73.    
  74.     api_button.drawButtons(term, buttonList)
  75.    
  76.     api_button.runButtonEvent(buttonList, colors.lime, buttonList[id].backgroundColor, "mouse_click")
  77. end
  78.  
  79. function chat()
  80.     local buttonList = {}
  81.    
  82.     local image = paintutils.loadImage("gb_os/img/image_chat")
  83.     paintutils.drawImage(image, 1, 1)
  84.    
  85.     local image = paintutils.loadImage("gb_os/img/image_chat_end")
  86.     paintutils.drawImage(image, 25, 1)
  87.    
  88.     api_button.createButton(buttonList, "btn_back", "Back", colors.white, colors.orange, 2, 18, mainMenu)
  89.    
  90.     api_button.drawButtons(term, buttonList)
  91.    
  92.     state = true
  93.    
  94.     while(state) do
  95.      
  96.         local event = {os.pullEvent()}
  97.         if(event[1] == "mouse_click") then
  98.             local xPos = event[3]
  99.             local yPos = event[4]
  100.             for i = 1, #buttonList do
  101.                 if(yPos == buttonList[i].yPos and xPos >= buttonList[i].xPos and xPos < (buttonList[i].text:len() + buttonList[i].xPos)) then
  102.                     buttonList[i].backgroundColor = colors.lime
  103.                     api_button.drawButton(term, buttonList, i)
  104.                     os.sleep(0.5)
  105.                     buttonList[i].backgroundColor = colors.green
  106.                     api_button.drawButton(term, buttonList, i)
  107.                     os.sleep(0.5)
  108.                     buttonList[i].funct()
  109.                     if(buttonList[i].id == "btn_back") then
  110.                         state = false
  111.                         position_y = 2
  112.                     end
  113.                 end
  114.             end
  115.         end
  116.         if(event[1] == "key") then
  117.             if(event[2] == 28) then
  118.                 local input = chatBoxClick()
  119.                 sendToScreen(input)
  120.                 --sendToServer(input)
  121.             end
  122.         end
  123.     end
  124. end
  125.  
  126. function mainMenu()
  127.  
  128.     local buttonList = {}
  129.  
  130.     term.clear()
  131.    
  132.     local image = paintutils.loadImage("gb_os/img/image_mainMenu")
  133.     paintutils.drawImage(image, 1, 1)
  134.    
  135.     drawText("GotBawlz OS", 8, 4, colors.orange, colors.white)
  136.     drawText(version, 15, 18, colors.black, colors.lightBlue)
  137.    
  138.     api_button.createButton(buttonList, "btn_redstone", "Redstone  Access", colors.lightBlue, colors.green, 5, 7, red)
  139.     api_button.createButton(buttonList, "btn_email", "E-Mail", colors.lightBlue, colors.green, 10, 9, chat)
  140.     api_button.createButton(buttonList, "btn_chat", "Private Chat", colors.lightBlue, colors.green, 7, 11, chat)
  141.     api_button.createButton(buttonList, "btn_options", "Options", colors.lightBlue, colors.green, 10, 13, chat)
  142.  
  143.     api_button.drawButtons(term, buttonList)
  144.    
  145.     api_button.runButtonEvent(buttonList, colors.lime, colors.green, "mouse_click")
  146. end
  147.  
  148. mainMenu()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement