summary refs log tree commit diff stats
path: root/src/systems/controlling.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Added player death and event schedulingKelly Rauchenberger2018-02-181-0/+29
| | | | Also added ability to make sprites flicker, to freeze physics for an entity, and to freeze progression of a sprite's animation loop.
* Abstracted behavior related to "orientable" entitiesKelly Rauchenberger2018-02-121-116/+13
| | | | | | | | A lot of the stuff that ControllingSystem did to control the player character was moved into the new OrientingSystem. This is so that the player, or any player-like entities, can also be controlled by AI, with the underlying behavior being delegated in the same way as if the player were being controlled by the user. Fixed the issue where, if the player were blocked while moving horizontally, they would remain blocked even if vertical movement were to remove the collision. Fixed cases of the player animating incorrectly after performing certain movements.
* Implemented map rendering and basic collisionKelly Rauchenberger2018-02-111-11/+11
| | | | Only wall and platform collision currently works, and map edges are not currently implemented.
* Introduced animated spritesKelly Rauchenberger2018-02-081-48/+90
| | | | Also restyled a lot of the code.
* Fixed behavior of letting go of the right buttonKelly Rauchenberger2018-02-071-1/+1
|
* Whitespace changesKelly Rauchenberger2018-02-051-6/+6
|
* Player now movesKelly Rauchenberger2015-06-261-0/+168