.. |
aatree.h
|
SCI: cleanup
|
2009-03-20 23:02:20 +00:00 |
game.cpp
|
pic_port_bounds was only set from command-line parameters it seems, so it's safe to put it together with the rest of the options
|
2009-04-02 16:38:33 +00:00 |
gc.cpp
|
SCI: Renamed some kernel types and general cleanup
|
2009-02-28 11:12:59 +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: Rewrote vocabulary code to use a Common::HashMap<String,ResultWord>
|
2009-03-24 17:42:12 +00:00 |
heapmgr.h
|
SCI: Renamed some kernel types and general cleanup
|
2009-02-28 11:12:59 +00:00 |
intmap.cpp
|
SCI: Added TODO: Merge SegInterface and MemObject? And some cleanup
|
2009-03-17 16:08:25 +00:00 |
intmap.h
|
SCI: Added TODO: Merge SegInterface and MemObject? And some cleanup
|
2009-03-17 16:08:25 +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
|
Wrapped all the still WIP SCI32-specific code around appropriate ifdef blocks. SCI32 has fundamental differences from previous SCI versions (e.g. direct point addressing is no longer possible), most of SCI32 games use SVGA resolutions and currently a lot of SCI32 specific code is missing (like, for example, the newer string and array handling functions, the widget system etc). This has been done in the same manner as in the SCUMM and SAGA engines.
|
2009-03-30 07:53:32 +00:00 |
kernel.h
|
Changed abs_rect_t to Common::Rect
|
2009-03-18 16:43:12 +00:00 |
kevent.cpp
|
SCI: Reduced header interdependencies some more
|
2009-03-07 19:23:47 +00:00 |
kfile.cpp
|
SCI: Moved savegame specific stuff from state.h to a new header savegame.h
|
2009-03-12 03:26:21 +00:00 |
kgraphics.cpp
|
pic_port_bounds was only set from command-line parameters it seems, so it's safe to put it together with the rest of the options
|
2009-04-02 16:38:33 +00:00 |
klists.cpp
|
SCI: cleanup
|
2009-03-12 03:26:58 +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
|
Merged sciw_select_item() and sciw_unselect_item()
|
2009-03-25 16:37:50 +00:00 |
kmovement.cpp
|
SCI: Renamed some kernel types and general cleanup
|
2009-02-28 11:12:59 +00:00 |
kpathing.cpp
|
Applied fingolfin's suggestion to remove the roundf() implementation and make the code in that bit simpler and more readable (since points are always positive)
|
2009-04-02 19:37:56 +00:00 |
kscripts.cpp
|
SCI: Use the ResourceType enum instead of integers where it makes sense
|
2009-02-28 23:46:50 +00:00 |
ksound.cpp
|
SCI: Renamed SongIteratorMessage -> SongIterator::Message; cleanup
|
2009-03-10 02:42:22 +00:00 |
kstring.cpp
|
revert yesterday's change -- apparently this different behavior was intentional.
|
2009-03-25 10:04:45 +00:00 |
message.cpp
|
Replaced getInt16, getUInt16 and putInt16
|
2009-03-07 16:14:20 +00:00 |
message.h
|
SCI: Start converting MessageState into a class
|
2009-03-01 00:18:30 +00:00 |
said.cpp
|
Removed two empty switch statements to silence an MSVC warning
|
2009-03-14 00:12:23 +00:00 |
said.y
|
SCI: Turned synonyms list into a Common::List
|
2009-03-24 17:41:26 +00:00 |
savegame.cpp
|
Disable some (quite chatty) debug output - the savegme system looks stable enough
|
2009-04-02 16:54:21 +00:00 |
savegame.h
|
EngineState is a struct, not a class
|
2009-03-12 08:14:55 +00:00 |
script.cpp
|
SCI: Rewrote vocabulary code to use a Common::HashMap<String,ResultWord>
|
2009-03-24 17:42:12 +00:00 |
script.h
|
Turned ResourceManager into a class, along with all related functions
|
2009-02-28 20:45:36 +00:00 |
scriptconsole.cpp
|
SCI: Rewrote vocabulary code to use a Common::HashMap<String,ResultWord>
|
2009-03-24 17:42:12 +00:00 |
scriptdebug.cpp
|
- Renamed gfx/sci_widgets.* to gfx/gfx_gui.*, as these files contain GUI elements mostly, like windows and status bars
|
2009-03-25 12:52:03 +00:00 |
seg_manager.cpp
|
SCI: Fix warnings
|
2009-03-22 13:50:37 +00:00 |
seg_manager.h
|
silenced some warnings
|
2009-03-20 13:30:10 +00:00 |
state.cpp
|
SCI: Rewrote vocabulary code to use a Common::HashMap<String,ResultWord>
|
2009-03-24 17:42:12 +00:00 |
state.h
|
SCI: Rewrote vocabulary code to use a Common::HashMap<String,ResultWord>
|
2009-03-24 17:42:12 +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 some char* into Common::String
|
2009-03-24 12:46:48 +00:00 |
vm.h
|
String fragments support
|
2009-03-10 14:52:02 +00:00 |