aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine
AgeCommit message (Collapse)Author
2009-02-20Changed more messages to warnings/errorsFilippos Karapetis
svn-id: r38621
2009-02-20formatingPaweł Kołodziejski
svn-id: r38620
2009-02-20restored formatingPaweł Kołodziejski
svn-id: r38619
2009-02-20formatingPaweł Kołodziejski
svn-id: r38618
2009-02-20Started conversion of debug messages and debug levels to the ScummVM ↵Filippos Karapetis
equivalents. Removed the "stubs" and "warnings" debug levels and replaced such kinds of messages with normal warnings svn-id: r38617
2009-02-20formatingPaweł Kołodziejski
svn-id: r38616
2009-02-20use new instead of malloc for int_hash_map_tWillem Jan Palenstijn
svn-id: r38613
2009-02-20formatingPaweł Kołodziejski
svn-id: r38612
2009-02-20formatingPaweł Kołodziejski
svn-id: r38607
2009-02-20formatingPaweł Kołodziejski
svn-id: r38605
2009-02-20formatingPaweł Kołodziejski
svn-id: r38604
2009-02-20formatingPaweł Kołodziejski
svn-id: r38603
2009-02-20formatingPaweł Kołodziejski
svn-id: r38601
2009-02-20formatingPaweł Kołodziejski
svn-id: r38600
2009-02-20formatingPaweł Kołodziejski
svn-id: r38598
2009-02-20SCI: Started rewriting file handling. Warning: This will likely introduceMax Horn
regressions, but we just have to start somewhere. - factored out some common code in engine/kfile.cpp into a separate func - replaced many uses of chdir, getcwd, sci_init_dir etc. by equivalent or better functionality from SearchMan etc. - replaced many uses of sci_open and sci_fopen by using Common::File and Common::Stream - C++ified some stuff - simplified ResourceSource a bit (loosing some unused functionality) svn-id: r38597
2009-02-20SCI: Added TODO suggestion to change the vm opcode switch/case to an opcode ↵Max Horn
table with methods for each opcode (helps to separate code and deal with changed opcode numbering in other SCI versions) svn-id: r38594
2009-02-20SCI: Renamed resource_mgr_t -> ResourceManager; added remark to 'the other ↵Max Horn
resource manager' that it should be renamed to GraphicsManager or so svn-id: r38592
2009-02-19formatingPaweł Kołodziejski
svn-id: r38564
2009-02-19formatingPaweł Kołodziejski
svn-id: r38560
2009-02-19formatingPaweł Kołodziejski
svn-id: r38558
2009-02-19formatingPaweł Kołodziejski
svn-id: r38557
2009-02-19formatingPaweł Kołodziejski
svn-id: r38556
2009-02-19formatingPaweł Kołodziejski
svn-id: r38555
2009-02-19formatingPaweł Kołodziejski
svn-id: r38554
2009-02-19formatingPaweł Kołodziejski
svn-id: r38538
2009-02-19formatingPaweł Kołodziejski
svn-id: r38537
2009-02-18formatingPaweł Kołodziejski
svn-id: r38512
2009-02-18formatingPaweł Kołodziejski
svn-id: r38511
2009-02-18Updated the savegame.cfsml file to remove unused functions and generated the ↵Filippos Karapetis
appropriate .cpp file using the cfsml tool svn-id: r38493
2009-02-18move cfsml.pl to the tools/ directoryEugene Sandulenko
svn-id: r38486
2009-02-18restore removed filesEugene Sandulenko
svn-id: r38485
2009-02-18Adding the files properly. Part1Eugene Sandulenko
svn-id: r38483
2009-02-18Added missing file savegame.cfsml (hopefully, compilation should REALLY be ↵Filippos Karapetis
fixed now, sorry again...) svn-id: r38481
2009-02-18Reverting commits which moved cfsml.pl and said.y, part 2Filippos Karapetis
Hopefully, compilation should be fixed again svn-id: r38479
2009-02-18Removed files which are not part of the SCI engine (will be moved to /tools, ↵Filippos Karapetis
together with the others) svn-id: r38468
2009-02-18Removed the cfsml.pl tool from the SCI engine (eventually, it should go to ↵Filippos Karapetis
/tools, together with the other ones...) svn-id: r38467
2009-02-18Disabled unused functionsFilippos Karapetis
svn-id: r38465
2009-02-17Removed already implemented graphic capability flags, and used CLIP inside ↵Filippos Karapetis
scummvm_draw_line() to clean up the code a bit svn-id: r38451
2009-02-17fixed compiler warning about potentialy uninitialized variablePaweł Kołodziejski
svn-id: r38446
2009-02-17fixed unsigned/signed comparisons warningsPaweł Kołodziejski
svn-id: r38445
2009-02-17shat up ARRAYSIZE redefine compiler warningsPaweł Kołodziejski
svn-id: r38444
2009-02-17point_t -> Common::PointFilippos Karapetis
svn-id: r38437
2009-02-17Revert changed I accidentally commited *sigh*Max Horn
svn-id: r38435
2009-02-17SCI: Moved sfx_pcm_urat_t from include/sfx_pcm.h to sfx/mixer.hMax Horn
svn-id: r38434
2009-02-17Update headers. engine/Eugene Sandulenko
svn-id: r38408
2009-02-17Replaced sci_free() with free() - it's OK to free a NULL pointer, so the ↵Filippos Karapetis
checking that sci_free() performed is not necessary svn-id: r38406
2009-02-16Removed a lot of unused and compiler-specific debug code. Note that for ↵Filippos Karapetis
MSVC, the corresponding checks are enabled by default in the debug build, so there's no need to set them again programmatically. Also, removed the "codebugging" related code svn-id: r38387
2009-02-16Removed unused code and definesFilippos Karapetis
svn-id: r38385
2009-02-16Use MIN with correct template <int>Lars Persson
svn-id: r38375