Ship Shaking
-
I’ve worked on a mod with huge scales and scaling everything down actually helped. There was shaking, but it was manageable. We worked on a 1/20th scale from real size.
-
Isn’t there a Hex offset that you can change to sort that out?
-
Like this was some sort of feature…
Hex offsets only change what the developer made ON PURPOSE remember ::)
-
I think they were just lazy/didn’t have the time to fix it. I seriously see no advantage whatsoever, but I can see they haven’t fixed it because the systems they have didn’t get to a point where the shaking was really noticeable. It also goes in line with the large amount of stuff that’s half-done in the game.
-
You may find that it has to do with the integers Freelancer uses for the system. As you know it "plots"position coords.
There are two issues here and maybe this is what causes the shaking -
1. is the physical game default scale - which is 100kx100k
2. is the repositioning to check the players position with the navmap - which you scale to get the system largerThe engine is built on plotting to a standard size and therefore the “plotting” of the player ship will become more “inaccurate” the larger the system is. This is a common issue with largescale terrain in game engines which are not made for it.
My suggestion to fix this once and for all is to find the entry in the exe and increase the “standard” size (i.e. Li01 - doesnt have a navmapscale, its default), then see if the navmapscale in the universe.ini will work better.
The idea being that if the default size is only 100kx100k (New York, no nav map scale), And you set it to 100,000k or a similar multiple, the engine might cope with this better if its already the defult size.
either way, I do believe that the issue is the game trying to match your position in the actual game itself and the navmap, which are both updated at the same time. -
If this bug is related to the variable coordinates of the Ship, would it be possible to extent this variable with some more internal decimal places?
I just thought about scaling it all down, but if I keep the proportions and the shaking is really related to the ship’s postion, it would just continue to do so, as you would see everything larger, therefore also the more little inacurracies invisible at present scale.
If there’s a standard size for the systems in FL, like 100*100 K, it would be easier. I’ll try to investigate into both options.
-
**The error is actually due to matrix destabilization. The matrix for the camera is based off of the coordinates of the ship. Once the numbers get large the floating point errors start getting quite large. There is a fix but it would require an addition to the exe to fix it (w0dk4, a hook maybe?)
The quaternion matrix needs to be normalized right after its created and before it is transformed with the position vector. It is a single DX command but without the source I am unable to fix it.**
-
Well, I’m totally new to prgramming, but I will try to learn some in my holidays.
I’m just resizing, I post my results here after I tried. Btw, is there a way to rename the units for distance in Game?
13K would just sound such small/edit: Just tried it … would be in general possible, but it would take very much time to resize everything needed, besides the bugs that happen to appear resizing pieces from vanilla FL.
-
@Lancer:
**The error is actually due to matrix destabilization. The matrix for the camera is based off of the coordinates of the ship. Once the numbers get large the floating point errors start getting quite large. There is a fix but it would require an addition to the exe to fix it (w0dk4, a hook maybe?)
The quaternion matrix needs to be normalized right after its created and before it is transformed with the position vector. It is a single DX command but without the source I am unable to fix it.**
youll forever been an enourmous source of knowledge mate lol
-
@Lancer:
**The error is actually due to matrix destabilization. The matrix for the camera is based off of the coordinates of the ship. Once the numbers get large the floating point errors start getting quite large. There is a fix but it would require an addition to the exe to fix it (w0dk4, a hook maybe?)
The quaternion matrix needs to be normalized right after its created and before it is transformed with the position vector. It is a single DX command but without the source I am unable to fix it.**
As I understand it, the floating point errors increase simply because of the high float numbers, losing precision. How does your proposal help solve that?
I dont know a lot about 3D DirectX math stuff so please explain a little more -
**Well, I ran into this exact same problem writing my game engine. It took some time to track it down but it turned out that one of the quaternion routines in DX requires a normalized matrix. Unfortunately I don’t know where it is stored in FL, I ran across it a couple of years ago.
Basically the matrix needs to be normalized (converted to a 0.0 to 1.0 range) after this command D3DXQuaternionRotationYawPitchRoll and before this command D3DXMatrixAffineTransformation. The command that needs to be called is D3DXQuaternionNormalize and it needs to be the output from D3DXQuaternionRotationYawPitchRoll.
Sorry, I said position earlier, I was at work and didn’t have the code to look at, still part of the position transform is done by D3DXMatrixAffineTransformation. .
BTW, it’s actually the camera shaking, not the ship.
Edit - forgot to mention this, but the fix can also be applied in the view matrix calculation routine…**
-
Is it possible to write a programm that detects where the Freelancer.exe calls the D3DX routine (D3DXQuaternionRotationYawPitchRoll) for the camera?
If I understood you right, you would just have to add that normalization after this point.Thank you for making this point clear to me anyways
-
So, I have been doing some research on this and found quite a few things, sadly my conclusion is bad:
Not fixable.I was right earlier in this thread, floating points simply lose precision and at values of like 5000k, this precision error is already 0.5m. Thats why your cockpit jumps all over your screen that far out in a system.
@LS: FL doesnt really use D3DX functions as far as Im aware, they have their own math library which can be found in x86math.dll.
-
I’ll look thru my math code and see if I ever wrote a matrix normalization routine.
-
i smell a hook plugin ^^
-
I’m crossing my little fingers and toes that it does mean that
-
I’m crossing my little fingers and toes that it does mean that
im hoping so bad ill cross your fingers and toes FOR you ^^
edit cant believe i spelt toes as “tows” rofl
-
There is no real way to fix this. The important thing to understand here is that Freelancer uses floating points (and I think, D3D8 also only supports floating points for camera stuff, but I may be terribly wrong there) for everything related to space positions and the camera.
When you are at 1000k and 1.0 = 1m, you have a precision of around 6cm.Now imagine your ship standing at position 0, 1000000.03, 0
Since floating points cannot hold 1000000.03, but only 1000000.0 and 1000000.063, your ship and/or the camera may jump 6cm all the time. You see your ship shaking.
Also, what is important to understand: At those precision errors you can no longer fly in a straight line, your ship will shake when flying (or lets say, your ship will fly in zig-zag-pattern). This is especially visible at extreme distances, like 10000k, if you would login with 2 chars and would spectate the other player flying around.