Game Development Community

Maximum fullscreen resolution

by Suryadiputra Liawatimena · in Torque Game Engine · 03/01/2007 (1:26 am) · 9 replies

Does anybody know if TGE has maximum fullscreen resolution ? I tried to change the resolution but stucked only in 1024 * 768.

#1
03/01/2007 (1:42 am)
It's dependent on your video card and monitor, not Torque.
#2
03/01/2007 (2:59 am)
Im not so sure about that... haven't looked at it, but I'm getting 1024x786 too as max, where any other game allows up till 1600x1200.

Something tells me it's Torque.
#3
03/01/2007 (3:02 am)
Your video card & monitor will always have an impact on the max resolution you can achieve. That said, due to the age of Torque it's possible that the relevant screen resolution code is holding you back.
#4
03/01/2007 (3:37 pm)
No, Torque will handle very high resolutions and it has nothing to do with code age. What you need to do is change Torque to full screen mode at some resolution. Then go in and check the settings again for resolution. It should have opened up the choices to whatever your hardware/driver max is. That is how it behaves on my Windows 2000 machine. I just checked and it behaves exactly the same way under Linux as well.

To recap:
1. Put in a full screen mode.
2. Check available resolutions again and set to desired (or max) resolution.

It may be a code change needs to be made to reduce this to one step, but Torque is not limited at all on resolution that I can tell. I have run it 1680 x 1024 on my laptop, and it runs very well.
#5
03/02/2007 (1:55 am)
I have it run on 1680x1050 on my screen here.
But the non 4:3 aspects only show up if fullscreen is selected.

PS: Other games show up all they support. This must not mean that you can select it. Most games tend to use the DX Hardware caps to decide what they show up. This are the restrictions of your graphic card. They have nothing to do with what your screen actually is able to show. TGE seems to use both when deciding what it shows up.
#6
03/03/2007 (2:15 pm)
Sorry, my resolution on my laptop is 1680x1050.
#7
03/03/2007 (3:07 pm)
I got it to run 3260x2100 on my High Resolution TV.
#8
03/03/2007 (3:20 pm)
Max,
That is cool. What size of TV is it? I want to drool.
#9
03/07/2007 (7:50 am)
You can do it by modifying the engine or simply use the setScreenMode() Console Function in TorqueScript.
example: setScreenMode(1440 , 900, 32, true);
what it means: set resolution to 1440x900x32 and at fullscreen.