summary refs log tree commit diff stats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Added variable movement speedKelly Rauchenberger2021-02-209-12/+22
| | | | Ionia now moves at half Lucas's speed, which I think is good for NPCs.
* Added enclosure zonesKelly Rauchenberger2021-02-205-0/+60
| | | | 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-209-5/+82
|
* Spawnblocked map sprites with already-used namesKelly Rauchenberger2021-02-181-0/+4
| | | | i.e. Map prototypes and triggers will not be instantiated upon loading the map if there is a persistent sprite with the same name. This is important because the Claus that joins your party is originally a map prototype.
* Started adding event where Claus joins the partyKelly Rauchenberger2021-02-183-2/+16
|
* Made some sprites persist between map changesKelly Rauchenberger2021-02-1712-85/+108
| | | | | | 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 ma
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.3.32825.248
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AnodyneArchipelago", "AnodyneArchipelago\AnodyneArchipelago.csproj", "{ECD7475F-3E22-4667-879D-7FD2E531E6A2}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{ECD7475F-3E22-4667-879D-7FD2E531E6A2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{ECD7475F-3E22-4667-879D-7FD2E531E6A2}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{ECD7475F-3E22-4667-879D-7FD2E531E6A2}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{ECD7475F-3E22-4667-879D-7FD2E531E6A2}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
	GlobalSection(ExtensibilityGlobals) = postSolution
		SolutionGuid = {BADFA823-EB94-44FE-9C42-85D7E95E7A95}
	EndGlobalSection
EndGlobal
class='logsubject'>Added tile-sized invisible sprites
Kelly Rauchenberger2021-02-122-1/+18
| | | | These are used when you want a solid, interactable object that is part of the map instead of sprite animated (e.g. the mailboxes).
* Scripts are organised per-map nowKelly Rauchenberger2021-02-127-19/+20
|
* Added message bulletsKelly Rauchenberger2021-02-123-13/+32
|
* Added choice promptsKelly Rauchenberger2021-02-115-38/+110
| | | | "A presses" are also no longer special values in the lines list, but are rather a field on the MessageLine object.
* 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
|