Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-08-26 | LASTEXPRESS: multiple fixes in NPC logic | Evgeny Grechnikov | |
Checked the logic against the original game (to be precise, DOS English version from GOG, although I think AI logic has no significant differences with other versions). Fixed a *lot* of errors with varying visibility for the user. Also, save+exit+load sometimes resulted in memory corruption like ((EntityParametersSSII*)(new EntityParametersIIII))->param8 = 0; load operation did not restore the correct type of NPC logic context, the default one was used (which also has the smallest sizeof). Should be fixed now. Save+load is still unusable because it locks everybody waiting for kActionEndSound (the sound state is not restored), but, at least, it should not corrupt the memory. Hopefully. | |||
2016-05-03 | LASTEXPRESS: Fix logic comparison | Eugene Sandulenko | |
2014-06-16 | LASTEXPRESS: Fix comparison in sound entry serialization. CID 1004148 | Littleboy | |
2014-06-16 | LASTEXPRESS: Add asserts in sound entry serialization and update code. CID ↵ | Littleboy | |
1003259, 1003260 | |||
2014-06-16 | LASTEXPRESS: Rename Server* classes to Waiter* | Littleboy | |
2014-02-18 | LASTEXPRESS: Make GPL headers consistent in themselves. | Johannes Schickel | |
2013-12-10 | LASTEXPRESS: Rename Object properties | Littleboy | |
2012-08-27 | LASTEXPRESS: Remove some unreachable code | Littleboy | |
2012-08-27 | LASTEXPRESS: Fix analysis warnings | Littleboy | |
2012-08-01 | LASTEXPRESS: Remove use of skip from savegame functions when loading | Littleboy | |
We cannot accurately skip over compressed data as it is not know before decoding how much data will be used | |||
2012-07-27 | LASTEXPRESS: Fix some formatting issues | Littleboy | |
2012-07-27 | LASTEXPRESS: Add menu-related warnings and turn some warnings into errors | Littleboy | |
2012-07-27 | LASTEXPRESS: Remove entity include in savepoint.h | Littleboy | |
2012-07-27 | LASTEXPRESS: More include re-organization | Littleboy | |
2012-07-16 | LASTEXPRESS: Comment unused variable | Littleboy | |
2012-07-14 | LASTEXPRESS: Cleanup | Littleboy | |
- Add missing initializer/destructors - Add some const modifiers - Remove some unneeded casts - Use enumeration values in switch constructs | |||
2012-07-14 | LASTEXPRESS: Remove duplicated include statements | Littleboy | |
2011-07-08 | LASTEXPRESS: Simplify SoundQueue::updateQueue() | Littleboy | |
- Remove useless cache code - Use helper function to get the proper sound entry - Fix crash on using an invalid entry | |||
2011-07-06 | LASTEXPRESS: implement Sound::updateQueue() and all dependent functions | Eugene Sandulenko | |
2011-07-04 | LASTEXPRESS: Move sound filtering to base Sound class | Littleboy | |
- Rename kSoundStatusRemoved to kSoundStatusClosed - Rename kSoundStatusClear2 to kSoundStatusCached - Remove sound cache handling | |||
2011-07-01 | LASTEXPRESS: Fix loading of subtitles from sound name | Littleboy | |
2011-06-29 | LASTEXPRESS: Hook up preliminary sound filtering | Littleboy | |
- Add debug checks in soundFilter() - Rename kSoundStatusClear1 to kSoundStatusFilterVariant | |||
2011-06-29 | LASTEXPRESS: Update sound timer and sound entry playing | Littleboy | |
- Move filtering to SoundEntry class - Make some methods of SoundEntry class private - Add methods to check if a StreamedSound/AppendableSound is done playing | |||
2011-06-29 | LASTEXPRESS: Move SoundStatus to shared header | Littleboy | |
2011-06-29 | LASTEXPRESS: Replace shared sound buffer by per-entry buffer | Littleboy | |
2011-06-28 | LASTEXPRESS: Make SoundEntry members private | Littleboy | |
2011-06-28 | LASTEXPRESS: Cleanup comments | Littleboy | |
2011-06-28 | LASTEXPRESS: Move Sound class to the sound folder | Littleboy | |
2011-06-28 | LASTEXPRESS: Move sound queue related functions to a separate class | Littleboy | |
- Implement missing queue reset function - Cleanup SoundManager::playLoopingSound() | |||
2011-06-28 | LASTEXPRESS: Move more entry-related functions to Entry class | Littleboy | |
2011-06-25 | LASTEXPRESS: Give proper name to another sound struct member | Eugene Sandulenko | |
2011-06-24 | LASTEXPRESS: Move subtitle-related methods to the SubtitleEntry class | Littleboy | |
2011-06-24 | LASTEXPRESS: Refactor Sound class | Littleboy | |
- Move entry-related functions to separate class - Move enumeration to shared header and rename FlagType to SoundFlag |