local Global = require 'utils.global' local Game = require 'utils.game' local Token = require 'utils.token' local Server = require 'utils.server' local Event = require 'utils.event' local table = require 'utils.table' local Print = require('utils.print_override') local raw_print = Print.raw_print local session_data_set = 'sessions' local error_offline = '[ERROR] Webpanel is offline.' local session = {} local online_track = {} local trusted = {} local set_data = Server.set_data local try_get_data = Server.try_get_data local concat = table.concat local trusted_value = 2592000 local nth_tick = 18000 -- nearest prime to 5 minutes in ticks Global.register( { session = session, online_track = online_track, trusted = trusted }, function(tbl) session = tbl.session online_track = tbl.online_track trusted = tbl.trusted end ) local Public = {} local try_download_data = Token.register( function(data) local key = data.key local value = data.value if value then session[key] = value if value > trusted_value then trusted[key] = true end else session[key] = 0 trusted[key] = false set_data(session_data_set, key, session[key]) end end ) local try_upload_data = Token.register( function(data) local key = data.key local value = data.value local player = game.get_player(key) if value then local old_time_ingame = value if not online_track[key] then online_track[key] = 0 end local new_time = old_time_ingame + player.online_time - online_track[key] if new_time <= 0 then new_time = old_time_ingame + player.online_time print('[ERROR] ' .. key .. ' had new time set as negative value: ' .. new_time) return end set_data(session_data_set, key, new_time) session[key] = new_time online_track[key] = player.online_time end end ) --- Uploads each connected players play time to the dataset local function upload_data() for _, p in pairs(game.connected_players) do Public.try_ul_data(p.name) end end --- Prints out game.tick to real hour/minute ---@param int function Public.format_time(ticks) local seconds = ticks / 60 local minutes = math.floor((seconds) / 60) local hours = math.floor((minutes) / 60) local min = math.floor(minutes - 60 * hours) return string.format('%dh:%02dm', hours, minutes, min) end --- Tries to get data from the webpanel and updates the local table with values. -- @param data_set player token function Public.try_dl_data(key) key = tostring(key) local secs = Server.get_current_time() if secs == nil then raw_print(error_offline) session[key] = game.players[key].online_time return else try_get_data(session_data_set, key, try_download_data) end end --- Tries to get data from the webpanel and updates the local table with values. -- @param data_set player token function Public.try_ul_data(key) key = tostring(key) local secs = Server.get_current_time() if secs == nil then raw_print(error_offline) return else try_get_data(session_data_set, key, try_upload_data) end end --- Checks if a player exists within the table -- @param player_name -- @return function Public.exists(player_name) return session[player_name] ~= nil end --- Prints a list of all players in the player_session table. function Public.print_sessions() local result = {} for k, _ in pairs(session) do result[#result + 1] = k end result = concat(result, ', ') Game.player_print(result) end --- Returns the table of session -- @return function Public.get_session_table() return session end --- Returns the table of online_track -- @return
function Public.get_tracker_table() return online_track end --- Returns the table of trusted -- @return
function Public.get_trusted_table() return trusted end Event.add( defines.events.on_player_joined_game, function(event) local player = game.get_player(event.player_index) if not player then return end Public.try_dl_data(player.name) end ) Event.add( defines.events.on_player_left_game, function(event) local player = game.get_player(event.player_index) if not player then return end Public.try_ul_data(player.name) end ) Event.on_nth_tick(nth_tick, upload_data) Server.on_data_set_changed( session_data_set, function(data) session[data.key] = data.value if data.value > trusted_value then trusted[data.key] = true else if trusted[data.key] then trusted[data.key] = false end end end ) return Public