![]() |
Bug / Crash IdentifyMovingColliders.Execute OutOfBound crash - Printable Version +- Obi Official Forum (https://obi.virtualmethodstudio.com/forum) +-- Forum: Obi Users Category (https://obi.virtualmethodstudio.com/forum/forum-1.html) +--- Forum: Obi Rope (https://obi.virtualmethodstudio.com/forum/forum-4.html) +--- Thread: Bug / Crash IdentifyMovingColliders.Execute OutOfBound crash (/thread-4182.html) |
IdentifyMovingColliders.Execute OutOfBound crash - Guillaume - 23-04-2024 Hi! We recently had a crash in a obi job "IdentifyMovingColliders.Execute" (see attached picture to have the exact line). We are using Obi Rope 6.4 but the code I'll talks about remains the same in 6.5 After few investigation, the crash seems to happen when for some reasons we loaded, then unloaded some scenes containing colliders without letting them do the UpdateIfNeeded on the tracker. By doing this, the shapes remaings zeroed (just allocated). I wanted to check what was the initial cause of the bug by reading a bit more the sourcecode, and there is something I'm missing.
But maybe I'm missing something here! The code I would see in BurstColliderWorld.UpdateWorld: Code: var identifyMoving = new IdentifyMovingColliders Then in the Execute code I think we will not go out of bounds since "i" is only used on:
Code: protected void BeginStep(float stepDeltaTime) Do you also think that this parrallel for is doing too much loop/work over time? (maybe there are also other jobbed thing that do the same, but maybe I'm missing why) Thanks! RE: IdentifyMovingColliders.Execute OutOfBound crash - Guillaume - 24-04-2024 Well, I realize that there is still a place in the IdentifyMovingColliders.Execute that is testing if we are a "removed" shape/collider by testing "i >= colliderCount". And that the cellSpans count is indeed reduced if it doesn't match the colliderCount, so it's not only growing in count (only in capacity!) Code: // remove tail from the current spans array: So I guess the only issue we had is that we manage to have a zeroed shape that was still doing some computation and accessing an out of bound index in the collisionMaterials array that is the only unprotected access in the code, and we should have not noticed the out of bound access if we had at least one collision material ! It was not the point of this topic, but the question that came to me is: is it important for the simulation to have collisionMaterials? Or the default values without material are okay? RE: IdentifyMovingColliders.Execute OutOfBound crash - josemendez - 24-04-2024 Hi Guillaume! The reason why UpdateWorld iterates over cell spans instead of colliders is because we want to remove invalid colliders. When a collider is invalidated for some reason (for instance, it has been destroyed), it is moved to the end of the collider list, using a typical swapback operation while keeping the capacity of the list intact. So at any given time, all invalid colliders are past colliders.count but before cellSpans.count. It is fine to access past colliders.count, since a lists' backing array is always larger than its count. (capacity >= count) If you look at the end of the IdentifyMovingColliders method, you'll see a comment explaining this: Quote:// if the collider is at the tail (removed), we will only remove it from its current cellspan. I see no images attached to your email, and no stacktrace/description of the error you're getting, other than it happens in "IdentifyMovingColliders.Execute". Could you share more information? kind regards, RE: IdentifyMovingColliders.Execute OutOfBound crash - Guillaume - 24-04-2024 Well... I must be dumb or something. I was saying that Obi 6.5 was the same as our Obi 6.4 issue... but in fact Obi 6.5 will fix the issue we have because the Shape initialization changed! Obi 6.4 Code: colliderShapes.Add(new ColliderShape()); Obi 6.5 Code: colliderShapes.Add(new ColliderShape() { materialIndex = -1, rigidbodyIndex = -1}); So that was just it ![]() Sorry for all the noise. Next time I'll do more researches before asking around! RE: IdentifyMovingColliders.Execute OutOfBound crash - josemendez - 24-04-2024 (24-04-2024, 08:42 AM)Guillaume Wrote: So I guess the only issue we had is that we manage to have a zeroed shape that was still doing some computation and accessing an out of bound index in the collisionMaterials array that is the only unprotected access in the code, and we should have not noticed the out of bound access if we had at least one collision material ! Access to the collisionMaterials array is protected, at least in Obi 6.5.4 which is the current version: Code: // Expand bounds by collision material's stick distance: There should be no case where a destroyed collider has a materialIndex other than -1, let me know if this is what you're getting. (24-04-2024, 08:42 AM)Guillaume Wrote: It was not the point of this topic, but the question that came to me is: is it important for the simulation to have collisionMaterials? Or the default values without material are okay? You can have no collisionMaterial. In that case, friction, stickiness, etc will all be considered to be zero. RE: IdentifyMovingColliders.Execute OutOfBound crash - josemendez - 24-04-2024 (24-04-2024, 08:55 AM)Guillaume Wrote: Well... I must be dumb or something. Quite the contrary, that was a pretty in-depth analysis of the issue! ![]() (24-04-2024, 08:55 AM)Guillaume Wrote: So that was just it No problem. Let me know if I can be of any help! RE: IdentifyMovingColliders.Execute OutOfBound crash - Guillaume - 24-04-2024 (24-04-2024, 08:46 AM)josemendez Wrote: I see no images attached to your email, and no stacktrace/description of the error you're getting, other than it happens in "IdentifyMovingColliders.Execute". Could you share more information? I was pretty sure I joined the picture the first time... I missed everything I guess! Here is the line. But I think that the new initialization of shapes in Obi 6.5 will prevent this issue to ever happen! Thanks for your reply |