I managed to find a fix:
dropbox.com/s/3t7ngda18tx6i29/flock_02.c3p
I think the issue was that the birb's picking for nearest neigbour was picking itself, so it was always trying to turn to avoid itself. Either way, I jiggled around the picking conditions to make sure the active birb was excluded and it seems to help.
Other changes:
- I swapped to using the range object for avoidance (like I do for the other flocking routines) to pare down the selected birbs, which made things a bit easier.
- The birbs decelerate if they find a target in front of them, spacing them out
- I now use a single range object for all birbs and shuttle it around for each check, rather than each birb having its own pinned range object.
The sim works pretty well for about 100 or so birbs with all flocking routines running, but starts to slow down beyond that (still above 30fps but the lag is noticeable) - I'd be super appreciative of any optimisation suggestions.