Maybe they should relate to Y resolution instead?
top 1680x1050, bottom 5040x1050)

The lines are much thicker (borders, radar, space compas, crosshair)
Moderators: winston, another_commander
If its fixable, I think it should always stick with height. Take 2 resolutions 1024x768 and 1280x768 the lines would be thicker on the 1280, which they shouldn't. It just shows a bit more in the sides.Day wrote:@another_commander: I created a new pull request implementing fov manipulation from javascript
https://github.com/OoliteProject/oolite/pull/130
@Vincentz: I think I've seen in the code that the hud lines width are proportionnal to the width of screen. It would totally explain your problem. Would it be useful to report a bug? A quick solution might be to make the lines proportionnal to the smallest of screen height/width.
I'll let you do itIf its fixable, I think it should always stick with height. Take 2 resolutions 1024x768 and 1280x768 the lines would be thicker on the 1280, which they shouldn't. It just shows a bit more in the sides.
So yeah, please do report it as a bug
It looks like scaling the HUD line width with increasing screen width is intentional. What was probably not considered is the existence of ultra-wide setups which result in overscaling. An attempt to fix that was done in commit ba9fb32 by clamping the maximum line width to a value which I consider reasonable (but have no means of testing). It will be in for testing in tonight's build. Vincentz, can you try that tomorrow and let us know if it makes things better for you?Vincentz wrote:So yeah, please do report it as a bug
Great. Thanksanother_commander wrote:It looks like scaling the HUD line width with increasing screen width is intentional. What was probably not considered is the existence of ultra-wide setups which result in overscaling. An attempt to fix that was done in commit ba9fb32 by clamping the maximum line width to a value which I consider reasonable (but have no means of testing). It will be in for testing in tonight's build. Vincentz, can you try that tomorrow and let us know if it makes things better for you?Vincentz wrote:So yeah, please do report it as a bug
I am not fond of fixing this by scaling on the vertical, because this way you just move the problem to those who might enjoy playing on ultra-high setups. If you think this is too rare, we had a thread in this very forum about people who were playing in portrait screen setups not too long ago. For this reason, I am fine with just a little bit thicker lines on very wide resolutions, as long as they don't distract too much due to their thickness itself. If you think that we can clamp the line thickness to somewhat lower and it will look better, we can certainly try to.Vincentz wrote:Still thinks it would be better to scale with vertical, which is afaik a standard for doing that (examples 720p 1080p)
This is something we can certainly look at, although I won't consider it a show stopper if things remain as they are now.Though with regards to viewing angle and FOV, I think (if its possible) it should automatically scale for horizontal (which afaik is a standard for FOV).
There are technical problems which prohibit going over the top with FOV. Even a 180 degrees FOV is not an option; things go haywire with the display. Also, the interior of ship models starts to become visible in high FOVs so that's another thing to take into account when deciding limits. That's why the current limit is set to 80 degrees - and this takes into consideration the possibility of scripts applying a multiplier to FOV in the future. Most games that I've seen set FOV limits to about what we have now (what is Elite:Dangerous doing by the way with this? What is its FOV limit?)4:3 (640x480 -1:33) = 57.5 FOV (43.125)
Then...
5:4 (600x480 - 1.25) = 53.9 FOV
16:10 (770x480 - 1.6) = 69 FOV
16:9 (853x480) - 1.77) = 76.7 FOV
and if I'm not wrong... for triple monitor setup (48:10)
48:10 (3072x480 - 4.8 ) = 207 FOV
So, to get the same zoom level as a 4:3, the 1920x1080 would need a FOV of 76.7 (the zoom is same, just more to see on the sides)
and a triple monitor setup with 3 1680x1050 would need a 207 FOV.
I'm sorry, you lost me.But if...
4:3 (640x480 (1024x768) - 1:33) = 57.5 FOV (43.125)
Then...
5:4 (600x480 (1280x1024)- 1.25) = 53.9 FOV
Without testing it, I can't say for sure, but I don't think it will show IF x-resolution is high enough.another_commander wrote:Also, the interior of ship models starts to become visible in high FOVs so that's another thing to take into account when deciding limits.
If the 4:3 is 1.33 in aspect ration, then the FOV aspect ration is 57.5/1.3 = 43.125Day wrote:I'm sorry, you lost me.But if...
4:3 (640x480 (1024x768) - 1:33) = 57.5 FOV (43.125)
Then...
5:4 (600x480 (1280x1024)- 1.25) = 53.9 FOV
What's the calculation behind that?
I am not talking about seeing the laser when changing FOV - that is fine, we are still looking at exterior parts of the model. I am talking about seeing the inside walls of the model at high FOVs, which is a no-no, unless all models are redesigned and we don't want to go there.Vincentz wrote:Without testing it, I can't say for sure, but I don't think it will show IF x-resolution is high enough.another_commander wrote:Also, the interior of ship models starts to become visible in high FOVs so that's another thing to take into account when deciding limits.
I can see the tip of the cannon if I use 80 FOV on a normal 16:10, however it wont show due to the increased zoom if I use triple monitor.
This can be tested on a normal monitor too, if game-window is resized to same width but 1/3 the height of the monitor.
I think the default is 60, though some have tinkered with the files and upped it - they seem to prefer 75.another_commander wrote:... what is Elite:Dangerous doing by the way with this? What is its FOV limit?
That depends on the model itself and I have not tested each and every one of them. For the Griff Cobra (early version of the model) the answer is yes for FOVs around 130-144 degrees. The higher the FOV, the higher the chance that this will happen with some model, so keeping the FOV limit to a conserative 80 degrees (OK, maybe it could be increased a little bit still) will hopefully avoid such problems.Vincentz wrote:Not to beat a dead horse herebut are the parts still showing if you use 125 FOV and the game-window height was reduced to a third of the screen (to simulate eyefinity)?
No problem, and thank you for your answerIf the 4:3 is 1.33 in aspect ration, then the FOV aspect ration is 57.5/1.3 = 43.125
Then the 5:4 aspect ratio would be 43.125 * (5/4) = 53.9 FOV
(but as mentioned, I'm not in a position to do math![]()
I think the FOV calculator above is better)