Up until now, for the blocks we've been using a btDiscreteDynamicsWorld and adding a rigid body per block with btConvexShape defined by the 8 points of a block, and stepping the dynamicsWorld simulation once ever 1/100th of a second. This works as far as offering us the information we need to implement the gameplay, but becomes incredibly slow for anything more than a small number of blocks.
What we actually need from the world is:
- Being able to check if an oriented cylinder/capsule/something is colliding with anything (i.e if a rocket has hit something)
- Being able to check if a vertical cylinder/capsule/something is colliding with static floor geometry or any blocks of the tower (i.e we need to be able to do a kinematic character controller)
- Being able to determine which tower blocks are colliding/contained-within a sphere (i.e we need to know which blocks to remove from the tower when an explosion happens)
- Being able to add/remove blocks from the tower's physics representation quite frequently (i.e for removing blocks after explosions, and regenerating them later)
- Hopefully support this for around 65,000 blocks
I've done some reading around, and an idea came up that we could batch chunks of blocks up into btBvhTriangleMeshShapes and rebuild the relevant batches when blocks change. This is essentially what we're doing on the graphics side, so it seems sensible, but alone it doesn't seem to support working out which blocks to remove during an explosion because it seems that it only tell you which chunks are colliding with an explosion rather than which blocks specifically.
Is btBvhTriangleMeshShape a sensible direction to go in at all? Does btBvhTriangleMeshShape actually have a mechanism for detecting collision of subshapes within it that I haven't realised? If not, could some auxillary collision shapes/checking be performed on the fly for more fine grained information, but that would not have a negative performance benefit when no explosions collisions are being calculated?
We'd all be really grateful for any advice on what we may be doing naively, if this is possible to do efficiently within bullet, and any pointers in whatever direction may be needed to get this to work.
Thanks!
Diagrams
This is a diagram of a cross-section of our tower:

Here are some screen shots of the tower from a first person perspective, with the btConvexHullShapes drawn over the blocks:
http://you.mongle.me/tower/screenshots/010.png
http://you.mongle.me/tower/screenshots/011.png
http://you.mongle.me/tower/screenshots/012.png
Eventually we'd like to get the tower looking like this:
http://you.mongle.me/tower/circles/9,18 ... ,72,72.png
Where every vertical slice has the same layout, every ring is composed of the same shape (but sometimes that shape has 9 faces), and going from the centre each ring has either the same number or twice as many segments as the last.