Giter Club home page Giter Club logo

Comments (3)

slime73 avatar slime73 commented on June 9, 2024

You'll run into a bunch of issues if you recreate the window inside an input press event. I recommend doing it on release instead.

from love.

HDPLocust avatar HDPLocust commented on June 9, 2024

It might also be a good idea to use an event bus, for example:

function love.changescreenmode(width, height)
  love.window.setMode(width, height)
end

function love.keypressed(key)
  if key == "f" and love.keyboard.isDown("lctrl") then
    love.event.push("changescreenmode", 800, 600)
  end
end

The event execution will be delayed until the next frame, so you can collect everything what you need in current.

from love.

AverniteDF avatar AverniteDF commented on June 9, 2024

I think SDL assumes that all keys/buttons are in an unpressed state when it creates a window because any keypress that happened prior to the window being created is considered to be outside the scope or "jurisdiction" of the window. The input event system ignores keypresses and mouse clicks that happen outside the window and the isDown() states need to correspond with the events received. However, in the case of subsequent windows being created (such as toggling fullscreen) maybe the handover from one window to another could be handled better because even though it's a new window there is (or should be) continuity in the application.

Something that might not be too difficult to fix: When you hold down a mouse button in relative mode (with grabbed pointer) during a love.window.setMode() call the grab stops functioning and the pointer can leave the confines of the newly created window. I think this can be solved by re-grabbing the new window. I tried this using Win32 API calls and it worked. I'm not sure if this is an issue for Love2D or SDL.

from love.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.