@011830-0a42ef84 yeah, my idea is to use a list queue for broadcasts, the issue with my method is that the broadcasts call a bunch, so those variable parameters get called within the same frame and out of order, thus leading to the arbitrary order of what clone takes priority (this is called a race condition). I am actively very much debating how it would work, but I think the general idea I have is listed below:
- A list named “action queue” that is added to each time a sprite wants to broadcast something
- it adds formatted text to the list, in the format of “{clone id}|{broadcast}” (This works because my method only broadcasts what clone/ai the sensors are for, if other broadcast parameters were added it would need to slightly change)
- it then broadcasts the actual broadcast (no parameter cus that stuff is now in queue since parameters cause race conditions)
- the actual ai clone would now start handling stuff (before it was the sensor doing stuff), when it receives a broadcast it checks the queue list to determine if it was queued for that broadcast
- if it finds its id for that broadcast, so “{clone id}|{broadcast}”, it will run the code for that broadcast
Here’s an example for the 5th clone (so clone id is 5 or “ai&5” but their interchangeable so it doesnt matter which way I decide to handle the clones) handling the broadcast “behind player”:
- the sensor detects the player and needs to broadcast “behind player”
- It adds “5|behind player” to the “action queue” list
- It broadcasts “behind player”
- All the clones of the bot receive “behind player”
- They check if the broadcast is for them or if they have a broadcast queued since it could be trying to handle multiple broadcasts in the same frame, they do this by checking if “action queue” contains the result of joining their clone id and “|behind player” (so join(clone id)(|behind player) in the editor)
- If that broadcast is for them (or they have one queued) then they do what they do for the “behind player” broadcast
- They delete that line from “action queue” with teh delete value of list block
If this doesnt make sense I can try an example, I jsut wanted to list out my thought process