.. |
game.cpp
|
SCI: Added SegManager::getScript method and modified code to make use of it; moved VERIFY from seg_manager.h to seg_manager.cpp
|
2009-05-03 09:20:21 +00:00 |
gc.cpp
|
SCI: Changed SegManager to store the heap pointers in a Common::Arrray
|
2009-05-03 22:46:11 +00:00 |
gc.h
|
SCI: Renamed include/engine.h to engine/state.h; added a corresponding .cpp file with the EngineState constructor
|
2009-02-27 02:23:40 +00:00 |
grammar.cpp
|
SCI: Store parse_tree_branch_t in a Common::Arraay
|
2009-04-24 10:42:53 +00:00 |
heapmgr.h
|
SCI: Removed the evil macros in engine/heapmgr.h, by manually instantiating them where used (this enables us to further modify the code later one)
|
2009-04-28 15:59:40 +00:00 |
intmap.cpp
|
Fixed some silly warnings
|
2009-04-27 14:40:14 +00:00 |
intmap.h
|
SCI: Changed SegManager to subclass Common::Serializable
|
2009-05-03 09:25:15 +00:00 |
kdebug.cpp
|
SCI: cleanup
|
2009-03-04 05:19:19 +00:00 |
kdebug.h
|
SCI: Moved (kernel) debug stuff from tools.cpp to a new file engine/kdebug.cpp
|
2009-02-24 22:41:58 +00:00 |
kernel_types.h
|
SCI: Moved almost all files from include/ to other dirs; only include/engine.h remains
|
2009-02-27 02:23:00 +00:00 |
kernel.cpp
|
SCI: Changed SegManager to store the heap pointers in a Common::Arrray
|
2009-05-03 22:46:11 +00:00 |
kernel.h
|
WIP (still non-working) code for speech sync in CD talkie games (like e.g. KQ5 CD and SQ4 CD), taken from Greg's SCI implementation.
|
2009-04-25 08:50:42 +00:00 |
kevent.cpp
|
SCI: Turned GfxWidget::print function pointer into virtual method
|
2009-04-24 14:20:31 +00:00 |
kfile.cpp
|
SCI: Renamed bp_flag -> breakpointFlag; replaced global send_calls_allocated & send_calls vars by a local Common::Stack instance
|
2009-04-11 09:58:30 +00:00 |
kgraphics.cpp
|
SCI: Removed unused vars; doxygenified some comments; cleanup
|
2009-04-27 12:29:51 +00:00 |
klists.cpp
|
SCI: Continue transition from MemObject to MemObjectNEW
|
2009-05-03 11:07:07 +00:00 |
kmath.cpp
|
SCI: Renamed include/engine.h to engine/state.h; added a corresponding .cpp file with the EngineState constructor
|
2009-02-27 02:23:40 +00:00 |
kmenu.cpp
|
SCI: Turned GfxWidget::draw function pointer into virtual method
|
2009-04-24 14:22:14 +00:00 |
kmovement.cpp
|
SCI: Continue transition from MemObject to MemObjectNEW
|
2009-05-03 11:07:07 +00:00 |
kpathing.cpp
|
SCI: Changed GfxWidget::set_visual function pointer to virtual method setVisual
|
2009-04-24 10:48:51 +00:00 |
kscripts.cpp
|
SCI: Continue transition from MemObject to MemObjectNEW
|
2009-05-03 11:07:07 +00:00 |
ksound.cpp
|
Added all the different cases of kDoAudio as enums
|
2009-04-26 02:00:36 +00:00 |
kstring.cpp
|
SCI: Changed SegManager to store the heap pointers in a Common::Arrray
|
2009-05-03 22:46:11 +00:00 |
message.cpp
|
Fixed the GetMessage kernel opcode. Eco Quest 1 text is showing up correctly now
|
2009-04-23 18:46:41 +00:00 |
message.h
|
SCI: Start converting MessageState into a class
|
2009-03-01 00:18:30 +00:00 |
said.cpp
|
Disable MSVC warning in autogenerated code
|
2009-04-18 22:56:08 +00:00 |
said.y
|
Disable MSVC warning in autogenerated code
|
2009-04-18 22:56:08 +00:00 |
savegame.cpp
|
SCI: Changed SegManager to store the heap pointers in a Common::Arrray
|
2009-05-03 22:46:11 +00:00 |
savegame.h
|
EngineState is a struct, not a class
|
2009-03-12 08:14:55 +00:00 |
script.cpp
|
SCI: DoSync should work now, but the lip-syncing mechanism also needs DoAudio
|
2009-04-25 23:31:03 +00:00 |
script.h
|
SCI: Renamed global array 'formats' to the slightly more descriptive g_opcode_formats
|
2009-04-20 19:28:33 +00:00 |
scriptconsole.cpp
|
SCI: Changed SegManager to store the heap pointers in a Common::Arrray
|
2009-05-03 22:46:11 +00:00 |
scriptdebug.cpp
|
SCI: Changed SegManager to store the heap pointers in a Common::Arrray
|
2009-05-03 22:46:11 +00:00 |
seg_manager.cpp
|
SCI: Changed SegManager to store the heap pointers in a Common::Arrray
|
2009-05-03 22:46:11 +00:00 |
seg_manager.h
|
SCI: Changed SegManager to store the heap pointers in a Common::Arrray
|
2009-05-03 22:46:11 +00:00 |
state.cpp
|
SCI: Renamed execution_stack -> _executionStack and turned it into a Common::Array
|
2009-04-28 15:58:19 +00:00 |
state.h
|
SCI: Renamed execution_stack -> _executionStack and turned it into a Common::Array
|
2009-04-28 15:58:19 +00:00 |
stringfrag.cpp
|
SCI: Removed most uses of the 'inline' keyword. It is usually better to let the compiler figure out what to inline. As it is, most of these looked as if they were randomly placed ;)
|
2009-03-12 03:26:47 +00:00 |
vm_types.h
|
SCI: Renamed some kernel types and general cleanup
|
2009-02-28 11:12:59 +00:00 |
vm.cpp
|
SCI: Changed SegManager to store the heap pointers in a Common::Arrray
|
2009-05-03 22:46:11 +00:00 |
vm.h
|
SCI: Begun conversion of the MemObject union (used to implement poor man's fake inheritance) into a base class of all the various union members
|
2009-05-03 09:30:59 +00:00 |