tibia-client/modules/client_stats/stats.lua

124 lines
3.9 KiB
Lua
Raw Normal View History

UUID = nil
2012-08-22 10:09:46 +02:00
HOST = 'otclient.herokuapp.com'
PORT = 80
FIRST_REPORT_DELAY = 15
2012-08-23 17:18:23 +02:00
REPORT_DELAY = 60
sendReportEvent = nil
firstReportEvent = nil
2012-08-23 03:50:03 +02:00
function initUUID()
UUID = g_settings.getString('report-uuid')
if not UUID or #UUID ~= 36 then
UUID = g_crypt.genUUID()
g_settings.set('report-uuid', UUID)
end
end
2012-08-22 10:51:31 +02:00
function init()
2012-08-23 17:18:23 +02:00
connect(g_game, { onGameStart = onGameStart,
onGameEnd = onGameEnd })
2012-08-22 10:51:31 +02:00
2012-08-23 03:50:03 +02:00
initUUID()
2012-08-22 10:51:31 +02:00
end
function terminate()
2012-08-23 17:18:23 +02:00
disconnect(g_game, { onGameStart = onGameStart,
onGameEnd = onGameEnd })
removeEvent(firstReportEvent)
removeEvent(sendReportEvent)
2012-08-22 10:51:31 +02:00
end
function configure(host, port, delay)
if not host then return end
HOST = host
PORT = port or PORT
REPORT_DELAY = delay or REPORT_DELAY
end
2012-08-23 03:50:03 +02:00
function sendReport()
if not HOST then return end
2012-08-23 17:18:23 +02:00
local protocolHttp = ProtocolHttp.create()
protocolHttp.onConnect = onConnect
protocolHttp.onRecv = onRecv
protocolHttp.onError = onError
2012-08-22 10:51:31 +02:00
protocolHttp:connect(HOST, PORT)
end
function onGameStart()
if not HOST then return end
removeEvent(firstReportEvent)
removeEvent(sendReportEvent)
firstReportEvent = addEvent(sendReport, FIRST_REPORT_DELAY*1000)
2012-08-23 17:18:23 +02:00
sendReportEvent = cycleEvent(sendReport, REPORT_DELAY*1000)
end
function onGameEnd()
removeEvent(firstReportEvent)
removeEvent(sendReportEvent)
2012-08-22 10:51:31 +02:00
end
function onConnect(protocol)
if not g_game.isOnline() then
protocol:disconnect()
return
end
local post = ''
2012-08-23 03:50:03 +02:00
post = post .. 'uid=' .. UUID
2012-08-24 19:16:30 +02:00
post = post .. '&report_delay=' .. REPORT_DELAY
post = post .. '&os=' .. g_app.getOs()
2012-08-22 10:51:31 +02:00
post = post .. '&graphics_vendor=' .. g_graphics.getVendor()
post = post .. '&graphics_renderer=' .. g_graphics.getRenderer()
post = post .. '&graphics_version=' .. g_graphics.getVersion()
post = post .. '&painter_engine=' .. g_graphics.getPainterEngine()
post = post .. '&fps=' .. g_app.getBackgroundPaneFps()
post = post .. '&max_fps=' .. g_app.getBackgroundPaneMaxFps()
2012-08-23 03:50:03 +02:00
post = post .. '&fullscreen=' .. tostring(g_window.isFullscreen())
2012-08-22 10:51:31 +02:00
post = post .. '&window_width=' .. g_window.getWidth()
post = post .. '&window_height=' .. g_window.getHeight()
post = post .. '&player_name=' .. g_game.getCharacterName()
2012-08-24 19:16:30 +02:00
post = post .. '&world_name=' .. g_game.getWorldName()
2014-01-06 22:02:45 +01:00
post = post .. '&otserv_host=' .. G.host
post = post .. '&otserv_port=' .. G.port
post = post .. '&otserv_protocol=' .. g_game.getProtocolVersion()
post = post .. '&otserv_client=' .. g_game.getClientVersion()
2012-08-22 10:51:31 +02:00
post = post .. '&build_version=' .. g_app.getVersion()
post = post .. '&build_revision=' .. g_app.getBuildRevision()
post = post .. '&build_commit=' .. g_app.getBuildCommit()
post = post .. '&build_date=' .. g_app.getBuildDate()
post = post .. '&display_width=' .. g_window.getDisplayWidth()
post = post .. '&display_height=' .. g_window.getDisplayHeight()
post = post .. '&cpu=' .. g_platform.getCPUName()
post = post .. '&mem=' .. g_platform.getTotalSystemMemory()
post = post .. '&os_name=' .. g_platform.getOSName()
post = post .. getAdditionalData()
2012-08-22 10:51:31 +02:00
local message = ''
2012-08-23 17:37:26 +02:00
message = message .. "POST /report HTTP/1.1\r\n"
2012-08-22 10:51:31 +02:00
message = message .. "Host: " .. HOST .. "\r\n"
message = message .. "Accept: */*\r\n"
message = message .. "Connection: close\r\n"
message = message .. "Content-Type: application/x-www-form-urlencoded\r\n"
message = message .. "Content-Length: " .. post:len() .. "\r\n\r\n"
message = message .. post
protocol:send(message)
protocol:recv()
end
function getAdditionalData()
return ''
end
2012-08-22 10:51:31 +02:00
function onRecv(protocol, message)
if string.find(message, 'HTTP/1.1 200 OK') then
2012-08-23 03:50:03 +02:00
--pinfo('Stats sent to server successfully!')
2012-08-22 10:51:31 +02:00
end
protocol:disconnect()
end
function onError(protocol, message, code)
pdebug('Could not send statistics: ' .. message)
2012-08-22 10:51:31 +02:00
end