ebiten/genkeys.go

524 lines
13 KiB
Go
Raw Normal View History

2015-01-06 18:25:26 +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 ignore
// Note:
// * Respect GLFW key names
// * https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent.keyCode
2015-01-06 20:27:57 +01:00
// * It is best to replace keyCode with code, but many browsers don't implement it.
2015-01-06 18:25:26 +01:00
package main
import (
"log"
"os"
"sort"
"strconv"
"strings"
2015-01-06 18:25:26 +01:00
"text/template"
"github.com/go-gl/glfw/v3.2/glfw"
2015-01-06 18:25:26 +01:00
)
var (
nameToGLFWKeys map[string]glfw.Key
2018-12-29 16:46:13 +01:00
nameToJSKeyCodes map[string][]string
keyCodeToNameEdge map[int]string
)
func init() {
nameToGLFWKeys = map[string]glfw.Key{
"Unknown": glfw.KeyUnknown,
"Space": glfw.KeySpace,
"Apostrophe": glfw.KeyApostrophe,
"Comma": glfw.KeyComma,
"Minus": glfw.KeyMinus,
"Period": glfw.KeyPeriod,
"Slash": glfw.KeySlash,
"Semicolon": glfw.KeySemicolon,
"Equal": glfw.KeyEqual,
"LeftBracket": glfw.KeyLeftBracket,
"Backslash": glfw.KeyBackslash,
"RightBracket": glfw.KeyRightBracket,
"GraveAccent": glfw.KeyGraveAccent,
"World1": glfw.KeyWorld1,
"World2": glfw.KeyWorld2,
"Escape": glfw.KeyEscape,
"Enter": glfw.KeyEnter,
"Tab": glfw.KeyTab,
"Backspace": glfw.KeyBackspace,
"Insert": glfw.KeyInsert,
"Delete": glfw.KeyDelete,
"Right": glfw.KeyRight,
"Left": glfw.KeyLeft,
"Down": glfw.KeyDown,
"Up": glfw.KeyUp,
"PageUp": glfw.KeyPageUp,
"PageDown": glfw.KeyPageDown,
"Home": glfw.KeyHome,
"End": glfw.KeyEnd,
"CapsLock": glfw.KeyCapsLock,
"ScrollLock": glfw.KeyScrollLock,
"NumLock": glfw.KeyNumLock,
"PrintScreen": glfw.KeyPrintScreen,
"Pause": glfw.KeyPause,
"LeftShift": glfw.KeyLeftShift,
"LeftControl": glfw.KeyLeftControl,
"LeftAlt": glfw.KeyLeftAlt,
"LeftSuper": glfw.KeyLeftSuper,
"RightShift": glfw.KeyRightShift,
"RightControl": glfw.KeyRightControl,
"RightAlt": glfw.KeyRightAlt,
"RightSuper": glfw.KeyRightSuper,
"Menu": glfw.KeyMenu,
"Last": glfw.KeyLast,
}
2018-12-29 16:46:13 +01:00
nameToJSKeyCodes = map[string][]string{
"Comma": {"Comma"},
"Period": {"Period"},
"Alt": {"AltLeft", "AltRight"},
"CapsLock": {"CapsLock"},
"Control": {"ControlLeft", "ControlRight"},
"Shift": {"ShiftLeft", "ShiftRight"},
"Enter": {"Enter"},
"Space": {"Space"},
"Tab": {"Tab"},
"Delete": {"Delete"},
"End": {"End"},
"Home": {"Home"},
"Insert": {"Insert"},
"PageDown": {"PageDown"},
"PageUp": {"PageUp"},
"Down": {"ArrowDown"},
"Left": {"ArrowLeft"},
"Right": {"ArrowRight"},
"Up": {"ArrowUp"},
"Escape": {"Escape"},
"Backspace": {"Backspace"},
"Apostrophe": {"Quote"},
"Minus": {"Minus"},
"Slash": {"Slash"},
"Semicolon": {"Semicolon"},
"Equal": {"Equal"},
"LeftBracket": {"BracketLeft"},
"Backslash": {"Backslash"},
"RightBracket": {"BracketRight"},
"GraveAccent": {"Backquote"},
2018-04-12 18:18:54 +02:00
"NumLock": {"NumLock"},
"Pause": {"Pause"},
"PrintScreen": {"PrintScreen"},
"ScrollLock": {"ScrollLock"},
"Menu": {"ContextMenu"},
}
// ASCII: 0 - 9
for c := '0'; c <= '9'; c++ {
nameToGLFWKeys[string(c)] = glfw.Key0 + glfw.Key(c) - '0'
2018-12-29 16:46:13 +01:00
nameToJSKeyCodes[string(c)] = []string{"Digit" + string(c)}
}
// ASCII: A - Z
for c := 'A'; c <= 'Z'; c++ {
nameToGLFWKeys[string(c)] = glfw.KeyA + glfw.Key(c) - 'A'
2018-12-29 16:46:13 +01:00
nameToJSKeyCodes[string(c)] = []string{"Key" + string(c)}
}
// Function keys
for i := 1; i <= 12; i++ {
name := "F" + strconv.Itoa(i)
nameToGLFWKeys[name] = glfw.KeyF1 + glfw.Key(i) - 1
nameToJSKeyCodes[name] = []string{name}
}
// Numpad
// https://www.w3.org/TR/uievents-code/#key-numpad-section
for c := '0'; c <= '9'; c++ {
name := "KP" + string(c)
nameToGLFWKeys[name] = glfw.KeyKP0 + glfw.Key(c) - '0'
nameToJSKeyCodes[name] = []string{"Numpad" + string(c)}
}
nameToGLFWKeys["KPDecimal"] = glfw.KeyKPDecimal
nameToGLFWKeys["KPDivide"] = glfw.KeyKPDivide
nameToGLFWKeys["KPMultiply"] = glfw.KeyKPMultiply
nameToGLFWKeys["KPSubtract"] = glfw.KeyKPSubtract
nameToGLFWKeys["KPAdd"] = glfw.KeyKPAdd
nameToGLFWKeys["KPEnter"] = glfw.KeyKPEnter
nameToGLFWKeys["KPEqual"] = glfw.KeyKPEqual
2018-12-29 16:46:13 +01:00
nameToJSKeyCodes["KPDecimal"] = []string{"NumpadDecimal"}
nameToJSKeyCodes["KPDivide"] = []string{"NumpadDivide"}
nameToJSKeyCodes["KPMultiply"] = []string{"NumpadMultiply"}
nameToJSKeyCodes["KPSubtract"] = []string{"NumpadSubtract"}
nameToJSKeyCodes["KPAdd"] = []string{"NumpadAdd"}
nameToJSKeyCodes["KPEnter"] = []string{"NumpadEnter"}
nameToJSKeyCodes["KPEqual"] = []string{"NumpadEqual"}
}
2015-01-06 18:25:26 +01:00
func init() {
keyCodeToNameEdge = map[int]string{
2017-04-13 20:09:00 +02:00
0xbc: "Comma",
0xbe: "Period",
0x12: "Alt",
0x14: "CapsLock",
0x11: "Control",
0x10: "Shift",
0x0D: "Enter",
0x20: "Space",
0x09: "Tab",
0x2E: "Delete",
0x23: "End",
0x24: "Home",
0x2D: "Insert",
0x22: "PageDown",
0x21: "PageUp",
0x28: "Down",
0x25: "Left",
0x27: "Right",
0x26: "Up",
0x1B: "Escape",
2017-04-13 20:09:00 +02:00
0xde: "Apostrophe",
0xbd: "Minus",
0xbf: "Slash",
0xba: "Semicolon",
0xbb: "Equal",
0xdb: "LeftBracket",
0xdc: "Backslash",
0xdd: "RightBracket",
0xc0: "GraveAccent",
0x08: "Backspace",
2018-04-13 19:29:18 +02:00
0x90: "NumLock",
0x6e: "KPDecimal",
0x6f: "KPDivide",
0x6a: "KPMultiply",
0x6d: "KPSubtract",
0x6b: "KPAdd",
0x13: "Pause",
0x91: "ScrollLock",
0x5d: "Menu",
2018-04-21 18:39:28 +02:00
// On Edge, this key does not work. PrintScreen works only on keyup event.
// 0x2C: "PrintScreen",
2018-04-13 19:29:18 +02:00
2018-04-21 18:39:28 +02:00
// On Edge, it is impossible to tell KPEnter and Enter / KPEqual and Equal.
2018-04-13 19:29:18 +02:00
// 0x0d: "KPEnter",
// 0x0c: "KPEqual",
2015-01-06 18:25:26 +01:00
}
// ASCII: 0 - 9
for c := '0'; c <= '9'; c++ {
keyCodeToNameEdge[int(c)] = string(c)
2015-01-06 18:25:26 +01:00
}
// ASCII: A - Z
for c := 'A'; c <= 'Z'; c++ {
keyCodeToNameEdge[int(c)] = string(c)
2015-01-06 18:25:26 +01:00
}
// Function keys
for i := 1; i <= 12; i++ {
keyCodeToNameEdge[0x70+i-1] = "F" + strconv.Itoa(i)
2015-01-06 18:25:26 +01:00
}
2018-04-13 19:29:18 +02:00
// Numpad keys
for c := '0'; c <= '9'; c++ {
keyCodeToNameEdge[0x60+int(c-'0')] = "KP" + string(c)
}
2015-01-06 18:25:26 +01:00
}
const ebitenKeysTmpl = `{{.License}}
{{.DoNotEdit}}
2015-01-07 15:21:52 +01:00
2015-01-06 18:25:26 +01:00
package ebiten
import (
"strings"
2019-03-30 15:28:07 +01:00
"github.com/hajimehoshi/ebiten/internal/driver"
2015-01-06 18:25:26 +01:00
)
// A Key represents a keyboard key.
2017-04-10 03:45:04 +02:00
// These keys represent pysical keys of US keyboard.
2017-07-23 15:49:04 +02:00
// For example, KeyQ represents Q key on US keyboards and ' (quote) key on Dvorak keyboards.
2015-01-06 18:25:26 +01:00
type Key int
2018-04-13 19:29:18 +02:00
// Keys.
2015-01-06 18:25:26 +01:00
const (
2019-03-30 15:28:07 +01:00
{{range $index, $name := .KeyNames}}Key{{$name}} Key = Key(driver.Key{{$name}})
2017-09-30 18:59:34 +02:00
{{end}} KeyMax Key = Key{{.LastKeyName}}
2015-01-06 18:25:26 +01:00
)
2018-04-13 20:20:43 +02:00
// String returns a string representing the key.
//
// If k is an undefined key, String returns an empty string.
func (k Key) String() string {
switch k {
{{range $name := .KeyNames}}case Key{{$name}}:
return {{$name | printf "%q"}}
{{end}}}
return ""
}
func keyNameToKey(name string) (Key, bool) {
switch strings.ToLower(name) {
{{range $name := .KeyNames}}case {{$name | printf "%q" | ToLower}}:
return Key{{$name}}, true
{{end}}}
return 0, false
}
2015-01-06 18:25:26 +01:00
`
2019-03-30 15:28:07 +01:00
const driverKeysTmpl = `{{.License}}
2015-01-06 18:25:26 +01:00
{{.DoNotEdit}}
2015-01-07 15:21:52 +01:00
2019-03-30 15:28:07 +01:00
package driver
2015-01-06 18:25:26 +01:00
type Key int
const (
2015-01-07 03:00:15 +01:00
{{range $index, $name := .KeyNames}}Key{{$name}}{{if eq $index 0}} Key = iota{{end}}
2015-01-06 18:25:26 +01:00
{{end}}
)
`
const uidriverGlfwKeysTmpl = `{{.License}}
2015-01-06 18:25:26 +01:00
{{.DoNotEdit}}
2015-01-07 15:21:52 +01:00
{{.BuildTag}}
2015-01-06 18:25:26 +01:00
package glfw
2015-01-06 18:25:26 +01:00
import (
2019-03-30 15:28:07 +01:00
"github.com/hajimehoshi/ebiten/internal/driver"
"github.com/hajimehoshi/ebiten/internal/glfw"
2015-01-06 18:25:26 +01:00
)
2019-03-30 15:28:07 +01:00
var glfwKeyCodeToKey = map[glfw.Key]driver.Key{
{{range $index, $name := .KeyNamesWithoutMods}}glfw.Key{{$name}}: driver.Key{{$name}},
2015-01-06 18:25:26 +01:00
{{end}}
2019-03-30 15:28:07 +01:00
glfw.KeyLeftAlt: driver.KeyAlt,
glfw.KeyRightAlt: driver.KeyAlt,
glfw.KeyLeftControl: driver.KeyControl,
glfw.KeyRightControl: driver.KeyControl,
glfw.KeyLeftShift: driver.KeyShift,
glfw.KeyRightShift: driver.KeyShift,
2015-01-06 18:25:26 +01:00
}
`
const uidriverJsKeysTmpl = `{{.License}}
2015-01-06 18:25:26 +01:00
{{.DoNotEdit}}
2015-01-07 15:21:52 +01:00
{{.BuildTag}}
2015-01-06 18:25:26 +01:00
package js
2015-01-06 18:25:26 +01:00
import (
"github.com/hajimehoshi/ebiten/internal/driver"
)
var keyToCodes = map[driver.Key][]string{
2019-03-30 15:28:07 +01:00
{{range $name, $codes := .NameToJSKeyCodes}}driver.Key{{$name}}: []string{
{{range $code := $codes}}"{{$code}}",{{end}}
},
{{end}}
}
var keyCodeToKeyEdge = map[int]driver.Key{
2019-03-30 15:28:07 +01:00
{{range $code, $name := .KeyCodeToNameEdge}}{{$code}}: driver.Key{{$name}},
2015-01-06 18:25:26 +01:00
{{end}}
}
`
const glfwKeysTmpl = `{{.License}}
{{.DoNotEdit}}
{{.BuildTag}}
package glfw
const (
{{range $name, $key := .NameToGLFWKeys}}Key{{$name}} = Key({{$key}})
{{end}}
)
`
2015-01-07 03:00:15 +01:00
type KeyNames []string
func (k KeyNames) digit(name string) int {
if len(name) != 1 {
return -1
}
c := name[0]
if c < '0' || '9' < c {
return -1
}
return int(c - '0')
}
func (k KeyNames) alphabet(name string) rune {
if len(name) != 1 {
return -1
}
c := rune(name[0])
if c < 'A' || 'Z' < c {
return -1
}
return c
}
func (k KeyNames) function(name string) int {
if len(name) < 2 {
return -1
}
if name[0] != 'F' {
return -1
}
i, err := strconv.Atoi(name[1:])
if err != nil {
return -1
}
return i
}
func (k KeyNames) Len() int {
return len(k)
}
func (k KeyNames) Less(i, j int) bool {
k0, k1 := k[i], k[j]
d0, d1 := k.digit(k0), k.digit(k1)
a0, a1 := k.alphabet(k0), k.alphabet(k1)
f0, f1 := k.function(k0), k.function(k1)
if d0 != -1 {
if d1 != -1 {
return d0 < d1
}
return true
}
if a0 != -1 {
if d1 != -1 {
return false
}
if a1 != -1 {
return a0 < a1
}
return true
}
if d1 != -1 {
return false
}
if a1 != -1 {
return false
}
if f0 != -1 && f1 != -1 {
return f0 < f1
}
return k0 < k1
}
func (k KeyNames) Swap(i, j int) {
k[i], k[j] = k[j], k[i]
}
const license = `// Copyright 2013 The Ebiten 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.
`
2015-01-06 18:25:26 +01:00
func main() {
// Follow the standard comment rule (https://golang.org/s/generatedcode).
doNotEdit := "// Code generated by genkeys.go using 'go generate'. DO NOT EDIT."
2015-01-07 15:21:52 +01:00
namesSet := map[string]struct{}{}
namesWithoutModsSet := map[string]struct{}{}
codes := []string{}
2018-12-29 16:46:13 +01:00
for name, cs := range nameToJSKeyCodes {
namesSet[name] = struct{}{}
codes = append(codes, cs...)
2015-01-07 15:18:40 +01:00
if name != "Alt" && name != "Control" && name != "Shift" {
namesWithoutModsSet[name] = struct{}{}
2015-01-07 15:18:40 +01:00
}
2015-01-06 18:25:26 +01:00
}
names := []string{}
namesWithoutMods := []string{}
for n := range namesSet {
names = append(names, n)
}
for n := range namesWithoutModsSet {
namesWithoutMods = append(namesWithoutMods, n)
}
2015-01-07 03:00:15 +01:00
sort.Sort(KeyNames(names))
2015-01-07 15:18:40 +01:00
sort.Sort(KeyNames(namesWithoutMods))
sort.Strings(codes)
2015-01-06 18:25:26 +01:00
for path, tmpl := range map[string]string{
"keys.go": ebitenKeysTmpl,
"internal/driver/keys.go": driverKeysTmpl,
"internal/glfw/keys.go": glfwKeysTmpl,
"internal/uidriver/glfw/keys.go": uidriverGlfwKeysTmpl,
"internal/uidriver/js/keys.go": uidriverJsKeysTmpl,
2015-01-06 18:25:26 +01:00
} {
f, err := os.Create(path)
if err != nil {
log.Fatal(err)
}
defer f.Close()
funcs := template.FuncMap{
"ToLower": strings.ToLower,
}
tmpl, err := template.New(path).Funcs(funcs).Parse(tmpl)
2015-01-06 18:25:26 +01:00
if err != nil {
log.Fatal(err)
}
// The build tag can't be included in the templates because of `go vet`.
// Pass the build tag and extract this in the template to make `go vet` happy.
buildTag := ""
switch path {
case "internal/uidriver/glfw/keys.go":
2017-05-11 12:09:13 +02:00
buildTag = "// +build darwin freebsd linux windows" +
2016-06-27 19:51:50 +02:00
"\n// +build !js" +
"\n// +build !android" +
"\n// +build !ios"
case "internal/uidriver/js/keys.go":
buildTag = "// +build js"
}
2015-01-06 18:25:26 +01:00
// NOTE: According to godoc, maps are automatically sorted by key.
2015-01-18 13:11:03 +01:00
if err := tmpl.Execute(f, map[string]interface{}{
2015-01-07 15:18:40 +01:00
"License": license,
"DoNotEdit": doNotEdit,
"BuildTag": buildTag,
2018-12-29 16:46:13 +01:00
"NameToJSKeyCodes": nameToJSKeyCodes,
"KeyCodeToNameEdge": keyCodeToNameEdge,
2015-01-07 15:18:40 +01:00
"Codes": codes,
"KeyNames": names,
2016-09-03 08:28:37 +02:00
"LastKeyName": names[len(names)-1],
2015-01-07 15:18:40 +01:00
"KeyNamesWithoutMods": namesWithoutMods,
"NameToGLFWKeys": nameToGLFWKeys,
2015-01-18 13:11:03 +01:00
}); err != nil {
log.Fatal(err)
}
2015-01-06 18:25:26 +01:00
}
}