mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2026-04-23 00:07:15 +08:00
6aa208e15e
internal/inputstate will be accessed from inpututil in the future. Updates #3249
125 lines
2.9 KiB
Go
125 lines
2.9 KiB
Go
// Copyright 2025 The Ebitengine Authors
|
|
//
|
|
// 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.
|
|
|
|
// Package inputstate provides APIs to access the input state for the current tick.
|
|
// This package is for the ebiten package and the inpututil package.
|
|
package inputstate
|
|
|
|
import (
|
|
"io/fs"
|
|
"sync"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/ui"
|
|
)
|
|
|
|
var (
|
|
theInputState inputState
|
|
)
|
|
|
|
type inputState struct {
|
|
state ui.InputState
|
|
m sync.Mutex
|
|
}
|
|
|
|
func Get() *inputState {
|
|
return &theInputState
|
|
}
|
|
|
|
func (i *inputState) Update(fn func(*ui.InputState)) {
|
|
i.m.Lock()
|
|
defer i.m.Unlock()
|
|
fn(&i.state)
|
|
}
|
|
|
|
func (i *inputState) AppendInputChars(runes []rune) []rune {
|
|
i.m.Lock()
|
|
defer i.m.Unlock()
|
|
return append(runes, i.state.Runes...)
|
|
}
|
|
|
|
func (i *inputState) IsKeyPressed(key ui.Key) bool {
|
|
if key < 0 || key > ui.KeyMax {
|
|
return false
|
|
}
|
|
|
|
i.m.Lock()
|
|
defer i.m.Unlock()
|
|
|
|
switch key {
|
|
case ui.KeyAlt:
|
|
return i.state.KeyPressed[ui.KeyAltLeft] || i.state.KeyPressed[ui.KeyAltRight]
|
|
case ui.KeyControl:
|
|
return i.state.KeyPressed[ui.KeyControlLeft] || i.state.KeyPressed[ui.KeyControlRight]
|
|
case ui.KeyShift:
|
|
return i.state.KeyPressed[ui.KeyShiftLeft] || i.state.KeyPressed[ui.KeyShiftRight]
|
|
case ui.KeyMeta:
|
|
return i.state.KeyPressed[ui.KeyMetaLeft] || i.state.KeyPressed[ui.KeyMetaRight]
|
|
default:
|
|
return i.state.KeyPressed[key]
|
|
}
|
|
}
|
|
|
|
func (i *inputState) CursorPosition() (float64, float64) {
|
|
i.m.Lock()
|
|
defer i.m.Unlock()
|
|
return i.state.CursorX, i.state.CursorY
|
|
}
|
|
|
|
func (i *inputState) Wheel() (float64, float64) {
|
|
i.m.Lock()
|
|
defer i.m.Unlock()
|
|
return i.state.WheelX, i.state.WheelY
|
|
}
|
|
|
|
func (i *inputState) IsMouseButtonPressed(mouseButton ui.MouseButton) bool {
|
|
i.m.Lock()
|
|
defer i.m.Unlock()
|
|
return i.state.MouseButtonPressed[mouseButton]
|
|
}
|
|
|
|
func (i *inputState) AppendTouchIDs(touches []ui.TouchID) []ui.TouchID {
|
|
i.m.Lock()
|
|
defer i.m.Unlock()
|
|
|
|
for _, t := range i.state.Touches {
|
|
touches = append(touches, ui.TouchID(t.ID))
|
|
}
|
|
return touches
|
|
}
|
|
|
|
func (i *inputState) TouchPosition(id ui.TouchID) (int, int) {
|
|
i.m.Lock()
|
|
defer i.m.Unlock()
|
|
|
|
for _, t := range i.state.Touches {
|
|
if id != ui.TouchID(t.ID) {
|
|
continue
|
|
}
|
|
return t.X, t.Y
|
|
}
|
|
return 0, 0
|
|
}
|
|
|
|
func (i *inputState) WindowBeingClosed() bool {
|
|
i.m.Lock()
|
|
defer i.m.Unlock()
|
|
return i.state.WindowBeingClosed
|
|
}
|
|
|
|
func (i *inputState) DroppedFiles() fs.FS {
|
|
i.m.Lock()
|
|
defer i.m.Unlock()
|
|
return i.state.DroppedFiles
|
|
}
|