Compare commits

...

2 Commits

Author SHA1 Message Date
Jill 97f91fb298 fix up saving indicator 2022-09-24 12:33:59 +03:00
Jill 89adfc8cb4 functional profiler :) 2022-09-24 12:25:40 +03:00
3 changed files with 14 additions and 15 deletions

View File

@ -698,7 +698,9 @@
end
end
uranium:call('preUpdate', dt)
uranium:call('update', dt)
uranium:call('postUpdate', dt)
errored = false

View File

@ -14,7 +14,7 @@ if PROFILER_ENABLED then
local function draw()
if not profilerInfo[profilerShowing] then return end
quad:diffuse(0.2, 1, 0.2, 0.9)
quad:diffuse(0.2, 1, 0.2, 0.8)
quad:align(0, 0)
text:align(0, 0)
text:shadowlength(0)
@ -28,13 +28,13 @@ if PROFILER_ENABLED then
quad:Draw()
text:settext((math.floor(e.t * 100000) / 100) .. 'ms')
text:xy(0, i * 24)
text:zoom(0.3)
text:xy(0, i * 24 - 3)
text:zoom(0.4)
text:diffuse(0.2, 0.2, 0.2, 0.9)
text:Draw()
text:settext(e.src)
text:xy(0, i * 24 + 12)
text:zoom(0.2)
text:xy(0, i * 24 + 8)
text:zoom(0.4)
text:diffuse(0.1, 0.1, 0.1, 0.9)
text:Draw()
end
@ -49,7 +49,7 @@ if PROFILER_ENABLED then
text:Draw()
end
function uranium.update(dt)
function uranium.postUpdate(dt)
max(dt * 12)
draw()
end

View File

@ -2,6 +2,7 @@ local self = {}
local binser = require('stdlib.binser')
require('stdlib.util')
local scheduler = require('stdlib.scheduler')
local savedataName
local savedata = {
@ -158,6 +159,11 @@ function self.save(instant)
uranium:call('saveFinished')
else
self.saveNextFrame = true
scheduler:scheduleInTicks(2, function()
self.saveNextFrame = false
PROFILEMAN:SaveMachineProfile()
uranium:call('saveFinished')
end)
end
end
@ -177,15 +183,6 @@ function uranium.init()
end
end
function uranium.update()
if self.saveNextFrame then
self.saveNextFrame = false
PROFILEMAN:SaveMachineProfile()
uranium:call('saveFinished')
print('saved to profile')
end
end
function self.enableAutosave()
checkIfInitialized()
function uranium.exit()