summary refs log tree commit diff stats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Player movement/input is halted during cutscenesKelly Rauchenberger2021-02-103-1/+16
|
* Player is no longer controllable during map transitionsKelly Rauchenberger2021-02-104-4/+7
|
* Removed out-of-bounds tile collisionKelly Rauchenberger2021-02-101-4/+10
| | | | This allows running off screen for a map transition to happen without bumping into something that isn't there.
* loadMap requires a direction now, so party trails are set up correctlyKelly Rauchenberger2021-02-105-6/+14
|
* Running is preserved across screen transitionsKelly Rauchenberger2021-02-103-13/+32
|
* Direction is preserved across map transitions nowKelly Rauchenberger2021-02-101-1/+25
|
* Fixed running sound looping infinitely after running into map changeKelly Rauchenberger2021-02-103-4/+14
|
* Added fade out around map changeKelly Rauchenberger2021-02-104-3/+20
| | | | Also moved script system first in the loop so that the camera can catch up before rendering. Also added a map change from map 2 back to map 1.
* When changing map, place whole party at the warpKelly Rauchenberger2021-02-101-4/+6
|
* Fixed issue with walking vertically into solid spritesKelly Rauchenberger2021-02-101-6/+6
|
* Map changing!Kelly Rauchenberger2021-02-0916-66/+119
| | | | 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-098-18/+76
| | | | Walking into a trigger zone runs a script.
* Maps can contain named points of interest called warpsKelly Rauchenberger2021-02-093-1/+11
|
* Fixed issue with single-line messagesKelly Rauchenberger2021-02-091-0/+4
| | | | Including the "no problem here" message. Problem was introduced with the \f change.
* Entity prototypes can be stored in the map file nowKelly Rauchenberger2021-02-093-5/+49
|
* Added newlines that don't require A pressesKelly Rauchenberger2021-02-092-8/+26
| | | | \n in a text message just indicates a newline. \n\f is a newline with an A press.
* Added "no problem here"Kelly Rauchenberger2021-02-071-0/+13
|
* Characters added to a party now tween to their starting position instead of ↵Kelly Rauchenberger2021-02-061-2/+13
| | | | teleporting
* Added function to get Direction from one point to anotherKelly Rauchenberger2021-02-061-0/+26
|
* Added sound and animation changes to scriptingKelly Rauchenberger2021-02-064-7/+42
|
* Fixed text wrapping miscalculation issueKelly Rauchenberger2021-02-061-7/+1
|
* Added sprite interactionKelly Rauchenberger2021-02-064-14/+49
|
* Added collision with other spritesKelly Rauchenberger2021-02-063-29/+105
|
* Added FlintKelly Rauchenberger2021-02-061-0/+4
|
* Added collidable object cacheKelly Rauchenberger2021-02-064-18/+96
|
* Moved some collision stuff into the TransformSystemKelly Rauchenberger2021-02-063-49/+88
|
* Prevented multiple loading of the same image filesKelly Rauchenberger2021-02-052-13/+18
|
* Organised resources folderKelly Rauchenberger2021-02-054-23/+23
|
* Created script systemKelly Rauchenberger2021-02-056-2/+106
|
* Added pageflip message soundKelly Rauchenberger2021-02-051-0/+2
|
* Added little bobbing "next message" arrowKelly Rauchenberger2021-02-055-4/+51
|
* Added speaker headerKelly Rauchenberger2021-02-055-11/+49
|
* Added text boxesKelly Rauchenberger2021-02-0410-4/+377
| | | | | | Text now reveals itself and scrolls! Yay! It even plays speaker beeps. TODO: the arror indicating an A press is needed. Bullets on lines that need bullets. The header that says who the speaker is, if relevant.
* Added cutscene bars (and resized game)Kelly Rauchenberger2021-02-037-10/+127
|
* Added running soundsKelly Rauchenberger2021-02-038-5/+132
|
* Main loop exit guardKelly Rauchenberger2021-02-031-5/+1
|
* Added input systemKelly Rauchenberger2021-02-038-176/+294
|
* Converted Party into CharacterSystemKelly Rauchenberger2021-02-038-291/+293
|
* Added animation systemKelly Rauchenberger2021-02-0311-113/+136
|
* Added camera systemKelly Rauchenberger2021-02-039-64/+120
|
* Pulled transform stuff into a system (starting to do ECS stuff)Kelly Rauchenberger2021-02-038-26/+81
|
* Added "bumping into something while running" sfxKelly Rauchenberger2021-02-026-7/+95
|
* Added collision with map tilesKelly Rauchenberger2021-02-026-38/+144
|
* Fixed movement speed to be more like the gameKelly Rauchenberger2021-02-021-1/+1
|
* Added moving cameraKelly Rauchenberger2021-02-025-14/+66
|
* Using tmxlite instead of TilesonKelly Rauchenberger2021-02-027-40/+140
|
* Map rendering Works but I don't want to use Tileson so I'm gonna change thatKelly Rauchenberger2021-02-024-2/+80
| | | | Mainly bc Tileson requires std::filesystem, which my clang is too old for apparently, and while I can use gcc instead I just want to not, I suppose. Also Tileson's API is very weird RE const correctness? Idk. And also being able to parse the tmx files rather than exporting to json would be preferable.
* Added BoneyKelly Rauchenberger2021-01-311-0/+2
|
* Added DusterKelly Rauchenberger2021-01-311-2/+2
|
* Added KumatoraKelly Rauchenberger2021-01-311-4/+4
|