Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- os.loadAPI("ocs/apis/sensor")
- WS = sensor.wrap("left")
- PS = sensor.wrap("right")
- monitor = {}
- local monitor = {peripheral.find("monitor")}
- local function log(msg) -- adapted from: https://github.com/rxi/log.lua
- if not os.loadAPI("rwt") then
- if not shell.run("pastebin", "get", "TNLjCCKq", "rwt") then
- print("Could not load Time API")
- else
- os.loadAPI("rwt")
- end
- end
- logTime = rwt.getTime("utc",-4,dateTime24_mmddyyyy,10)
- local fp = io.open("CCBillboard.log", "a")
- local str = string.format("[%s]%s\n",logTime, msg)
- fp:write(str)
- fp:close()
- end
- local function round(num, idp) -- Thank you: http://lua-users.org/wiki/SimpleRound
- local mult = 10^(idp or 0)
- return math.floor(num * mult + 0.5) / mult
- end
- 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/
- log("Saving Table Data...")
- hWrite = fs.open(fileName, "w")
- hWrite.write(textutils.serialize(table))
- hWrite.close()
- end
- 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/
- log("Loading Table Data...")
- local hRead = fs.open(fileName, "r")
- if hRead then
- local hTable = textutils.unserialise(hRead.readAll())
- hRead.close()
- return hTable
- else
- return nil
- end
- end
- local function getMonitorSize(display)
- local mon = display
- local xSize, ySize = mon.getSize()
- return xSize, ySize
- end
- function getDistance(pos)
- local xd = pos.X - offset.X
- local yd = pos.Y - offset.Y
- local zd = pos.Z - offset.Z
- return math.sqrt(xd*xd + yd*yd + zd*zd)
- end
- local function playerNearby()
- local targets = PS.getTargets()
- term.write("Player Nearby Called")
- term.setCursorPos(1,3)
- for k, v in pairs(targets) do
- if v.IsPlayer == true then
- term.write("Player found")
- term.setCursorPos(1,4)
- return true
- end
- end
- return false
- end
- local function displayTitleMarquee (display, message, size, color, bgColor, duration, rate)
- local mon = display
- local width = 0
- local height = 0
- local currLoop = 0
- local speed = rate
- local textColor = colors.white
- local backColor = colors.black
- local text = message
- local textScale = size
- width, height = mon.getSize()
- local loopCount = ((#text + 4) * duration) + (width * 2)
- local currPos = (width + 2)
- mon.setTextScale(5)
- mon.setTextColor(textColor)
- mon.setBackgroundColor(backColor)
- for currLoop = 1, loopCount do
- if currPos == 1 - (#text + 3) then
- currPos = width + 2
- end
- mon.setCursorPos(currPos, 1)
- mon.write(text)
- currPos = currPos - 1
- os.sleep(0.15)
- end
- end
- local function displayRollMarquee (display, lineOne, lineTwo, lineThree, size, color, bgColor, duration, rate)
- local mon = display
- local width = 0
- local height = 0
- local currLoop = 0
- local speed = rate
- local textColor = color
- local backColor = bgColor
- local textOne = lineOne
- local textTwo = lineTwo
- local textThree = lineThree
- local textScale = size
- local tRow = 1
- local cColumn = 0
- mon.setTextScale(5)
- mon.clear()
- local width, height = mon.getSize()
- local centerRow = (height / 2)
- local currPos = (height + 3)
- local tColumn = ((width / 2) - (#textOne / 2)) + 1.5
- local mColumn = ((width / 2) - (#textTwo / 2)) + 1.5
- local bColumn = ((width / 2) - (#textThree / 2))+ 1.5
- local topLine = window.create(mon,currPos,tColumn,#textOne,1,true)
- topLine.setBackgroundColor(backColor)
- topLine.setTextColor(textColor)
- local midLine = window.create(mon,currPos,mColumn,#textTwo,1)
- midLine.setBackgroundColor(backColor)
- midLine.setTextColor(textColor)
- local bottomLine = window.create(mon,currPos,bColumn,#textThree,1,true)
- bottomLine.setBackgroundColor(backColor)
- bottomLine.setTextColor(textColor)
- while currPos > (centerRow - 3) do
- mon.clear()
- topLine.reposition(tColumn,currPos,#textOne,1,true)
- topLine.write(textOne)
- currPos = currPos - 1
- os.sleep(speed)
- end
- topLine.setTextColor(textColor)
- topLine.write(textOne)
- os.sleep(speed*2)
- currPos=height+3
- while currPos > (centerRow) do
- mon.clear()
- midLine.reposition(mColumn,currPos,#textTwo,1,true)
- midLine.write(textTwo)
- topLine.redraw()
- currPos = currPos - 1
- os.sleep(speed)
- end
- topLine.redraw()
- midLine.redraw()
- os.sleep(speed*2)
- currPos=height+3
- while currPos > (centerRow + 3) do
- mon.clear()
- bottomLine.reposition(bColumn,currPos,#textThree,1,true)
- bottomLine.write(textThree)
- topLine.redraw()
- midLine.redraw()
- currPos = currPos - 1
- os.sleep(speed)
- end
- topLine.redraw()
- midLine.redraw()
- bottomLine.redraw()
- --os.sleep(speed*2)
- mon = nil
- end
- local function getTimeDate(timezone, offset)
- if not os.loadAPI("rwt") then
- if not shell.run("pastebin", "get", "TNLjCCKq", "rwt") then
- log("Could not load Time API")
- else
- os.loadAPI("rwt")
- end
- end
- local timeTable = rwt.getTimeTable(timezone,offset,true,10)
- return timeTable
- end
- local function updateTimeDate(timezone, offset)
- if not os.loadAPI("rwt") then
- if not shell.run("pastebin", "get", "TNLjCCKq", "rwt") then
- print("Could not load Time API")
- else
- os.loadAPI("rwt")
- end
- end
- if playerNearby() then
- lastDateTime = rwt.getTimeTable(timezone,offset,true,10)
- end
- end
- local function scanPlayerData ()
- storedPlayerData = loadTable("seenPlayers.dat")
- if not storedPlayerData then
- log("Stored player data not found")
- storedPlayerData = {}
- else
- log("seenPlayers.dat Loaded")
- end
- local targets = PS.getTargets()
- local playerCount = 0
- for k, v in pairs(targets) do
- if v.IsPlayer == true then
- log("Player Target being updated")
- pData = PS.getTargetDetails(k)
- pID = pData.Username
- 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 }
- playerCount = playerCount + 1
- log(string.format("%s:%s", "Players updated", playerCount))
- end
- end
- if playerCount == 0 then
- log("No Players Updated")
- return false
- else
- log(string.format("%s:%s", "Players updated", playerCount))
- saveTable(storedPlayerData,"seenPlayers.dat")
- log(string.format("%s:%s", "Players saved", playerCount))
- return true
- end
- end
- local function displayPlayerData (display, message, size, color, bgColor, duration, rate)
- local mon = display
- local width = 0
- local height = 0
- local currLoop = 0
- local speed = rate
- local textColor = color
- local backColor = bgColor
- local textOne = message
- local textScale = size
- mon.setTextScale(textScale)
- local width, height = mon.getSize()
- log("Calling scanPlayerData")
- result = scanPlayerData()
- log("scanPlayerData returned")
- log(tostring(result))
- local row = 1
- local tColumn = ((width / 2) - (#textOne / 2)) + 1.5
- mon.setBackgroundColor(backColor)
- mon.setTextColor(textColor)
- mon.setCursorPos(tColumn, row)
- mon.write(textOne)
- row = row + 4
- if result then
- log("scanPlayerData succeeded")
- sortedPlayers = {}
- for player, v in pairs(storedPlayerData) do
- table.insert(sortedPlayers, {key=player, value=v})
- end
- table.sort(sortedPlayers, function(a,b) return a.value.lastFullDate > b.value.lastFullDate end)
- saveTable(sortedPlayers,"sortedPlayers.dat")
- for i, v in ipairs(sortedPlayers) do
- -- print(sf("Row %d, key=%s, value=%s",i, v.key, v.value))
- mon.setCursorPos(2,row)
- mon.setTextColor(colors.white)
- mon.write(string.format("%s last seen on %s", v.key,v.value.lastFullDate))
- row = row + 1
- end
- else
- log("scanPlayerData failed")
- end
- end
- local function displayDateTime (display, timezone, offset, size, color, bgColor, duration, rate)
- updateTimeDate(timezone, offset)
- local mTime = os.time()
- local mon = display
- local width = 0
- local height = 0
- local currLoop = 0
- local speed = rate
- local timeColor = color
- local timeBackColor = bgColor
- local timeOne = lastDateTime.dayNameLong .. "," .. lastDateTime.monthNameLong .. " "..tostring(lastDateTime.day) .. " " .. tostring(lastDateTime.year)
- local timeTwo = "Minecraft Time is: " .. mTime
- local timeThree = "EDT time is: " .. tostring(lastDateTime.preferredTime)
- local timetextScale = size
- local timeTRow = 1
- local timeCColumn = 1
- mon.clear()
- mon.setTextScale(timetextScale)
- local tWidth, tHeight = mon.getSize()
- local timeCenterRow = (tHeight / 2)
- local timeCurrPos = 1
- local timeTColumn = ((tWidth / 2) - (#timeOne / 2)) + 1.5
- local timeMColumn = ((tWidth / 2) - (#timeTwo / 2)) + 1.5
- local timeBColumn = ((tWidth / 2) - (#timeThree / 2)) + 1.5
- local timeTRow = (timeCenterRow - 3)
- local timeBRow = (timeCenterRow + 3)
- local topTimeLine = window.create(mon,timeTColumn,timeTRow,#timeOne,1,true)
- topTimeLine.setBackgroundColor(timeBackColor)
- topTimeLine.setTextColor(timeColor)
- topTimeLine.write(timeOne)
- local midTimeLine = window.create(mon,timeMColumn,timeCenterRow,#timeTwo,1,true)
- midTimeLine.setBackgroundColor(timeBackColor)
- midTimeLine.setTextColor(timeColor)
- midTimeLine.write(timeTwo)
- --if #timeThree > 30 then mon.setTextScale((timetextScale - 1)) end
- local bottomTimeLine = window.create(mon,timeBColumn,timeBRow,#timeThree,1,true)
- bottomTimeLine.setBackgroundColor(timeBackColor)
- bottomTimeLine.setTextColor(timeColor)
- bottomTimeLine.write(timeThree)
- mon=nil
- end
- local function displaySun (display, timezone, offset, size, color, bgColor, duration, rate)
- updateTimeDate(timezone, offset)
- local mTime = os.time()
- local mon = display
- local width = 0
- local height = 0
- local currLoop = 0
- local speed = rate
- local timeColor = color
- local timeBackColor = bgColor
- local timeOne = "Sun rise: " .. mTime
- local timeTwo = "Sun set: " .. mTime
- local timeThree = "EDT time is: " .. lastDateTime.preferredTime
- local timetextScale = size
- local timeTRow = 1
- local timeCColumn = 1
- mon.clear()
- mon.setTextScale(timetextScale)
- local tWidth, tHeight = mon.getSize()
- local timeCenterRow = (tHeight / 2)
- local timeCurrPos = 1
- local timeTColumn = ((tWidth / 2) - (#timeOne / 2)) + 1.5
- local timeMColumn = ((tWidth / 2) - (#timeTwo / 2)) + 1.5
- local timeBColumn = ((tWidth / 2) - (#timeThree / 2)) + 1.5
- local timeTRow = (timeCenterRow - 3)
- local timeBRow = (timeCenterRow + 3)
- local topTimeLine = window.create(mon,timeTColumn,timeTRow,#timeOne,1,true)
- topTimeLine.setBackgroundColor(timeBackColor)
- topTimeLine.setTextColor(timeColor)
- topTimeLine.write(timeOne)
- local midTimeLine = window.create(mon,timeMColumn,timeCenterRow,#timeTwo,1,true)
- midTimeLine.setBackgroundColor(timeBackColor)
- midTimeLine.setTextColor(timeColor)
- midTimeLine.write(timeTwo)
- --if #timeThree > 30 then mon.setTextScale((timetextScale - 1)) end
- local bottomTimeLine = window.create(mon,timeBColumn,timeBRow,#timeThree,1,true)
- bottomTimeLine.setBackgroundColor(timeBackColor)
- bottomTimeLine.setTextColor(timeColor)
- bottomTimeLine.write(timeThree)
- mon=nil
- end
- log("***************************************************")
- log("Logging Started")
- lastDateTime = getTimeDate("utc", -5)
- while true do
- displayRollMarquee(monitor[1], "Welcome", "to", "Valhalla Sector", 5 ,colors.white,colors.black, 5, .15)
- displayRollMarquee(monitor[2], "Welcome", "to", "Valhalla Sector", 5 ,colors.white,colors.black, 5, .15)
- displayRollMarquee(monitor[3], "Welcome", "to", "Valhalla Sector", 5 ,colors.white,colors.black, 5, .15)
- displayRollMarquee(monitor[4], "Welcome", "to", "Valhalla Sector", 5 ,colors.white,colors.black, 5, .15)
- os.sleep(10)
- displayDateTime(monitor[1],"utc",-5,3,colors.white,colors.black,5,.15)
- displayDateTime(monitor[2],"utc",-5,3,colors.white,colors.black,5,.15)
- displayDateTime(monitor[3],"utc",-5,3,colors.white,colors.black,5,.15)
- displayDateTime(monitor[4],"utc",-5,3,colors.white,colors.black,5,.15)
- os.sleep(10)
- displayPlayerData(monitor[1],"Recently Seen Players", 2 ,colors.blue,colors.black, 5, .15)
- displayPlayerData(monitor[2],"Recently Seen Players", 2 ,colors.blue,colors.black, 5, .15)
- displayPlayerData(monitor[3],"Recently Seen Players", 2 ,colors.blue,colors.black, 5, .15)
- displayPlayerData(monitor[4],"Recently Seen Players", 2 ,colors.blue,colors.black, 5, .15)
- os.sleep(10)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement