aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-08-14MACVENTURE: Add string tablesBorja Lorente
2016-08-14MACVENTURE: Test and fix object loadingBorja Lorente
2016-08-14MACVENTURE: Add generic non-persistent container loadingBorja Lorente
2016-08-14MACVENTURE: Fix detectionBorja Lorente
2016-08-14MACVENTURE: Add generic containerBorja Lorente
2016-08-14MACVENTURE: Add save game loadingBorja Lorente
2016-08-14MACVENTURE: Add image to self windowBorja Lorente
2016-08-14MACVENTURE: Add appropriate border bounding boxesBorja Lorente
2016-08-14MACVENTURE: Add callbacks for all windowsBorja Lorente
2016-08-14MACVENTURE: Change inventory to use the general settingsBorja Lorente
2016-08-14MACVENTURE: Load general settingsBorja Lorente
2016-08-14MACVENTURE: Add the rest of the windowsBorja Lorente
2016-08-14MACVENTURE: Fix border offsetsBorja Lorente
2016-08-14MACVENTURE: Fix small border bugBorja Lorente
2016-08-14MACVENTURE: Add command callbackBorja Lorente
2016-08-14MACVENTURE: Add commnad window text renderBorja Lorente
2016-08-14MACVENTURE: Add static menusBorja Lorente
2016-08-14MACVENTURE: Add menu displayBorja Lorente
2016-08-14MACVENTURE: Add submenu loadingBorja Lorente
2016-08-14MACVENTURE: Add basic menu loadingBorja Lorente
2016-08-14MACVENTURE: Small fix in detectionBorja Lorente
2016-08-14MACVENTURE: Add game file managerBorja Lorente
2016-08-14MACVENTURE: Extract GUI codeBorja Lorente
2016-08-14MACVENTURE: Border Loading codeBorja Lorente
2016-08-14MACVENTURE: Add naked window for testsBorja Lorente
2016-08-14MACVENTURE: Add empty event loopBorja Lorente
2016-08-14MACVENTURE: Add empty engineBorja Lorente
2016-08-14MACVENTURE: Fix detection problemBorja Lorente
2016-08-14MACVENTURE: Add game detection for ShadowgateBorja Lorente
2016-08-14MACVENTURE: Add initial game filesBorja Lorente
2016-08-14FULLPIPE: Swap atan2 argumentsEugene Sandulenko
2016-08-13TITANIC: In-progress implementing CParrot classPaul Gilbert
2016-08-13TITANIC: Implemented CMaitreD classPaul Gilbert
2016-08-13TITANIC: Implemented CLiftBot classPaul Gilbert
2016-08-13TITANIC: Implemented CDoorbot classPaul Gilbert
2016-08-13TITANIC: Implemented CBellBot classPaul Gilbert
2016-08-13CREATE_PROJECT: Fix warning flags in Xcode generatorColin Snover
Sign comparison should be on to match other compilers, and multichar warnings should be disabled for all platforms, not just iOS.
2016-08-13SCI32: Fix cast warningsColin Snover
2016-08-13SCI: Fix sign comparison warningColin Snover
2016-08-13TITANIC: Added CBarbot CMovieEndMsg event handlerPaul Gilbert
2016-08-13SCI: Fix pointer invalidation caused by array storage movesColin Snover
When objects are added to a SegmentObjTable, it may cause the internal storage for the table to expand and move to a new region of memory. When this happens, all pointers to objects held by a SegmentObjTable of the same type would be invalidated, due to an implementation detail that should not be exposed. To prevent this, objects are now allocated separately on the heap, so even if the table's storage moves due to insertions, the objects owned by the table will not, so references remain valid for the lifetime of the object.
2016-08-13TITANIC: Implementing CBarbot game object classPaul Gilbert
2016-08-13DEVTOOLS: Add Barbot's action frame ranges to create_titanicPaul Gilbert
2016-08-13COMMON: Introduce --debug-channels-only command line flag.Eugene Sandulenko
Many of our systems currently generate significant amount of debug output on deeper levels. Now, when your engine is using Debug Channels, you might want to show that debug information only, which is currently not possible, as the generic output will be mixed in your output. Alternative solution would be to implement possibility to specify per-channel debug levels.
2016-08-13FULLPIPE: Put behavior debug output to a separate channelEugene Sandulenko
2016-08-13BUILD: Add snapcraft.yaml so you can `snapcraft build` (#800)spads-spads
2016-08-13Merge pull request #803 from BenCastricum/detection_fixesEugene Sandulenko
SCUMM: Detection for dutch airport demo
2016-08-13FULLPIPE: Fix incorrect array element indirection in MGM::recalcOffsetsRetro-Junk
2016-08-13FULLPIPE: Fix wrong member name in InteractionController::handleInteractionRetro-Junk
2016-08-13FULLPIPE: Use proper Surface coordinatesRetro-Junk