Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-02-21 | SCI: Moved aatree.* files together into engine/ | Max Horn | |
svn-id: r38763 | |||
2009-02-21 | SCI: More cleanup | Max Horn | |
svn-id: r38758 | |||
2009-02-21 | SCI: Got rid of include/scitypes.h | Max Horn | |
svn-id: r38746 | |||
2009-02-21 | SCI: Changed WRITE_UINT16 -> WRITE_LE_UINT16 and READ_UINT16 -> ↵ | Max Horn | |
READ_LE_UINT16 (oops) svn-id: r38745 | |||
2009-02-21 | SCI: Untangling #include dependencies a bit | Max Horn | |
svn-id: r38740 | |||
2009-02-21 | SCI: Changed getUInt16->READ_UINT16 and putInt16->WRITE_UINT16 in ↵ | Max Horn | |
scicore/decompress01.cpp svn-id: r38738 | |||
2009-02-21 | SCI: Renamed include/gfx_*.h to gfx/gfx_*.h and likewise for sfx header files | Max Horn | |
svn-id: r38735 | |||
2009-02-21 | SCI: Changed decompressors to take advantage of ↵ | Max Horn | |
Common::ReadStream::readUint16LE; cleanup svn-id: r38733 | |||
2009-02-21 | Renamed 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-21 | SCI: Moved scicore/tools.cpp to tools.cpp, and include/resource.h to tools.h | Max Horn | |
svn-id: r38720 | |||
2009-02-21 | SCI: Got rid of sci_sched_yield | Max Horn | |
svn-id: r38719 | |||
2009-02-21 | cleanup | Paweł Kołodziejski | |
svn-id: r38712 | |||
2009-02-21 | formating | Paweł Kołodziejski | |
svn-id: r38699 | |||
2009-02-21 | formating | Paweł Kołodziejski | |
svn-id: r38698 | |||
2009-02-21 | revert 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-21 | formating | Paweł Kołodziejski | |
svn-id: r38693 | |||
2009-02-21 | formating | Paweł Kołodziejski | |
svn-id: r38692 | |||
2009-02-21 | formating | Paweł Kołodziejski | |
svn-id: r38691 | |||
2009-02-21 | replace #ifdef WORDS_BIGENDIAN by SCUMM_BIG_ENDIAN | Joost Peters | |
svn-id: r38689 | |||
2009-02-21 | formating | Paweł Kołodziejski | |
svn-id: r38688 | |||
2009-02-21 | remove some endlines from warning() calls | Willem Jan Palenstijn | |
svn-id: r38683 | |||
2009-02-21 | Replaced "typedef struct _state state_t" with "struct EngineState" | Jordi Vilalta Prat | |
svn-id: r38678 | |||
2009-02-21 | Wrapped the SCI engine in the Sci namespace. | Oystein Eftevaag | |
svn-id: r38676 | |||
2009-02-21 | SCI: Yet more cleanup | Max Horn | |
svn-id: r38661 | |||
2009-02-21 | SCI: Fixed more warnings | Max Horn | |
svn-id: r38658 | |||
2009-02-20 | ups | Paweł Kołodziejski | |
svn-id: r38647 | |||
2009-02-20 | Switch errors back to warnings, to fix SCI 1.1 regressions. | Travis Howell | |
svn-id: r38646 | |||
2009-02-20 | fixed warning | Paweł Kołodziejski | |
svn-id: r38644 | |||
2009-02-20 | Changed some non-fatal messages back to warnings | Filippos Karapetis | |
svn-id: r38629 | |||
2009-02-20 | Changed more messages to warnings/errors | Filippos Karapetis | |
svn-id: r38621 | |||
2009-02-20 | Used parentheses to indicate operator precedence (I hope I got them right) | Filippos Karapetis | |
svn-id: r38602 | |||
2009-02-20 | fixed compilation | Paweł Kołodziejski | |
svn-id: r38599 | |||
2009-02-20 | SCI: Started rewriting file handling. Warning: This will likely introduce | Max 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-20 | SCI: Renamed some ResourceManager members, cleanup | Max Horn | |
svn-id: r38596 | |||
2009-02-20 | SCI: Removed unused allow_patches param/member | Max Horn | |
svn-id: r38595 | |||
2009-02-20 | SCI: Renamed resource_source_t -> ResourceSource; some cleanup | Max Horn | |
svn-id: r38593 | |||
2009-02-20 | SCI: 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-19 | Rewrote 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-19 | Fix SCI 1.1 detection. | Travis Howell | |
svn-id: r38535 | |||
2009-02-19 | - Fix finding versions from exe's | Matthew 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-19 | scan_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-18 | Readded 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-18 | cleanup | Max Horn | |
svn-id: r38508 | |||
2009-02-18 | SCI: Added G_DIR_SEPARATOR to scicore/resource.cpp for now (I'll remove it ↵ | Max Horn | |
again soon) svn-id: r38498 | |||
2009-02-18 | SCI: Some random cleanup | Max Horn | |
svn-id: r38497 | |||
2009-02-18 | Added FIXME concerning crash when exiting a SCI game | Filippos Karapetis | |
svn-id: r38472 | |||
2009-02-18 | Removed the unused sci_get_homedir() function | Filippos Karapetis | |
svn-id: r38466 | |||
2009-02-18 | Removed the unused queue code and memfrob() definition | Filippos Karapetis | |
svn-id: r38464 | |||
2009-02-18 | Removed the unused memtest, memdup and sci_memdup functions | Filippos Karapetis | |
svn-id: r38463 | |||
2009-02-18 | Remove the huffmake Perl tool, and the unused hufftree.* files | Filippos Karapetis | |
svn-id: r38461 |