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 (
|
2015-01-05 14:22:47 +01:00
|
|
|
"strconv"
|
2016-02-20 18:15:14 +01:00
|
|
|
|
|
|
|
"github.com/gopherjs/gopherjs/js"
|
|
|
|
"github.com/hajimehoshi/ebiten/internal/graphics/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 {
|
2016-03-24 17:15:47 +01:00
|
|
|
scale int
|
|
|
|
deviceScale float64
|
2016-05-18 04:56:43 +02:00
|
|
|
sizeChanged 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{
|
2016-05-18 04:56:43 +02:00
|
|
|
sizeChanged: true,
|
|
|
|
}
|
2015-01-26 17:10:17 +01:00
|
|
|
|
2016-05-19 17:07:04 +02:00
|
|
|
func CurrentUI() UserInterface {
|
2016-03-24 16:38:30 +01:00
|
|
|
return currentUI
|
|
|
|
}
|
2015-01-26 17:10:17 +01:00
|
|
|
|
2015-02-10 02:44:58 +01:00
|
|
|
// NOTE: This returns true even when the browser is not active.
|
2015-01-08 03:56:03 +01:00
|
|
|
func shown() bool {
|
2015-01-08 15:45:30 +01:00
|
|
|
return !js.Global.Get("document").Get("hidden").Bool()
|
2015-01-07 17:32:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func vsync() {
|
2015-01-07 16:44:41 +01:00
|
|
|
ch := make(chan struct{})
|
2015-06-13 20:50:43 +02:00
|
|
|
n := 1
|
2015-02-21 14:19:26 +01:00
|
|
|
var l func()
|
|
|
|
l = func() {
|
|
|
|
if 0 < n {
|
|
|
|
n--
|
|
|
|
// TODO: In iOS8, this is called at every 1/30[sec] frame.
|
|
|
|
// Can we use DOMHighResTimeStamp?
|
|
|
|
js.Global.Get("window").Call("requestAnimationFrame", l)
|
|
|
|
return
|
|
|
|
}
|
2015-01-07 16:44:41 +01:00
|
|
|
close(ch)
|
2015-02-21 14:19:26 +01:00
|
|
|
}
|
|
|
|
l()
|
2015-01-07 16:44:41 +01:00
|
|
|
<-ch
|
2015-01-02 07:20:05 +01:00
|
|
|
}
|
|
|
|
|
2016-05-19 17:07:04 +02:00
|
|
|
func (u *userInterface) SetScreenSize(width, height int) bool {
|
|
|
|
return u.setScreenSize(width, height, u.scale)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (u *userInterface) SetScreenScale(scale int) bool {
|
|
|
|
width, height := u.size()
|
|
|
|
return u.setScreenSize(width, height, scale)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (u *userInterface) ScreenScale() int {
|
|
|
|
return u.scale
|
|
|
|
}
|
|
|
|
|
|
|
|
func (u *userInterface) ActualScreenScale() int {
|
|
|
|
return u.scale * int(u.deviceScale)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (u *userInterface) Update() (interface{}, error) {
|
2016-05-19 17:15:05 +02:00
|
|
|
currentInput.updateGamepads()
|
2016-05-18 04:56:43 +02:00
|
|
|
if u.sizeChanged {
|
|
|
|
u.sizeChanged = false
|
|
|
|
w, h := u.size()
|
|
|
|
e := ScreenSizeEvent{
|
|
|
|
Width: w,
|
|
|
|
Height: h,
|
|
|
|
ActualScale: u.ActualScreenScale(),
|
|
|
|
}
|
|
|
|
return e, nil
|
|
|
|
}
|
2016-06-09 18:49:21 +02:00
|
|
|
// Dummy channel
|
|
|
|
ch := make(chan struct{}, 1)
|
|
|
|
return RenderEvent{ch}, nil
|
2015-01-07 17:32:37 +01:00
|
|
|
}
|
|
|
|
|
2016-05-19 17:07:04 +02:00
|
|
|
func (u *userInterface) Terminate() error {
|
2015-01-02 07:20:05 +01:00
|
|
|
// Do nothing.
|
2016-05-19 17:07:04 +02:00
|
|
|
return nil
|
2015-01-02 07:20:05 +01:00
|
|
|
}
|
|
|
|
|
2016-05-19 17:07:04 +02:00
|
|
|
func (u *userInterface) SwapBuffers() error {
|
2016-02-27 19:49:57 +01:00
|
|
|
vsync()
|
|
|
|
for !shown() {
|
|
|
|
vsync()
|
|
|
|
}
|
2016-05-19 17:07:04 +02:00
|
|
|
return nil
|
2015-01-02 07:20:05 +01:00
|
|
|
}
|
|
|
|
|
2016-05-19 16:37:58 +02:00
|
|
|
func (u *userInterface) FinishRendering() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-05-26 18:31:30 +02:00
|
|
|
func touchEventToTouches(e *js.Object) []touch {
|
|
|
|
scale := currentUI.scale
|
|
|
|
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-05-26 18:47:24 +02:00
|
|
|
t[i].x = (jj.Get("clientX").Int() - left) / scale
|
|
|
|
t[i].y = (jj.Get("clientY").Int() - top) / scale
|
2016-05-26 18:31:30 +02:00
|
|
|
}
|
|
|
|
return t
|
|
|
|
}
|
|
|
|
|
2016-05-18 04:12:23 +02:00
|
|
|
func initialize() (*opengl.Context, 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-05-14 21:05:57 +02:00
|
|
|
c, err := opengl.NewContext()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return c, 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
|
|
|
|
}
|
2015-01-07 03:22:48 +01: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) {
|
2015-01-15 14:28:05 +01:00
|
|
|
e.Call("preventDefault")
|
2015-01-02 16:52:49 +01:00
|
|
|
code := e.Get("keyCode").Int()
|
2016-05-19 17:15:05 +02:00
|
|
|
currentInput.keyDown(code)
|
2015-01-02 16:52:49 +01:00
|
|
|
})
|
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")
|
2015-01-02 16:52:49 +01:00
|
|
|
code := e.Get("keyCode").Int()
|
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-05-14 21:05:57 +02:00
|
|
|
c, err := opengl.NewContext()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return c, nil
|
2015-01-02 07:20:05 +01:00
|
|
|
}
|
|
|
|
|
2015-02-28 17:26:05 +01:00
|
|
|
func setMouseCursorFromEvent(e *js.Object) {
|
2016-03-24 17:15:47 +01:00
|
|
|
scale := currentUI.scale
|
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-05-19 17:15:05 +02:00
|
|
|
currentInput.setMouseCursor(x/scale, y/scale)
|
2015-01-20 18:58:29 +01:00
|
|
|
}
|
|
|
|
|
2016-03-24 17:15:47 +01:00
|
|
|
func devicePixelRatio() float64 {
|
|
|
|
ratio := js.Global.Get("window").Get("devicePixelRatio").Float()
|
2015-01-07 15:59:04 +01:00
|
|
|
if ratio == 0 {
|
|
|
|
ratio = 1
|
|
|
|
}
|
|
|
|
return ratio
|
|
|
|
}
|
|
|
|
|
2016-05-06 05:23:48 +02:00
|
|
|
func Main() error {
|
|
|
|
// Do nothing
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-05-19 17:07:04 +02:00
|
|
|
func (u *userInterface) Start(width, height, scale int, title string) error {
|
2015-01-05 14:08:22 +01:00
|
|
|
doc := js.Global.Get("document")
|
|
|
|
doc.Set("title", title)
|
2015-02-09 02:25:00 +01:00
|
|
|
u.setScreenSize(width, height, scale)
|
|
|
|
canvas.Call("focus")
|
2016-02-26 17:44:01 +01:00
|
|
|
return nil
|
2015-02-09 02:25:00 +01:00
|
|
|
}
|
|
|
|
|
2016-05-19 17:07:04 +02:00
|
|
|
func (u *userInterface) size() (width, height int) {
|
2016-03-24 17:15:47 +01:00
|
|
|
a := int(u.ActualScreenScale())
|
2015-02-09 16:10:50 +01:00
|
|
|
if a == 0 {
|
2015-02-19 18:01:56 +01:00
|
|
|
// a == 0 only on the initial state.
|
2015-02-09 16:10:50 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
width = canvas.Get("width").Int() / a
|
|
|
|
height = canvas.Get("height").Int() / a
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-05-19 17:07:04 +02:00
|
|
|
func (u *userInterface) setScreenSize(width, height, scale int) bool {
|
2015-02-09 16:10:50 +01:00
|
|
|
w, h := u.size()
|
2016-03-24 17:15:47 +01:00
|
|
|
s := u.scale
|
2015-02-09 16:10:50 +01:00
|
|
|
if w == width && h == height && s == scale {
|
|
|
|
return false
|
2015-02-09 02:25:00 +01:00
|
|
|
}
|
2016-03-24 17:15:47 +01:00
|
|
|
u.scale = scale
|
|
|
|
u.deviceScale = devicePixelRatio()
|
|
|
|
canvas.Set("width", width*u.ActualScreenScale())
|
|
|
|
canvas.Set("height", height*u.ActualScreenScale())
|
2015-01-05 14:22:47 +01:00
|
|
|
canvasStyle := canvas.Get("style")
|
2015-01-07 15:59:04 +01:00
|
|
|
|
|
|
|
cssWidth := width * scale
|
|
|
|
cssHeight := height * scale
|
|
|
|
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)")
|
2016-05-18 04:56:43 +02:00
|
|
|
u.sizeChanged = true
|
2015-02-09 02:25:00 +01:00
|
|
|
return true
|
2015-01-02 07:20:05 +01:00
|
|
|
}
|