Working with different screen resolutions

Questions about the LÖVE API, installing LÖVE and other support related questions go here.
Forum rules
Before you make a thread asking for help, read this.
Bicentric
Prole
Posts: 28
Joined: Fri Jul 12, 2013 12:17 pm

Working with different screen resolutions

Post by Bicentric »

-
Last edited by Bicentric on Tue Jun 19, 2018 7:30 pm, edited 1 time in total.
User avatar
Nixola
Inner party member
Posts: 1949
Joined: Tue Dec 06, 2011 7:11 pm
Location: Italy

Re: Working with different screen resolutions

Post by Nixola »

I think you can just use love.graphics.scale before drawing anything
lf = love.filesystem
ls = love.sound
la = love.audio
lp = love.physics
lt = love.thread
li = love.image
lg = love.graphics
Bicentric
Prole
Posts: 28
Joined: Fri Jul 12, 2013 12:17 pm

Re: Working with different screen resolutions

Post by Bicentric »

-
Last edited by Bicentric on Tue Jun 19, 2018 7:30 pm, edited 1 time in total.
User avatar
Nixola
Inner party member
Posts: 1949
Joined: Tue Dec 06, 2011 7:11 pm
Location: Italy

Re: Working with different screen resolutions

Post by Nixola »

Well, if the default resolution is 1280x960 and the user's resolution is 1024x600 (my netbook) you could do this to figure out the correct scale:

Code: Select all

defW, defX = 1280, 960
modes = {
{800, 600},
{1024, 768},
{1152, 864},
{1280, 960}}
for i, v in ipairs(modes) do
   v.scale = math.min(v[1]/defW, v[2]/defH)
end
And then you just call love.graphics.scale(currentmode.scale, currentmode.scale) at the beginning of love.draw
lf = love.filesystem
ls = love.sound
la = love.audio
lp = love.physics
lt = love.thread
li = love.image
lg = love.graphics
Bicentric
Prole
Posts: 28
Joined: Fri Jul 12, 2013 12:17 pm

Re: Working with different screen resolutions

Post by Bicentric »

-
Last edited by Bicentric on Tue Jun 19, 2018 7:30 pm, edited 1 time in total.
User avatar
Jasoco
Inner party member
Posts: 3728
Joined: Mon Jun 22, 2009 9:35 am
Location: Pennsylvania, USA
Contact:

Re: Working with different screen resolutions

Post by Jasoco »

Yes, Pop always returns the coordinate system to the previous Push. You can nest Push and Pop as well. Not sure if there's a limit. But I've done many at once. Never hit a limit.
User avatar
DaedalusYoung
Party member
Posts: 413
Joined: Sun Jul 14, 2013 8:04 pm

Re: Working with different screen resolutions

Post by DaedalusYoung »

I did hit a limit during my tests. Just make an empty main.lua with a love.draw function, only calling the 'push'. For me, it crashed within a second, which is not very surprising.

So that means there's a limit to how many pushes you can stack.
Bicentric
Prole
Posts: 28
Joined: Fri Jul 12, 2013 12:17 pm

Re: Working with different screen resolutions

Post by Bicentric »

-
Last edited by Bicentric on Tue Jun 19, 2018 7:30 pm, edited 1 time in total.
User avatar
Jasoco
Inner party member
Posts: 3728
Joined: Mon Jun 22, 2009 9:35 am
Location: Pennsylvania, USA
Contact:

Re: Working with different screen resolutions

Post by Jasoco »

DaedalusYoung wrote:I did hit a limit during my tests. Just make an empty main.lua with a love.draw function, only calling the 'push'. For me, it crashed within a second, which is not very surprising.

So that means there's a limit to how many pushes you can stack.
How many did you nest?
User avatar
slime
Solid Snayke
Posts: 3179
Joined: Mon Aug 23, 2010 6:45 am
Location: Nova Scotia, Canada
Contact:

Re: Working with different screen resolutions

Post by slime »

The limit is about 27 I believe.
Post Reply

Who is online

Users browsing this forum: Bing [Bot], Google [Bot] and 7 guests