Advertisement
joeld98

CCBillboardV2

Oct 20th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 12.69 KB | None | 0 0
  1. os.loadAPI("ocs/apis/sensor")
  2. WS = sensor.wrap("left")
  3. PS = sensor.wrap("right")
  4. monitor = {}
  5. local monitor = {peripheral.find("monitor")}
  6.  
  7. local function log(msg) -- adapted from: https://github.com/rxi/log.lua
  8.   if not os.loadAPI("rwt") then
  9.         if not shell.run("pastebin", "get", "TNLjCCKq", "rwt") then
  10.             print("Could not load Time API")
  11.         else
  12.             os.loadAPI("rwt")
  13.         end
  14.   end
  15.   logTime = rwt.getTime("utc",-4,dateTime24_mmddyyyy,10)
  16.   local fp = io.open("CCBillboard.log", "a")
  17.   local str = string.format("[%s]%s\n",logTime, msg)
  18.       fp:write(str)
  19.       fp:close()
  20. end
  21.  
  22. local function round(num, idp) -- Thank you: http://lua-users.org/wiki/SimpleRound
  23.   local mult = 10^(idp or 0)
  24.   return math.floor(num * mult + 0.5) / mult
  25. end
  26.  
  27. local function saveTable(table,fileName) --Adapted from:http://www.computercraft.info/forums2/index.php?/topic/10499-luahelp-how-to-save-a-table-to-file/http://www.computercraft.info/forums2/index.php?/topic/10499-luahelp-how-to-save-a-table-to-file/
  28. log("Saving Table Data...")
  29. hWrite = fs.open(fileName, "w")
  30. hWrite.write(textutils.serialize(table))
  31. hWrite.close()
  32. end
  33.  
  34. local function loadTable(fileName) --Adapted from:http://www.computercraft.info/forums2/index.php?/topic/10499-luahelp-how-to-save-a-table-to-file/http://www.computercraft.info/forums2/index.php?/topic/10499-luahelp-how-to-save-a-table-to-file/
  35. log("Loading Table Data...")
  36.   local hRead = fs.open(fileName, "r")
  37.   if hRead then
  38.    local hTable = textutils.unserialise(hRead.readAll())
  39.    hRead.close()
  40.    return hTable
  41.   else
  42.   return nil
  43.   end
  44. end
  45.  
  46. local function getMonitorSize(display)
  47. local mon = display
  48. local xSize, ySize = mon.getSize()
  49. return xSize, ySize
  50. end
  51.  
  52. function getDistance(pos)
  53.   local xd = pos.X - offset.X
  54.   local yd = pos.Y - offset.Y
  55.   local zd = pos.Z - offset.Z
  56.   return math.sqrt(xd*xd + yd*yd + zd*zd)
  57. end
  58.  
  59. local function playerNearby()
  60.  local targets = PS.getTargets()
  61.  term.write("Player Nearby Called")
  62.  term.setCursorPos(1,3)
  63.  for k, v in pairs(targets) do
  64.     if v.IsPlayer == true then
  65.         term.write("Player found")
  66.         term.setCursorPos(1,4)
  67.         return true
  68.     end
  69.  end  
  70.  return false
  71. end
  72.  
  73. local function displayTitleMarquee (display, message, size, color, bgColor, duration, rate)
  74.   local mon = display
  75.   local width = 0
  76.   local height = 0
  77.   local currLoop = 0
  78.   local speed = rate
  79.   local textColor = colors.white
  80.   local backColor = colors.black
  81.   local text = message
  82.   local textScale = size
  83.   width, height = mon.getSize()
  84.   local loopCount = ((#text + 4) * duration) + (width * 2)
  85.   local currPos = (width + 2)
  86.   mon.setTextScale(5)
  87.   mon.setTextColor(textColor)
  88.   mon.setBackgroundColor(backColor)
  89.   for currLoop = 1, loopCount do
  90.     if currPos == 1 - (#text + 3) then
  91.       currPos = width + 2
  92.     end
  93.     mon.setCursorPos(currPos, 1)
  94.     mon.write(text)
  95.     currPos = currPos - 1
  96.     os.sleep(0.15)  
  97.   end
  98. end
  99.  
  100. local function displayRollMarquee (display, lineOne, lineTwo, lineThree, size, color, bgColor, duration, rate)
  101.   local mon = display
  102.   local width = 0
  103.   local height = 0
  104.   local currLoop = 0
  105.   local speed = rate
  106.   local textColor = color
  107.   local backColor = bgColor
  108.   local textOne = lineOne
  109.   local textTwo = lineTwo
  110.   local textThree = lineThree
  111.   local textScale = size
  112.   local tRow = 1
  113.   local cColumn = 0
  114.   mon.setTextScale(5)
  115.   mon.clear()
  116.   local width, height = mon.getSize()
  117.   local centerRow = (height / 2)
  118.   local currPos = (height + 3)
  119.   local tColumn = ((width / 2) - (#textOne / 2)) + 1.5
  120.   local mColumn = ((width / 2) - (#textTwo / 2)) + 1.5
  121.   local bColumn = ((width / 2) - (#textThree / 2))+ 1.5
  122.   local topLine = window.create(mon,currPos,tColumn,#textOne,1,true)
  123.   topLine.setBackgroundColor(backColor)
  124.   topLine.setTextColor(textColor)
  125.   local midLine = window.create(mon,currPos,mColumn,#textTwo,1)
  126.   midLine.setBackgroundColor(backColor)
  127.   midLine.setTextColor(textColor)
  128.   local bottomLine = window.create(mon,currPos,bColumn,#textThree,1,true)  
  129.   bottomLine.setBackgroundColor(backColor)
  130.   bottomLine.setTextColor(textColor)
  131.   while currPos > (centerRow - 3) do
  132.     mon.clear()
  133.     topLine.reposition(tColumn,currPos,#textOne,1,true)
  134.       topLine.write(textOne)
  135.     currPos = currPos - 1
  136.       os.sleep(speed)
  137.   end
  138.   topLine.setTextColor(textColor)
  139.   topLine.write(textOne)
  140.   os.sleep(speed*2)
  141.   currPos=height+3
  142.   while currPos > (centerRow) do
  143.     mon.clear()
  144.     midLine.reposition(mColumn,currPos,#textTwo,1,true)
  145.       midLine.write(textTwo)
  146.     topLine.redraw()
  147.     currPos = currPos - 1
  148.       os.sleep(speed)
  149.   end
  150.   topLine.redraw()
  151.   midLine.redraw()
  152.   os.sleep(speed*2)
  153.   currPos=height+3
  154.   while currPos > (centerRow + 3) do
  155.     mon.clear()
  156.     bottomLine.reposition(bColumn,currPos,#textThree,1,true)
  157.       bottomLine.write(textThree)
  158.     topLine.redraw()
  159.     midLine.redraw()
  160.     currPos = currPos - 1
  161.     os.sleep(speed)
  162.   end
  163.   topLine.redraw()
  164.   midLine.redraw()
  165.   bottomLine.redraw()
  166.   --os.sleep(speed*2)
  167.   mon = nil
  168. end
  169.  
  170. local function getTimeDate(timezone, offset)
  171.     if not os.loadAPI("rwt") then
  172.         if not shell.run("pastebin", "get", "TNLjCCKq", "rwt") then
  173.             log("Could not load Time API")
  174.         else
  175.             os.loadAPI("rwt")
  176.         end
  177.     end
  178.     local timeTable = rwt.getTimeTable(timezone,offset,true,10)
  179.     return timeTable
  180. end
  181.  
  182. local function updateTimeDate(timezone, offset)
  183.     if not os.loadAPI("rwt") then
  184.         if not shell.run("pastebin", "get", "TNLjCCKq", "rwt") then
  185.             print("Could not load Time API")
  186.         else
  187.             os.loadAPI("rwt")
  188.         end
  189.     end
  190.     if playerNearby() then
  191.         lastDateTime = rwt.getTimeTable(timezone,offset,true,10)
  192.     end
  193. end
  194.  
  195. local function scanPlayerData ()
  196.   storedPlayerData = loadTable("seenPlayers.dat")  
  197.   if not storedPlayerData then
  198.     log("Stored player data not found")
  199.     storedPlayerData = {}
  200.   else 
  201.     log("seenPlayers.dat Loaded")
  202.   end
  203.   local targets = PS.getTargets()
  204.   local playerCount = 0
  205.   for k, v in pairs(targets) do
  206.     if v.IsPlayer == true then
  207.         log("Player Target being updated")
  208.         pData = PS.getTargetDetails(k)
  209.         pID = pData.Username
  210.         storedPlayerData[pID] = {lastFullDate = lastDateTime.preferredDate, lastSeenMonth = lastDateTime.month,lastSeenDay = lastDateTime.day,lastSeenYear = lastDateTime.year,lastSeenTime = lastDateTime.preferredTime, playerHealth = pData.Health, playerFoodLevel = pData.FoodLevel,playerExpericenceLevel = pData.ExperienceLevel   }
  211.         playerCount = playerCount + 1
  212.         log(string.format("%s:%s", "Players updated", playerCount))
  213.     end
  214.   end
  215.   if playerCount == 0 then
  216.     log("No Players Updated")
  217.     return false
  218.   else
  219.     log(string.format("%s:%s", "Players updated", playerCount))
  220.     saveTable(storedPlayerData,"seenPlayers.dat")
  221.     log(string.format("%s:%s", "Players saved", playerCount))
  222.     return true
  223.   end
  224. end
  225.  
  226. local function displayPlayerData (display, message, size, color, bgColor, duration, rate)
  227.     local mon = display
  228.     local width = 0
  229.     local height = 0
  230.     local currLoop = 0
  231.     local speed = rate
  232.     local textColor = color
  233.     local backColor = bgColor
  234.     local textOne = message
  235.     local textScale = size
  236.     mon.setTextScale(textScale)
  237.     local width, height = mon.getSize()
  238.     log("Calling scanPlayerData")
  239.     result = scanPlayerData()
  240.     log("scanPlayerData returned")
  241.     log(tostring(result))
  242.     local row = 1
  243.     local tColumn = ((width / 2) - (#textOne / 2)) + 1.5
  244.     mon.setBackgroundColor(backColor)
  245.     mon.setTextColor(textColor)
  246.     mon.setCursorPos(tColumn, row) 
  247.     mon.write(textOne)
  248.     row = row + 4
  249.     if result then
  250.         log("scanPlayerData succeeded")
  251.         sortedPlayers = {}
  252.         for player, v in pairs(storedPlayerData) do
  253.             table.insert(sortedPlayers, {key=player, value=v}) 
  254.         end
  255.         table.sort(sortedPlayers, function(a,b) return a.value.lastFullDate > b.value.lastFullDate end)
  256.         saveTable(sortedPlayers,"sortedPlayers.dat")
  257.         for i, v in ipairs(sortedPlayers) do
  258.         --  print(sf("Row %d, key=%s, value=%s",i, v.key, v.value))
  259.                 mon.setCursorPos(2,row)
  260.                 mon.setTextColor(colors.white)
  261.                 mon.write(string.format("%s last seen on %s", v.key,v.value.lastFullDate))
  262.                 row = row + 1
  263.         end
  264.     else
  265.         log("scanPlayerData failed")
  266.     end
  267. end
  268.  
  269. local function displayDateTime (display, timezone, offset, size, color, bgColor, duration, rate)
  270.   updateTimeDate(timezone, offset)
  271.   local mTime = os.time()
  272.   local mon = display
  273.   local width = 0
  274.   local height = 0
  275.   local currLoop = 0
  276.   local speed = rate
  277.   local timeColor = color
  278.   local timeBackColor = bgColor
  279.   local timeOne = lastDateTime.dayNameLong .. "," .. lastDateTime.monthNameLong .. " "..tostring(lastDateTime.day) .. " " .. tostring(lastDateTime.year)
  280.   local timeTwo = "Minecraft Time is: " .. mTime
  281.   local timeThree = "EDT time is: " .. tostring(lastDateTime.preferredTime)
  282.   local timetextScale = size
  283.   local timeTRow = 1
  284.   local timeCColumn = 1
  285.   mon.clear()
  286.   mon.setTextScale(timetextScale)
  287.   local tWidth, tHeight = mon.getSize()
  288.   local timeCenterRow = (tHeight / 2)
  289.   local timeCurrPos = 1
  290.   local timeTColumn = ((tWidth / 2) - (#timeOne / 2)) + 1.5
  291.   local timeMColumn = ((tWidth / 2) - (#timeTwo / 2)) + 1.5
  292.   local timeBColumn = ((tWidth / 2) - (#timeThree / 2)) + 1.5
  293.   local timeTRow = (timeCenterRow - 3)
  294.   local timeBRow = (timeCenterRow + 3)
  295.   local topTimeLine = window.create(mon,timeTColumn,timeTRow,#timeOne,1,true)
  296.   topTimeLine.setBackgroundColor(timeBackColor)
  297.   topTimeLine.setTextColor(timeColor)
  298.   topTimeLine.write(timeOne)
  299.   local midTimeLine = window.create(mon,timeMColumn,timeCenterRow,#timeTwo,1,true)
  300.   midTimeLine.setBackgroundColor(timeBackColor)
  301.   midTimeLine.setTextColor(timeColor)
  302.   midTimeLine.write(timeTwo)
  303.   --if #timeThree > 30 then mon.setTextScale((timetextScale - 1)) end
  304.   local bottomTimeLine = window.create(mon,timeBColumn,timeBRow,#timeThree,1,true)  
  305.   bottomTimeLine.setBackgroundColor(timeBackColor)
  306.   bottomTimeLine.setTextColor(timeColor)
  307.   bottomTimeLine.write(timeThree)
  308.   mon=nil
  309. end
  310.  
  311. local function displaySun (display, timezone, offset, size, color, bgColor, duration, rate)
  312.   updateTimeDate(timezone, offset)
  313.   local mTime = os.time()
  314.   local mon = display
  315.   local width = 0
  316.   local height = 0
  317.   local currLoop = 0
  318.   local speed = rate
  319.   local timeColor = color
  320.   local timeBackColor = bgColor
  321.   local timeOne = "Sun rise: " .. mTime
  322.   local timeTwo = "Sun set: " .. mTime
  323.   local timeThree = "EDT time is: " .. lastDateTime.preferredTime
  324.   local timetextScale = size
  325.   local timeTRow = 1
  326.   local timeCColumn = 1
  327.   mon.clear()
  328.   mon.setTextScale(timetextScale)
  329.   local tWidth, tHeight = mon.getSize()
  330.   local timeCenterRow = (tHeight / 2)
  331.   local timeCurrPos = 1
  332.   local timeTColumn = ((tWidth / 2) - (#timeOne / 2)) + 1.5
  333.   local timeMColumn = ((tWidth / 2) - (#timeTwo / 2)) + 1.5
  334.   local timeBColumn = ((tWidth / 2) - (#timeThree / 2)) + 1.5
  335.   local timeTRow = (timeCenterRow - 3)
  336.   local timeBRow = (timeCenterRow + 3)
  337.   local topTimeLine = window.create(mon,timeTColumn,timeTRow,#timeOne,1,true)
  338.   topTimeLine.setBackgroundColor(timeBackColor)
  339.   topTimeLine.setTextColor(timeColor)
  340.   topTimeLine.write(timeOne)
  341.   local midTimeLine = window.create(mon,timeMColumn,timeCenterRow,#timeTwo,1,true)
  342.   midTimeLine.setBackgroundColor(timeBackColor)
  343.   midTimeLine.setTextColor(timeColor)
  344.   midTimeLine.write(timeTwo)
  345.   --if #timeThree > 30 then mon.setTextScale((timetextScale - 1)) end
  346.   local bottomTimeLine = window.create(mon,timeBColumn,timeBRow,#timeThree,1,true)  
  347.   bottomTimeLine.setBackgroundColor(timeBackColor)
  348.   bottomTimeLine.setTextColor(timeColor)
  349.   bottomTimeLine.write(timeThree)
  350.   mon=nil
  351. end
  352.  
  353. log("***************************************************")
  354. log("Logging Started")
  355. lastDateTime = getTimeDate("utc", -5)
  356. while true do
  357. displayRollMarquee(monitor[1], "Welcome",  "to", "Valhalla Sector", 5 ,colors.white,colors.black, 5, .15)
  358. displayRollMarquee(monitor[2], "Welcome",  "to", "Valhalla Sector", 5 ,colors.white,colors.black, 5, .15)
  359. displayRollMarquee(monitor[3], "Welcome",  "to", "Valhalla Sector", 5 ,colors.white,colors.black, 5, .15)
  360. displayRollMarquee(monitor[4], "Welcome",  "to", "Valhalla Sector", 5 ,colors.white,colors.black, 5, .15)
  361. os.sleep(10)
  362. displayDateTime(monitor[1],"utc",-5,3,colors.white,colors.black,5,.15)
  363. displayDateTime(monitor[2],"utc",-5,3,colors.white,colors.black,5,.15)
  364. displayDateTime(monitor[3],"utc",-5,3,colors.white,colors.black,5,.15)
  365. displayDateTime(monitor[4],"utc",-5,3,colors.white,colors.black,5,.15)
  366. os.sleep(10)
  367. displayPlayerData(monitor[1],"Recently Seen Players", 2 ,colors.blue,colors.black, 5, .15)
  368. displayPlayerData(monitor[2],"Recently Seen Players", 2 ,colors.blue,colors.black, 5, .15)
  369. displayPlayerData(monitor[3],"Recently Seen Players", 2 ,colors.blue,colors.black, 5, .15)
  370. displayPlayerData(monitor[4],"Recently Seen Players", 2 ,colors.blue,colors.black, 5, .15)
  371. os.sleep(10)
  372. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement