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
|
|
|
|
|
|
|
|
package ui
|
|
|
|
|
2015-01-12 06:36:13 +01:00
|
|
|
import (
|
|
|
|
"github.com/gopherjs/gopherjs/js"
|
|
|
|
)
|
|
|
|
|
2016-03-24 15:51:20 +01:00
|
|
|
func (i *Input) KeyDown(key int) {
|
|
|
|
i.m.Lock()
|
|
|
|
defer i.m.Unlock()
|
2015-01-07 15:02:58 +01:00
|
|
|
k, ok := keyCodeToKey[key]
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
2015-01-02 16:52:49 +01:00
|
|
|
i.keyPressed[k] = true
|
|
|
|
}
|
|
|
|
|
2016-03-24 15:51:20 +01:00
|
|
|
func (i *Input) KeyUp(key int) {
|
|
|
|
i.m.Lock()
|
|
|
|
defer i.m.Unlock()
|
2015-01-07 15:02:58 +01:00
|
|
|
k, ok := keyCodeToKey[key]
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
2015-01-02 16:52:49 +01:00
|
|
|
i.keyPressed[k] = false
|
2015-01-02 07:20:05 +01:00
|
|
|
}
|
2015-01-06 15:41:03 +01:00
|
|
|
|
2016-03-24 15:51:20 +01:00
|
|
|
func (i *Input) MouseDown(button int) {
|
|
|
|
i.m.Lock()
|
|
|
|
defer i.m.Unlock()
|
2015-01-06 15:41:03 +01:00
|
|
|
p := &i.mouseButtonPressed
|
|
|
|
switch button {
|
|
|
|
case 0:
|
|
|
|
p[MouseButtonLeft] = true
|
|
|
|
case 1:
|
|
|
|
p[MouseButtonMiddle] = true
|
|
|
|
case 2:
|
|
|
|
p[MouseButtonRight] = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-24 15:51:20 +01:00
|
|
|
func (i *Input) MouseUp(button int) {
|
|
|
|
i.m.Lock()
|
|
|
|
defer i.m.Unlock()
|
2015-01-06 15:41:03 +01:00
|
|
|
p := &i.mouseButtonPressed
|
|
|
|
switch button {
|
|
|
|
case 0:
|
|
|
|
p[MouseButtonLeft] = false
|
|
|
|
case 1:
|
|
|
|
p[MouseButtonMiddle] = false
|
|
|
|
case 2:
|
|
|
|
p[MouseButtonRight] = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-24 15:51:20 +01:00
|
|
|
func (i *Input) SetMouseCursor(x, y int) {
|
|
|
|
i.m.Lock()
|
|
|
|
defer i.m.Unlock()
|
2015-01-06 15:41:03 +01:00
|
|
|
i.cursorX, i.cursorY = x, y
|
|
|
|
}
|
2015-01-12 06:36:13 +01:00
|
|
|
|
2016-03-24 15:51:20 +01:00
|
|
|
func (i *Input) UpdateGamepads() {
|
|
|
|
i.m.Lock()
|
|
|
|
defer i.m.Unlock()
|
2015-01-12 06:55:28 +01:00
|
|
|
nav := js.Global.Get("navigator")
|
|
|
|
if nav.Get("getGamepads") == js.Undefined {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
gamepads := nav.Call("getGamepads")
|
2015-01-12 06:36:13 +01:00
|
|
|
l := gamepads.Get("length").Int()
|
|
|
|
for id := 0; id < l; id++ {
|
|
|
|
gamepad := gamepads.Index(id)
|
|
|
|
if gamepad == js.Undefined || gamepad == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
axes := gamepad.Get("axes")
|
|
|
|
axesNum := axes.Get("length").Int()
|
|
|
|
i.gamepads[id].axisNum = axesNum
|
|
|
|
for a := 0; a < len(i.gamepads[id].axes); a++ {
|
|
|
|
if axesNum <= a {
|
|
|
|
i.gamepads[id].axes[a] = 0
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
i.gamepads[id].axes[a] = axes.Index(a).Float()
|
|
|
|
}
|
|
|
|
|
|
|
|
buttons := gamepad.Get("buttons")
|
|
|
|
buttonsNum := buttons.Get("length").Int()
|
|
|
|
i.gamepads[id].buttonNum = buttonsNum
|
|
|
|
for b := 0; b < len(i.gamepads[id].buttonPressed); b++ {
|
|
|
|
if buttonsNum <= b {
|
|
|
|
i.gamepads[id].buttonPressed[b] = false
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
i.gamepads[id].buttonPressed[b] = buttons.Index(b).Get("pressed").Bool()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|