Hi there,
Just a quick question.. is it a known behaviour that love.window.setMode()
resets the state of the keys of the keyboard, aka love.keyboard.isDown() returns false and love.keyreleased()
gets fired for all keys?
I have some code where I reset some window properties via love.window.setMode() and this "window reset" is triggered
via a keycombo.
I noticed that after the setMode() call every key is "released" (they are definitely not, they are still pressed down),
the callback "keyreleased" was fired as my debug code showed to me and isDown() resulted in "false" for the key in question.
It's not a big deal, but I was scratching my head for some minutes what has been triggering this.. so, is this intended behaviour?
(No example code yet because my code is bad for copy&paste.. but could provide one if needed.)
[SOLVED] love.window.setMode() "releases" all keys?
Forum rules
Before you make a thread asking for help, read this.
Before you make a thread asking for help, read this.
[SOLVED] love.window.setMode() "releases" all keys?
Last edited by LuaIsLife on Wed Nov 07, 2018 7:11 am, edited 1 time in total.
Re: love.window.setMode() "releases" all keys?
I've had a similar problem, especially annoying when toggling fullscreen mode because it causes double keypresses.
Edit: Simple repro:
It will keep going while space is pressed.
Edit: Simple repro:
Code: Select all
local full
function love.keypressed(k)
if k == "space" then
full = not full
love.window.setMode(800, 600, {fullscreen=full})
end
if k == "escape" then return love.event.quit() end
end
function love.draw()
love.graphics.print("Press space to toggle fullscreen mode")
end
Re: love.window.setMode() "releases" all keys?
Thanks.. so now easy fix at the time being?
- slime
- Solid Snayke
- Posts: 3179
- Joined: Mon Aug 23, 2010 6:45 am
- Location: Nova Scotia, Canada
- Contact:
Re: love.window.setMode() "releases" all keys?
There's no easy complete fix, but a really simple workaround is to only call setMode in keyreleased instead of keypressed.
Re: love.window.setMode() "releases" all keys?
I presume it's a consequence of destroying and recreating the window, as the keypresses are associated to a window.
Here's a workaround I could think of:
The idea is to gather all events into a table immediately after calling love.window.setMode, and if a pair keyreleased/keypressed with the same scancode is found, remove both from the list of events. When done, push all remaining events back into the queue.
Edit: Fixed a little bug above. Note that it still generates textinput events, though, but I don't think it's likely that your program changes mode while processing textinput events.
Here's a workaround I could think of:
Code: Select all
local function setMode(...)
love.window.setMode(...)
love.event.pump()
local f = love.event.poll()
local evs = {}
local nevs = 0
repeat
nevs = nevs + 1
evs[nevs] = {f()}
until evs[nevs][1] == nil
nevs = nevs - 1
local keyevs = {}
local i = 1
while i <= nevs do
if evs[i][1] == 'keyreleased' and not keyevs[evs[i][3]] then
keyevs[evs[i][3]] = i
i = i + 1
elseif evs[i][1] == 'keypressed' and keyevs[evs[i][3]] then
local k = evs[i][3]
table.remove(evs, i)
table.remove(evs, keyevs[k])
keyevs[k] = nil
nevs = nevs - 2
i = i - 1
else
i = i + 1
end
end
for i = 1, nevs do
love.event.push(unpack(evs[i]))
end
end
Edit: Fixed a little bug above. Note that it still generates textinput events, though, but I don't think it's likely that your program changes mode while processing textinput events.
- zorg
- Party member
- Posts: 3477
- Joined: Thu Dec 13, 2012 2:55 pm
- Location: Absurdistan, Hungary
- Contact:
Re: love.window.setMode() "releases" all keys?
Another solution would be to "stage" changes into variables, and only apply screen changes when you're not expecting any more input... like pressing/clicking on an "apply" button in an options menu like most games do it.
Me and my stuff
True Neutral Aspirant. Why, yes, i do indeed enjoy sarcastically correcting others when they make the most blatant of spelling mistakes. No bullying or trolling the innocent tho.

Re: love.window.setMode() "releases" all keys?
That has been my guess too... it's not too important to me, just something I noticed that MAY become important later on..
Thanks a ton for the support!
I am surprised how helpful this community is.. it's like löve and lua itself, small but "no bullshit" and "to the point" in a way.
Who is online
Users browsing this forum: Ahrefs [Bot], Bing [Bot] and 4 guests