aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/scicore
AgeCommit message (Collapse)Author
2009-02-22SCI: Resolve FIXME in decompression codeMax Horn
svn-id: r38778
2009-02-21SCI: Moved aatree.* files together into engine/Max Horn
svn-id: r38763
2009-02-21SCI: More cleanupMax Horn
svn-id: r38758
2009-02-21SCI: Got rid of include/scitypes.hMax Horn
svn-id: r38746
2009-02-21SCI: Changed WRITE_UINT16 -> WRITE_LE_UINT16 and READ_UINT16 -> ↵Max Horn
READ_LE_UINT16 (oops) svn-id: r38745
2009-02-21SCI: Untangling #include dependencies a bitMax Horn
svn-id: r38740
2009-02-21SCI: Changed getUInt16->READ_UINT16 and putInt16->WRITE_UINT16 in ↵Max Horn
scicore/decompress01.cpp svn-id: r38738
2009-02-21SCI: Renamed include/gfx_*.h to gfx/gfx_*.h and likewise for sfx header filesMax Horn
svn-id: r38735
2009-02-21SCI: Changed decompressors to take advantage of ↵Max Horn
Common::ReadStream::readUint16LE; cleanup svn-id: r38733
2009-02-21Renamed SCI's console to sciconsole (MSVC has problems with files with the ↵Filippos Karapetis
same name under different directories). ScummVM's console can be enabled correctly under MSVC now svn-id: r38722
2009-02-21SCI: Moved scicore/tools.cpp to tools.cpp, and include/resource.h to tools.hMax Horn
svn-id: r38720
2009-02-21SCI: Got rid of sci_sched_yieldMax Horn
svn-id: r38719
2009-02-21cleanupPaweł Kołodziejski
svn-id: r38712
2009-02-21formatingPaweł Kołodziejski
svn-id: r38699
2009-02-21formatingPaweł Kołodziejski
svn-id: r38698
2009-02-21revert large parts of r38621. error() is for fatal errors and does not ↵Willem Jan Palenstijn
return. warning() is not for debugging status messages. svn-id: r38696
2009-02-21formatingPaweł Kołodziejski
svn-id: r38693
2009-02-21formatingPaweł Kołodziejski
svn-id: r38692
2009-02-21formatingPaweł Kołodziejski
svn-id: r38691
2009-02-21replace #ifdef WORDS_BIGENDIAN by SCUMM_BIG_ENDIANJoost Peters
svn-id: r38689
2009-02-21formatingPaweł Kołodziejski
svn-id: r38688
2009-02-21remove some endlines from warning() callsWillem Jan Palenstijn
svn-id: r38683
2009-02-21Replaced "typedef struct _state state_t" with "struct EngineState"Jordi Vilalta Prat
svn-id: r38678
2009-02-21Wrapped the SCI engine in the Sci namespace.Oystein Eftevaag
svn-id: r38676
2009-02-21SCI: Yet more cleanupMax Horn
svn-id: r38661
2009-02-21SCI: Fixed more warningsMax Horn
svn-id: r38658
2009-02-20upsPaweł Kołodziejski
svn-id: r38647
2009-02-20Switch errors back to warnings, to fix SCI 1.1 regressions.Travis Howell
svn-id: r38646
2009-02-20fixed warningPaweł Kołodziejski
svn-id: r38644
2009-02-20Changed some non-fatal messages back to warningsFilippos Karapetis
svn-id: r38629
2009-02-20Changed more messages to warnings/errorsFilippos Karapetis
svn-id: r38621
2009-02-20Used parentheses to indicate operator precedence (I hope I got them right)Filippos Karapetis
svn-id: r38602
2009-02-20fixed compilationPaweł Kołodziejski
svn-id: r38599
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: Renamed some ResourceManager members, cleanupMax Horn
svn-id: r38596
2009-02-20SCI: Removed unused allow_patches param/memberMax Horn
svn-id: r38595
2009-02-20SCI: Renamed resource_source_t -> ResourceSource; some cleanupMax Horn
svn-id: r38593
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-19Rewrote the EXE reading routines (the LZEXE compression stuff is still not ↵Filippos Karapetis
completed, and will be implemented in a follow-up commit) svn-id: r38543
2009-02-19Fix SCI 1.1 detection.Travis Howell
svn-id: r38535
2009-02-19- Fix finding versions from exe'sMatthew Hoops
- Fix fallback detection - Make getVersion() return an int instead of a uint16 which makes the version lose precision and the "major" version can get lost. svn-id: r38529
2009-02-19scan_file returns 1 if there's a failure, not 0; correct ↵Matthew Hoops
version_detect_from_executable to use that properly svn-id: r38528
2009-02-18Readded the code which reads the version from the original executable to the ↵Filippos Karapetis
fallback detector (still very hackish...). This is probably the only known way currently to determine the version used by each game variant and add appropriate game flags svn-id: r38509
2009-02-18cleanupMax Horn
svn-id: r38508
2009-02-18SCI: Added G_DIR_SEPARATOR to scicore/resource.cpp for now (I'll remove it ↵Max Horn
again soon) svn-id: r38498
2009-02-18SCI: Some random cleanupMax Horn
svn-id: r38497
2009-02-18Added FIXME concerning crash when exiting a SCI gameFilippos Karapetis
svn-id: r38472
2009-02-18Removed the unused sci_get_homedir() functionFilippos Karapetis
svn-id: r38466
2009-02-18Removed the unused queue code and memfrob() definitionFilippos Karapetis
svn-id: r38464
2009-02-18Removed the unused memtest, memdup and sci_memdup functionsFilippos Karapetis
svn-id: r38463