Resolution Solution
Yet another scaling library.
Video demonstration:
Github page
What it can do:
It have 3 scale modes and you can switch between them at any time:
1 Aspect scaling mode - creates black lines/bars on sides, will provide same width and height scale for pixels, result in more clean look.
2 Stretching - stretch game to fill entire window.
3 Pixel Perfect - will scale, using only integer scale factors and adds black bars if it can't. Useful for pixel art.
Resolution Solution [library]
Resolution Solution [library]
- Attachments
-
- demo.love
- (39.32 KiB) Downloaded 2005 times
Last edited by GVovkiv on Mon Aug 21, 2023 8:45 am, edited 6 times in total.
Re: Resolution Solution [library]
Also, i come up with this name long time ago, when i was using clickteam fusion 2.5
i developed there example, where i show how you can add similar functionality to CF2.5
yeah, good old days
i developed there example, where i show how you can add similar functionality to CF2.5
yeah, good old days
- Gunroar:Cannon()
- Party member
- Posts: 1141
- Joined: Thu Dec 10, 2020 1:57 am
Re: Resolution Solution [library]
Nice work cleaning it up into something better (also now makes sense why you put [trash] by aspect.lua, maybe it should be [outdated] or something )
The name is also pretty long, but I guess it's okay if it gives nostalgia.
The name is also pretty long, but I guess it's okay if it gives nostalgia.
Re: Resolution Solution [library]
nope, [trash] tag make more sense since i literally deleted all related to aspect.lua files, github pageGunroar:Cannon() wrote: ↑Fri Jan 07, 2022 8:19 pm Nice work cleaning it up into something better (also now makes sense why you put [trash] by aspect.lua, maybe it should be [outdated] or something )
The name is also pretty long, but I guess it's okay if it gives nostalgia.
- Gunroar:Cannon()
- Party member
- Posts: 1141
- Joined: Thu Dec 10, 2020 1:57 am
Re: Resolution Solution [library]
Oh, yeah. Definately,
Re: Resolution Solution [library]
I'm having an issue with my game scaling in 16:9 resolutions. The scaling works fine in 4:3 and if my resolution is like 1279x720. But if it's in a 16:9 resolution and not 1920x1080 everything is off screen. I've looked at your example and I don't think I'm doing anything differently from your image drawing. I've provided my .love file as well.
- Attachments
-
- bike_game.love
- (11.38 KiB) Downloaded 2247 times
Re: Resolution Solution [library]
This library solve 1 specific problem:AlexCalv wrote: ↑Wed Jan 26, 2022 9:01 pm I'm having an issue with my game scaling in 16:9 resolutions. The scaling works fine in 4:3 and if my resolution is like 1279x720. But if it's in a 16:9 resolution and not 1920x1080 everything is off screen. I've looked at your example and I don't think I'm doing anything differently from your image drawing. I've provided my .love file as well.
If you need to render game, lets say, on 800x600 it's not very conveniently for end user to play in unresizable 800x600 window
So this library allow you to scale game to window with any size
800x600 game to 1920x1080 window and vise versa
So end user may play in your game with that window size, that they want
But i doesn't mean, that game will magically render properly itself, if you, for example, hard coded game for 1920x1080, you can't expect it to work if you set it to 800x600
You still should to deal with manually adding, for example, configs for 1920x1080, 1280x720, 800x600
This applies to: scrolling, camera, objects that should be in players vision regardless of resolution, etc
Also, just advice, create 2 separate functions to change game RENDERING resolution and actual window size
Re: Resolution Solution [library]
I found something that is not really a bug but something that is definitely inconvenient.
Using your RS library for the first time, I tried to draw a simple circle on the screen. When executing, it flashes the circle at the start and then it disappears. The draw loop was working - but the circle wasn't being drawn. After about 10 minutes of investigating and looking at your sample code, I fixed it with this:
I had to use setColor to see the circle. Something in your library is using 'black' (probably the background/bars) and making draw calls invisible unless someone thinks to manually set the colour back to white. I'm not sure if you can capture the 'default' colour and then return to that colour when your library exits? If you can't, then I would have to call setColor far more times than I normally would. I don't think ASPECT had this problem (?).
Maybe, for now, you can document this in your github and sample code?
Thanks for the library!
Using your RS library for the first time, I tried to draw a simple circle on the screen. When executing, it flashes the circle at the start and then it disappears. The draw loop was working - but the circle wasn't being drawn. After about 10 minutes of investigating and looking at your sample code, I fixed it with this:
Code: Select all
love.graphics.setColor(1, 1, 1, 1) <--------------
love.graphics.circle("fill", x, y, 10)
Maybe, for now, you can document this in your github and sample code?
Thanks for the library!
Last project:
https://togfox.itch.io/hwarang
A card game that brings sword fighting to life.
Current project:
Turn-based PBEM horse stable (racing) management sim: https://togfox.itch.io/horse-stable-manager
https://discord.gg/HeHgwE5nsZ
https://togfox.itch.io/hwarang
A card game that brings sword fighting to life.
Current project:
Turn-based PBEM horse stable (racing) management sim: https://togfox.itch.io/horse-stable-manager
https://discord.gg/HeHgwE5nsZ
Re: Resolution Solution [library]
Ah, i remember thattogFox wrote: ↑Sun Feb 06, 2022 1:21 am I found something that is not really a bug but something that is definitely inconvenient.
Using your RS library for the first time, I tried to draw a simple circle on the screen. When executing, it flashes the circle at the start and then it disappears. The draw loop was working - but the circle wasn't being drawn. After about 10 minutes of investigating and looking at your sample code, I fixed it with this:
I had to use setColor to see the circle. Something in your library is using 'black' (probably the background/bars) and making draw calls invisible unless someone thinks to manually set the colour back to white. I'm not sure if you can capture the 'default' colour and then return to that colour when your library exits? If you can't, then I would have to call setColor far more times than I normally would. I don't think ASPECT had this problem (?).Code: Select all
love.graphics.setColor(1, 1, 1, 1) <-------------- love.graphics.circle("fill", x, y, 10)
Maybe, for now, you can document this in your github and sample code?
Thanks for the library!
When i was rewriting "stop" function, i was asked myself "do i need make library to restore colors or let user do that manually?"
Because "if it restore original colors (that was before stop function) do i need restart other graphical states such as shaders, scaling, etc?"
But because love2d.org/forums doesn't exist, i was unable to ask others what they think about "how library should deal with that case"
so, tl;dr:
What for your taste is better:
Just point out "hey, don't forget to "love.graphics.setColor"!
Or just take care that by library?
(Since i still can't decide, lol)
Re: Resolution Solution [library]
I totally think you should set the colour back to the way it was. That's my humble view. A self-contained module/library should not impact the main code/project in unexpected ways like this. I'm not sure about other graphical states - are there many?
If you can't/don't reset back, then document the github, library and sample code to save other people a lot of heartache. Thanks.
If you can't/don't reset back, then document the github, library and sample code to save other people a lot of heartache. Thanks.
Last project:
https://togfox.itch.io/hwarang
A card game that brings sword fighting to life.
Current project:
Turn-based PBEM horse stable (racing) management sim: https://togfox.itch.io/horse-stable-manager
https://discord.gg/HeHgwE5nsZ
https://togfox.itch.io/hwarang
A card game that brings sword fighting to life.
Current project:
Turn-based PBEM horse stable (racing) management sim: https://togfox.itch.io/horse-stable-manager
https://discord.gg/HeHgwE5nsZ
Who is online
Users browsing this forum: Bing [Bot] and 1 guest