I made a ship 1.0 rarity, and I saw it for sale carrying LOTS of Passenger Berths.

Filled up completely in fact.
Moderators: winston, another_commander
That sounds like a bug. How many passenger berths was the ship allowed to carry?Switeck wrote:I made a ship 1.0 rarity, and I saw it for sale carrying LOTS of Passenger Berths.
Filled up completely in fact.
I think I can see the outlines of a possible insider joke here:Kaks wrote:Probably the best way to get better collision detection is if we were to switch the internal coordinate system so that internal coordinates become relative to the player's ship. (NB: we could still use a witchpoint based coord system when we interact with it via js, so the actual coord settings for oxp object placement won't have to be touched!)
That way we could - relatively easily - have a bubble of space around the player where everything is calculated extremely well, and only do approximate collision detection in the distance to save on processing time - hapless NPCs in the far, far away distance will still have some collision detection problems & the occasional jitterness, but hey - out of sight, out of mind, I s'pose...
Edit: if we downgrade collision detection in the distance for 2.0 (there's a few possible shortcuts that could then be used to still produce realistic-like scooping & battle results) we could get many more in-system objects for a given frame rate! Something to think about...
This isn’t really the issue. The problem with Oolite collision detection is the approach, and the cost is in octree setup and memory consumption rather than actual collision detection. Each raise in octree resolution raises those costs by up to a factor of eight, and we’d need much higher resolution for nice results with big ships.Kaks wrote:Probably the best way to get better collision detection is if we were to switch the internal coordinate system so that internal coordinates become relative to the player's ship. (NB: we could still use a witchpoint based coord system when we interact with it via js, so the actual coord settings for oxp object placement won't have to be touched!)
There are precision issues when you go hundreds of times further from the original than usual, but that’s unrelated to collision detection.Kaks wrote:Weird, I thought we had a few posts already about problems with accurate ship's (& ship's subentites) positioning - jittery movements / noticeable wobbliness in supposedly fixed subentites - once we were sufficiently away from the coordinates' origin...
No, it really wouldn’t make it any easier to do that, and it would use more memory and processing time because octree data is currently generated once, shared between all instances of a ship, and cached.Kaks wrote:moving 0,0,0 to the middle of the player ship would make it fairly easy to have octree resolution degrade smoothly - and take considerably less memory and processing time
The point of the infinite octree (a spacial partitioning scheme with no fixed boundary, once again unrelated to the current voxel octrees) is to reduce the number of candidate collisions (and also the number of candidates for scan/search operations, which are a non-trivial cost).Kaks wrote:In other words: I couldn't agree more, using coarser collision detection away from the player is indeed a much smaller problem (hence a lot easier to implement & debug), than going for an 'infinite octree' approach! :)
I was creating a hack of the Constrictor with all its stats set "beyond ridiculous" for quick testing of almost everything I could think of. I wanted it to be an extremely fast "set of eyeballs" so I could watch whatever was happening in a system without using a debugger. And not have to worry about a full cargo bay. So I set its cargo max to 32,767 TC.Commander McLane wrote:That sounds like a bug. How many passenger berths was the ship allowed to carry?Switeck wrote:I made a ship 1.0 rarity, and I saw it for sale carrying LOTS of Passenger Berths.
Filled up completely in fact.
Hmm, I don't follow. Ok, we don't move the origin to the middle of the player's ship - it would simplify drawing objects in the player's vicinity, but complicate other calculations, which I assume we don't want to do - but I'm not too sure about the whole of your assessment!No, it really wouldn’t make it any easier to do that, and it would use more memory and processing time because octree data is currently generated once, shared between all instances of a ship, and cached.
Well, yes, but once we have the high-res octree there’s little point in using a low-res one. Most collisions will be rejected in a collision-sphere test or at a low level of the octree intersection test. Full-resolution octree tests aren’t a problem, but the O(n²) candidate collisions are an important limitation on population count even with quick rejections. Using space partitioning is the standard way of reducing this to O(log n)ish.Kaks wrote:Most octree generating code, including the one Oolite uses - correct me if I'm wrong - give you the lo-res representation 'for free' on the way of getting to the hi-res one.
All the more reason to switch to higher res octrees only in close proximity to the player!Ahruman wrote:Getting decent resolution for the octree for a Coriolis-sized object would require at least three more octree levels. For really big objects, there would be two or three more (an increase of up to 262 144x) – and it would still be inferior to direct mesh collision handling – so I still want to evaluate (not commit to) some of the OSS physics engines.
I doubt it would be of interest. I don’t intend to swap to realistic system-scale physics, just mesh-mesh collisions and ray casting.Kaks wrote:And yes, I did like the cut of Ogre's gib, many moons ago. Someone had started writing a space / planetary system extension for it too, but didn't get too far, though...