Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Moved sprite rendering into AnimatingSystem | Kelly Rauchenberger | 2018-02-08 | 1 | -0/+24 |
| | | | | Refactored how systems work slightly. Now, rendering can be done by a number of systems working together. Since the AnimatingSystem handles the animation of sprites, it should also handle the rendering of them. Because of this, the RenderingSystem has been removed. | ||||
* | Changed EntityManager to dense vector | Kelly Rauchenberger | 2018-02-07 | 1 | -18/+25 |
| | | | | | | | | This should improve speed, because entity lookup will be O(1) instead of O(log n). Deletion is also O(1). Insert stays at potentially O(n), but still should be overall faster than the previous method. Also replaced some asserts with exceptions. Also made Component polymorphic so that deletion actually works properly. | ||||
* | Whitespace changes | Kelly Rauchenberger | 2018-02-05 | 1 | -4/+4 |
| | |||||
* | Player now moves | Kelly Rauchenberger | 2015-06-26 | 1 | -0/+37 |