COMMON: Move all compression-related files to a separate directory
This commit is contained in:
parent
a92315368a
commit
fb7095f5a4
107 changed files with 137 additions and 138 deletions
|
@ -26,7 +26,7 @@
|
|||
#include "common/math.h"
|
||||
#include "common/error.h"
|
||||
#include "common/memstream.h"
|
||||
#include "common/huffman.h"
|
||||
#include "common/compression/huffman.h"
|
||||
|
||||
#include "math/mdct.h"
|
||||
#include "math/sinewindows.h"
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#include "common/config-manager.h"
|
||||
#include "common/file.h"
|
||||
#include "common/translation.h"
|
||||
#include "common/unzip.h"
|
||||
#include "common/compression/unzip.h"
|
||||
|
||||
namespace Networking {
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <common/savefile.h>
|
||||
#include <gui/gui-manager.h>
|
||||
#include <gui/message.h>
|
||||
#include <common/zlib.h>
|
||||
#include <common/compression/zlib.h>
|
||||
|
||||
|
||||
// Savegame can not be bigger than this
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#define __FRAMFS_SAVE_MANAGER__
|
||||
|
||||
#include <common/savefile.h>
|
||||
#include <common/zlib.h>
|
||||
#include <common/compression/zlib.h>
|
||||
|
||||
#include <framfs.h> // N64 FramFS library
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#define __PAKFS_SAVE_MANAGER__
|
||||
|
||||
#include <common/savefile.h>
|
||||
#include <common/zlib.h>
|
||||
#include <common/compression/zlib.h>
|
||||
|
||||
#include <pakfs.h> // N64 PakFS library
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
#include "backends/platform/psp/input.h"
|
||||
#include "common/keyboard.h"
|
||||
#include "common/fs.h"
|
||||
#include "common/unzip.h"
|
||||
#include "common/compression/unzip.h"
|
||||
|
||||
//#define __PSP_DEBUG_FUNCS__ /* For debugging the stack */
|
||||
//#define __PSP_DEBUG_PRINT__
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
#include "common/fs.h"
|
||||
#include "common/archive.h"
|
||||
#include "common/config-manager.h"
|
||||
#include "common/zlib.h"
|
||||
#include "common/compression/zlib.h"
|
||||
|
||||
#include <errno.h> // for removeSavefile()
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
#include "backends/vkeybd/keycode-descriptions.h"
|
||||
#include "common/config-manager.h"
|
||||
#include "common/textconsole.h"
|
||||
#include "common/unzip.h"
|
||||
#include "common/compression/unzip.h"
|
||||
|
||||
#define KEY_START_CHAR ('[')
|
||||
#define KEY_END_CHAR (']')
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#include "common/stream.h"
|
||||
#include "common/system.h"
|
||||
#include "common/translation.h"
|
||||
#include "common/unzip.h"
|
||||
#include "common/compression/unzip.h"
|
||||
|
||||
namespace Common {
|
||||
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
*/
|
||||
|
||||
#include "common/array.h"
|
||||
#include "common/clickteam.h"
|
||||
#include "common/gzio.h"
|
||||
#include "common/compression/clickteam.h"
|
||||
#include "common/compression/gzio.h"
|
||||
#include "common/debug.h"
|
||||
#include "common/ptr.h"
|
||||
#include "common/substream.h"
|
|
@ -19,7 +19,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "common/dcl.h"
|
||||
#include "common/compression/dcl.h"
|
||||
#include "common/debug.h"
|
||||
#include "common/memstream.h"
|
||||
#include "common/stream.h"
|
|
@ -38,7 +38,7 @@
|
|||
#include "common/stream.h"
|
||||
#include "common/ptr.h"
|
||||
#include "common/memstream.h"
|
||||
#include "gzio.h"
|
||||
#include "common/compression/gzio.h"
|
||||
|
||||
|
||||
/* Compression methods (see algorithm.doc) */
|
|
@ -45,11 +45,11 @@
|
|||
#include "common/archive.h"
|
||||
#include "common/debug.h"
|
||||
#include "common/hash-str.h"
|
||||
#include "common/installshield_cab.h"
|
||||
#include "common/compression/installshield_cab.h"
|
||||
#include "common/memstream.h"
|
||||
#include "common/substream.h"
|
||||
#include "common/ptr.h"
|
||||
#include "common/zlib.h"
|
||||
#include "common/compression/zlib.h"
|
||||
|
||||
namespace Common {
|
||||
|
|
@ -19,9 +19,9 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "common/installshieldv3_archive.h"
|
||||
#include "common/compression/installshieldv3_archive.h"
|
||||
|
||||
#include "common/dcl.h"
|
||||
#include "common/compression/dcl.h"
|
||||
#include "common/debug.h"
|
||||
|
||||
namespace Common {
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
|
||||
#include "common/endian.h"
|
||||
#include "common/rnc_deco.h"
|
||||
#include "common/compression/rnc_deco.h"
|
||||
|
||||
namespace Common {
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
// StuffIt parsing based on https://github.com/mietek/theunarchiver/wiki/StuffItFormat
|
||||
// Compression 14 based on libxad (http://sourceforge.net/projects/libxad/)
|
||||
|
||||
#include "common/stuffit.h"
|
||||
#include "common/compression/stuffit.h"
|
||||
|
||||
#include "common/archive.h"
|
||||
#include "common/bitstream.h"
|
|
@ -26,7 +26,7 @@
|
|||
#include "common/scummsys.h"
|
||||
#include "common/archive.h"
|
||||
#include "common/debug.h"
|
||||
#include "common/unarj.h"
|
||||
#include "common/compression/unarj.h"
|
||||
#include "common/file.h"
|
||||
#include "common/hash-str.h"
|
||||
#include "common/memstream.h"
|
|
@ -84,8 +84,8 @@ typedef Byte Bytef;
|
|||
|
||||
#include "common/crc.h"
|
||||
#include "common/fs.h"
|
||||
#include "common/gzio.h"
|
||||
#include "common/unzip.h"
|
||||
#include "common/compression/gzio.h"
|
||||
#include "common/compression/unzip.h"
|
||||
#include "common/memstream.h"
|
||||
|
||||
#include "common/hashmap.h"
|
|
@ -19,11 +19,11 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "common/vise.h"
|
||||
#include "common/compression/vise.h"
|
||||
|
||||
#include "common/macresman.h"
|
||||
#include "common/memstream.h"
|
||||
#include "common/zlib.h"
|
||||
#include "common/compression/zlib.h"
|
||||
|
||||
// Installer VISE archive loader.
|
||||
//
|
|
@ -22,7 +22,7 @@
|
|||
// Disable symbol overrides so that we can use zlib.h
|
||||
#define FORBIDDEN_SYMBOL_ALLOW_ALL
|
||||
|
||||
#include "common/zlib.h"
|
||||
#include "common/compression/zlib.h"
|
||||
#include "common/ptr.h"
|
||||
#include "common/util.h"
|
||||
#include "common/stream.h"
|
|
@ -4,23 +4,18 @@ MODULE_OBJS := \
|
|||
achievements.o \
|
||||
archive.o \
|
||||
base-str.o \
|
||||
clickteam.o \
|
||||
concatstream.o \
|
||||
config-manager.o \
|
||||
coroutines.o \
|
||||
dcl.o \
|
||||
debug.o \
|
||||
error.o \
|
||||
events.o \
|
||||
file.o \
|
||||
fs.o \
|
||||
gui_options.o \
|
||||
gzio.o \
|
||||
hashmap.o \
|
||||
iff_container.o \
|
||||
ini-file.o \
|
||||
installshield_cab.o \
|
||||
installshieldv3_archive.o \
|
||||
json.o \
|
||||
language.o \
|
||||
localization.o \
|
||||
|
@ -36,30 +31,35 @@ MODULE_OBJS := \
|
|||
random.o \
|
||||
rational.o \
|
||||
rendermode.o \
|
||||
rnc_deco.o \
|
||||
str.o \
|
||||
stream.o \
|
||||
streamdebug.o \
|
||||
str-enc.o \
|
||||
encodings/singlebyte.o \
|
||||
stuffit.o \
|
||||
system.o \
|
||||
textconsole.o \
|
||||
text-to-speech.o \
|
||||
tokenizer.o \
|
||||
translation.o \
|
||||
unarj.o \
|
||||
unicode-bidi.o \
|
||||
unzip.o \
|
||||
ustr.o \
|
||||
util.o \
|
||||
vise.o \
|
||||
winexe.o \
|
||||
winexe_ne.o \
|
||||
winexe_pe.o \
|
||||
xmlparser.o \
|
||||
xpfloat.o \
|
||||
zlib.o
|
||||
compression/clickteam.o \
|
||||
compression/dcl.o \
|
||||
compression/gzio.o \
|
||||
compression/installshield_cab.o \
|
||||
compression/installshieldv3_archive.o \
|
||||
compression/rnc_deco.o \
|
||||
compression/stuffit.o \
|
||||
compression/unarj.o \
|
||||
compression/unzip.o \
|
||||
compression/vise.o \
|
||||
compression/zlib.o
|
||||
|
||||
ifdef ENABLE_EVENTRECORDER
|
||||
MODULE_OBJS += \
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
#include "common/quicktime.h"
|
||||
#include "common/textconsole.h"
|
||||
#include "common/util.h"
|
||||
#include "common/zlib.h"
|
||||
#include "common/compression/zlib.h"
|
||||
|
||||
namespace Common {
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#include "common/config-manager.h"
|
||||
#include "common/system.h"
|
||||
#include "common/textconsole.h"
|
||||
#include "common/installshield_cab.h"
|
||||
#include "common/compression/installshield_cab.h"
|
||||
|
||||
#include "agos/detection.h"
|
||||
#include "agos/intern_detection.h"
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#include "common/config-manager.h"
|
||||
#include "common/savefile.h"
|
||||
#include "common/system.h"
|
||||
#include "common/installshield_cab.h"
|
||||
#include "common/compression/installshield_cab.h"
|
||||
#include "common/translation.h"
|
||||
|
||||
#include "engines/advancedDetector.h"
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
#include "audio/midiparser.h"
|
||||
|
||||
// PKWARE data compression library decompressor required for Simon 2
|
||||
#include "common/dcl.h"
|
||||
#include "common/compression/dcl.h"
|
||||
#include "common/translation.h"
|
||||
|
||||
#include "gui/message.h"
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
#include "agos/agos.h"
|
||||
#include "agos/intern.h"
|
||||
|
||||
#include "common/zlib.h"
|
||||
#include "common/compression/zlib.h"
|
||||
|
||||
namespace AGOS {
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#include "ags/console.h"
|
||||
#include "common/scummsys.h"
|
||||
#include "common/config-manager.h"
|
||||
#include "common/clickteam.h"
|
||||
#include "common/compression/clickteam.h"
|
||||
#include "common/debug-channels.h"
|
||||
#include "common/events.h"
|
||||
#include "common/file.h"
|
||||
|
|
|
@ -87,7 +87,7 @@
|
|||
#include "common/debug.h"
|
||||
#include "common/debug-channels.h"
|
||||
#include "common/translation.h"
|
||||
#include "common/unzip.h"
|
||||
#include "common/compression/unzip.h"
|
||||
|
||||
#include "gui/message.h"
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#include "common/fs.h"
|
||||
#include "common/str-array.h"
|
||||
#include "common/system.h"
|
||||
#include "common/unzip.h"
|
||||
#include "common/compression/unzip.h"
|
||||
#include "graphics/cursorman.h"
|
||||
#include "graphics/font.h"
|
||||
#include "graphics/palette.h"
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#include "common/savefile.h"
|
||||
#include "common/serializer.h"
|
||||
#include "common/system.h"
|
||||
#include "common/zlib.h"
|
||||
#include "common/compression/zlib.h"
|
||||
#include "graphics/palette.h"
|
||||
|
||||
#include "composer/composer.h"
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
#include "common/config-manager.h"
|
||||
#include "common/system.h"
|
||||
#include "common/zlib.h"
|
||||
#include "common/compression/zlib.h"
|
||||
|
||||
#include "common/memstream.h"
|
||||
#include "common/macresman.h"
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#include "common/memstream.h"
|
||||
#include "common/punycode.h"
|
||||
#include "common/tokenizer.h"
|
||||
#include "common/zlib.h"
|
||||
#include "common/compression/zlib.h"
|
||||
|
||||
#include "director/types.h"
|
||||
#include "graphics/macgui/macwindowmanager.h"
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#include "common/substream.h"
|
||||
#include "common/textconsole.h"
|
||||
#include "common/memstream.h"
|
||||
#include "common/unzip.h"
|
||||
#include "common/compression/unzip.h"
|
||||
|
||||
#include "draci/sound.h"
|
||||
#include "draci/draci.h"
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
*/
|
||||
|
||||
#include "drascula/drascula.h"
|
||||
#include "common/unarj.h"
|
||||
#include "common/compression/unarj.h"
|
||||
|
||||
namespace Drascula {
|
||||
|
||||
|
|
|
@ -20,12 +20,12 @@
|
|||
*/
|
||||
|
||||
#include "common/array.h"
|
||||
#include "common/gzio.h"
|
||||
#include "common/compression/gzio.h"
|
||||
#include "common/debug.h"
|
||||
#include "common/ptr.h"
|
||||
#include "common/substream.h"
|
||||
#include "common/memstream.h"
|
||||
#include "common/rnc_deco.h"
|
||||
#include "common/compression/rnc_deco.h"
|
||||
#include "common/file.h"
|
||||
|
||||
#include "dreamweb/rnca_archive.h"
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#include "common/config-manager.h"
|
||||
#include "common/events.h"
|
||||
#include "common/math.h"
|
||||
#include "common/unzip.h"
|
||||
#include "common/compression/unzip.h"
|
||||
#include "common/random.h"
|
||||
#include "common/timer.h"
|
||||
#include "graphics/cursorman.h"
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#include "glk/adrift/scprotos.h"
|
||||
#include "glk/adrift/detection.h"
|
||||
#include "common/algorithm.h"
|
||||
#include "common/zlib.h"
|
||||
#include "common/compression/zlib.h"
|
||||
#include "common/memstream.h"
|
||||
|
||||
namespace Glk {
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
#include "glk/screen.h"
|
||||
#include "glk/conf.h"
|
||||
#include "common/unzip.h"
|
||||
#include "common/compression/unzip.h"
|
||||
#include "image/bmp.h"
|
||||
#include "graphics/fonts/ttf.h"
|
||||
#include "graphics/fontman.h"
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#include "glk/conf.h"
|
||||
#include "glk/screen.h"
|
||||
#include "common/config-manager.h"
|
||||
#include "common/unzip.h"
|
||||
#include "common/compression/unzip.h"
|
||||
|
||||
namespace Glk {
|
||||
namespace ZCode {
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
#include "glk/zcode/sound_folder.h"
|
||||
#include "common/file.h"
|
||||
#include "common/unzip.h"
|
||||
#include "common/compression/unzip.h"
|
||||
|
||||
namespace Glk {
|
||||
namespace ZCode {
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "common/dcl.h"
|
||||
#include "common/compression/dcl.h"
|
||||
#include "common/file.h"
|
||||
#include "common/stream.h"
|
||||
#include "common/substream.h"
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
#include "common/foreach.h"
|
||||
#include "common/fs.h"
|
||||
#include "common/config-manager.h"
|
||||
#include "common/stuffit.h"
|
||||
#include "common/compression/stuffit.h"
|
||||
#include "common/translation.h"
|
||||
|
||||
#include "backends/keymapper/action.h"
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#include "common/substream.h"
|
||||
#include "common/md5.h"
|
||||
#include "common/file.h"
|
||||
#include "common/zlib.h"
|
||||
#include "common/compression/zlib.h"
|
||||
#include "common/bufferedstream.h"
|
||||
|
||||
#include "engines/grim/patchr.h"
|
||||
|
|
|
@ -46,7 +46,7 @@
|
|||
#include "engines/grim/update/update.h"
|
||||
|
||||
#include "common/algorithm.h"
|
||||
#include "common/zlib.h"
|
||||
#include "common/compression/zlib.h"
|
||||
#include "common/memstream.h"
|
||||
#include "common/file.h"
|
||||
#include "common/config-manager.h"
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include "common/file.h"
|
||||
#include "common/archive.h"
|
||||
#include "common/memstream.h"
|
||||
#include "common/zlib.h"
|
||||
#include "common/compression/zlib.h"
|
||||
#include "common/str.h"
|
||||
|
||||
namespace Grim {
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
#include "common/events.h"
|
||||
#include "common/file.h"
|
||||
#include "common/macresman.h"
|
||||
#include "common/stuffit.h"
|
||||
#include "common/compression/stuffit.h"
|
||||
#include "common/textconsole.h"
|
||||
|
||||
#include "backends/audiocd/audiocd.h"
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
#include "common/keyboard.h"
|
||||
#include "common/macresman.h"
|
||||
#include "common/util.h"
|
||||
#include "common/gzio.h"
|
||||
#include "common/compression/gzio.h"
|
||||
#include "common/config-manager.h"
|
||||
|
||||
#include "engines/advancedDetector.h"
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
#include "common/debug.h"
|
||||
#include "common/file.h"
|
||||
#include "common/memstream.h"
|
||||
#include "common/zlib.h"
|
||||
#include "common/compression/zlib.h"
|
||||
|
||||
#include "hdb/hdb.h"
|
||||
#include "hdb/file-manager.h"
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#define HYPNO_H
|
||||
|
||||
#include "common/array.h"
|
||||
#include "common/installshieldv3_archive.h"
|
||||
#include "common/compression/installshieldv3_archive.h"
|
||||
#include "common/random.h"
|
||||
#include "common/serializer.h"
|
||||
#include "common/str-array.h"
|
||||
|
@ -651,4 +651,3 @@ public:
|
|||
} // End of namespace Hypno
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#include "common/memstream.h"
|
||||
#include "common/substream.h"
|
||||
#include "common/macresman.h"
|
||||
#include "common/stuffit.h"
|
||||
#include "common/compression/stuffit.h"
|
||||
|
||||
namespace Kyra {
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include "common/config-manager.h"
|
||||
#include "common/macresman.h"
|
||||
#include "common/stuffit.h"
|
||||
#include "common/compression/stuffit.h"
|
||||
|
||||
#include "audio/mixer.h"
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
#include "macventure/macventure.h"
|
||||
#include "macventure/windows.h"
|
||||
|
||||
#include "common/unzip.h"
|
||||
#include "common/compression/unzip.h"
|
||||
|
||||
namespace MacVenture {
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
#include "common/debug.h"
|
||||
#include "common/random.h"
|
||||
#include "common/macresman.h"
|
||||
#include "common/huffman.h"
|
||||
#include "common/compression/huffman.h"
|
||||
#include "common/savefile.h"
|
||||
|
||||
#include "gui/debugger.h"
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
#include "common/file.h"
|
||||
#include "common/util.h"
|
||||
#include "common/memstream.h"
|
||||
#include "common/dcl.h"
|
||||
#include "mps_installer.h"
|
||||
#include "common/compression/dcl.h"
|
||||
#include "mads/mps_installer.h"
|
||||
|
||||
namespace MADS {
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
#include "mohawk/installer_archive.h"
|
||||
|
||||
#include "common/dcl.h"
|
||||
#include "common/compression/dcl.h"
|
||||
#include "common/debug.h"
|
||||
|
||||
namespace Mohawk {
|
||||
|
|
|
@ -23,10 +23,10 @@
|
|||
#include "common/file.h"
|
||||
#include "common/macresman.h"
|
||||
#include "common/memstream.h"
|
||||
#include "common/stuffit.h"
|
||||
#include "common/vise.h"
|
||||
#include "common/compression/stuffit.h"
|
||||
#include "common/compression/vise.h"
|
||||
#include "common/winexe.h"
|
||||
#include "common/zlib.h"
|
||||
#include "common/compression/zlib.h"
|
||||
|
||||
#include "graphics/maccursor.h"
|
||||
#include "graphics/wincursor.h"
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#include "common/file.h"
|
||||
#include "common/macresman.h"
|
||||
#include "common/ptr.h"
|
||||
#include "common/stuffit.h"
|
||||
#include "common/compression/stuffit.h"
|
||||
#include "common/system.h"
|
||||
#include "common/winexe.h"
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include "common/debug-channels.h"
|
||||
#include "common/config-manager.h"
|
||||
#include "common/memstream.h"
|
||||
#include "common/installshield_cab.h"
|
||||
#include "common/compression/installshield_cab.h"
|
||||
#include "common/serializer.h"
|
||||
|
||||
#include "engines/nancy/nancy.h"
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "common/dcl.h"
|
||||
#include "common/compression/dcl.h"
|
||||
#include "neverhood/blbarchive.h"
|
||||
|
||||
namespace Neverhood {
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#include "common/debug-channels.h"
|
||||
#include "common/winexe_pe.h"
|
||||
#include "common/config-manager.h"
|
||||
#include "common/installshield_cab.h"
|
||||
#include "common/compression/installshield_cab.h"
|
||||
|
||||
#include "engines/advancedDetector.h"
|
||||
#include "engines/util.h"
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#ifndef PRIVATE_H
|
||||
#define PRIVATE_H
|
||||
|
||||
#include "common/installshieldv3_archive.h"
|
||||
#include "common/compression/installshieldv3_archive.h"
|
||||
#include "common/random.h"
|
||||
#include "common/serializer.h"
|
||||
#include "engines/engine.h"
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#include "common/system.h"
|
||||
#include "common/events.h"
|
||||
#include "common/translation.h"
|
||||
#include "common/unarj.h"
|
||||
#include "common/compression/unarj.h"
|
||||
|
||||
#include "audio/mixer.h"
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
// Resource library
|
||||
|
||||
#include "common/dcl.h"
|
||||
#include "common/compression/dcl.h"
|
||||
#include "common/util.h"
|
||||
#include "common/endian.h"
|
||||
#include "common/stream.h"
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include "common/textconsole.h"
|
||||
#include "common/translation.h"
|
||||
#ifdef ENABLE_SCI32
|
||||
#include "common/installshield_cab.h"
|
||||
#include "common/compression/installshield_cab.h"
|
||||
#include "common/memstream.h"
|
||||
#endif
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include "common/savefile.h"
|
||||
#include "common/serializer.h"
|
||||
#include "common/system.h"
|
||||
#include "common/zlib.h"
|
||||
#include "common/compression/zlib.h"
|
||||
|
||||
#include "scumm/actor.h"
|
||||
#include "scumm/charset.h"
|
||||
|
|
|
@ -48,7 +48,7 @@
|
|||
#include "audio/decoders/raw.h"
|
||||
#include "audio/decoders/vorbis.h"
|
||||
|
||||
#include "common/zlib.h"
|
||||
#include "common/compression/zlib.h"
|
||||
|
||||
namespace Scumm {
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
|
||||
#include "common/scummsys.h"
|
||||
#include "common/rnc_deco.h"
|
||||
#include "common/compression/rnc_deco.h"
|
||||
|
||||
#define MAX_FILES_IN_LIST 60
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
#include "engines/stark/services/settings.h"
|
||||
|
||||
#include "common/file.h"
|
||||
#include "common/unzip.h"
|
||||
#include "common/compression/unzip.h"
|
||||
#include "image/png.h"
|
||||
|
||||
namespace Stark {
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
|
||||
#include "common/fs.h"
|
||||
#include "common/savefile.h"
|
||||
#include "common/zlib.h"
|
||||
#include "common/compression/zlib.h"
|
||||
#include "sword25/kernel/kernel.h"
|
||||
#include "sword25/kernel/persistenceservice.h"
|
||||
#include "sword25/kernel/inputpersistenceblock.h"
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
#include "common/savefile.h"
|
||||
#include "common/str-array.h"
|
||||
#include "common/system.h"
|
||||
#include "common/unzip.h"
|
||||
#include "common/compression/unzip.h"
|
||||
#include "sword25/sword25.h" // for kDebugScript
|
||||
#include "sword25/kernel/filesystemutil.h"
|
||||
#include "sword25/package/packagemanager.h"
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include "common/debug.h"
|
||||
#include "common/textconsole.h"
|
||||
#include "common/translation.h"
|
||||
#include "common/zlib.h"
|
||||
#include "common/compression/zlib.h"
|
||||
|
||||
namespace TeenAgent {
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
#include "common/file.h"
|
||||
#include "common/memstream.h"
|
||||
#include "common/zlib.h"
|
||||
#include "common/compression/zlib.h"
|
||||
#include "titanic/support/files_manager.h"
|
||||
#include "titanic/game_manager.h"
|
||||
#include "titanic/titanic.h"
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#include "titanic/support/rect.h"
|
||||
#include "common/savefile.h"
|
||||
#include "common/stream.h"
|
||||
#include "common/zlib.h"
|
||||
#include "common/compression/zlib.h"
|
||||
#include "titanic/support/string.h"
|
||||
|
||||
namespace Titanic {
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#include "common/debug-channels.h"
|
||||
#include "common/events.h"
|
||||
#include "common/file.h"
|
||||
#include "common/installshield_cab.h"
|
||||
#include "common/compression/installshield_cab.h"
|
||||
#include "common/translation.h"
|
||||
#include "tony/tony.h"
|
||||
#include "tony/custom.h"
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
*/
|
||||
|
||||
#include "common/debug.h"
|
||||
#include "common/rnc_deco.h"
|
||||
#include "common/compression/rnc_deco.h"
|
||||
|
||||
#include "toon/hotspot.h"
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
#include "common/debug.h"
|
||||
#include "common/rect.h"
|
||||
#include "common/rnc_deco.h"
|
||||
#include "common/compression/rnc_deco.h"
|
||||
#include "common/stack.h"
|
||||
|
||||
namespace Toon {
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
#include "ultima/nuvie/gui/widgets/msg_scroll.h"
|
||||
#include "common/config-manager.h"
|
||||
#include "common/translation.h"
|
||||
#include "common/unzip.h"
|
||||
#include "common/compression/unzip.h"
|
||||
|
||||
namespace Ultima {
|
||||
namespace Nuvie {
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#include "common/config-manager.h"
|
||||
#include "common/file.h"
|
||||
#include "common/translation.h"
|
||||
#include "common/unzip.h"
|
||||
#include "common/compression/unzip.h"
|
||||
|
||||
namespace Ultima {
|
||||
namespace Shared {
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
#include "common/file.h"
|
||||
#include "common/savefile.h"
|
||||
#include "common/fs.h"
|
||||
#include "common/unzip.h"
|
||||
#include "common/compression/unzip.h"
|
||||
|
||||
namespace Wintermute {
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
#include "common/stream.h"
|
||||
#include "common/memstream.h"
|
||||
#include "common/file.h"
|
||||
#include "common/zlib.h"
|
||||
#include "common/compression/zlib.h"
|
||||
#include "common/archive.h"
|
||||
#include "common/tokenizer.h"
|
||||
#include "common/config-manager.h"
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#include "engines/wintermute/base/file/base_package.h"
|
||||
#include "common/stream.h"
|
||||
#include "common/substream.h"
|
||||
#include "common/zlib.h"
|
||||
#include "common/compression/zlib.h"
|
||||
|
||||
namespace Wintermute {
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
#include "graphics/fonts/ttf.h"
|
||||
#include "graphics/fontman.h"
|
||||
#include "common/unicode-bidi.h"
|
||||
#include "common/unzip.h"
|
||||
#include "common/compression/unzip.h"
|
||||
|
||||
namespace Wintermute {
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#include "common/endian.h"
|
||||
#include "common/str.h"
|
||||
#include "common/util.h"
|
||||
#include "common/zlib.h"
|
||||
#include "common/compression/zlib.h"
|
||||
|
||||
#include "wintermute/base/gfx/xfile_loader.h"
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
* Copyright (c) 2003-2013 Jan Nedoma and contributors
|
||||
*/
|
||||
|
||||
#include "common/zlib.h"
|
||||
#include "common/compression/zlib.h"
|
||||
|
||||
#include "engines/wintermute/base/base_file_manager.h"
|
||||
#include "engines/wintermute/base/base_game.h"
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include "common/debug.h"
|
||||
#include "common/file.h"
|
||||
#include "common/system.h"
|
||||
#include "common/unzip.h"
|
||||
#include "common/compression/unzip.h"
|
||||
#include "common/ustr.h"
|
||||
#include "graphics/font.h"
|
||||
#include "graphics/fonts/ttf.h"
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
#include "common/memstream.h"
|
||||
#include "common/hashmap.h"
|
||||
#include "common/ptr.h"
|
||||
#include "common/unzip.h"
|
||||
#include "common/compression/unzip.h"
|
||||
|
||||
#include <ft2build.h>
|
||||
#include FT_FREETYPE_H
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
#include "graphics/macgui/macwindowmanager.h"
|
||||
|
||||
#include "common/archive.h"
|
||||
#include "common/unzip.h"
|
||||
#include "common/compression/unzip.h"
|
||||
|
||||
namespace Graphics {
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
#include "common/archive.h"
|
||||
#include "common/stream.h"
|
||||
#include "common/unzip.h"
|
||||
#include "common/compression/unzip.h"
|
||||
#include "common/macresman.h"
|
||||
#include "graphics/fonts/bdf.h"
|
||||
#include "graphics/fonts/macfont.h"
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue