2018-06-17 02:59:23 +00:00
|
|
|
package doodle
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2018-10-19 20:31:58 +00:00
|
|
|
"strings"
|
2018-06-17 02:59:23 +00:00
|
|
|
|
2018-10-19 20:31:58 +00:00
|
|
|
"git.kirsle.net/apps/doodle/balance"
|
2018-07-25 03:57:22 +00:00
|
|
|
"git.kirsle.net/apps/doodle/doodads"
|
2018-06-17 02:59:23 +00:00
|
|
|
"git.kirsle.net/apps/doodle/render"
|
2018-10-19 20:31:58 +00:00
|
|
|
"git.kirsle.net/apps/doodle/ui"
|
2018-06-17 02:59:23 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Frames to cache for FPS calculation.
|
|
|
|
const maxSamples = 100
|
|
|
|
|
2018-07-26 02:38:54 +00:00
|
|
|
// Debug mode options, these can be enabled in the dev console
|
|
|
|
// like: boolProp DebugOverlay true
|
|
|
|
var (
|
2018-09-23 22:20:45 +00:00
|
|
|
DebugOverlay = true
|
2018-07-26 02:38:54 +00:00
|
|
|
DebugCollision = true
|
2018-10-19 20:31:58 +00:00
|
|
|
|
|
|
|
DebugTextPadding int32 = 8
|
|
|
|
DebugTextSize = 24
|
|
|
|
DebugTextColor = render.SkyBlue
|
|
|
|
DebugTextStroke = render.Grey
|
|
|
|
DebugTextShadow = render.Black
|
2018-07-26 02:38:54 +00:00
|
|
|
)
|
|
|
|
|
2018-06-17 02:59:23 +00:00
|
|
|
var (
|
|
|
|
fpsCurrentTicks uint32 // current time we get sdl.GetTicks()
|
|
|
|
fpsLastTime uint32 // last time we printed the fpsCurrentTicks
|
|
|
|
fpsCurrent int
|
|
|
|
fpsFrames int
|
|
|
|
fpsSkipped uint32
|
|
|
|
fpsInterval uint32 = 1000
|
2018-10-19 20:31:58 +00:00
|
|
|
|
|
|
|
// XXX: some opt-in WorldIndex variables for the debug overlay.
|
|
|
|
// This is the world pixel that the mouse cursor is over,
|
|
|
|
// the Cursor + Scroll position of the canvas.
|
|
|
|
debugWorldIndex render.Point
|
2018-06-17 02:59:23 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// DrawDebugOverlay draws the debug FPS text on the SDL canvas.
|
|
|
|
func (d *Doodle) DrawDebugOverlay() {
|
2018-07-26 02:38:54 +00:00
|
|
|
if !d.Debug || !DebugOverlay {
|
2018-06-17 02:59:23 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-10-19 20:31:58 +00:00
|
|
|
var (
|
|
|
|
darken = balance.DebugStrokeDarken
|
|
|
|
Yoffset int32 = 20 // leave room for the menu bar
|
|
|
|
Xoffset int32 = 5
|
|
|
|
keys = []string{
|
|
|
|
" FPS:",
|
|
|
|
"Scene:",
|
|
|
|
"Pixel:",
|
|
|
|
"Mouse:",
|
|
|
|
}
|
|
|
|
values = []string{
|
|
|
|
fmt.Sprintf("%d (skip: %dms)", fpsCurrent, fpsSkipped),
|
|
|
|
d.Scene.Name(),
|
|
|
|
debugWorldIndex.String(),
|
|
|
|
fmt.Sprintf("%d,%d", d.event.CursorX.Now, d.event.CursorY.Now),
|
|
|
|
}
|
2018-06-17 02:59:23 +00:00
|
|
|
)
|
2018-07-22 00:12:22 +00:00
|
|
|
|
2018-10-19 20:31:58 +00:00
|
|
|
key := ui.NewLabel(ui.Label{
|
|
|
|
Text: strings.Join(keys, "\n"),
|
|
|
|
Font: render.Text{
|
|
|
|
Size: balance.DebugFontSize,
|
|
|
|
FontFilename: balance.ShellFontFilename,
|
|
|
|
Color: balance.DebugLabelColor,
|
|
|
|
Stroke: balance.DebugLabelColor.Darken(darken),
|
2018-07-22 00:12:22 +00:00
|
|
|
},
|
2018-10-19 20:31:58 +00:00
|
|
|
})
|
|
|
|
key.Compute(d.Engine)
|
|
|
|
key.Present(d.Engine, render.NewPoint(
|
|
|
|
DebugTextPadding+Xoffset,
|
|
|
|
DebugTextPadding+Yoffset,
|
|
|
|
))
|
|
|
|
|
|
|
|
value := ui.NewLabel(ui.Label{
|
|
|
|
Text: strings.Join(values, "\n"),
|
|
|
|
Font: render.Text{
|
|
|
|
Size: balance.DebugFontSize,
|
|
|
|
FontFilename: balance.DebugFontFilename,
|
|
|
|
Color: balance.DebugValueColor,
|
|
|
|
Stroke: balance.DebugValueColor.Darken(darken),
|
2018-07-22 00:12:22 +00:00
|
|
|
},
|
2018-10-19 20:31:58 +00:00
|
|
|
})
|
|
|
|
value.Compute(d.Engine)
|
|
|
|
value.Present(d.Engine, render.NewPoint(
|
|
|
|
DebugTextPadding+Xoffset+key.Size().W+DebugTextPadding,
|
|
|
|
DebugTextPadding+Yoffset, // padding to not overlay menu bar
|
|
|
|
))
|
2018-06-17 02:59:23 +00:00
|
|
|
}
|
|
|
|
|
2018-07-25 03:57:22 +00:00
|
|
|
// DrawCollisionBox draws the collision box around a Doodad.
|
2018-09-26 17:04:46 +00:00
|
|
|
func (d *Doodle) DrawCollisionBox(actor doodads.Actor) {
|
2018-07-26 02:38:54 +00:00
|
|
|
if !d.Debug || !DebugCollision {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-07-25 03:57:22 +00:00
|
|
|
var (
|
|
|
|
rect = doodads.GetBoundingRect(actor)
|
|
|
|
box = doodads.GetCollisionBox(rect)
|
|
|
|
)
|
|
|
|
|
|
|
|
d.Engine.DrawLine(render.DarkGreen, box.Top[0], box.Top[1])
|
|
|
|
d.Engine.DrawLine(render.DarkBlue, box.Bottom[0], box.Bottom[1])
|
|
|
|
d.Engine.DrawLine(render.DarkYellow, box.Left[0], box.Left[1])
|
|
|
|
d.Engine.DrawLine(render.Red, box.Right[0], box.Right[1])
|
|
|
|
}
|
|
|
|
|
2018-06-17 02:59:23 +00:00
|
|
|
// TrackFPS shows the current FPS once per second.
|
|
|
|
func (d *Doodle) TrackFPS(skipped uint32) {
|
|
|
|
fpsFrames++
|
2018-07-22 00:12:22 +00:00
|
|
|
fpsCurrentTicks = d.Engine.GetTicks()
|
2018-06-17 02:59:23 +00:00
|
|
|
|
|
|
|
// Skip the first second.
|
|
|
|
if fpsCurrentTicks < fpsInterval {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if fpsLastTime < fpsCurrentTicks-fpsInterval {
|
|
|
|
fpsLastTime = fpsCurrentTicks
|
|
|
|
fpsCurrent = fpsFrames
|
|
|
|
fpsFrames = 0
|
|
|
|
fpsSkipped = skipped
|
|
|
|
}
|
|
|
|
}
|