aboutsummaryrefslogtreecommitdiff
path: root/engines/lastexpress/entities/entity.cpp
AgeCommit message (Collapse)Author
2018-08-26LASTEXPRESS: fix gcc buildEvgeny Grechnikov
2018-08-26LASTEXPRESS: multiple fixes in NPC logicEvgeny 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.
2014-06-16LASTEXPRESS: Add asserts in EntityData serialization code. CID 1003265Littleboy
2014-02-18LASTEXPRESS: Make GPL headers consistent in themselves.Johannes Schickel
2013-12-10LASTEXPRESS: Rename Object propertiesLittleboy
2012-08-27LASTEXPRESS: Remove unnecessary castsLittleboy
2012-08-27LASTEXPRESS: Add const modifiersLittleboy
2012-08-27LASTEXPRESS: Reduce header interdependencyLittleboy
2012-08-01LASTEXPRESS: Remove use of skip from savegame functions when loadingLittleboy
We cannot accurately skip over compressed data as it is not know before decoding how much data will be used
2012-07-27LASTEXPRESS: Untemplatize setup functionsLittleboy
2012-07-27LASTEXPRESS: Remove templated resetCurrentParameters() functionLittleboy
2012-07-27LASTEXPRESS: More include re-organizationLittleboy
2012-07-27LASTEXPRESS: Move includes to header for setup function templatesJulien
2012-07-27LASTEXPRESS: Replace setup macros by functionsJulien
2012-07-27LASTEXPRESS: Merge the remaining macros in entity_intern.h into entity.hJulien
2012-07-27LASTEXPRESS: Remove TIME_CHECK_CALLBACK_1 macroJulien
2012-07-27LASTEXPRESS: Remove several TIME_CHECK* macrosJulien
2012-07-27LASTEXPRESS: Replace UPDATE_PARAM_PROC and UPDATE_PARAM_PROC_TIME macrosJulien
2012-07-27LASTEXPRESS: Replace UPDATE_PARAM_CHECK macroJulien
2012-07-27LASTEXPRESS: Replace UPDATE_PARAM macroJulien
2012-07-27LASTEXPRESS: Replace TIME_CHECK_PLAYSOUND_UPDATEPOSITION macroJulien
2012-07-27LASTEXPRESS: Replace TIME_CHECK_CALLBACK_ACTION macroJulien
2012-07-27LASTEXPRESS: Remove use of function wrappers in shared entity functionsJulien
2012-07-19LASTEXPRESS: Fix variable shadowing and update commentsLittleboy
2012-07-16LASTEXPRESS: Replace TIME_CHECK_SAVEPOINT and TIME_CHECK_OBJECT macrosLittleboy
2012-07-16LASTEXPRESS: Merge the two savegameBloodJacket functions into the base ↵Littleboy
Entity class
2012-07-16LASTEXPRESS: Replace SYNC_STRING macro by functionLittleboy
2012-07-16LASTEXPRESS: Replace COMPARTMENT_TO and COMPARTMENT_FROM_TO macrosLittleboy
2012-07-14LASTEXPRESS: Replace CALLBACK_ACTION macro by member functionLittleboy
2012-07-14LASTEXPRESS: Remove duplicated include statementsLittleboy
2011-06-28LASTEXPRESS: Cleanup commentsLittleboy
2011-06-28LASTEXPRESS: Move Sound class to the sound folderLittleboy
2011-06-24LASTEXPRESS: Refactor Sound classLittleboy
- Move entry-related functions to separate class - Move enumeration to shared header and rename FlagType to SoundFlag
2011-05-12GIT: Clean up: Suppress SVN tags, now uselessstrangerke
2010-11-16LASTEXPRESS: Fix SequenceFrame leak in Entities codeJulien Templier
- Add EntityCallData destructor to dispose of frames & Sequences - Properly dispose of frames in Entities::resetSequences() svn-id: r54270
2010-11-11LASTEXPRESS: Use SAFE_DELETE for class variablesJulien Templier
svn-id: r54201
2010-11-11LASTEXPRESS: Fix more memory leaksJulien Templier
- Missing deallocation of queued frames in SceneManager - Leaking functor on each call to entity setup functions - Add SoundEntry destructor & better Entity cleanup as reported by digitall svn-id: r54196
2010-10-26LASTEXPRESS: More savegame workJulien Templier
- Implement SaveLoad::writeEntry - Implement missing saveLoadWithSerializer functions for all serialized classes & structs - Add stub for SaveLoad::computePadding svn-id: r53845
2010-10-21LASTEXPRESS: Rename CURRENT_PARAMS to CURRENT_PARAMJulien Templier
svn-id: r53691
2010-10-18LASTEXPRESS: Merge in the engine.Eugene Sandulenko
svn-id: r53579