ui: Implement fullscreen for browsers (#387)

This commit is contained in:
Hajime Hoshi 2017-07-22 01:52:08 +09:00
parent 064b359c78
commit 63e3bc73d6

View File

@ -27,7 +27,11 @@ import (
var canvas *js.Object var canvas *js.Object
type userInterface struct { type userInterface struct {
scale float64 width int
height int
scale float64
fullscreen bool
deviceScale float64 deviceScale float64
sizeChanged bool sizeChanged bool
windowFocus bool windowFocus bool
@ -44,26 +48,23 @@ func shown() bool {
} }
func SetScreenSize(width, height int) bool { func SetScreenSize(width, height int) bool {
return currentUI.setScreenSize(width, height, currentUI.scale) return currentUI.setScreenSize(currentUI.width, currentUI.height, currentUI.scale, currentUI.fullscreen)
} }
func SetScreenScale(scale float64) bool { func SetScreenScale(scale float64) bool {
width, height := currentUI.size() return currentUI.setScreenSize(currentUI.width, currentUI.height, scale, currentUI.fullscreen)
return currentUI.setScreenSize(width, height, scale)
} }
func ScreenScale() float64 { func ScreenScale() float64 {
return currentUI.scale return currentUI.scale
} }
func SetFullscreen(fullscreen bool) bool { func SetFullscreen(fullscreen bool) {
// TODO: Implement currentUI.setScreenSize(currentUI.width, currentUI.height, currentUI.scale, fullscreen)
return false
} }
func IsFullscreen() bool { func IsFullscreen() bool {
// TODO: Implement return currentUI.fullscreen
return false
} }
func ScreenOffset() (float64, float64) { func ScreenOffset() (float64, float64) {
@ -82,8 +83,24 @@ func SetCursorVisibility(visibility bool) {
} }
} }
func (u *userInterface) getScale() float64 {
if !u.fullscreen {
return u.scale
}
doc := js.Global.Get("document")
body := doc.Get("body")
bw := body.Get("clientWidth").Float()
bh := body.Get("clientHeight").Float()
sw := bw / float64(u.width)
sh := bh / float64(u.height)
if sw > sh {
return sh
}
return sw
}
func (u *userInterface) actualScreenScale() float64 { func (u *userInterface) actualScreenScale() float64 {
return u.scale * u.deviceScale return u.getScale() * u.deviceScale
} }
func (u *userInterface) update(g GraphicsContext) error { func (u *userInterface) update(g GraphicsContext) error {
@ -97,8 +114,7 @@ func (u *userInterface) update(g GraphicsContext) error {
currentInput.updateGamepads() currentInput.updateGamepads()
if u.sizeChanged { if u.sizeChanged {
u.sizeChanged = false u.sizeChanged = false
w, h := u.size() g.SetSize(u.width, u.height, u.actualScreenScale())
g.SetSize(w, h, u.actualScreenScale())
return nil return nil
} }
if err := g.Update(); err != nil { if err := g.Update(); err != nil {
@ -125,7 +141,7 @@ func (u *userInterface) loop(g GraphicsContext) error {
} }
func touchEventToTouches(e *js.Object) []touch { func touchEventToTouches(e *js.Object) []touch {
scale := currentUI.scale scale := currentUI.getScale()
j := e.Get("targetTouches") j := e.Get("targetTouches")
rect := canvas.Call("getBoundingClientRect") rect := canvas.Call("getBoundingClientRect")
left, top := rect.Get("left").Int(), rect.Get("top").Int() left, top := rect.Get("left").Int(), rect.Get("top").Int()
@ -277,7 +293,7 @@ func initialize() error {
} }
func setMouseCursorFromEvent(e *js.Object) { func setMouseCursorFromEvent(e *js.Object) {
scale := currentUI.scale scale := currentUI.getScale()
rect := canvas.Call("getBoundingClientRect") rect := canvas.Call("getBoundingClientRect")
x, y := e.Get("clientX").Int(), e.Get("clientY").Int() x, y := e.Get("clientX").Int(), e.Get("clientY").Int()
x -= rect.Get("left").Int() x -= rect.Get("left").Int()
@ -301,7 +317,7 @@ func Run(width, height int, scale float64, title string, g GraphicsContext) erro
u := currentUI u := currentUI
doc := js.Global.Get("document") doc := js.Global.Get("document")
doc.Set("title", title) doc.Set("title", title)
u.setScreenSize(width, height, scale) u.setScreenSize(width, height, scale, u.fullscreen)
canvas.Call("focus") canvas.Call("focus")
if err := opengl.Init(); err != nil { if err := opengl.Init(); err != nil {
return err return err
@ -309,17 +325,6 @@ func Run(width, height int, scale float64, title string, g GraphicsContext) erro
return u.loop(g) return u.loop(g)
} }
func (u *userInterface) size() (width, height int) {
a := u.actualScreenScale()
if a == 0 {
// a == 0 only on the initial state.
return
}
width = int(canvas.Get("width").Float() / a)
height = int(canvas.Get("height").Float() / a)
return
}
func isSafari() bool { func isSafari() bool {
ua := js.Global.Get("navigator").Get("userAgent").String() ua := js.Global.Get("navigator").Get("userAgent").String()
if !strings.Contains(ua, "Safari") { if !strings.Contains(ua, "Safari") {
@ -331,23 +336,28 @@ func isSafari() bool {
return true return true
} }
func (u *userInterface) setScreenSize(width, height int, scale float64) bool { func (u *userInterface) setScreenSize(width, height int, scale float64, fullscreen bool) bool {
w, h := u.size() if u.width == width && u.height == height &&
s := u.scale u.scale == scale && fullscreen == u.fullscreen {
if w == width && h == height && s == scale {
return false return false
} }
u.width = width
u.height = height
u.scale = scale u.scale = scale
u.fullscreen = fullscreen
// CSS imageRendering seems useful to enlarge the screen, // CSS imageRendering seems useful to enlarge the screen,
// but doesn't work in some cases (#306): // but doesn't work in some cases (#306):
// * Chrome just after restoring the lost context // * Chrome just after restoring the lost context
// * Safari // * Safari
// Let's use the pixel ratio as it is here. // Let's use the pixel ratio as it is here.
u.deviceScale = devicePixelRatio() u.deviceScale = devicePixelRatio()
canvas.Set("width", int(float64(width)*u.actualScreenScale())) canvas.Set("width", int(float64(width)*u.actualScreenScale()))
canvas.Set("height", int(float64(height)*u.actualScreenScale())) canvas.Set("height", int(float64(height)*u.actualScreenScale()))
canvasStyle := canvas.Get("style") canvasStyle := canvas.Get("style")
scale = u.getScale()
cssWidth := int(float64(width) * scale) cssWidth := int(float64(width) * scale)
cssHeight := int(float64(height) * scale) cssHeight := int(float64(height) * scale)
canvasStyle.Set("width", strconv.Itoa(cssWidth)+"px") canvasStyle.Set("width", strconv.Itoa(cssWidth)+"px")
@ -355,6 +365,7 @@ func (u *userInterface) setScreenSize(width, height int, scale float64) bool {
// CSS calc requires space chars. // CSS calc requires space chars.
canvasStyle.Set("left", "calc((100% - "+strconv.Itoa(cssWidth)+"px) / 2)") canvasStyle.Set("left", "calc((100% - "+strconv.Itoa(cssWidth)+"px) / 2)")
canvasStyle.Set("top", "calc((100% - "+strconv.Itoa(cssHeight)+"px) / 2)") canvasStyle.Set("top", "calc((100% - "+strconv.Itoa(cssHeight)+"px) / 2)")
u.sizeChanged = true u.sizeChanged = true
return true return true
} }