scummvm/engines/sci/engine
2009-05-05 12:28:12 +00:00
..
game.cpp SCI: Actually, it turns out the SystemString is more messed up than I thought: In some places it allocates a memory block of max_size bytes; sometimes max_size+1 bytes; and sometimes max_size*sizeof(reg_t) bytes. And sometimes strings frags are accessed as plain C strings (e.g. when saved), sometimes as a string encode as a series of reg_t values. Ouch :/ 2009-05-05 12:23:05 +00:00
gc.cpp SCI: Completed transition from MemObject (a union of various structs) to MemObjectNEW (a baseclass for these structs) 2009-05-03 22:46:38 +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
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: Started adding methods to MemObject subclasses: constructors, destructors, dereference() (and currently commented out refs to Common::Serializable 2009-05-03 22:47:04 +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: Actually, it turns out the SystemString is more messed up than I thought: In some places it allocates a memory block of max_size bytes; sometimes max_size+1 bytes; and sometimes max_size*sizeof(reg_t) bytes. And sometimes strings frags are accessed as plain C strings (e.g. when saved), sometimes as a string encode as a series of reg_t values. Ouch :/ 2009-05-05 12:23:05 +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: Started adding methods to MemObject subclasses: constructors, destructors, dereference() (and currently commented out refs to Common::Serializable 2009-05-03 22:47:04 +00:00
seg_manager.cpp This should fix linking on PSP. 2009-05-04 16:52:13 +00:00
seg_manager.h SCI: Started adding methods to MemObject subclasses: constructors, destructors, dereference() (and currently commented out refs to Common::Serializable 2009-05-03 22:47:04 +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: Fix my previous changes to internal_stringfrag_strcmp (side remark: Another bonus when using git resp. git-svn, and not SVN: you can commit stuff and test it some time before going public, thus avoid stupid screw ups like this one ;) 2009-05-05 12:28:12 +00:00
vm_types.h SCI: Renamed some kernel types and general cleanup 2009-02-28 11:12:59 +00:00
vm.cpp SCI: Started adding methods to MemObject subclasses: constructors, destructors, dereference() (and currently commented out refs to Common::Serializable 2009-05-03 22:47:04 +00:00
vm.h This should fix linking on PSP. 2009-05-04 16:52:13 +00:00