1
0
Derivar 0

Spacebar event

master
Noah 2021-01-03 15:26:03 -08:00
ascendente e5f4c3a168
cometimento 6e916169d6
2 ficheiros modificados com 4 adições e 1 eliminações

Ver ficheiro

@ -11,6 +11,7 @@ type State struct {
// Special keys
Escape bool
Space bool
Enter bool
Shift bool
Ctrl bool

Ver ficheiro

@ -166,12 +166,14 @@ func (r *Renderer) Poll() (*event.State, error) {
s.Ctrl = t.State == 1
case sdl.SCANCODE_RCTRL:
s.Ctrl = t.State == 1
case sdl.SCANCODE_SPACE:
s.Space = t.State == 1
case sdl.SCANCODE_BACKSPACE:
// Make it a key event with "\b" as the sequence.
s.SetKeyDown(`\b`, t.State == 1 || t.Repeat == 1)
default:
// Push the string value of the key.
s.SetKeyDown(string(t.Keysym.Sym), t.State == 1)
s.SetKeyDown(string(t.Keysym.Sym), t.State == 1 || t.Repeat == 1)
}
}
}