ebiten/internal/ui/ui_js.go

399 lines
10 KiB
Go
Raw Normal View History

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"
2016-02-20 18:15:14 +01:00
2018-06-24 09:10:24 +02:00
"github.com/gopherjs/gopherwasm/js"
2018-01-02 21:22:56 +01:00
"github.com/hajimehoshi/ebiten/internal/hooks"
2018-04-01 16:20:45 +02:00
"github.com/hajimehoshi/ebiten/internal/input"
"github.com/hajimehoshi/ebiten/internal/opengl"
2015-01-02 07:20:05 +01:00
)
2018-05-26 18:59:35 +02:00
var canvas js.Value
2015-01-02 07:20:05 +01:00
type userInterface struct {
width int
height int
scale float64
fullscreen bool
runnableInBackground bool
vsync bool
sizeChanged bool
windowFocus bool
pageVisible bool
lastActualScale float64
2016-03-24 17:15:47 +01:00
}
2016-03-24 16:38:30 +01:00
var currentUI = &userInterface{
sizeChanged: true,
windowFocus: true,
pageVisible: true,
vsync: true,
}
var (
window = js.Global().Get("window")
document = js.Global().Get("document")
requestAnimationFrame = window.Get("requestAnimationFrame")
2018-07-14 16:47:31 +02:00
setTimeout = window.Get("setTimeout")
)
2018-05-04 09:09:55 +02:00
func MonitorSize() (int, int) {
return window.Get("innerWidth").Int(), window.Get("innerHeight").Int()
2018-05-04 09:09:55 +02:00
}
func SetScreenSize(width, height int) bool {
return currentUI.setScreenSize(width, height, currentUI.scale, currentUI.fullscreen)
}
func SetScreenScale(scale float64) bool {
return currentUI.setScreenSize(currentUI.width, currentUI.height, scale, currentUI.fullscreen)
}
2016-09-02 16:38:02 +02:00
func ScreenScale() float64 {
return currentUI.scale
}
func SetFullscreen(fullscreen bool) {
currentUI.setScreenSize(currentUI.width, currentUI.height, currentUI.scale, fullscreen)
}
func IsFullscreen() bool {
return currentUI.fullscreen
}
func SetRunnableInBackground(runnableInBackground bool) {
currentUI.runnableInBackground = runnableInBackground
}
func IsRunnableInBackground() bool {
return currentUI.runnableInBackground
}
func SetVsyncEnabled(enabled bool) {
currentUI.vsync = enabled
}
func IsVsyncEnabled() bool {
return currentUI.vsync
}
func ScreenPadding() (x0, y0, x1, y1 float64) {
return 0, 0, 0, 0
}
func adjustPosition(x, y int) (int, int) {
rect := canvas.Call("getBoundingClientRect")
x -= rect.Get("left").Int()
y -= rect.Get("top").Int()
scale := currentUI.getScale()
return int(float64(x) / scale), int(float64(y) / scale)
}
func AdjustedCursorPosition() (x, y int) {
return adjustPosition(input.Get().CursorPosition())
}
func AdjustedTouches() []*input.Touch {
ts := input.Get().Touches()
adjusted := make([]*input.Touch, len(ts))
for i, t := range ts {
x, y := adjustPosition(t.Position())
adjusted[i] = input.NewTouch(t.ID(), x, y)
}
return adjusted
}
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"
}
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")
}
}
2018-05-02 12:09:03 +02:00
func SetWindowTitle(title string) {
document.Set("title", title)
2018-05-02 12:09:03 +02:00
}
func SetWindowIcon(iconImages []image.Image) {
2017-09-22 21:12:02 +02:00
// Do nothing
}
func IsWindowDecorated() bool {
return false
}
func SetWindowDecorated(decorated bool) {
// Do nothing
}
func (u *userInterface) getScale() float64 {
if !u.fullscreen {
return u.scale
}
body := document.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 {
// 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.
2018-10-07 18:03:18 +02:00
return u.getScale() * deviceScale.GetAt(0, 0)
}
func (u *userInterface) updateGraphicsContext(g GraphicsContext) {
a := u.actualScreenScale()
if u.lastActualScale != a {
u.updateScreenSize()
}
u.lastActualScale = a
if u.sizeChanged {
u.sizeChanged = false
g.SetSize(u.width, u.height, a)
}
}
func (u *userInterface) suspended() bool {
return !u.runnableInBackground && (!u.windowFocus || !u.pageVisible)
}
2016-09-01 17:53:05 +02:00
func (u *userInterface) update(g GraphicsContext) error {
if u.suspended() {
hooks.SuspendAudio()
2016-09-01 17:53:05 +02:00
return nil
}
hooks.ResumeAudio()
if opengl.GetContext().IsContextLost() {
opengl.GetContext().RestoreContext()
g.Invalidate()
// Need to return once to wait restored (#526)
// TODO: Is it necessary to handle webglcontextrestored event?
return nil
}
2018-04-01 16:20:45 +02:00
input.Get().UpdateGamepads()
u.updateGraphicsContext(g)
if err := g.Update(func() {
2018-04-01 16:20:45 +02:00
input.Get().ClearRuneBuffer()
input.Get().ResetWheelValues()
u.updateGraphicsContext(g)
}); err != nil {
2016-09-01 17:53:05 +02:00
return err
}
return nil
}
2016-09-01 19:31:03 +02:00
func (u *userInterface) loop(g GraphicsContext) error {
ch := make(chan error)
2018-05-26 18:59:35 +02:00
var f func([]js.Value)
var cf js.Callback
f = func([]js.Value) {
if err := u.update(g); err != nil {
ch <- err
close(ch)
2018-05-26 18:59:35 +02:00
return
}
if u.vsync {
requestAnimationFrame.Invoke(cf)
} else {
2018-07-14 16:47:31 +02:00
setTimeout.Invoke(cf, 0)
}
}
2018-05-26 18:59:35 +02:00
cf = js.NewCallback(f)
// Call f asyncly to be async since ch is used in f.
go func() {
f(nil)
}()
return <-ch
2015-01-02 07:20:05 +01:00
}
2016-07-23 13:25:52 +02:00
func init() {
if document.Get("body") == js.Null() {
ch := make(chan struct{})
2018-05-26 18:59:35 +02:00
window.Call("addEventListener", "load", js.NewCallback(func([]js.Value) {
close(ch)
2018-05-26 18:59:35 +02:00
}))
<-ch
}
2018-05-26 18:59:35 +02:00
window.Call("addEventListener", "focus", js.NewCallback(func([]js.Value) {
currentUI.windowFocus = true
if currentUI.suspended() {
hooks.SuspendAudio()
} else {
hooks.ResumeAudio()
}
2018-05-26 18:59:35 +02:00
}))
window.Call("addEventListener", "blur", js.NewCallback(func([]js.Value) {
currentUI.windowFocus = false
if currentUI.suspended() {
hooks.SuspendAudio()
} else {
hooks.ResumeAudio()
}
2018-05-26 18:59:35 +02:00
}))
document.Call("addEventListener", "visibilitychange", js.NewCallback(func([]js.Value) {
currentUI.pageVisible = !document.Get("hidden").Bool()
if currentUI.suspended() {
hooks.SuspendAudio()
} else {
hooks.ResumeAudio()
}
2018-05-26 18:59:35 +02:00
}))
window.Call("addEventListener", "resize", js.NewCallback(func([]js.Value) {
currentUI.updateScreenSize()
2018-05-26 18:59:35 +02:00
}))
// Adjust the initial scale to 1.
// https://developer.mozilla.org/en/docs/Mozilla/Mobile/Viewport_meta_tag
meta := document.Call("createElement", "meta")
meta.Set("name", "viewport")
meta.Set("content", "width=device-width, initial-scale=1")
document.Get("head").Call("appendChild", meta)
canvas = document.Call("createElement", "canvas")
2015-01-02 08:48:07 +01:00
canvas.Set("width", 16)
canvas.Set("height", 16)
document.Get("body").Call("appendChild", canvas)
2015-01-05 14:22:47 +01:00
htmlStyle := document.Get("documentElement").Get("style")
2015-01-05 14:22:47 +01:00
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 := document.Get("body").Get("style")
2015-01-05 14:22:47 +01:00
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")
// TODO: This is OK as long as the game is in an independent iframe.
// What if the canvas is embedded in a HTML directly?
document.Get("body").Call("addEventListener", "click", js.NewCallback(func([]js.Value) {
2015-01-06 20:39:33 +01:00
canvas.Call("focus")
2018-05-26 18:59:35 +02:00
}))
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")
// Keyboard
2018-06-15 17:26:28 +02:00
canvas.Call("addEventListener", "keydown", js.NewEventCallback(js.PreventDefault, input.OnKeyDown))
canvas.Call("addEventListener", "keypress", js.NewEventCallback(js.PreventDefault, input.OnKeyPress))
canvas.Call("addEventListener", "keyup", js.NewEventCallback(js.PreventDefault, input.OnKeyUp))
// Mouse
2018-06-15 17:26:28 +02:00
canvas.Call("addEventListener", "mousedown", js.NewEventCallback(js.PreventDefault, input.OnMouseDown))
canvas.Call("addEventListener", "mouseup", js.NewEventCallback(js.PreventDefault, input.OnMouseUp))
canvas.Call("addEventListener", "mousemove", js.NewEventCallback(js.PreventDefault, input.OnMouseMove))
canvas.Call("addEventListener", "wheel", js.NewEventCallback(js.PreventDefault, input.OnWheel))
// Touch
2018-06-15 17:26:28 +02:00
canvas.Call("addEventListener", "touchstart", js.NewEventCallback(js.PreventDefault, input.OnTouchStart))
canvas.Call("addEventListener", "touchend", js.NewEventCallback(js.PreventDefault, input.OnTouchEnd))
canvas.Call("addEventListener", "touchmove", js.NewEventCallback(js.PreventDefault, input.OnTouchMove))
// Gamepad
2018-05-26 18:59:35 +02:00
window.Call("addEventListener", "gamepadconnected", js.NewCallback(func(e []js.Value) {
// Do nothing.
2018-05-26 18:59:35 +02:00
}))
2018-06-15 17:26:28 +02:00
canvas.Call("addEventListener", "contextmenu", js.NewEventCallback(js.PreventDefault, func(js.Value) {
// Do nothing.
2018-05-26 18:59:35 +02:00
}))
2018-06-15 17:26:28 +02:00
canvas.Call("addEventListener", "webglcontextlost", js.NewEventCallback(js.PreventDefault, func(js.Value) {
2018-05-26 18:59:35 +02:00
// Do nothing.
}))
canvas.Call("addEventListener", "webglcontextrestored", js.NewCallback(func(e []js.Value) {
// Do nothing.
}))
2015-01-02 07:20:05 +01:00
}
2016-09-02 17:00:44 +02:00
func RunMainThreadLoop(ch <-chan error) error {
return <-ch
2016-05-06 05:23:48 +02:00
}
func Run(width, height int, scale float64, title string, g GraphicsContext, mainloop bool) error {
2016-09-02 17:20:05 +02:00
u := currentUI
document.Set("title", title)
u.setScreenSize(width, height, scale, u.fullscreen)
2015-02-09 02:25:00 +01:00
canvas.Call("focus")
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
}
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
}
u.width = width
u.height = height
2016-03-24 17:15:47 +01:00
u.scale = scale
u.fullscreen = fullscreen
u.updateScreenSize()
return true
}
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")
s := u.getScale()
cssWidth := int(float64(u.width) * s)
cssHeight := int(float64(u.height) * s)
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)")
u.sizeChanged = true
2015-01-02 07:20:05 +01:00
}