2015-01-02 07:20:05 +01:00
|
|
|
// Copyright 2015 Hajime Hoshi
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
// +build js
|
|
|
|
|
2015-01-27 14:02:23 +01:00
|
|
|
package ui
|
2015-01-02 07:20:05 +01:00
|
|
|
|
|
|
|
import (
|
2017-09-22 21:12:02 +02:00
|
|
|
"image"
|
2015-01-05 14:22:47 +01:00
|
|
|
"strconv"
|
2017-08-14 21:11:51 +02:00
|
|
|
"unicode"
|
2016-02-20 18:15:14 +01:00
|
|
|
|
|
|
|
"github.com/gopherjs/gopherjs/js"
|
2018-01-02 21:22:56 +01:00
|
|
|
|
|
|
|
"github.com/hajimehoshi/ebiten/internal/devicescale"
|
2016-11-03 15:31:25 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/opengl"
|
2015-01-02 07:20:05 +01:00
|
|
|
)
|
|
|
|
|
2015-02-28 17:26:05 +01:00
|
|
|
var canvas *js.Object
|
2015-01-02 07:20:05 +01:00
|
|
|
|
2016-05-19 17:07:04 +02:00
|
|
|
type userInterface struct {
|
2017-08-02 16:37:50 +02:00
|
|
|
width int
|
|
|
|
height int
|
|
|
|
scale float64
|
|
|
|
fullscreen bool
|
|
|
|
runnableInBackground bool
|
2017-07-21 18:52:08 +02:00
|
|
|
|
2017-01-20 18:47:31 +01:00
|
|
|
sizeChanged bool
|
|
|
|
windowFocus bool
|
2016-03-24 17:15:47 +01:00
|
|
|
}
|
2016-03-24 16:38:30 +01:00
|
|
|
|
2016-05-19 17:07:04 +02:00
|
|
|
var currentUI = &userInterface{
|
2017-01-20 18:47:31 +01:00
|
|
|
sizeChanged: true,
|
|
|
|
windowFocus: true,
|
2016-05-18 04:56:43 +02:00
|
|
|
}
|
2015-01-26 17:10:17 +01:00
|
|
|
|
2017-03-03 02:58:29 +01:00
|
|
|
func SetScreenSize(width, height int) bool {
|
2017-09-07 04:58:04 +02:00
|
|
|
return currentUI.setScreenSize(width, height, currentUI.scale, currentUI.fullscreen)
|
2016-05-19 17:07:04 +02:00
|
|
|
}
|
|
|
|
|
2017-03-03 02:58:29 +01:00
|
|
|
func SetScreenScale(scale float64) bool {
|
2017-07-21 18:52:08 +02:00
|
|
|
return currentUI.setScreenSize(currentUI.width, currentUI.height, scale, currentUI.fullscreen)
|
2016-05-19 17:07:04 +02:00
|
|
|
}
|
|
|
|
|
2016-09-02 16:38:02 +02:00
|
|
|
func ScreenScale() float64 {
|
|
|
|
return currentUI.scale
|
2016-05-19 17:07:04 +02:00
|
|
|
}
|
|
|
|
|
2017-07-21 18:52:08 +02:00
|
|
|
func SetFullscreen(fullscreen bool) {
|
|
|
|
currentUI.setScreenSize(currentUI.width, currentUI.height, currentUI.scale, fullscreen)
|
2017-06-29 17:35:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func IsFullscreen() bool {
|
2017-07-21 18:52:08 +02:00
|
|
|
return currentUI.fullscreen
|
2017-06-29 17:35:34 +02:00
|
|
|
}
|
|
|
|
|
2017-08-02 16:37:50 +02:00
|
|
|
func SetRunnableInBackground(runnableInBackground bool) {
|
|
|
|
currentUI.runnableInBackground = runnableInBackground
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsRunnableInBackground() bool {
|
|
|
|
return currentUI.runnableInBackground
|
|
|
|
}
|
|
|
|
|
2017-06-30 21:12:09 +02:00
|
|
|
func ScreenOffset() (float64, float64) {
|
|
|
|
return 0, 0
|
|
|
|
}
|
|
|
|
|
2017-06-30 21:27:38 +02:00
|
|
|
func adjustCursorPosition(x, y int) (int, int) {
|
|
|
|
return x, y
|
|
|
|
}
|
|
|
|
|
2017-08-12 08:39:41 +02:00
|
|
|
func IsCursorVisible() bool {
|
|
|
|
// The initial value is an empty string, so don't compare with "auto" here.
|
|
|
|
return canvas.Get("style").Get("cursor").String() != "none"
|
|
|
|
}
|
|
|
|
|
2018-01-08 18:01:33 +01:00
|
|
|
func SetCursorVisible(visible bool) {
|
|
|
|
if visible {
|
2016-09-03 10:17:54 +02:00
|
|
|
canvas.Get("style").Set("cursor", "auto")
|
|
|
|
} else {
|
|
|
|
canvas.Get("style").Set("cursor", "none")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-23 10:40:09 +02:00
|
|
|
func SetWindowIcon(iconImages []image.Image) {
|
2017-09-22 21:12:02 +02:00
|
|
|
// Do nothing
|
|
|
|
}
|
|
|
|
|
2017-07-21 18:52:08 +02:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2016-09-02 18:06:16 +02:00
|
|
|
func (u *userInterface) actualScreenScale() float64 {
|
2018-01-07 06:51:25 +01:00
|
|
|
// CSS imageRendering property seems useful to enlarge the screen,
|
|
|
|
// but doesn't work in some cases (#306):
|
|
|
|
// * Chrome just after restoring the lost context
|
|
|
|
// * Safari
|
|
|
|
// Let's use the devicePixelRatio as it is here.
|
|
|
|
return u.getScale() * devicescale.DeviceScale()
|
2016-05-19 17:07:04 +02:00
|
|
|
}
|
|
|
|
|
2018-02-01 18:08:03 +01:00
|
|
|
func (u *userInterface) updateGraphicsContext(g GraphicsContext) {
|
|
|
|
if u.sizeChanged {
|
|
|
|
u.sizeChanged = false
|
|
|
|
g.SetSize(u.width, u.height, u.actualScreenScale())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-01 17:53:05 +02:00
|
|
|
func (u *userInterface) update(g GraphicsContext) error {
|
2017-08-02 16:37:50 +02:00
|
|
|
if !u.runnableInBackground && !u.windowFocus {
|
2016-09-01 17:53:05 +02:00
|
|
|
return nil
|
2016-06-29 18:07:54 +02:00
|
|
|
}
|
2017-05-30 19:09:27 +02:00
|
|
|
if opengl.GetContext().IsContextLost() {
|
|
|
|
opengl.GetContext().RestoreContext()
|
2017-01-21 17:37:08 +01:00
|
|
|
g.Invalidate()
|
2016-06-29 16:16:21 +02:00
|
|
|
}
|
2016-05-19 17:15:05 +02:00
|
|
|
currentInput.updateGamepads()
|
2018-02-01 18:08:03 +01:00
|
|
|
u.updateGraphicsContext(g)
|
2017-11-09 17:18:41 +01:00
|
|
|
if err := g.Update(func() {
|
|
|
|
currentInput.runeBuffer = nil
|
2018-02-01 18:08:03 +01:00
|
|
|
// The offscreens must be updated every frame (#490).
|
|
|
|
u.updateGraphicsContext(g)
|
2017-11-09 17:18:41 +01:00
|
|
|
}); err != nil {
|
2016-09-01 17:53:05 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
2015-01-07 17:32:37 +01:00
|
|
|
}
|
|
|
|
|
2016-09-01 19:31:03 +02:00
|
|
|
func (u *userInterface) loop(g GraphicsContext) error {
|
2016-08-31 19:38:47 +02:00
|
|
|
ch := make(chan error)
|
2016-09-01 17:53:05 +02:00
|
|
|
var f func()
|
|
|
|
f = func() {
|
2016-11-28 17:40:06 +01:00
|
|
|
go func() {
|
|
|
|
if err := u.update(g); err != nil {
|
|
|
|
ch <- err
|
|
|
|
close(ch)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
js.Global.Get("window").Call("requestAnimationFrame", f)
|
|
|
|
}()
|
2016-02-27 19:49:57 +01:00
|
|
|
}
|
2016-09-01 17:53:05 +02:00
|
|
|
f()
|
2016-08-31 19:38:47 +02:00
|
|
|
return <-ch
|
2015-01-02 07:20:05 +01:00
|
|
|
}
|
|
|
|
|
2016-05-26 18:31:30 +02:00
|
|
|
func touchEventToTouches(e *js.Object) []touch {
|
2017-07-21 18:52:08 +02:00
|
|
|
scale := currentUI.getScale()
|
2016-05-26 18:31:30 +02:00
|
|
|
j := e.Get("targetTouches")
|
2016-05-26 18:47:24 +02:00
|
|
|
rect := canvas.Call("getBoundingClientRect")
|
|
|
|
left, top := rect.Get("left").Int(), rect.Get("top").Int()
|
2016-05-26 18:31:30 +02:00
|
|
|
t := make([]touch, j.Get("length").Int())
|
|
|
|
for i := 0; i < len(t); i++ {
|
|
|
|
jj := j.Call("item", i)
|
|
|
|
t[i].id = jj.Get("identifier").Int()
|
2016-06-18 19:59:17 +02:00
|
|
|
t[i].x = int(float64(jj.Get("clientX").Int()-left) / scale)
|
|
|
|
t[i].y = int(float64(jj.Get("clientY").Int()-top) / scale)
|
2016-05-26 18:31:30 +02:00
|
|
|
}
|
|
|
|
return t
|
|
|
|
}
|
|
|
|
|
2016-07-23 13:25:52 +02:00
|
|
|
func init() {
|
|
|
|
if err := initialize(); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func initialize() error {
|
2015-01-27 14:02:23 +01:00
|
|
|
// Do nothing in node.js.
|
2015-01-13 16:18:36 +01:00
|
|
|
if js.Global.Get("require") != js.Undefined {
|
2016-07-23 13:25:52 +02:00
|
|
|
return nil
|
2015-01-13 16:18:36 +01:00
|
|
|
}
|
2015-01-09 17:02:26 +01:00
|
|
|
|
2015-01-02 08:48:07 +01:00
|
|
|
doc := js.Global.Get("document")
|
2015-01-12 06:36:13 +01:00
|
|
|
window := js.Global.Get("window")
|
2015-01-09 16:38:17 +01:00
|
|
|
if doc.Get("body") == nil {
|
|
|
|
ch := make(chan struct{})
|
2015-01-12 06:36:13 +01:00
|
|
|
window.Call("addEventListener", "load", func() {
|
2015-01-09 16:38:17 +01:00
|
|
|
close(ch)
|
|
|
|
})
|
|
|
|
<-ch
|
|
|
|
}
|
2016-06-29 18:07:54 +02:00
|
|
|
window.Call("addEventListener", "focus", func() {
|
2016-08-31 19:38:47 +02:00
|
|
|
currentUI.windowFocus = true
|
2016-06-29 18:07:54 +02:00
|
|
|
})
|
|
|
|
window.Call("addEventListener", "blur", func() {
|
2016-08-31 19:38:47 +02:00
|
|
|
currentUI.windowFocus = false
|
2016-06-29 18:07:54 +02:00
|
|
|
})
|
2017-07-21 19:04:03 +02:00
|
|
|
window.Call("addEventListener", "resize", func() {
|
|
|
|
currentUI.updateScreenSize()
|
|
|
|
})
|
2015-01-07 03:22:48 +01:00
|
|
|
|
2017-07-01 21:08:25 +02:00
|
|
|
// Adjust the initial scale to 1.
|
|
|
|
// https://developer.mozilla.org/en/docs/Mozilla/Mobile/Viewport_meta_tag
|
|
|
|
meta := doc.Call("createElement", "meta")
|
|
|
|
meta.Set("name", "viewport")
|
|
|
|
meta.Set("content", "width=device-width, initial-scale=1")
|
2017-07-01 21:18:43 +02:00
|
|
|
doc.Get("head").Call("appendChild", meta)
|
2017-07-01 21:08:25 +02:00
|
|
|
|
2015-01-02 08:48:07 +01:00
|
|
|
canvas = doc.Call("createElement", "canvas")
|
|
|
|
canvas.Set("width", 16)
|
|
|
|
canvas.Set("height", 16)
|
|
|
|
doc.Get("body").Call("appendChild", canvas)
|
2015-01-05 14:22:47 +01:00
|
|
|
|
|
|
|
htmlStyle := doc.Get("documentElement").Get("style")
|
|
|
|
htmlStyle.Set("height", "100%")
|
2015-01-05 16:44:39 +01:00
|
|
|
htmlStyle.Set("margin", "0")
|
|
|
|
htmlStyle.Set("padding", "0")
|
2015-01-05 14:22:47 +01:00
|
|
|
|
|
|
|
bodyStyle := doc.Get("body").Get("style")
|
|
|
|
bodyStyle.Set("backgroundColor", "#000")
|
|
|
|
bodyStyle.Set("position", "relative")
|
|
|
|
bodyStyle.Set("height", "100%")
|
2015-01-05 16:44:39 +01:00
|
|
|
bodyStyle.Set("margin", "0")
|
|
|
|
bodyStyle.Set("padding", "0")
|
2016-02-20 12:08:53 +01:00
|
|
|
// TODO: This is OK as long as the game is in an independent iframe.
|
|
|
|
// What if the canvas is embedded in a HTML directly?
|
2015-01-10 07:51:07 +01:00
|
|
|
doc.Get("body").Call("addEventListener", "click", func() {
|
2015-01-06 20:39:33 +01:00
|
|
|
canvas.Call("focus")
|
|
|
|
})
|
2015-01-05 14:22:47 +01:00
|
|
|
|
|
|
|
canvasStyle := canvas.Get("style")
|
|
|
|
canvasStyle.Set("position", "absolute")
|
|
|
|
|
2015-01-02 16:52:49 +01:00
|
|
|
// Make the canvas focusable.
|
|
|
|
canvas.Call("setAttribute", "tabindex", 1)
|
|
|
|
canvas.Get("style").Set("outline", "none")
|
|
|
|
|
2015-01-12 06:36:13 +01:00
|
|
|
// Keyboard
|
2015-02-28 17:26:05 +01:00
|
|
|
canvas.Call("addEventListener", "keydown", func(e *js.Object) {
|
2017-11-09 16:32:47 +01:00
|
|
|
c := e.Get("code")
|
|
|
|
if c == js.Undefined {
|
2017-04-13 20:02:38 +02:00
|
|
|
code := e.Get("keyCode").Int()
|
2017-11-09 16:35:46 +01:00
|
|
|
if keyCodeToKeyEdge[code] == KeyUp ||
|
|
|
|
keyCodeToKeyEdge[code] == KeyDown ||
|
|
|
|
keyCodeToKeyEdge[code] == KeyLeft ||
|
2017-11-09 16:46:37 +01:00
|
|
|
keyCodeToKeyEdge[code] == KeyRight ||
|
|
|
|
keyCodeToKeyEdge[code] == KeyBackspace ||
|
|
|
|
keyCodeToKeyEdge[code] == KeyTab {
|
2017-11-09 16:39:46 +01:00
|
|
|
e.Call("preventDefault")
|
2017-11-09 16:32:47 +01:00
|
|
|
}
|
2017-11-09 16:39:46 +01:00
|
|
|
currentInput.keyDownEdge(code)
|
2017-04-13 20:02:38 +02:00
|
|
|
return
|
|
|
|
}
|
2017-11-09 16:32:47 +01:00
|
|
|
cs := c.String()
|
|
|
|
if cs == keyToCodes[KeyUp][0] ||
|
|
|
|
cs == keyToCodes[KeyDown][0] ||
|
|
|
|
cs == keyToCodes[KeyLeft][0] ||
|
2017-11-09 16:46:37 +01:00
|
|
|
cs == keyToCodes[KeyRight][0] ||
|
|
|
|
cs == keyToCodes[KeyBackspace][0] ||
|
|
|
|
cs == keyToCodes[KeyTab][0] {
|
2017-11-09 16:32:47 +01:00
|
|
|
e.Call("preventDefault")
|
|
|
|
}
|
|
|
|
currentInput.keyDown(cs)
|
2015-01-02 16:52:49 +01:00
|
|
|
})
|
2017-08-14 21:11:51 +02:00
|
|
|
canvas.Call("addEventListener", "keypress", func(e *js.Object) {
|
|
|
|
e.Call("preventDefault")
|
|
|
|
if r := rune(e.Get("charCode").Int()); unicode.IsPrint(r) {
|
|
|
|
currentInput.runeBuffer = append(currentInput.runeBuffer, r)
|
|
|
|
}
|
|
|
|
})
|
2015-02-28 17:26:05 +01:00
|
|
|
canvas.Call("addEventListener", "keyup", func(e *js.Object) {
|
2015-01-15 14:28:05 +01:00
|
|
|
e.Call("preventDefault")
|
2017-04-13 20:02:38 +02:00
|
|
|
if e.Get("code") == js.Undefined {
|
2017-11-09 16:35:46 +01:00
|
|
|
// Assume that UA is Edge.
|
2017-04-13 20:02:38 +02:00
|
|
|
code := e.Get("keyCode").Int()
|
2017-11-09 16:35:46 +01:00
|
|
|
currentInput.keyUpEdge(code)
|
2017-04-13 20:02:38 +02:00
|
|
|
}
|
|
|
|
code := e.Get("code").String()
|
2016-05-19 17:15:05 +02:00
|
|
|
currentInput.keyUp(code)
|
2015-01-02 16:52:49 +01:00
|
|
|
})
|
2015-01-12 06:36:13 +01:00
|
|
|
|
|
|
|
// Mouse
|
2015-02-28 17:26:05 +01:00
|
|
|
canvas.Call("addEventListener", "mousedown", func(e *js.Object) {
|
2015-01-15 14:28:05 +01:00
|
|
|
e.Call("preventDefault")
|
2015-01-06 15:41:03 +01:00
|
|
|
button := e.Get("button").Int()
|
2016-05-19 17:15:05 +02:00
|
|
|
currentInput.mouseDown(button)
|
2015-01-20 18:58:29 +01:00
|
|
|
setMouseCursorFromEvent(e)
|
2015-01-06 15:41:03 +01:00
|
|
|
})
|
2015-02-28 17:26:05 +01:00
|
|
|
canvas.Call("addEventListener", "mouseup", func(e *js.Object) {
|
2015-01-15 14:28:05 +01:00
|
|
|
e.Call("preventDefault")
|
2015-01-06 15:41:03 +01:00
|
|
|
button := e.Get("button").Int()
|
2016-05-19 17:15:05 +02:00
|
|
|
currentInput.mouseUp(button)
|
2015-01-20 18:58:29 +01:00
|
|
|
setMouseCursorFromEvent(e)
|
|
|
|
})
|
2015-02-28 17:26:05 +01:00
|
|
|
canvas.Call("addEventListener", "mousemove", func(e *js.Object) {
|
2015-01-20 18:58:29 +01:00
|
|
|
e.Call("preventDefault")
|
|
|
|
setMouseCursorFromEvent(e)
|
2015-01-06 15:41:03 +01:00
|
|
|
})
|
2015-02-28 17:26:05 +01:00
|
|
|
canvas.Call("addEventListener", "contextmenu", func(e *js.Object) {
|
2015-01-15 14:28:05 +01:00
|
|
|
e.Call("preventDefault")
|
2015-01-06 15:41:03 +01:00
|
|
|
})
|
2015-01-12 06:36:13 +01:00
|
|
|
|
2016-05-26 18:31:30 +02:00
|
|
|
// Touch
|
2015-02-28 17:26:05 +01:00
|
|
|
canvas.Call("addEventListener", "touchstart", func(e *js.Object) {
|
2015-01-20 18:58:29 +01:00
|
|
|
e.Call("preventDefault")
|
2016-05-26 18:31:30 +02:00
|
|
|
currentInput.updateTouches(touchEventToTouches(e))
|
2015-01-20 18:58:29 +01:00
|
|
|
})
|
2015-02-28 17:26:05 +01:00
|
|
|
canvas.Call("addEventListener", "touchend", func(e *js.Object) {
|
2015-01-20 18:58:29 +01:00
|
|
|
e.Call("preventDefault")
|
2016-05-26 18:31:30 +02:00
|
|
|
currentInput.updateTouches(touchEventToTouches(e))
|
2015-01-06 15:41:03 +01:00
|
|
|
})
|
2015-02-28 17:26:05 +01:00
|
|
|
canvas.Call("addEventListener", "touchmove", func(e *js.Object) {
|
2015-01-20 18:58:29 +01:00
|
|
|
e.Call("preventDefault")
|
2016-05-26 18:31:30 +02:00
|
|
|
currentInput.updateTouches(touchEventToTouches(e))
|
2015-01-20 18:58:29 +01:00
|
|
|
})
|
|
|
|
|
2015-01-12 06:36:13 +01:00
|
|
|
// Gamepad
|
2015-02-28 17:26:05 +01:00
|
|
|
window.Call("addEventListener", "gamepadconnected", func(e *js.Object) {
|
2015-01-20 18:58:29 +01:00
|
|
|
// Do nothing.
|
2015-01-06 15:41:03 +01:00
|
|
|
})
|
2016-02-20 12:08:53 +01:00
|
|
|
|
2016-06-29 16:16:21 +02:00
|
|
|
canvas.Call("addEventListener", "webglcontextlost", func(e *js.Object) {
|
|
|
|
e.Call("preventDefault")
|
|
|
|
})
|
|
|
|
canvas.Call("addEventListener", "webglcontextrestored", func(e *js.Object) {
|
2017-01-20 18:47:31 +01:00
|
|
|
// Do nothing.
|
2016-06-29 16:16:21 +02:00
|
|
|
})
|
2017-01-20 18:47:31 +01:00
|
|
|
|
2016-07-23 13:25:52 +02:00
|
|
|
return nil
|
2015-01-02 07:20:05 +01:00
|
|
|
}
|
|
|
|
|
2015-02-28 17:26:05 +01:00
|
|
|
func setMouseCursorFromEvent(e *js.Object) {
|
2017-07-21 18:52:08 +02:00
|
|
|
scale := currentUI.getScale()
|
2015-01-20 18:58:29 +01:00
|
|
|
rect := canvas.Call("getBoundingClientRect")
|
|
|
|
x, y := e.Get("clientX").Int(), e.Get("clientY").Int()
|
|
|
|
x -= rect.Get("left").Int()
|
|
|
|
y -= rect.Get("top").Int()
|
2016-06-18 19:59:17 +02:00
|
|
|
currentInput.setMouseCursor(int(float64(x)/scale), int(float64(y)/scale))
|
2015-01-20 18:58:29 +01:00
|
|
|
}
|
|
|
|
|
2016-09-02 17:00:44 +02:00
|
|
|
func RunMainThreadLoop(ch <-chan error) error {
|
2016-08-01 19:47:45 +02:00
|
|
|
return <-ch
|
2016-05-06 05:23:48 +02:00
|
|
|
}
|
|
|
|
|
2016-09-02 17:20:05 +02:00
|
|
|
func Run(width, height int, scale float64, title string, g GraphicsContext) error {
|
|
|
|
u := currentUI
|
2015-01-05 14:08:22 +01:00
|
|
|
doc := js.Global.Get("document")
|
|
|
|
doc.Set("title", title)
|
2017-07-21 18:52:08 +02:00
|
|
|
u.setScreenSize(width, height, scale, u.fullscreen)
|
2015-02-09 02:25:00 +01:00
|
|
|
canvas.Call("focus")
|
2017-05-30 19:09:27 +02:00
|
|
|
if err := opengl.Init(); err != nil {
|
2016-07-23 15:17:36 +02:00
|
|
|
return err
|
|
|
|
}
|
2016-09-01 19:31:03 +02:00
|
|
|
return u.loop(g)
|
2015-02-09 02:25:00 +01:00
|
|
|
}
|
|
|
|
|
2017-07-21 18:52:08 +02:00
|
|
|
func (u *userInterface) setScreenSize(width, height int, scale float64, fullscreen bool) bool {
|
|
|
|
if u.width == width && u.height == height &&
|
|
|
|
u.scale == scale && fullscreen == u.fullscreen {
|
2015-02-09 16:10:50 +01:00
|
|
|
return false
|
2015-02-09 02:25:00 +01:00
|
|
|
}
|
2017-07-21 18:52:08 +02:00
|
|
|
u.width = width
|
|
|
|
u.height = height
|
2016-03-24 17:15:47 +01:00
|
|
|
u.scale = scale
|
2017-07-21 18:52:08 +02:00
|
|
|
u.fullscreen = fullscreen
|
2017-07-21 19:04:03 +02:00
|
|
|
u.updateScreenSize()
|
|
|
|
return true
|
|
|
|
}
|
2017-07-21 18:52:08 +02:00
|
|
|
|
2017-07-21 19:04:03 +02:00
|
|
|
func (u *userInterface) updateScreenSize() {
|
|
|
|
canvas.Set("width", int(float64(u.width)*u.actualScreenScale()))
|
|
|
|
canvas.Set("height", int(float64(u.height)*u.actualScreenScale()))
|
2015-01-05 14:22:47 +01:00
|
|
|
canvasStyle := canvas.Get("style")
|
2015-01-07 15:59:04 +01:00
|
|
|
|
2017-07-21 19:04:03 +02:00
|
|
|
s := u.getScale()
|
|
|
|
cssWidth := int(float64(u.width) * s)
|
|
|
|
cssHeight := int(float64(u.height) * s)
|
2015-01-07 15:59:04 +01:00
|
|
|
canvasStyle.Set("width", strconv.Itoa(cssWidth)+"px")
|
|
|
|
canvasStyle.Set("height", strconv.Itoa(cssHeight)+"px")
|
2015-01-10 11:59:47 +01:00
|
|
|
// CSS calc requires space chars.
|
2015-02-14 15:23:11 +01:00
|
|
|
canvasStyle.Set("left", "calc((100% - "+strconv.Itoa(cssWidth)+"px) / 2)")
|
|
|
|
canvasStyle.Set("top", "calc((100% - "+strconv.Itoa(cssHeight)+"px) / 2)")
|
2017-07-21 18:52:08 +02:00
|
|
|
|
2016-05-18 04:56:43 +02:00
|
|
|
u.sizeChanged = true
|
2015-01-02 07:20:05 +01:00
|
|
|
}
|