summary refs log tree commit diff stats
path: root/src/map.h
Commit message (Collapse)AuthorAgeFilesLines
* Implemented map adjacencyKelly Rauchenberger2018-02-181-2/+68
| | | | | | This brings along with it the ability to move to different maps, for which the PlayingSystem and PlayableComponent were introduced. The PlayingSystem is a general overseer system that handles big picture stuff like initializing the player and changing maps. The PlayableComponent represents the player. While the ControllableComponent is also likely to always only be on the player entity, the two are distinct by separation of concerns. This also required a refactoring of how collisions are processed, because of a bug where the player can move to a new map when horizontal collisions are checked, and vertical collisions are skipped, causing the player to clip through the ground because the normal force was never handled.
* Implemented map rendering and basic collisionKelly Rauchenberger2018-02-111-0/+45
| | | | Only wall and platform collision currently works, and map edges are not currently implemented.
* Wrote EntityManagerKelly Rauchenberger2015-06-111-70/+0
|
* Implemented a simple AIKelly Rauchenberger2015-03-191-0/+1
|
* Wrote an XML Schema describing maps file and also changed the spec a bitKelly Rauchenberger2015-03-181-18/+17
|
* Game can now read map file from map editor (also added new map)Kelly Rauchenberger2015-03-181-15/+41
|
* Fixed error with empty left and right mapsKelly Rauchenberger2015-03-151-4/+4
|
* Defined map equalityKelly Rauchenberger2015-03-141-0/+3
|
* Wrote simple factory to read map and entity data from XML filesKelly Rauchenberger2015-03-141-9/+22
|
* Const correctness!Kelly Rauchenberger2015-03-101-8/+8
| | | | Also created savefile and refactored collisions a bit.
* C++11'd everything!Kelly Rauchenberger2015-03-101-4/+10
| | | | Also moved location information from physics components into entity.
* Player can short jumpKelly Rauchenberger2015-02-211-0/+1
|
* Added CRT mesh!Kelly Rauchenberger2015-02-191-2/+2
| | | | Also a character sprite, changed up the map file format, fixed some shader bugs
* Refactored map loader and added a second mapKelly Rauchenberger2015-02-171-39/+18
| | | | Also tweaked the font for apostrophe, p, and q
* Monitor stuff is looking pretty cool!Kelly Rauchenberger2015-02-141-0/+42