So, I'm writing a 2D Java game engine based on LWJGL. (It'll be open source, but when it's a bit more polished. :P) I'm pretty far along, but as I'm trying to go through another polish I've decided I need some outside opinion on a data structure I'm using.
The structure is called an UpdateList<(generic)>. Basically, I want a fully dynamic list of objects to represent all objects in a game, yet be able to iterate through it with the speed of an array, as conceivably hundreds+ of objects could be referenced.
To do this, the class has 3 data members: an ArrayList<(generic)>, an array of the same type, and a boolean marking whether or not the list has changed (titled changed).
The class works fairly straightforwardly - objects are added and removed from the ArrayList as you would imagine, and doing so sets changed to true.
Then, there are two methods that involve accessing the array - updateList(T[]) and getUpdateList().
updateList passes the array to ArrayList for it's toArray(generic[]) method; the array is set to this new value (iff changed is true - if the list hasn't changed, nothing happens).
getUpdateList returns the array.
So, for use, updateList is called whenever the developer wants to update the array, and getUpdateList is used for the iteration. Not only is this a little bit faster than just using an ArrayList, but it also avoids ConcurrentModificationErrors, and the UpdateList can be edited during an iteration through itself.
So, two questions:
1:) Is this a good way of achieving the type of data structure I need? In terms of use/API, it's extremely simple, but I'm concerned about ArrayList's toArray method. How long does this take at higher numbers of entries? If it's unwieldy, is there a better dynamic class I can use?
2:) Secondly, I don't like having to call updateLists(T[0]). Is there a good way to manage the copy of the ArrayList into an array without needing this?
