Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Programmer001

Pages: [1]
1
Graphics / Re: [SOLVED]Variable rendering and renderwindow.draw
« on: August 27, 2015, 01:52:32 am »
 :o Haha, that would certainly work wouldn't it.

2
Graphics / Re: Variable rendering and renderwindow.draw
« on: August 26, 2015, 08:56:13 am »
Simple. I like the alternate approach as well, it wouldn't be that hard to implement.

Thanks for the speedy reply


3
Graphics / [SOLVED]Variable rendering and renderwindow.draw
« on: August 26, 2015, 08:39:00 am »
Hey all,

I'm experimenting with different game loops. I've got one set up similar to deWitters Game Loop "Constant Game Speed independent of Variable FPS." Display() gets passed an interpolation value based on where the game is between frames.

So if "Actor" was at 500px in frame 1 and 600px in frame 2, and display() gets called in between the two frames then it should draw "Actor" at 550px despite that not being its actual position.

Bottom line, I'm trying to figure if I can have SFML draw an object offset from its actual position, without changing its actual position to make this concept work.

I'm still learning all the great features SFML has so maybe I missed it. Currently I've just been using something like: window.draw(actor);

Can this be done with Transforms or some other method?

Thank You!

4
Graphics / Re: Full screen isn't filling entire available screen space
« on: August 15, 2015, 10:28:17 pm »
Haha, yeah who knows.

I contacted NVidia support and they couldn't figure it out.

I have my NVidia set to be the one running in its control panel and activated the notification icon to tell me when it's the one running. All of that's working fine.

I'll figure it out eventually :) I don't have many games on this laptop so I'll have to download some and test resolutions there.

5
Graphics / Re: Full screen isn't filling entire available screen space
« on: August 12, 2015, 09:18:22 pm »
Well,

I was able to test the EXE on a Windows 7 and another Windows 10 computer and the full screen worked perfectly as it should.

So the issue looks to be isolated to my Windows 10 laptop. I'll need to do some more troubleshooting then but if anyone has any ideas I can try please let me know :)

Thanks!

6
Graphics / Re: Full screen isn't filling entire available screen space
« on: August 11, 2015, 08:35:25 pm »
Could you measure the actual SFML window (e.g. by using print key to get a screenshot)?

Also does this happen with minimalistic code as well, like the SFML examples?

Mario, I took a print screen when creating the window at 800 x 600 and sf::Style::Fullscreen. The print screen itself only turned out to be 640 x 480... If I use the snip tool (like I did with the screenshot in my original post) then I'm able to screenshot the entire viewable area.

I just tried this using the code copied and pasted from http://www.sfml-dev.org/tutorials/2.3/window-window.php.

Is this the initial creation of a window or are you re-creating it (using window.create())?
The test code from above created the window with:
sf::Window window(sf::VideoMode(800, 600), "My window", sf::Style::Fullscreen);

The code from my actual project creates a RenderWindow as a private class member:
sf::RenderWindow gameWindow;
and creates in the constructor:
sf::VideoMode resolution = getMaxResolution();
gameWindow.create(resolution, "Game Title", sf::Style::Fullscreen);

The important part of getMaxResolution() is:
sf::VideoMode resolution;

// Capture the largest possible resolution
std::vector<sf::VideoMode> modes = sf::VideoMode::getFullscreenModes();
resolution = modes[0];
resolution.width = 1280; // TESTING
resolution.height = 720; // TESTING

The rest just does error checking to make the the user isn't using a system not compatible with minimum requirements.

Are your GPU drivers up-to-date and certified for Win10?
Yes, my drivers are up-to-date. I have switched between my Nvidia card and Intel Integrated and have come up with the same results.

I'll try out the executable on a couple other PCs today and let you know my findings there as well.

Thanks!

7
Graphics / Full screen isn't filling entire available screen space
« on: August 11, 2015, 06:17:20 am »
Hi,

I'm setting up my game and have just set up the window to take the highest possible resolution using sf::VideoMode::getFullscreenModes(). The window is set up to be Fullscreen. This all works.

When I manually choose a resolution lower than my native (1080p), certain resolutions will not fullscreen properly. What I mean by this is say I set the ViewMode width and height to be 800x600 or 1280x720. When the window is created the screen resolution gets set properly and I get the black bars on the side of my monitor from using a different aspect ratio (for 800x600), BUT the actual game window only takes up 3/4 of the screen and I can still see and use my desktop to the right and bottom of the game window.

I've tried using the isValid() check and the resolutions are passing...

Why is the monitor resolution changing properly but the game window not filling up the entire available space? I have provided a screenshot from testing at 1280x720.

Edit:
Windows 10 64bit
Nvidia GeForce GT 750M

Pages: [1]