2016-08-26 17:50:26 +02:00
|
|
|
// Copyright 2013 The Ebiten Authors
|
2014-12-24 03:04:10 +01:00
|
|
|
//
|
|
|
|
// 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.
|
2014-12-14 08:53:32 +01:00
|
|
|
|
2018-03-07 18:47:59 +01:00
|
|
|
// Code generated by genkeys.go using 'go generate'. DO NOT EDIT.
|
2015-01-07 15:21:52 +01:00
|
|
|
|
2014-12-14 08:53:32 +01:00
|
|
|
package ebiten
|
|
|
|
|
2015-01-01 17:20:20 +01:00
|
|
|
import (
|
2018-04-10 18:00:22 +02:00
|
|
|
"strings"
|
|
|
|
|
2018-04-01 16:20:45 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/input"
|
2015-01-01 17:20:20 +01:00
|
|
|
)
|
|
|
|
|
2014-12-14 14:05:44 +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.
|
2014-12-14 08:53:32 +01:00
|
|
|
type Key int
|
|
|
|
|
2014-12-14 14:05:44 +01:00
|
|
|
// Keys
|
2014-12-14 08:53:32 +01:00
|
|
|
const (
|
2018-04-01 16:20:45 +02:00
|
|
|
Key0 Key = Key(input.Key0)
|
|
|
|
Key1 Key = Key(input.Key1)
|
|
|
|
Key2 Key = Key(input.Key2)
|
|
|
|
Key3 Key = Key(input.Key3)
|
|
|
|
Key4 Key = Key(input.Key4)
|
|
|
|
Key5 Key = Key(input.Key5)
|
|
|
|
Key6 Key = Key(input.Key6)
|
|
|
|
Key7 Key = Key(input.Key7)
|
|
|
|
Key8 Key = Key(input.Key8)
|
|
|
|
Key9 Key = Key(input.Key9)
|
|
|
|
KeyA Key = Key(input.KeyA)
|
|
|
|
KeyB Key = Key(input.KeyB)
|
|
|
|
KeyC Key = Key(input.KeyC)
|
|
|
|
KeyD Key = Key(input.KeyD)
|
|
|
|
KeyE Key = Key(input.KeyE)
|
|
|
|
KeyF Key = Key(input.KeyF)
|
|
|
|
KeyG Key = Key(input.KeyG)
|
|
|
|
KeyH Key = Key(input.KeyH)
|
|
|
|
KeyI Key = Key(input.KeyI)
|
|
|
|
KeyJ Key = Key(input.KeyJ)
|
|
|
|
KeyK Key = Key(input.KeyK)
|
|
|
|
KeyL Key = Key(input.KeyL)
|
|
|
|
KeyM Key = Key(input.KeyM)
|
|
|
|
KeyN Key = Key(input.KeyN)
|
|
|
|
KeyO Key = Key(input.KeyO)
|
|
|
|
KeyP Key = Key(input.KeyP)
|
|
|
|
KeyQ Key = Key(input.KeyQ)
|
|
|
|
KeyR Key = Key(input.KeyR)
|
|
|
|
KeyS Key = Key(input.KeyS)
|
|
|
|
KeyT Key = Key(input.KeyT)
|
|
|
|
KeyU Key = Key(input.KeyU)
|
|
|
|
KeyV Key = Key(input.KeyV)
|
|
|
|
KeyW Key = Key(input.KeyW)
|
|
|
|
KeyX Key = Key(input.KeyX)
|
|
|
|
KeyY Key = Key(input.KeyY)
|
|
|
|
KeyZ Key = Key(input.KeyZ)
|
|
|
|
KeyAlt Key = Key(input.KeyAlt)
|
|
|
|
KeyApostrophe Key = Key(input.KeyApostrophe)
|
|
|
|
KeyBackslash Key = Key(input.KeyBackslash)
|
|
|
|
KeyBackspace Key = Key(input.KeyBackspace)
|
|
|
|
KeyCapsLock Key = Key(input.KeyCapsLock)
|
|
|
|
KeyComma Key = Key(input.KeyComma)
|
|
|
|
KeyControl Key = Key(input.KeyControl)
|
|
|
|
KeyDelete Key = Key(input.KeyDelete)
|
|
|
|
KeyDown Key = Key(input.KeyDown)
|
|
|
|
KeyEnd Key = Key(input.KeyEnd)
|
|
|
|
KeyEnter Key = Key(input.KeyEnter)
|
|
|
|
KeyEqual Key = Key(input.KeyEqual)
|
|
|
|
KeyEscape Key = Key(input.KeyEscape)
|
|
|
|
KeyF1 Key = Key(input.KeyF1)
|
|
|
|
KeyF2 Key = Key(input.KeyF2)
|
|
|
|
KeyF3 Key = Key(input.KeyF3)
|
|
|
|
KeyF4 Key = Key(input.KeyF4)
|
|
|
|
KeyF5 Key = Key(input.KeyF5)
|
|
|
|
KeyF6 Key = Key(input.KeyF6)
|
|
|
|
KeyF7 Key = Key(input.KeyF7)
|
|
|
|
KeyF8 Key = Key(input.KeyF8)
|
|
|
|
KeyF9 Key = Key(input.KeyF9)
|
|
|
|
KeyF10 Key = Key(input.KeyF10)
|
|
|
|
KeyF11 Key = Key(input.KeyF11)
|
|
|
|
KeyF12 Key = Key(input.KeyF12)
|
|
|
|
KeyGraveAccent Key = Key(input.KeyGraveAccent)
|
|
|
|
KeyHome Key = Key(input.KeyHome)
|
|
|
|
KeyInsert Key = Key(input.KeyInsert)
|
|
|
|
KeyLeft Key = Key(input.KeyLeft)
|
|
|
|
KeyLeftBracket Key = Key(input.KeyLeftBracket)
|
|
|
|
KeyMinus Key = Key(input.KeyMinus)
|
|
|
|
KeyPageDown Key = Key(input.KeyPageDown)
|
|
|
|
KeyPageUp Key = Key(input.KeyPageUp)
|
|
|
|
KeyPeriod Key = Key(input.KeyPeriod)
|
|
|
|
KeyRight Key = Key(input.KeyRight)
|
|
|
|
KeyRightBracket Key = Key(input.KeyRightBracket)
|
|
|
|
KeySemicolon Key = Key(input.KeySemicolon)
|
|
|
|
KeyShift Key = Key(input.KeyShift)
|
|
|
|
KeySlash Key = Key(input.KeySlash)
|
|
|
|
KeySpace Key = Key(input.KeySpace)
|
|
|
|
KeyTab Key = Key(input.KeyTab)
|
|
|
|
KeyUp Key = Key(input.KeyUp)
|
2017-09-30 18:59:34 +02:00
|
|
|
KeyMax Key = KeyUp
|
2014-12-14 08:53:32 +01:00
|
|
|
)
|
2018-04-10 18:00:22 +02:00
|
|
|
|
|
|
|
func keyNameToKey(name string) (Key, bool) {
|
|
|
|
switch strings.ToLower(name) {
|
|
|
|
case "0":
|
|
|
|
return Key0, true
|
|
|
|
case "1":
|
|
|
|
return Key1, true
|
|
|
|
case "2":
|
|
|
|
return Key2, true
|
|
|
|
case "3":
|
|
|
|
return Key3, true
|
|
|
|
case "4":
|
|
|
|
return Key4, true
|
|
|
|
case "5":
|
|
|
|
return Key5, true
|
|
|
|
case "6":
|
|
|
|
return Key6, true
|
|
|
|
case "7":
|
|
|
|
return Key7, true
|
|
|
|
case "8":
|
|
|
|
return Key8, true
|
|
|
|
case "9":
|
|
|
|
return Key9, true
|
|
|
|
case "a":
|
|
|
|
return KeyA, true
|
|
|
|
case "b":
|
|
|
|
return KeyB, true
|
|
|
|
case "c":
|
|
|
|
return KeyC, true
|
|
|
|
case "d":
|
|
|
|
return KeyD, true
|
|
|
|
case "e":
|
|
|
|
return KeyE, true
|
|
|
|
case "f":
|
|
|
|
return KeyF, true
|
|
|
|
case "g":
|
|
|
|
return KeyG, true
|
|
|
|
case "h":
|
|
|
|
return KeyH, true
|
|
|
|
case "i":
|
|
|
|
return KeyI, true
|
|
|
|
case "j":
|
|
|
|
return KeyJ, true
|
|
|
|
case "k":
|
|
|
|
return KeyK, true
|
|
|
|
case "l":
|
|
|
|
return KeyL, true
|
|
|
|
case "m":
|
|
|
|
return KeyM, true
|
|
|
|
case "n":
|
|
|
|
return KeyN, true
|
|
|
|
case "o":
|
|
|
|
return KeyO, true
|
|
|
|
case "p":
|
|
|
|
return KeyP, true
|
|
|
|
case "q":
|
|
|
|
return KeyQ, true
|
|
|
|
case "r":
|
|
|
|
return KeyR, true
|
|
|
|
case "s":
|
|
|
|
return KeyS, true
|
|
|
|
case "t":
|
|
|
|
return KeyT, true
|
|
|
|
case "u":
|
|
|
|
return KeyU, true
|
|
|
|
case "v":
|
|
|
|
return KeyV, true
|
|
|
|
case "w":
|
|
|
|
return KeyW, true
|
|
|
|
case "x":
|
|
|
|
return KeyX, true
|
|
|
|
case "y":
|
|
|
|
return KeyY, true
|
|
|
|
case "z":
|
|
|
|
return KeyZ, true
|
|
|
|
case "alt":
|
|
|
|
return KeyAlt, true
|
|
|
|
case "apostrophe":
|
|
|
|
return KeyApostrophe, true
|
|
|
|
case "backslash":
|
|
|
|
return KeyBackslash, true
|
|
|
|
case "backspace":
|
|
|
|
return KeyBackspace, true
|
|
|
|
case "capslock":
|
|
|
|
return KeyCapsLock, true
|
|
|
|
case "comma":
|
|
|
|
return KeyComma, true
|
|
|
|
case "control":
|
|
|
|
return KeyControl, true
|
|
|
|
case "delete":
|
|
|
|
return KeyDelete, true
|
|
|
|
case "down":
|
|
|
|
return KeyDown, true
|
|
|
|
case "end":
|
|
|
|
return KeyEnd, true
|
|
|
|
case "enter":
|
|
|
|
return KeyEnter, true
|
|
|
|
case "equal":
|
|
|
|
return KeyEqual, true
|
|
|
|
case "escape":
|
|
|
|
return KeyEscape, true
|
|
|
|
case "f1":
|
|
|
|
return KeyF1, true
|
|
|
|
case "f2":
|
|
|
|
return KeyF2, true
|
|
|
|
case "f3":
|
|
|
|
return KeyF3, true
|
|
|
|
case "f4":
|
|
|
|
return KeyF4, true
|
|
|
|
case "f5":
|
|
|
|
return KeyF5, true
|
|
|
|
case "f6":
|
|
|
|
return KeyF6, true
|
|
|
|
case "f7":
|
|
|
|
return KeyF7, true
|
|
|
|
case "f8":
|
|
|
|
return KeyF8, true
|
|
|
|
case "f9":
|
|
|
|
return KeyF9, true
|
|
|
|
case "f10":
|
|
|
|
return KeyF10, true
|
|
|
|
case "f11":
|
|
|
|
return KeyF11, true
|
|
|
|
case "f12":
|
|
|
|
return KeyF12, true
|
|
|
|
case "graveaccent":
|
|
|
|
return KeyGraveAccent, true
|
|
|
|
case "home":
|
|
|
|
return KeyHome, true
|
|
|
|
case "insert":
|
|
|
|
return KeyInsert, true
|
|
|
|
case "left":
|
|
|
|
return KeyLeft, true
|
|
|
|
case "leftbracket":
|
|
|
|
return KeyLeftBracket, true
|
|
|
|
case "minus":
|
|
|
|
return KeyMinus, true
|
|
|
|
case "pagedown":
|
|
|
|
return KeyPageDown, true
|
|
|
|
case "pageup":
|
|
|
|
return KeyPageUp, true
|
|
|
|
case "period":
|
|
|
|
return KeyPeriod, true
|
|
|
|
case "right":
|
|
|
|
return KeyRight, true
|
|
|
|
case "rightbracket":
|
|
|
|
return KeyRightBracket, true
|
|
|
|
case "semicolon":
|
|
|
|
return KeySemicolon, true
|
|
|
|
case "shift":
|
|
|
|
return KeyShift, true
|
|
|
|
case "slash":
|
|
|
|
return KeySlash, true
|
|
|
|
case "space":
|
|
|
|
return KeySpace, true
|
|
|
|
case "tab":
|
|
|
|
return KeyTab, true
|
|
|
|
case "up":
|
|
|
|
return KeyUp, true
|
|
|
|
}
|
|
|
|
return 0, false
|
|
|
|
}
|