Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-08-14 | MACVENTURE: Fix (another) small retrieval bug | Borja Lorente | |
2016-08-14 | MACVENTURE: Fix small retrieval bug | Borja Lorente | |
2016-08-14 | MACVENTURE: Test and complete main loop | Borja Lorente | |
2016-08-14 | MACVENTURE: Add command activation | Borja Lorente | |
2016-08-14 | MACVENTURE: Add main loop | Borja Lorente | |
2016-08-14 | MACVENTURE: Add object attribute retrieval | Borja Lorente | |
2016-08-14 | MACVENTURE: Add text huffman loading | Borja Lorente | |
2016-08-14 | MACVENTURE: Add filepath retrieval | Borja Lorente | |
2016-08-14 | MACVENTURE: Change container to return a stream | Borja Lorente | |
2016-08-14 | MACVENTURE: Add string tables | Borja Lorente | |
2016-08-14 | MACVENTURE: Test and fix object loading | Borja Lorente | |
2016-08-14 | MACVENTURE: Add generic non-persistent container loading | Borja Lorente | |
2016-08-14 | MACVENTURE: Fix detection | Borja Lorente | |
2016-08-14 | MACVENTURE: Add generic container | Borja Lorente | |
2016-08-14 | MACVENTURE: Add save game loading | Borja Lorente | |
2016-08-14 | MACVENTURE: Add image to self window | Borja Lorente | |
2016-08-14 | MACVENTURE: Add appropriate border bounding boxes | Borja Lorente | |
2016-08-14 | MACVENTURE: Add callbacks for all windows | Borja Lorente | |
2016-08-14 | MACVENTURE: Change inventory to use the general settings | Borja Lorente | |
2016-08-14 | MACVENTURE: Load general settings | Borja Lorente | |
2016-08-14 | MACVENTURE: Add the rest of the windows | Borja Lorente | |
2016-08-14 | MACVENTURE: Fix border offsets | Borja Lorente | |
2016-08-14 | MACVENTURE: Fix small border bug | Borja Lorente | |
2016-08-14 | MACVENTURE: Add command callback | Borja Lorente | |
2016-08-14 | MACVENTURE: Add commnad window text render | Borja Lorente | |
2016-08-14 | MACVENTURE: Add static menus | Borja Lorente | |
2016-08-14 | MACVENTURE: Add menu display | Borja Lorente | |
2016-08-14 | MACVENTURE: Add submenu loading | Borja Lorente | |
2016-08-14 | MACVENTURE: Add basic menu loading | Borja Lorente | |
2016-08-14 | MACVENTURE: Small fix in detection | Borja Lorente | |
2016-08-14 | MACVENTURE: Add game file manager | Borja Lorente | |
2016-08-14 | MACVENTURE: Extract GUI code | Borja Lorente | |
2016-08-14 | MACVENTURE: Border Loading code | Borja Lorente | |
2016-08-14 | MACVENTURE: Add naked window for tests | Borja Lorente | |
2016-08-14 | MACVENTURE: Add empty event loop | Borja Lorente | |
2016-08-14 | MACVENTURE: Add empty engine | Borja Lorente | |
2016-08-14 | MACVENTURE: Fix detection problem | Borja Lorente | |
2016-08-14 | MACVENTURE: Add game detection for Shadowgate | Borja Lorente | |
2016-08-14 | MACVENTURE: Add initial game files | Borja Lorente | |
2016-08-14 | FULLPIPE: Swap atan2 arguments | Eugene Sandulenko | |
2016-08-13 | TITANIC: In-progress implementing CParrot class | Paul Gilbert | |
2016-08-13 | TITANIC: Implemented CMaitreD class | Paul Gilbert | |
2016-08-13 | TITANIC: Implemented CLiftBot class | Paul Gilbert | |
2016-08-13 | TITANIC: Implemented CDoorbot class | Paul Gilbert | |
2016-08-13 | TITANIC: Implemented CBellBot class | Paul Gilbert | |
2016-08-13 | CREATE_PROJECT: Fix warning flags in Xcode generator | Colin Snover | |
Sign comparison should be on to match other compilers, and multichar warnings should be disabled for all platforms, not just iOS. | |||
2016-08-13 | SCI32: Fix cast warnings | Colin Snover | |
2016-08-13 | SCI: Fix sign comparison warning | Colin Snover | |
2016-08-13 | TITANIC: Added CBarbot CMovieEndMsg event handler | Paul Gilbert | |
2016-08-13 | SCI: Fix pointer invalidation caused by array storage moves | Colin 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. |