summary refs log tree commit diff stats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Added TransformableComponent to script engineKelly Rauchenberger2018-05-171-0/+10
|
* Added error checking to AutomatingSystemKelly Rauchenberger2018-05-171-2/+13
|
* Started integrating Lua as a scripting engineKelly Rauchenberger2018-05-176-267/+82
| | | | Currently moving platforms are able to have their movement controlled by a script rather than by XML, which is probably a better implementation and scales better to other things. The scripts, instead of using the components as state, use the stack as state. In this way, they pretend to be multithreaded. For instance, the moving platform calls moveRight and then moveLeft. Both of those functions internally make calls that say to wait until the next tick. When the AutomatingSystem ticks, it continues execution of all scripts (sequentially, of course) until they ask for the next tick again. This is implemented using coroutines.
* Fixed ferries pushing passengersKelly Rauchenberger2018-05-093-89/+141
| | | | | | Ferries now pretend that their passengers have already moved by the appropriate delta when detecting collision in the direction of their passengers. This allows a ferry to move into the space where their passengers are when there is nothing else blocking it. It also allows for special behavior when a passenger is crushed between its ferry and a wall, but this is not yet implemented. This fixes the first issue described in 8f1c4f1 -- that ferries cannot push their passengers. With this fix, ferries are basically functional.
* Simplified positions/sizes with vectorsKelly Rauchenberger2018-05-0914-275/+285
| | | | Positions and sizes are now stored as vectors (of doubles and ints, respectively). This allows for at least minor code simplification in many places, and cleans up the CollisionParams code in PonderingSystem quite a bit.
* Started refactoring collision detection to use directional functorKelly Rauchenberger2018-05-092-595/+533
| | | | Because there was a lot of code replication with collision detection, this new implementation uses a functor that takes a parameter object describing the things that are different between the four directions. This allows the collision detection code to be writen only once. It's currently very ugly, but should work identically to before.
* Fixed bug with upward tilemap collisionKelly Rauchenberger2018-05-091-1/+1
| | | | A body moving upward would have its transform incorrectly measured against the map collision boundaries.
* Fixed behavior of uncollidable bodiesKelly Rauchenberger2018-05-092-438/+445
| | | | The collidable flag, previously unused, now correctly disables collision detection when unset. This has the side effect of platforms being able to move through a dying player. It is undecided whether this behavior is wanted.
* Fixed behavior of frozen bodiesKelly Rauchenberger2018-05-092-22/+33
| | | | | | Frozen bodies are now still ticked, but their velocities and positions are no longer changed. This change was made so that frozen bodies can still be ungrounded/unferried, and that passengers of frozen bodies can still be ticked. Also fixes a compile error.
* Recursively handle ferried bodiesKelly Rauchenberger2018-05-092-600/+637
| | | | PonderingSystem now recursively ticks bodies, starting with unferried bodies at the top level, and recursively ticking their passengers. This fixes the second issue described in 8f1c4f1 -- that passengers may be ticked before their ferries, causing it to use out-of-date information about the ferry's location.
* Added a comment to TransformableComponent describing the ferrying stipulationKelly Rauchenberger2018-05-091-0/+6
|
* Unferried players while changing mapsKelly Rauchenberger2018-05-093-12/+36
| | | | This fixes the third problem described in 8f1c4f1 -- that if a ferried body's transform is modified outside of the PonderingSystem, it will not be unferried as appropriate. This does still require that any future code that modifies a body's transform also unferries the body first.
* Added ferrying (buggy)Kelly Rauchenberger2018-05-093-2/+89
| | | | | | | | | | | | A freefalling body is considered to be "ferried" if it is grounded by another body (not a map). Its location is then dependent on the ferry's location; in this way, the ferry carries the passenger around. This implementation is kind of buggy currently: first of all, ferrying does not work vertically upward, because the ferry will consider the passenger to be a wall and will not continue moving upward. Second, ferries are not processed before passengers, so passengers can move in a physics tick using the knowledge of a ferry's location before it moves in that tick. Third, if the transform coordinates are set by any system other than the PonderingSystem, the relative coordinates to the ferry will not be updated and the body will not be unferried if necessary. This is still a cool commit because, three years later, we have finally overcome the issue that stopped development on the original branch in 2015.
* Added simple AI implementationKelly Rauchenberger2018-05-037-3/+376
| | | | | | | | The new AutomatingSystem and AutomatableComponent are responsible for simple AI tasks. This currently is limited to moving entities at a certain speed for certain periods of time. These tasks are arranged as a set of behaviors, which are picked randomly when automation starts or when a behavior finishes executing. A behavior is a sequence of actions that run one after another. Currently, if an automated entity is blocked from moving by a collision, it will be coerced out of its intended path. This is because the automation parameters are stored as a speed and a duration, rather than a starting location and an ending location. This may end up being changed, or made configurable, as this is an early implementation of this feature and will need to be more complex later. Added an RNG object to the Game class, so that the AutomatingSystem can pick behaviors at random.
* Added missing #include <algorithm>Kelly Rauchenberger2018-04-291-0/+1
|
* Added map object collisionKelly Rauchenberger2018-04-298-395/+714
| | | | | | | | | | | | Collision checking in PonderingSystem was rewritten to work as follows: horizontal movement is step first, then vertical. In each step, the closest environmental boundary to the body is found on the axis of movement in the space traversed by the body. Then, if any map objects fall in the region between the body's old position and the environmental boundary (or body new position if no boundary was found), process collision with those bodies in increasing distance order, stopping if a collision stops movement short of where the next collision would take place. After this, process collision with all of the environmental boundaries at the axis distance found earlier, as long as movement hasn't stopped short. This is not the most optimal implementation, and there is a lot of code repetition, but it is a start and it works. All map objects currently function as walls. This fixes the bug where you could, with pixel-perfect precision, jump into the corner of a wall tile. The top of the hitbox for the spike tile was lowered by one pixel. This fixes a problem where if the player is halfway on a floor tile and halfway over a spike tile, the floor tile would not stop the spike tile from being processed, and the player would die.
* Implemented map object spritesKelly Rauchenberger2018-04-284-7/+116
| | | | Map objects cannot be interacted with or collided with yet but the sprites are loaded.
* Moved stb_image.h to a vendor folderKelly Rauchenberger2018-04-283-6338/+3
|
* Restructured the way the world is loadedKelly Rauchenberger2018-04-2822-1040/+1154
| | | | | | | | | | The World class was removed and replaced by the RealizingSystem and RealizableComponent. The realizable entity is intended to be a singleton and to represent the world. The Map class was also removed and integrated into the MappableComponent. These changes are to facilitate implementation of map objects without needing special intermediary objects (including the Map class). Now, map entities are created as soon as the world is created, and map object entities will be as well. They will simply be deactivated while the map is not active. Multiple players are now slightly better supported, which will be important in the future. This will likely become inefficient as the world becomes bigger, and some sort of sector-loading process will have to be designed. This also reduces the usefulness of EntityManager's entity-searching capabilities (which are not the most efficiently implemented currently anyway), and will likely in the future require some added functionality to better search subsets of entities. A lot of the components were also rewritten to use bare member variables instead of accessor methods, as they never had special functionality and just took up space. These components were also documented.
* EntityManager const-correctnessKelly Rauchenberger2018-04-252-12/+21
|
* Added freefalling terminal velocityKelly Rauchenberger2018-02-192-0/+7
|
* Added player death and event schedulingKelly Rauchenberger2018-02-1815-19/+346
| | | | Also added ability to make sprites flicker, to freeze physics for an entity, and to freeze progression of a sprite's animation loop.
* Implemented map adjacencyKelly Rauchenberger2018-02-1814-160/+715
| | | | | | 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.
* Refactored rendererKelly Rauchenberger2018-02-1625-948/+1624
| | | | | | Renderer is basically now more C++'y, as it makes more use of classes (a lot of GL types have been wrapped), and the renderer itself is now a class. The monitor mesh is also now indexed. Tweaked the NTSC artifacting after inadvertently fixing a bug with the way the image was loaded.
* Fixed inconsistent rendering failureKelly Rauchenberger2018-02-132-18/+18
| | | | | | | | | | The issue appears to have been caused by blending with unset alpha channels. Also included the re-ordered player character sprite image. The CMake file has been updated to include linking against some Apple libraries that are usually already included in GLFW3. refs #1
* Abstracted behavior related to "orientable" entitiesKelly Rauchenberger2018-02-1211-207/+392
| | | | | | | | 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-1115-31/+825
| | | | Only wall and platform collision currently works, and map edges are not currently implemented.
* Moved sprite rendering into AnimatingSystemKelly Rauchenberger2018-02-087-67/+96
| | | | 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.
* Introduced animated spritesKelly Rauchenberger2018-02-0817-182/+520
| | | | Also restyled a lot of the code.
* Fixed behavior of letting go of the right buttonKelly Rauchenberger2018-02-071-1/+1
|
* Inlined some componentsKelly Rauchenberger2018-02-078-234/+209
|
* Merge branch 'master' into es-rewriteKelly Rauchenberger2018-02-071-3/+5
|\
| * Made some fixes to rendering I guessKelly Rauchenberger2018-02-041-3/+4
| | | | | | | | | | This is pretty old so I'm not exactly sure what it does but without it, the monitor gets rendered upside down.
* | Changed EntityManager to dense vectorKelly Rauchenberger2018-02-075-124/+184
| | | | | | | | | | | | | | | | 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 changesKelly Rauchenberger2018-02-0519-194/+194
| |
* | Removed bare pointer from Sound classKelly Rauchenberger2018-02-051-29/+32
| | | | | | | | Also whitespace changes.
* | Player now movesKelly Rauchenberger2015-06-2622-60/+635
| |
* | Now displaying player characterKelly Rauchenberger2015-06-1811-152/+266
| |
* | Wrote EntityManagerKelly Rauchenberger2015-06-1131-1980/+294
|/
* Fixed bug allowing player to jump through walls when crossing a vertical map ↵Kelly Rauchenberger2015-03-191-5/+5
| | | | | | boundary It turns out that it is somewhat confusing that GAME_HEIGHT != MAP_HEIGHT*TILE_HEIGHT
* Implemented a simple AIKelly Rauchenberger2015-03-1911-92/+412
|
* Wrote an XML Schema describing maps file and also changed the spec a bitKelly Rauchenberger2015-03-187-276/+208
|
* Game can now read map file from map editor (also added new map)Kelly Rauchenberger2015-03-1812-168/+393
|
* Removed "../" from file pathsKelly Rauchenberger2015-03-167-18/+18
|
* Fixed the empty XML bug AGAINKelly Rauchenberger2015-03-151-12/+18
|
* Fixed error with empty left and right mapsKelly Rauchenberger2015-03-153-23/+22
|
* Fixed bug with map with no nameKelly Rauchenberger2015-03-151-2/+8
|
* Started writing map editorKelly Rauchenberger2015-03-144-7/+7
|
* Added sound when you hit the groundKelly Rauchenberger2015-03-1423-767/+826
| | | | Also split up components.cpp into files for each class, fixed a bug concerning falling off the screen when you change maps, and converted collision data into doubles.
* Removed some unnecessary parameters from methodsKelly Rauchenberger2015-03-146-15/+18
|