summary refs log tree commit diff stats
path: root/src/sprite.h
Commit message (Collapse)AuthorAgeFilesLines
* Added enclosure zonesKelly Rauchenberger2021-02-201-0/+1
| | | | A sprite with an enclosure zone will collide with it if it attempts to leave the area defined by the zone. This is used to make sure that wandering sprites don't end up in weird places.
* Added a randomly wandering Ionia to the mapKelly Rauchenberger2021-02-201-0/+3
|
* Made some sprites persist between map changesKelly Rauchenberger2021-02-171-0/+1
| | | | | | The player party characters are now initialised at the start of the game and are no longer re-created after every map change. The script system takes care of moving the player into the correct position on the new map. Deleted sprite IDs are now reused the next time a sprite is created, instead of throwing out everything between maps.
* Added lightning sprite to mailbox eventKelly Rauchenberger2021-02-131-0/+8
| | | | | | | | Sprites can be destroyed now, which really just means that their index is removed from the list of active sprites. The actual memory is not freed until all sprites are deleted on map change. Sprite layers are introduced. All sprites by default are on layer 0 (Normal) which renders them in between the lower and upper map layers. There is also a layer 1 (Above) that renders above the upper map layer, and the sprite for the lightning strike uses this layer in order to not be hidden by the trees. Fixed a bug where waiting for the end of a non-looping animation would trip the flag immediately upon the final frame activating, instead of waiting the length of the last frame.
* Added non-looping animationsKelly Rauchenberger2021-02-131-1/+7
| | | | Lucas can get electrocuted now.
* Added sprite shadowsKelly Rauchenberger2021-02-131-0/+1
|
* Player is no longer controllable during map transitionsKelly Rauchenberger2021-02-101-0/+1
|
* Map changing!Kelly Rauchenberger2021-02-091-1/+1
| | | | Also removed some dependencies on the Renderer. More changes need to be made. Fading to black before the change would be good. And making sure the characters are facing the right direction. Maybe that code shouldn't live in Game, either. Later we also want to combine the tilesets for these two maps (and any others that are on Tanetane).
* Added trigger zones to the mapKelly Rauchenberger2021-02-091-0/+2
| | | | Walking into a trigger zone runs a script.
* Added sprite interactionKelly Rauchenberger2021-02-061-1/+2
|
* Added collidable object cacheKelly Rauchenberger2021-02-061-0/+3
|
* Added running soundsKelly Rauchenberger2021-02-031-0/+3
|
* Added input systemKelly Rauchenberger2021-02-031-2/+7
|
* Converted Party into CharacterSystemKelly Rauchenberger2021-02-031-0/+17
|
* Added animation systemKelly Rauchenberger2021-02-031-33/+13
|
* Made use of new sprite sheet data!Kelly Rauchenberger2021-01-311-6/+8
|
* Sprite animations are more generic than still/walk nowKelly Rauchenberger2021-01-301-4/+3
|
* Added standing/walking animationsKelly Rauchenberger2021-01-301-1/+23
|
* Added party following movementKelly Rauchenberger2021-01-301-2/+2
|
* Encapsulated some player movement stuffKelly Rauchenberger2021-01-301-12/+7
| | | | Imported vector from therapy5
* Player character can move nowKelly Rauchenberger2021-01-301-0/+4
|
* Game now renders an image of LucasKelly Rauchenberger2021-01-301-0/+33