示例#1
0
func Keystate(key string) int {
	if key == "joy1stick1x" {
		makestickopened()
		return int(C.SDL_JoystickGetAxis(joy, 0))
	}
	if key == "joy1stick1y" {
		makestickopened()
		return int(C.SDL_JoystickGetAxis(joy, 1))
	}
	if key == "joy1stick2x" {
		makestickopened()
		return int(C.SDL_JoystickGetAxis(joy, 3))
	}
	if key == "joy1stick2y" {
		makestickopened()
		return int(C.SDL_JoystickGetAxis(joy, 4))
	}
	if key == "joy1a" {
		makestickopened()
		return int(C.SDL_JoystickGetButton(joy, 0))
	}
	var length C.int
	keys := C.SDL_GetKeyboardState(&length)
	return int(*(*byte)(unsafe.Pointer(uintptr(unsafe.Pointer(keys)) + uintptr(str2scancode(key))))) //letter scancodes start at 4

}
示例#2
0
文件: sdl.go 项目: kearsley/Go-SDL
// Get the current state of a button on a joystick. The button indices
// start at index 0.
func (joystick *Joystick) GetButton(button int) uint8 {
	return uint8(C.SDL_JoystickGetButton(joystick.cJoystick, C.int(button)))
}
示例#3
0
func (joystick *Joystick) GetButton(button int) byte {
	_joystick := (*C.SDL_Joystick)(joystick)
	_button := (C.int)(button)
	return (byte)(C.SDL_JoystickGetButton(_joystick, _button))
}
示例#4
0
文件: joystick.go 项目: tanema/amore
// Joystick (https://wiki.libsdl.org/SDL_JoystickGetButton)
func (joy *Joystick) GetButton(button int) byte {
	return (byte)(C.SDL_JoystickGetButton(joy.cptr(), C.int(button)))
}
示例#5
0
文件: sdl.go 项目: gnanderson/Go-SDL
func (j *Joystick) GetButton(n int) bool {
	return C.SDL_JoystickGetButton((*C.SDL_Joystick)(unsafe.Pointer(j)), C.int(n)) != 0
}
示例#6
0
文件: joystick.go 项目: beoran/fungo
// Get the current state of a button on a joystick
// The button indices start at index 0.
func JoystickGetButton(joystick *C.SDL_Joystick, button int) uint8 {
	return uint8(C.SDL_JoystickGetButton(joystick, C.int(button)))
}