├── README.md ├── compression ├── Compression.pro ├── SearchTree.cpp └── SearchTree.h ├── core ├── classes │ ├── Nullable.h │ ├── PathInfo.cpp │ ├── PathInfo.h │ ├── Tree.cpp │ └── Tree.h ├── core.h ├── core.pro └── streams │ ├── FileStream.cpp │ ├── FileStream.h │ ├── ImageFileStream.cpp │ ├── ImageFileStream.h │ ├── MemoryStream.cpp │ ├── MemoryStream.h │ ├── PartStream.cpp │ ├── PartStream.h │ ├── Stream.cpp │ ├── Stream.h │ ├── Streams.h │ └── iso │ ├── IsoDirectory.cpp │ ├── IsoDirectory.h │ ├── IsoFSCDVD.cpp │ ├── IsoFSCDVD.h │ ├── IsoFile.cpp │ ├── IsoFile.h │ ├── IsoFileDescriptor.cpp │ ├── IsoFileDescriptor.h │ ├── IsoImage.cpp │ ├── IsoImage.h │ └── SectorSource.h ├── externals ├── libimagequant │ ├── COPYRIGHT │ ├── MANUAL.md │ ├── Makefile │ ├── blur.c │ ├── blur.h │ ├── kmeans.c │ ├── kmeans.h │ ├── libimagequant.c │ ├── libimagequant.h │ ├── mediancut.c │ ├── mediancut.h │ ├── mempool.c │ ├── mempool.h │ ├── nearest.c │ ├── nearest.h │ ├── pam.c │ ├── pam.h │ ├── viter.c │ └── viter.h ├── libjpeg │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── aclocal.m4 │ ├── ar-lib │ ├── cderror.h │ ├── cdjpeg.c │ ├── cdjpeg.h │ ├── change.log │ ├── cjpeg.1 │ ├── cjpeg.c │ ├── ckconfig.c │ ├── coderules.txt │ ├── compile │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── djpeg.1 │ ├── djpeg.c │ ├── example.c │ ├── filelist.txt │ ├── install-sh │ ├── install.txt │ ├── jaricom.c │ ├── jcapimin.c │ ├── jcapistd.c │ ├── jcarith.c │ ├── jccoefct.c │ ├── jccolor.c │ ├── jcdctmgr.c │ ├── jchuff.c │ ├── jcinit.c │ ├── jcmainct.c │ ├── jcmarker.c │ ├── jcmaster.c │ ├── jcomapi.c │ ├── jconfig.bcc │ ├── jconfig.cfg │ ├── jconfig.dj │ ├── jconfig.mac │ ├── jconfig.manx │ ├── jconfig.mc6 │ ├── jconfig.sas │ ├── jconfig.st │ ├── jconfig.txt │ ├── jconfig.vc │ ├── jconfig.vms │ ├── jconfig.wat │ ├── jcparam.c │ ├── jcprepct.c │ ├── jcsample.c │ ├── jctrans.c │ ├── jdapimin.c │ ├── jdapistd.c │ ├── jdarith.c │ ├── jdatadst.c │ ├── jdatasrc.c │ ├── jdcoefct.c │ ├── jdcolor.c │ ├── jdct.h │ ├── jddctmgr.c │ ├── jdhuff.c │ ├── jdinput.c │ ├── jdmainct.c │ ├── jdmarker.c │ ├── jdmaster.c │ ├── jdmerge.c │ ├── jdosabcc.obj │ ├── jdosamsc.obj │ ├── jdosaobj.txt │ ├── jdpostct.c │ ├── jdsample.c │ ├── jdtrans.c │ ├── jerror.c │ ├── jerror.h │ ├── jfdctflt.c │ ├── jfdctfst.c │ ├── jfdctint.c │ ├── jidctflt.c │ ├── jidctfst.c │ ├── jidctint.c │ ├── jinclude.h │ ├── jmemansi.c │ ├── jmemdos.c │ ├── jmemdosa.asm │ ├── jmemmac.c │ ├── jmemmgr.c │ ├── jmemname.c │ ├── jmemnobs.c │ ├── jmemsys.h │ ├── jmorecfg.h │ ├── jpegint.h │ ├── jpeglib.h │ ├── jpegtran.1 │ ├── jpegtran.c │ ├── jquant1.c │ ├── jquant2.c │ ├── jutils.c │ ├── jversion.h │ ├── libjpeg.map │ ├── libjpeg.txt │ ├── ltmain.sh │ ├── makcjpeg.st │ ├── makdjpeg.st │ ├── makeadsw.vc6 │ ├── makeasln.v10 │ ├── makecdep.vc6 │ ├── makecdsp.vc6 │ ├── makecfil.v10 │ ├── makecmak.vc6 │ ├── makecvcx.v10 │ ├── makeddep.vc6 │ ├── makeddsp.vc6 │ ├── makedfil.v10 │ ├── makedmak.vc6 │ ├── makedvcx.v10 │ ├── makefile.ansi │ ├── makefile.bcc │ ├── makefile.dj │ ├── makefile.manx │ ├── makefile.mc6 │ ├── makefile.mms │ ├── makefile.sas │ ├── makefile.unix │ ├── makefile.vc │ ├── makefile.vms │ ├── makefile.wat │ ├── makejdep.vc6 │ ├── makejdsp.vc6 │ ├── makejdsw.vc6 │ ├── makejfil.v10 │ ├── makejmak.vc6 │ ├── makejsln.v10 │ ├── makejvcx.v10 │ ├── makeproj.mac │ ├── makerdep.vc6 │ ├── makerdsp.vc6 │ ├── makerfil.v10 │ ├── makermak.vc6 │ ├── makervcx.v10 │ ├── maketdep.vc6 │ ├── maketdsp.vc6 │ ├── maketfil.v10 │ ├── maketmak.vc6 │ ├── maketvcx.v10 │ ├── makewdep.vc6 │ ├── makewdsp.vc6 │ ├── makewfil.v10 │ ├── makewmak.vc6 │ ├── makewvcx.v10 │ ├── makljpeg.st │ ├── maktjpeg.st │ ├── makvms.opt │ ├── missing │ ├── rdbmp.c │ ├── rdcolmap.c │ ├── rdgif.c │ ├── rdjpgcom.1 │ ├── rdjpgcom.c │ ├── rdppm.c │ ├── rdrle.c │ ├── rdswitch.c │ ├── rdtarga.c │ ├── readme.dos │ ├── structure.txt │ ├── testimg.bmp │ ├── testimg.jpg │ ├── testimg.ppm │ ├── testimgp.jpg │ ├── testorig.jpg │ ├── testprog.jpg │ ├── transupp.c │ ├── transupp.h │ ├── usage.txt │ ├── wizard.txt │ ├── wrbmp.c │ ├── wrgif.c │ ├── wrjpgcom.1 │ ├── wrjpgcom.c │ ├── wrppm.c │ ├── wrrle.c │ └── wrtarga.c ├── libpng │ ├── ANNOUNCE │ ├── CHANGES │ ├── CMakeLists.txt │ ├── INSTALL │ ├── LICENSE │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── TODO │ ├── aclocal.m4 │ ├── autogen.sh │ ├── compile │ ├── config.guess │ ├── config.h.in │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── example.c │ ├── install-sh │ ├── libpng-config.in │ ├── libpng-manual.txt │ ├── libpng.3 │ ├── libpng.pc.in │ ├── libpngpf.3 │ ├── ltmain.sh │ ├── missing │ ├── png.5 │ ├── png.c │ ├── png.h │ ├── pngconf.h │ ├── pngdebug.h │ ├── pngerror.c │ ├── pngget.c │ ├── pnginfo.h │ ├── pngmem.c │ ├── pngpread.c │ ├── pngpriv.h │ ├── pngread.c │ ├── pngrio.c │ ├── pngrtran.c │ ├── pngrutil.c │ ├── pngset.c │ ├── pngstruct.h │ ├── pngtest.c │ ├── pngtrans.c │ ├── pngusr.dfa │ ├── pngwio.c │ ├── pngwrite.c │ ├── pngwtran.c │ ├── pngwutil.c │ ├── scripts │ │ ├── README.txt │ │ ├── SCOPTIONS.ppc │ │ ├── checksym.awk │ │ ├── def.c │ │ ├── descrip.mms │ │ ├── dfn.awk │ │ ├── genchk.cmake.in │ │ ├── genout.cmake.in │ │ ├── gensrc.cmake.in │ │ ├── intprefix.c │ │ ├── libpng-config-body.in │ │ ├── libpng-config-head.in │ │ ├── libpng.pc.in │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ ├── macro.lst │ │ ├── makefile.32sunu │ │ ├── makefile.64sunu │ │ ├── makefile.acorn │ │ ├── makefile.aix │ │ ├── makefile.amiga │ │ ├── makefile.atari │ │ ├── makefile.bc32 │ │ ├── makefile.beos │ │ ├── makefile.bor │ │ ├── makefile.cegcc │ │ ├── makefile.darwin │ │ ├── makefile.dec │ │ ├── makefile.dj2 │ │ ├── makefile.freebsd │ │ ├── makefile.gcc │ │ ├── makefile.hp64 │ │ ├── makefile.hpgcc │ │ ├── makefile.hpux │ │ ├── makefile.ibmc │ │ ├── makefile.intel │ │ ├── makefile.knr │ │ ├── makefile.linux │ │ ├── makefile.linux-opt │ │ ├── makefile.mips │ │ ├── makefile.msc │ │ ├── makefile.msys │ │ ├── makefile.ne12bsd │ │ ├── makefile.netbsd │ │ ├── makefile.openbsd │ │ ├── makefile.sco │ │ ├── makefile.sggcc │ │ ├── makefile.sgi │ │ ├── makefile.so9 │ │ ├── makefile.solaris │ │ ├── makefile.solaris-x86 │ │ ├── makefile.std │ │ ├── makefile.sunos │ │ ├── makefile.tc3 │ │ ├── makefile.vcwin32 │ │ ├── makevms.com │ │ ├── options.awk │ │ ├── pnglibconf.dfa │ │ ├── pnglibconf.h.prebuilt │ │ ├── pnglibconf.mak │ │ ├── pngwin.rc │ │ ├── prefix.c │ │ ├── smakefile.ppc │ │ ├── sym.c │ │ ├── symbols.c │ │ ├── symbols.def │ │ ├── test.cmake.in │ │ └── vers.c │ └── test-driver ├── minilzo │ ├── COPYING │ ├── Makefile │ ├── README.LZO │ ├── lzoconf.h │ ├── lzodefs.h │ ├── minilzo.c │ ├── minilzo.h │ └── testmini.c ├── nvidia-texture-tools │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── NVIDIA_Texture_Tools_LICENSE.txt │ ├── NVIDIA_Texture_Tools_README.txt │ ├── VERSION │ ├── buildpkg │ ├── cmake │ │ ├── DetermineProcessor.cmake │ │ ├── FindCUDA.cmake │ │ ├── FindCg.cmake │ │ ├── FindDirectX.cmake │ │ ├── FindGLEW.cmake │ │ ├── FindGLUT.cmake │ │ ├── FindMaya.cmake │ │ ├── FindOpenEXR.cmake │ │ └── OptimalOptions.cmake │ ├── configure │ ├── gnuwin32 │ │ ├── CMakeLists.txt │ │ ├── bin │ │ │ ├── jpeg62.dll │ │ │ ├── libpng12.dll │ │ │ ├── libtiff3.dll │ │ │ └── zlib1.dll │ │ ├── include │ │ │ ├── jconfig.h │ │ │ ├── jerror.h │ │ │ ├── jmorecfg.h │ │ │ ├── jpeglib.h │ │ │ ├── png.h │ │ │ ├── pngconf.h │ │ │ ├── tiff.h │ │ │ ├── tiffconf.h │ │ │ ├── tiffio.h │ │ │ ├── tiffvers.h │ │ │ ├── zconf.h │ │ │ └── zlib.h │ │ └── lib │ │ │ ├── jpeg.def │ │ │ ├── jpeg.lib │ │ │ ├── libjpeg.dll.a │ │ │ ├── libpng.a │ │ │ ├── libpng.def │ │ │ ├── libpng.dll.a │ │ │ ├── libpng.lib │ │ │ ├── libpng12.def │ │ │ ├── libpng12.dll.a │ │ │ ├── libtiff.def │ │ │ ├── libtiff.dll.a │ │ │ ├── libz.a │ │ │ ├── libz.dll.a │ │ │ ├── tiff.lib │ │ │ ├── zlib.def │ │ │ └── zlib.lib │ ├── project │ │ ├── vc8 │ │ │ ├── Nvidia.TextureTools │ │ │ │ ├── Nvidia.TextureTools.csproj │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── TextureTools.cs │ │ │ ├── NvidiaTextureToolsProcessor │ │ │ │ ├── NvidiaTextureProcessor.cs │ │ │ │ ├── NvidiaTextureToolsProcessor.csproj │ │ │ │ ├── NvidiaTextureToolsProcessor.sln │ │ │ │ └── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── nvassemble │ │ │ │ ├── nvassemble.rc │ │ │ │ ├── nvassemble.vcproj │ │ │ │ ├── nvidia.ico │ │ │ │ └── resource.h │ │ │ ├── nvcompress │ │ │ │ ├── nvcompress.rc │ │ │ │ ├── nvcompress.vcproj │ │ │ │ ├── nvidia.ico │ │ │ │ └── resource.h │ │ │ ├── nvconfig.h │ │ │ ├── nvcore │ │ │ │ └── nvcore.vcproj │ │ │ ├── nvddsinfo │ │ │ │ ├── nvddsinfo.rc │ │ │ │ ├── nvddsinfo.vcproj │ │ │ │ ├── nvidia.ico │ │ │ │ └── resource.h │ │ │ ├── nvdecompress │ │ │ │ ├── nvdecompress.rc │ │ │ │ ├── nvdecompress.vcproj │ │ │ │ ├── nvidia.ico │ │ │ │ └── resource.h │ │ │ ├── nvimage │ │ │ │ └── nvimage.vcproj │ │ │ ├── nvimgdiff │ │ │ │ ├── nvidia.ico │ │ │ │ ├── nvimgdiff.rc │ │ │ │ ├── nvimgdiff.vcproj │ │ │ │ └── resource.h │ │ │ ├── nvmath │ │ │ │ └── nvmath.vcproj │ │ │ ├── nvtt.sln │ │ │ ├── nvtt │ │ │ │ ├── nvtt.rc │ │ │ │ ├── nvtt.vcproj │ │ │ │ └── resource.h │ │ │ ├── nvzoom │ │ │ │ ├── nvidia.ico │ │ │ │ ├── nvzoom.rc │ │ │ │ ├── nvzoom.vcproj │ │ │ │ └── resource.h │ │ │ └── squish │ │ │ │ └── squish.vcproj │ │ └── vc9 │ │ │ ├── Nvidia.TextureTools │ │ │ ├── Nvidia.TextureTools.csproj │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── TextureTools.cs │ │ │ ├── NvidiaTextureToolsProcessor │ │ │ ├── NvidiaTextureProcessor.cs │ │ │ ├── NvidiaTextureToolsProcessor.csproj │ │ │ ├── NvidiaTextureToolsProcessor.sln │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── nvassemble │ │ │ ├── nvassemble.rc │ │ │ ├── nvassemble.vcproj │ │ │ ├── nvidia.ico │ │ │ └── resource.h │ │ │ ├── nvcompress │ │ │ ├── nvcompress.rc │ │ │ ├── nvcompress.vcproj │ │ │ ├── nvidia.ico │ │ │ └── resource.h │ │ │ ├── nvconfig.h │ │ │ ├── nvcore │ │ │ └── nvcore.vcproj │ │ │ ├── nvddsinfo │ │ │ ├── nvddsinfo.rc │ │ │ ├── nvddsinfo.vcproj │ │ │ ├── nvidia.ico │ │ │ └── resource.h │ │ │ ├── nvdecompress │ │ │ ├── nvdecompress.rc │ │ │ ├── nvdecompress.vcproj │ │ │ ├── nvidia.ico │ │ │ └── resource.h │ │ │ ├── nvimage │ │ │ └── nvimage.vcproj │ │ │ ├── nvimgdiff │ │ │ ├── nvidia.ico │ │ │ ├── nvimgdiff.rc │ │ │ ├── nvimgdiff.vcproj │ │ │ └── resource.h │ │ │ ├── nvmath │ │ │ └── nvmath.vcproj │ │ │ ├── nvtt.sln │ │ │ ├── nvtt │ │ │ ├── nvtt.rc │ │ │ ├── nvtt.vcproj │ │ │ └── resource.h │ │ │ ├── nvzoom │ │ │ ├── nvidia.ico │ │ │ ├── nvzoom.rc │ │ │ ├── nvzoom.vcproj │ │ │ └── resource.h │ │ │ └── squish │ │ │ └── squish.vcproj │ └── src │ │ ├── CMakeLists.txt │ │ ├── nvconfig.h.in │ │ ├── nvcore │ │ ├── BitArray.h │ │ ├── CMakeLists.txt │ │ ├── Containers.h │ │ ├── Debug.cpp │ │ ├── Debug.h │ │ ├── DefsGnucDarwin.h │ │ ├── DefsGnucLinux.h │ │ ├── DefsGnucWin32.h │ │ ├── DefsVcWin32.h │ │ ├── Library.cpp │ │ ├── Library.h │ │ ├── Memory.cpp │ │ ├── Memory.h │ │ ├── Prefetch.h │ │ ├── Ptr.h │ │ ├── Radix.cpp │ │ ├── Radix.h │ │ ├── StdStream.h │ │ ├── StrLib.cpp │ │ ├── StrLib.h │ │ ├── Stream.h │ │ ├── TextReader.cpp │ │ ├── TextReader.h │ │ ├── TextWriter.cpp │ │ ├── TextWriter.h │ │ ├── Tokenizer.cpp │ │ ├── Tokenizer.h │ │ ├── nvcore.h │ │ └── poshlib │ │ │ ├── CMakeLists.txt │ │ │ ├── posh.c │ │ │ └── posh.h │ │ ├── nvimage │ │ ├── BlockDXT.cpp │ │ ├── BlockDXT.h │ │ ├── CMakeLists.txt │ │ ├── ColorBlock.cpp │ │ ├── ColorBlock.h │ │ ├── ConeMap.cpp │ │ ├── ConeMap.h │ │ ├── DirectDrawSurface.cpp │ │ ├── DirectDrawSurface.h │ │ ├── Filter.cpp │ │ ├── Filter.h │ │ ├── FloatImage.cpp │ │ ├── FloatImage.h │ │ ├── HoleFilling.cpp │ │ ├── HoleFilling.h │ │ ├── Image.cpp │ │ ├── Image.h │ │ ├── ImageIO.cpp │ │ ├── ImageIO.h │ │ ├── NormalMap.cpp │ │ ├── NormalMap.h │ │ ├── NormalMipmap.cpp │ │ ├── NormalMipmap.h │ │ ├── PixelFormat.h │ │ ├── PsdFile.h │ │ ├── Quantize.cpp │ │ ├── Quantize.h │ │ ├── TgaFile.h │ │ └── nvimage.h │ │ ├── nvmath │ │ ├── Basis.cpp │ │ ├── Basis.h │ │ ├── Box.h │ │ ├── CMakeLists.txt │ │ ├── Color.h │ │ ├── Matrix.h │ │ ├── Montecarlo.cpp │ │ ├── Montecarlo.h │ │ ├── Plane.cpp │ │ ├── Plane.h │ │ ├── Quaternion.h │ │ ├── Random.cpp │ │ ├── Random.h │ │ ├── SphericalHarmonic.cpp │ │ ├── SphericalHarmonic.h │ │ ├── TriBox.cpp │ │ ├── Triangle.cpp │ │ ├── Triangle.h │ │ ├── Vector.h │ │ └── nvmath.h │ │ └── nvtt │ │ ├── CMakeLists.txt │ │ ├── CompressDXT.cpp │ │ ├── CompressDXT.h │ │ ├── CompressRGB.cpp │ │ ├── CompressRGB.h │ │ ├── CompressionOptions.cpp │ │ ├── CompressionOptions.h │ │ ├── Compressor.cpp │ │ ├── Compressor.h │ │ ├── InputOptions.cpp │ │ ├── InputOptions.h │ │ ├── OptimalCompressDXT.cpp │ │ ├── OptimalCompressDXT.h │ │ ├── OutputOptions.cpp │ │ ├── OutputOptions.h │ │ ├── QuickCompressDXT.cpp │ │ ├── QuickCompressDXT.h │ │ ├── SingleColorLookup.h │ │ ├── cuda │ │ ├── Bitmaps.h │ │ ├── CompressKernel.cu │ │ ├── ConvolveKernel.cu │ │ ├── CudaCompressDXT.cpp │ │ ├── CudaCompressDXT.h │ │ ├── CudaMath.h │ │ ├── CudaUtils.cpp │ │ └── CudaUtils.h │ │ ├── nvtt.cpp │ │ ├── nvtt.h │ │ ├── nvtt_wrapper.cpp │ │ ├── nvtt_wrapper.h │ │ ├── squish │ │ ├── CMakeLists.txt │ │ ├── ChangeLog │ │ ├── Doxyfile │ │ ├── Makefile │ │ ├── README │ │ ├── alpha.cpp │ │ ├── alpha.h │ │ ├── clusterfit.cpp │ │ ├── clusterfit.h │ │ ├── colourblock.cpp │ │ ├── colourblock.h │ │ ├── colourfit.cpp │ │ ├── colourfit.h │ │ ├── colourset.cpp │ │ ├── colourset.h │ │ ├── config │ │ ├── config.h │ │ ├── extra │ │ │ ├── squishgen.cpp │ │ │ ├── squishpng.cpp │ │ │ └── squishtest.cpp │ │ ├── fastclusterfit.cpp │ │ ├── fastclusterfit.h │ │ ├── fastclusterlookup.inl │ │ ├── maths.cpp │ │ ├── maths.h │ │ ├── rangefit.cpp │ │ ├── rangefit.h │ │ ├── simd.h │ │ ├── simd_3dnow.h │ │ ├── simd_sse.h │ │ ├── simd_ve.h │ │ ├── singlechannelfit.cpp │ │ ├── singlechannelfit.h │ │ ├── singlecolourfit.cpp │ │ ├── singlecolourfit.h │ │ ├── singlecolourlookup.inl │ │ ├── squish.cpp │ │ ├── squish.h │ │ ├── squish.xcodeproj │ │ │ └── project.pbxproj │ │ ├── texture_compression_s3tc.txt │ │ ├── vs7 │ │ │ ├── squish.sln │ │ │ ├── squish │ │ │ │ └── squish.vcproj │ │ │ ├── squishpng │ │ │ │ └── squishpng.vcproj │ │ │ └── squishtest │ │ │ │ └── squishtest.vcproj │ │ ├── weightedclusterfit.cpp │ │ └── weightedclusterfit.h │ │ ├── tests │ │ ├── ctest.c │ │ └── filtertest.cpp │ │ └── tools │ │ ├── assemble.cpp │ │ ├── benchmark.cpp │ │ ├── cmdline.h │ │ ├── compress.cpp │ │ ├── configdialog.cpp │ │ ├── configdialog.h │ │ ├── configdialog.ui │ │ ├── ddsinfo.cpp │ │ ├── decompress.cpp │ │ ├── imgdiff.cpp │ │ ├── main.cpp │ │ └── resize.cpp ├── pnglite │ ├── pnglite.c │ └── pnglite.h └── zlib │ ├── VERSION │ ├── adler32.c │ ├── compress.c │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── gzio.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── zconf.h │ ├── zconf.in.h │ ├── zlib.h │ ├── zutil.c │ └── zutil.h ├── game-specific ├── Final Fantasy PSP │ ├── DataPackage │ │ ├── DataPackage.cpp │ │ ├── DataPackage.h │ │ └── DataPackage.pro │ ├── LZ77 │ │ ├── LZ77.cpp │ │ ├── LZ77.h │ │ ├── LZ77.pro │ │ ├── SimpleStream.cpp │ │ └── SimpleStream.h │ ├── PackageArchiver │ │ ├── PackageArchiver.cpp │ │ ├── PackageArchiver.h │ │ ├── PackageArchiver.pro │ │ └── main.cpp │ ├── TextConverter │ │ ├── FontGenerator.cpp │ │ ├── FontGenerator.h │ │ ├── FontInfo.cpp │ │ ├── FontInfo.h │ │ ├── MessageSet.cpp │ │ ├── MessageSet.h │ │ ├── TextConverter.pro │ │ ├── hell.tga │ │ └── main.cpp │ ├── common.pri │ ├── common │ │ ├── CommonTypes.h │ │ ├── DataPackageTypes.h │ │ ├── FontInfoTypes.h │ │ └── MessageSetTypes.h │ ├── libs │ │ ├── bc6h.lib │ │ ├── freetype249ST.lib │ │ ├── nvcore.lib │ │ ├── nvimage.lib │ │ ├── nvmath.lib │ │ ├── nvthread.lib │ │ ├── nvtt.lib │ │ └── squish.lib │ ├── make_vs_projects.bat │ └── tests │ │ ├── LZ77Tests │ │ ├── LZ77DecoderTests.cpp │ │ ├── LZ77DecoderTests.h │ │ ├── LZ77EncoderTests.cpp │ │ ├── LZ77EncoderTests.h │ │ ├── LZ77Tests.pro │ │ ├── data │ │ │ ├── EVM01.DATA │ │ │ ├── EVM01.PCK │ │ │ ├── FM_SHOPUS.DATA │ │ │ ├── FM_SHOPUS.PCK │ │ │ └── hashBase.txt │ │ └── main.cpp │ │ └── tools │ │ └── HashBaseCreator │ │ ├── HashBaseCreator.pro │ │ └── main.cpp ├── Metroid Prime 3 │ ├── Common │ │ └── ValueHolder.h │ ├── Corruption.pri │ ├── Corruption.pro │ ├── Extractor │ │ ├── Extractor.pro │ │ └── main.cpp │ ├── ExtractorLib │ │ ├── ExtractorLib.pro │ │ ├── lzo │ │ │ ├── compr1b.h │ │ │ ├── compr1c.h │ │ │ ├── config1.h │ │ │ ├── config1a.h │ │ │ ├── config1b.h │ │ │ ├── config1c.h │ │ │ ├── config1f.h │ │ │ ├── config1x.h │ │ │ ├── config1y.h │ │ │ ├── config1z.h │ │ │ ├── config2a.h │ │ │ ├── include │ │ │ │ └── lzo │ │ │ │ │ ├── lzo1.h │ │ │ │ │ ├── lzo1a.h │ │ │ │ │ ├── lzo1b.h │ │ │ │ │ ├── lzo1c.h │ │ │ │ │ ├── lzo1f.h │ │ │ │ │ ├── lzo1x.h │ │ │ │ │ ├── lzo1y.h │ │ │ │ │ ├── lzo1z.h │ │ │ │ │ ├── lzo2a.h │ │ │ │ │ ├── lzo_asm.h │ │ │ │ │ ├── lzoconf.h │ │ │ │ │ ├── lzodefs.h │ │ │ │ │ └── lzoutil.h │ │ │ ├── lzo.pri │ │ │ ├── lzo1.c │ │ │ ├── lzo1_99.c │ │ │ ├── lzo1_cm.ch │ │ │ ├── lzo1_d.ch │ │ │ ├── lzo1a.c │ │ │ ├── lzo1a_99.c │ │ │ ├── lzo1a_cm.ch │ │ │ ├── lzo1a_cr.ch │ │ │ ├── lzo1a_de.h │ │ │ ├── lzo1b_1.c │ │ │ ├── lzo1b_2.c │ │ │ ├── lzo1b_3.c │ │ │ ├── lzo1b_4.c │ │ │ ├── lzo1b_5.c │ │ │ ├── lzo1b_6.c │ │ │ ├── lzo1b_7.c │ │ │ ├── lzo1b_8.c │ │ │ ├── lzo1b_9.c │ │ │ ├── lzo1b_99.c │ │ │ ├── lzo1b_9x.c │ │ │ ├── lzo1b_c.ch │ │ │ ├── lzo1b_cc.c │ │ │ ├── lzo1b_cc.h │ │ │ ├── lzo1b_cm.ch │ │ │ ├── lzo1b_cr.ch │ │ │ ├── lzo1b_d.ch │ │ │ ├── lzo1b_d1.c │ │ │ ├── lzo1b_d2.c │ │ │ ├── lzo1b_de.h │ │ │ ├── lzo1b_r.ch │ │ │ ├── lzo1b_rr.c │ │ │ ├── lzo1b_sm.ch │ │ │ ├── lzo1b_tm.ch │ │ │ ├── lzo1b_xx.c │ │ │ ├── lzo1c_1.c │ │ │ ├── lzo1c_2.c │ │ │ ├── lzo1c_3.c │ │ │ ├── lzo1c_4.c │ │ │ ├── lzo1c_5.c │ │ │ ├── lzo1c_6.c │ │ │ ├── lzo1c_7.c │ │ │ ├── lzo1c_8.c │ │ │ ├── lzo1c_9.c │ │ │ ├── lzo1c_99.c │ │ │ ├── lzo1c_9x.c │ │ │ ├── lzo1c_cc.c │ │ │ ├── lzo1c_cc.h │ │ │ ├── lzo1c_d1.c │ │ │ ├── lzo1c_d2.c │ │ │ ├── lzo1c_rr.c │ │ │ ├── lzo1c_xx.c │ │ │ ├── lzo1f_1.c │ │ │ ├── lzo1f_9x.c │ │ │ ├── lzo1f_d.ch │ │ │ ├── lzo1f_d1.c │ │ │ ├── lzo1f_d2.c │ │ │ ├── lzo1x_1.c │ │ │ ├── lzo1x_1k.c │ │ │ ├── lzo1x_1l.c │ │ │ ├── lzo1x_1o.c │ │ │ ├── lzo1x_9x.c │ │ │ ├── lzo1x_c.ch │ │ │ ├── lzo1x_d.ch │ │ │ ├── lzo1x_d1.c │ │ │ ├── lzo1x_d2.c │ │ │ ├── lzo1x_d3.c │ │ │ ├── lzo1x_o.c │ │ │ ├── lzo1x_oo.ch │ │ │ ├── lzo1y_1.c │ │ │ ├── lzo1y_9x.c │ │ │ ├── lzo1y_d1.c │ │ │ ├── lzo1y_d2.c │ │ │ ├── lzo1y_d3.c │ │ │ ├── lzo1y_o.c │ │ │ ├── lzo1z_9x.c │ │ │ ├── lzo1z_d1.c │ │ │ ├── lzo1z_d2.c │ │ │ ├── lzo1z_d3.c │ │ │ ├── lzo2a_9x.c │ │ │ ├── lzo2a_d.ch │ │ │ ├── lzo2a_d1.c │ │ │ ├── lzo2a_d2.c │ │ │ ├── lzo_conf.h │ │ │ ├── lzo_crc.c │ │ │ ├── lzo_dict.h │ │ │ ├── lzo_dll.ch │ │ │ ├── lzo_func.ch │ │ │ ├── lzo_init.c │ │ │ ├── lzo_mchw.ch │ │ │ ├── lzo_ptr.c │ │ │ ├── lzo_ptr.h │ │ │ ├── lzo_str.c │ │ │ ├── lzo_swd.ch │ │ │ ├── lzo_util.c │ │ │ ├── miniacc.h │ │ │ ├── stats1a.h │ │ │ ├── stats1b.h │ │ │ └── stats1c.h │ │ ├── pak.cpp │ │ └── pak.h │ ├── FontEditor │ │ ├── AtlasBuilder.pas │ │ ├── CharProperties.dfm │ │ ├── CharProperties.pas │ │ ├── DIB.pas │ │ ├── DXConsts.pas │ │ ├── DelphiXcfg.inc │ │ ├── FontProporties.dfm │ │ ├── FontProporties.pas │ │ ├── GbaUnit.pas │ │ ├── Kerning.dfm │ │ ├── Kerning.pas │ │ ├── MetroidFontEditor.dpr │ │ ├── icon.ico │ │ ├── main.dfm │ │ └── main.pas │ ├── FontLib │ │ ├── FontLib.pro │ │ ├── MetroidFont.cpp │ │ ├── MetroidFont.h │ │ ├── SimpleImage.h │ │ ├── TextureAtlas.cpp │ │ ├── TextureAtlas.h │ │ ├── TextureCodec.cpp │ │ └── TextureCodec.h │ ├── FontTool │ │ ├── FontTool.pro │ │ └── main.cpp │ ├── Paster │ │ ├── MainFrame.cpp │ │ ├── MainFrame.h │ │ ├── Paster.pro │ │ ├── PasterThread.cpp │ │ ├── PasterThread.h │ │ ├── main.cpp │ │ └── main.ui │ ├── PasterLib │ │ ├── DataPaster.cpp │ │ ├── DataPaster.h │ │ ├── MainDolPatcher.cpp │ │ ├── MainDolPatcher.h │ │ ├── PasterLib.pro │ │ ├── QtFileStream.cpp │ │ ├── QtFileStream.h │ │ ├── QtPakArchive.cpp │ │ └── QtPakArchive.h │ ├── Patcher.pri │ ├── Patcher.pro │ ├── Patcher │ │ ├── ActionListWidget.cpp │ │ ├── ActionListWidget.h │ │ ├── CompoundProgressHandler.cpp │ │ ├── CompoundProgressHandler.h │ │ ├── DriveListener.cpp │ │ ├── DriveListener.h │ │ ├── DriveManager.cpp │ │ ├── DriveManager.h │ │ ├── FreeSpaceChecker.cpp │ │ ├── FreeSpaceChecker.h │ │ ├── ImageFileChecker.cpp │ │ ├── ImageFileChecker.h │ │ ├── Page.h │ │ ├── Patcher.pro │ │ ├── Patcher.rc │ │ ├── PatcherController.cpp │ │ ├── PatcherController.h │ │ ├── PatcherWorker.cpp │ │ ├── PatcherWorker.h │ │ ├── PathChecker.cpp │ │ ├── PathChecker.h │ │ ├── StaffWidget.cpp │ │ ├── StaffWidget.h │ │ ├── TransparentLabel.cpp │ │ ├── TransparentLabel.h │ │ ├── main.cpp │ │ ├── patchdata.qrc │ │ ├── patchdata │ │ │ └── test.txt │ │ ├── pch.h │ │ ├── qt_ru.ts │ │ ├── resources │ │ │ ├── Patcher.css │ │ │ ├── Patcher.qrc │ │ │ ├── SamusHelmet.ico │ │ │ ├── SamusHelmet.png │ │ │ ├── cancel.png │ │ │ ├── cancel16.png │ │ │ ├── clock16.png │ │ │ ├── earth.png │ │ │ ├── error.png │ │ │ ├── error16.png │ │ │ ├── eula.txt │ │ │ ├── loading.gif │ │ │ ├── metroid.png │ │ │ ├── ok16.png │ │ │ ├── qt_ru.qm │ │ │ ├── staff.txt │ │ │ ├── vk16.gif │ │ │ └── watermark.png │ │ ├── version.h │ │ └── wizard │ │ │ ├── CanceledPage.cpp │ │ │ ├── CanceledPage.h │ │ │ ├── CompletedPage.cpp │ │ │ ├── CompletedPage.h │ │ │ ├── EulaPage.cpp │ │ │ ├── EulaPage.h │ │ │ ├── FailedPage.cpp │ │ │ ├── FailedPage.h │ │ │ ├── ImagePatchPage.cpp │ │ │ ├── ImagePatchPage.h │ │ │ ├── IntroPage.cpp │ │ │ ├── IntroPage.h │ │ │ ├── PatchSelectPage.cpp │ │ │ ├── PatchSelectPage.h │ │ │ ├── PatchWizard.cpp │ │ │ ├── PatchWizard.h │ │ │ ├── ProgressPage.cpp │ │ │ ├── ProgressPage.h │ │ │ ├── RiivolutionPatchPage.cpp │ │ │ ├── RiivolutionPatchPage.h │ │ │ └── ui │ │ │ ├── CanceledPage.ui │ │ │ ├── CompletedPage.ui │ │ │ ├── EulaPage.ui │ │ │ ├── FailedPage.ui │ │ │ ├── ImagePatchPage.ui │ │ │ ├── IntroPage.ui │ │ │ ├── PatchSelectPage.ui │ │ │ ├── ProgressPage.ui │ │ │ ├── RiivolutionPatchPage.ui │ │ │ └── SideWidget.ui │ ├── Patcher_deprecated │ │ ├── MetroidPatcher.cpp │ │ ├── MetroidPatcher.h │ │ ├── MetroidProgressBar.cpp │ │ ├── MetroidProgressBar.h │ │ ├── Patcher.css │ │ ├── Patcher.pro │ │ ├── Patcher.qrc │ │ ├── PatcherDialog.cpp │ │ ├── PatcherDialog.h │ │ ├── RunningLabel.cpp │ │ ├── RunningLabel.h │ │ ├── main.cpp │ │ ├── resources │ │ │ ├── Patcher.rc │ │ │ ├── SamusHelmet.ico │ │ │ ├── background.png │ │ │ ├── progressbg.png │ │ │ └── progressbg32.png │ │ └── ui │ │ │ └── PatcherDialog.ui │ ├── ScriptTester │ │ ├── ScriptTester.cpp │ │ ├── ScriptTester.h │ │ ├── ScriptTester.pro │ │ └── main.cpp │ ├── ScriptTesterLib │ │ ├── ScriptParser.cpp │ │ ├── ScriptParser.h │ │ ├── ScriptTesterLib.pro │ │ ├── TagCalculator.cpp │ │ └── TagCalculator.h │ ├── ScriptViewer │ │ ├── EditorDockWidget.cpp │ │ ├── EditorDockWidget.h │ │ ├── Font.cpp │ │ ├── Font.h │ │ ├── MessageFileListModel.cpp │ │ ├── MessageFileListModel.h │ │ ├── MessageSetFilterModel.cpp │ │ ├── MessageSetFilterModel.h │ │ ├── MessageSetModel.cpp │ │ ├── MessageSetModel.h │ │ ├── ProjectReader.cpp │ │ ├── ProjectReader.h │ │ ├── ScriptEditor.cpp │ │ ├── ScriptEditor.h │ │ ├── ScriptHighlighter.cpp │ │ ├── ScriptHighlighter.h │ │ ├── ScriptViewWidget.cpp │ │ ├── ScriptViewWidget.h │ │ ├── ScriptViewer.cpp │ │ ├── ScriptViewer.h │ │ ├── ScriptViewer.pro │ │ ├── ScriptViewer.qrc │ │ ├── StringRenderer.cpp │ │ ├── StringRenderer.h │ │ ├── main.cpp │ │ ├── pch.h │ │ ├── resources │ │ │ └── splash.png │ │ └── ui │ │ │ └── CentralWidget.ui │ ├── TextConverter │ │ ├── TableText.pas │ │ └── TextConv.dpr │ ├── TextureConv │ │ ├── TextureConv.pro │ │ ├── dxt1.cpp │ │ ├── dxt1.h │ │ └── main.cpp │ ├── externals │ │ ├── WiiStreams │ │ │ └── WiiStreams.pro │ │ ├── core │ │ │ └── core.pro │ │ ├── libimagequant │ │ │ └── libimagequant.pro │ │ ├── libjpeg │ │ │ ├── jconfig.h │ │ │ └── libjpeg.pro │ │ ├── libpng │ │ │ ├── libpng.pro │ │ │ └── pnglibconf.h │ │ ├── nvtt │ │ │ ├── nvconfig.h │ │ │ └── nvtt.pro │ │ ├── pnglite │ │ │ └── pnglite.pro │ │ └── zlib │ │ │ └── zlib.pro │ ├── make_patcher_vs_projects.bat │ ├── make_vs_projects.bat │ └── tests │ │ ├── ExtractorTests │ │ ├── ExtractorTests.cpp │ │ ├── ExtractorTests.h │ │ ├── ExtractorTests.pro │ │ ├── HashStream.cpp │ │ ├── HashStream.h │ │ ├── main.cpp │ │ └── testdata │ │ │ ├── 009A730D911A65FE.MAPA │ │ │ ├── 61DA808D11A572A0.STRG │ │ │ ├── Worlds.hashdb │ │ │ ├── Worlds.pak │ │ │ ├── Worlds_rebuilded.hashdb │ │ │ └── Worlds_rebuilded_merged.hashdb │ │ └── ScriptTesterTests │ │ ├── ScriptParserTests.cpp │ │ ├── ScriptParserTests.h │ │ ├── ScriptTesterTests.pro │ │ ├── TagCalculatorTests.cpp │ │ ├── TagCalculatorTests.h │ │ ├── main.cpp │ │ └── testdata │ │ └── script_sample.txt ├── Resident Evil 3 │ ├── Compression │ │ ├── Archive.cpp │ │ ├── Archive.h │ │ ├── Compression.pro │ │ ├── Compressor.cpp │ │ ├── Compressor.h │ │ ├── CyclicBuffer.cpp │ │ ├── CyclicBuffer.h │ │ ├── SearchBuffer.cpp │ │ └── SearchBuffer.h │ ├── PackTool │ │ ├── PackTool.pro │ │ └── main.cpp │ ├── ResidentEvil.pri │ ├── ResidentEvil.pro │ ├── externals │ │ ├── CompressionLib │ │ │ └── CompressionLib.pro │ │ └── core │ │ │ └── core.pro │ ├── make_vs_projects.bat │ └── tests │ │ └── CompressionTests │ │ ├── CompressionTests.cpp │ │ ├── CompressionTests.h │ │ ├── CompressionTests.pro │ │ └── main.cpp ├── Shattered Memories │ ├── ArcTool │ │ ├── ArcTool.pro │ │ ├── main.cpp │ │ └── pch.h │ ├── CmiTool │ │ ├── CmiTool.pro │ │ ├── Map.cpp │ │ ├── Map.h │ │ ├── MapCommon.cpp │ │ ├── MapCommon.h │ │ ├── MapDecoder.cpp │ │ ├── MapDecoder.h │ │ ├── MapEncoder.cpp │ │ ├── MapEncoder.h │ │ ├── RowColMapEncoder.cpp │ │ ├── RowColMapEncoder.h │ │ └── main.cpp │ ├── Common │ │ ├── Common.pro │ │ ├── Hash.cpp │ │ ├── Hash.h │ │ ├── PSFormats.cpp │ │ ├── PSFormats.h │ │ ├── TexHeader.cpp │ │ ├── TexHeader.h │ │ ├── WiiFormats.cpp │ │ └── WiiFormats.h │ ├── CommonQt │ │ ├── CommonQt.pro │ │ ├── CsvReader.cpp │ │ ├── CsvReader.h │ │ ├── QtFileStream.cpp │ │ └── QtFileStream.h │ ├── Compression │ │ ├── Archive.cpp │ │ ├── Archive.h │ │ ├── Compression.pro │ │ ├── CompressionStream.cpp │ │ ├── CompressionStream.h │ │ ├── DecompressionStream.cpp │ │ ├── DecompressionStream.h │ │ ├── DirectoriesFileSource.cpp │ │ ├── DirectoriesFileSource.h │ │ ├── FileSource.h │ │ ├── ZlibStream.cpp │ │ ├── ZlibStream.h │ │ └── pch.h │ ├── ExecutablePatcher │ │ ├── ExecutablePatcher.pro │ │ └── main.cpp │ ├── FontEditor │ │ ├── CharProperties.dfm │ │ ├── CharProperties.pas │ │ ├── DIB.pas │ │ ├── DXConsts.pas │ │ ├── DelphiXcfg.inc │ │ ├── FontEditor.dpr │ │ ├── FontProporties.dfm │ │ ├── FontProporties.pas │ │ ├── Kerning.dfm │ │ ├── Kerning.pas │ │ ├── icon.ico │ │ ├── main.dfm │ │ └── main.pas │ ├── FontTool │ │ ├── FontTool.pro │ │ └── main.cpp │ ├── MapEditor │ │ ├── GLDraw.cpp │ │ ├── GLDraw.h │ │ ├── MapEditor.bpr │ │ ├── MapEditor.cpp │ │ ├── MapForm.cpp │ │ ├── MapForm.dfm │ │ ├── MapForm.h │ │ ├── draw.cpp │ │ ├── draw.h │ │ ├── font.cpp │ │ ├── font.h │ │ ├── map.cpp │ │ ├── map.h │ │ ├── map_editor.cpp │ │ ├── map_editor.dfm │ │ └── map_editor.h │ ├── Patcher.pri │ ├── Patcher.pro │ ├── Patcher │ │ ├── ActionListWidget.cpp │ │ ├── ActionListWidget.h │ │ ├── Configurator.cpp │ │ ├── Configurator.h │ │ ├── ErrorInfo.cpp │ │ ├── ErrorInfo.h │ │ ├── FreeSpaceChecker.cpp │ │ ├── FreeSpaceChecker.h │ │ ├── ImageFileChecker.cpp │ │ ├── ImageFileChecker.h │ │ ├── Page.h │ │ ├── PatchSpec.h │ │ ├── Patcher.pri │ │ ├── Patcher.pro │ │ ├── Patcher.rc │ │ ├── PathChecker.cpp │ │ ├── PathChecker.h │ │ ├── StaffWidget.cpp │ │ ├── StaffWidget.h │ │ ├── TransparentLabel.cpp │ │ ├── TransparentLabel.h │ │ ├── main.cpp │ │ ├── patchdata.qrc │ │ ├── patchdata │ │ │ ├── ps2 │ │ │ │ └── dummy │ │ │ ├── psp │ │ │ │ └── dummy │ │ │ ├── readme.txt │ │ │ └── wii │ │ │ │ └── dummy │ │ ├── pch.h │ │ ├── qt_ru.ts │ │ ├── resources │ │ │ ├── Patcher.css │ │ │ ├── Patcher.qrc │ │ │ ├── cancel.png │ │ │ ├── cancel16.png │ │ │ ├── clock16.png │ │ │ ├── earth.png │ │ │ ├── error.png │ │ │ ├── error16.png │ │ │ ├── eula.txt │ │ │ ├── icon.ico │ │ │ ├── icon.png │ │ │ ├── loading.gif │ │ │ ├── ok16.png │ │ │ ├── qt_ru.qm │ │ │ ├── staff.txt │ │ │ ├── vk16.gif │ │ │ └── watermark.png │ │ ├── version.h │ │ └── wizard │ │ │ ├── CanceledPage.cpp │ │ │ ├── CanceledPage.h │ │ │ ├── CompletedPage.cpp │ │ │ ├── CompletedPage.h │ │ │ ├── EulaPage.cpp │ │ │ ├── EulaPage.h │ │ │ ├── FailedPage.cpp │ │ │ ├── FailedPage.h │ │ │ ├── ImagePatchPage.cpp │ │ │ ├── ImagePatchPage.h │ │ │ ├── IntroPage.cpp │ │ │ ├── IntroPage.h │ │ │ ├── PatchWizard.cpp │ │ │ ├── PatchWizard.h │ │ │ ├── ProgressPage.cpp │ │ │ ├── ProgressPage.h │ │ │ └── ui │ │ │ ├── CanceledPage.ui │ │ │ ├── CompletedPage.ui │ │ │ ├── EulaPage.ui │ │ │ ├── FailedPage.ui │ │ │ ├── ImagePatchPage.ui │ │ │ ├── IntroPage.ui │ │ │ ├── ProgressPage.ui │ │ │ └── SideWidget.ui │ ├── PatcherLib │ │ ├── ArchiveProgressNotifier.cpp │ │ ├── ArchiveProgressNotifier.h │ │ ├── CheckingProgressNotifier.cpp │ │ ├── CheckingProgressNotifier.h │ │ ├── CompoundProgressNotifier.cpp │ │ ├── CompoundProgressNotifier.h │ │ ├── DiscImage.h │ │ ├── EmbededResourceInfo.cpp │ │ ├── EmbededResourceInfo.h │ │ ├── ExecutablePatcher.cpp │ │ ├── ExecutablePatcher.h │ │ ├── FontStreamRebuilder.cpp │ │ ├── FontStreamRebuilder.h │ │ ├── IsoDiscImage.cpp │ │ ├── IsoDiscImage.h │ │ ├── OnFlyPatchStream.cpp │ │ ├── OnFlyPatchStream.h │ │ ├── PS2DiscImage.cpp │ │ ├── PS2DiscImage.h │ │ ├── PSPDiscImage.cpp │ │ ├── PSPDiscImage.h │ │ ├── PatcherController.cpp │ │ ├── PatcherController.h │ │ ├── PatcherDirectoriesFileSource.cpp │ │ ├── PatcherDirectoriesFileSource.h │ │ ├── PatcherLib.pro │ │ ├── PatcherProcessor.cpp │ │ ├── PatcherProcessor.h │ │ ├── PatcherTexturesFileSource.cpp │ │ ├── PatcherTexturesFileSource.h │ │ ├── PatcherWorker.cpp │ │ ├── PatcherWorker.h │ │ ├── ProgressNotifier.cpp │ │ ├── ProgressNotifier.h │ │ ├── TextureDatabase.cpp │ │ ├── TextureDatabase.h │ │ ├── WiiDiscImage.cpp │ │ ├── WiiDiscImage.h │ │ ├── WiiImageProgressNotifier.cpp │ │ ├── WiiImageProgressNotifier.h │ │ └── pch.h │ ├── ScriptEditor │ │ ├── CategoriesModel.cpp │ │ ├── CategoriesModel.h │ │ ├── Category.cpp │ │ ├── Category.h │ │ ├── CommentWidget.cpp │ │ ├── CommentWidget.h │ │ ├── EditorDockWidget.cpp │ │ ├── EditorDockWidget.h │ │ ├── HtmlHighlighter.cpp │ │ ├── HtmlHighlighter.h │ │ ├── MainController.cpp │ │ ├── MainController.h │ │ ├── MainFrame.cpp │ │ ├── MainFrame.h │ │ ├── MessageSetFilterModel.cpp │ │ ├── MessageSetFilterModel.h │ │ ├── MessageSetModel.cpp │ │ ├── MessageSetModel.h │ │ ├── ScriptEditor.cpp │ │ ├── ScriptEditor.h │ │ ├── ScriptEditor.pro │ │ ├── ScriptEditor.qrc │ │ ├── ScriptHighlighter.cpp │ │ ├── ScriptHighlighter.h │ │ ├── TagsWidget.cpp │ │ ├── TagsWidget.h │ │ ├── main.cpp │ │ ├── pch.h │ │ ├── resources │ │ │ ├── commentTemplate.html │ │ │ ├── splash.png │ │ │ └── tagsTemplate.html │ │ └── ui │ │ │ ├── CentralWidget.ui │ │ │ ├── CommentEdit.ui │ │ │ └── TagsWidget.ui │ ├── ShatteredMemories.pri │ ├── ShatteredMemories.pro │ ├── StreamParser │ │ ├── StreamParser.pro │ │ ├── TextureDictionaryParser.cpp │ │ ├── TextureDictionaryParser.h │ │ ├── TextureDictionaryParserPS2.cpp │ │ ├── TextureDictionaryParserPS2.h │ │ ├── TextureDictionaryParserPSP.cpp │ │ ├── TextureDictionaryParserPSP.h │ │ ├── TextureDictionaryParserWii.cpp │ │ ├── TextureDictionaryParserWii.h │ │ └── main.cpp │ ├── StreamParserLib │ │ ├── DataStreamParser.cpp │ │ ├── DataStreamParser.h │ │ └── StreamParserLib.pro │ ├── TextConv │ │ ├── TextConv.pro │ │ └── main.cpp │ ├── TextLib │ │ ├── Strings.cpp │ │ ├── Strings.h │ │ └── TextLib.pro │ ├── TextureConv │ │ ├── PS2Swizzling.cpp │ │ ├── PS2Swizzling.h │ │ ├── PS2TextureCodec.cpp │ │ ├── PS2TextureCodec.h │ │ ├── PSPTextureCodec.cpp │ │ ├── PSPTextureCodec.h │ │ ├── PSTextureCodec.cpp │ │ ├── PSTextureCodec.h │ │ ├── Quantize.cpp │ │ ├── Quantize.h │ │ ├── TextureCodec.cpp │ │ ├── TextureCodec.h │ │ ├── TextureConv.pro │ │ ├── WiiSwizzling.cpp │ │ ├── WiiSwizzling.h │ │ ├── WiiTextureCodec.cpp │ │ ├── WiiTextureCodec.h │ │ ├── dxt1.cpp │ │ ├── dxt1.h │ │ └── main.cpp │ ├── WorkPatcher │ │ ├── MainFrame.cpp │ │ ├── MainFrame.h │ │ ├── WorkPatcher.pro │ │ ├── main.cpp │ │ ├── pch.h │ │ └── ui │ │ │ └── main.ui │ ├── externals │ │ ├── WiiStreams │ │ │ └── WiiStreams.pro │ │ ├── core │ │ │ └── core.pro │ │ ├── externals.pri │ │ ├── libimagequant │ │ │ └── libimagequant.pro │ │ ├── libjpeg │ │ │ ├── jconfig.h │ │ │ └── libjpeg.pro │ │ ├── libpng │ │ │ ├── libpng.pro │ │ │ └── pnglibconf.h │ │ ├── nvtt │ │ │ ├── nvconfig.h │ │ │ ├── nvtt.pro │ │ │ └── pch.h │ │ ├── pnglite │ │ │ └── pnglite.pro │ │ └── zlib │ │ │ └── zlib.pro │ ├── make_vs_patcher_projects.bat │ ├── make_vs_projects.bat │ ├── rws2svg │ │ ├── main.cpp │ │ ├── map.cpp │ │ ├── map.h │ │ └── rws2svg.cbp │ └── tests │ │ ├── PatcherLibTests │ │ ├── FontStreamRebuilderTests.cpp │ │ ├── FontStreamRebuilderTests.h │ │ ├── PatcherLibTests.pro │ │ ├── data │ │ │ ├── Font │ │ │ ├── FontEUR_sh0_ps2 │ │ │ ├── FontEUR_sh0_ps2.expected │ │ │ ├── FontEUR_shsm_ps2 │ │ │ ├── FontEUR_shsm_ps2.expected │ │ │ ├── FontEUR_shsm_wii │ │ │ └── FontEUR_shsm_wii.expected │ │ └── main.cpp │ │ └── tests.pri └── Silent Hill │ ├── Decryptor │ ├── crypto.cpp │ ├── crypto.h │ └── main.cpp │ ├── FilesExtractor │ ├── CDStream.cpp │ ├── CDStream.h │ ├── Common.h │ ├── FilesExtractor.pro │ ├── ISO9660_FS.cpp │ ├── ISO9660_FS.h │ ├── Silent.cpp │ ├── Silent.h │ ├── crc.cpp │ ├── crc.h │ └── main.cpp │ ├── Silent.pri │ ├── Silent.pro │ └── make_vs_projects.bat ├── legacy ├── README.md ├── projects │ ├── ICO │ │ ├── Build_iso.bat │ │ ├── DATA │ │ │ └── .gitignore │ │ ├── ICO.iml │ │ ├── IMAGE │ │ │ └── .gitignore │ │ ├── PATCH │ │ │ ├── Instruction.txt │ │ │ ├── PATCH_DF.RC │ │ │ ├── Readme.txt │ │ │ ├── bin │ │ │ │ ├── Patch.dpr │ │ │ │ ├── PatchUnit.dfm │ │ │ │ └── PatchUnit.pas │ │ │ ├── build.bat │ │ │ ├── cmd │ │ │ │ ├── del_temp.bat │ │ │ │ └── patch.bat │ │ │ ├── reduce.bat │ │ │ ├── reduce_pal.bat │ │ │ └── src │ │ │ │ ├── Errors.dfm │ │ │ │ ├── Errors.pas │ │ │ │ ├── ICOPatch.dpr │ │ │ │ ├── ICO_Patch.dfm │ │ │ │ ├── ICO_Patch.pas │ │ │ │ ├── IPS_Patch.pas │ │ │ │ ├── Instruction.dfm │ │ │ │ ├── Instruction.pas │ │ │ │ ├── Readme.dfm │ │ │ │ ├── Readme.pas │ │ │ │ └── test.bat │ │ ├── RUS │ │ │ ├── FILES.LST │ │ │ ├── build.bat │ │ │ └── text.act │ │ ├── Utils │ │ │ ├── DFExtract.exe │ │ │ ├── Extract.exe │ │ │ └── Tim2Jim.exe │ │ ├── _release │ │ │ └── .gitignore │ │ ├── build.bat │ │ ├── patch_make.bat │ │ └── test.bat │ ├── Silent Hill 2 │ │ ├── FileList.txt │ │ ├── build_data.bat │ │ ├── fonts │ │ │ ├── sh2_fnt_big │ │ │ └── sh2_fnt_small │ │ ├── msglist.txt │ │ ├── tables │ │ │ └── english.tbl │ │ └── tools │ │ │ ├── SH2FontEditor.exe │ │ │ ├── SH2TexEditor.exe │ │ │ ├── SH2Text.exe │ │ │ └── SH2_data.exe │ └── Silent Hill Origins │ │ ├── ARC │ │ └── README.md │ │ ├── RUS │ │ ├── CMI │ │ │ └── README.md │ │ ├── IPS │ │ │ └── README.md │ │ ├── Instruction.txt │ │ ├── LOCALE │ │ │ ├── main_menu_but_1.tga │ │ │ ├── main_menu_but_2.tga │ │ │ ├── main_menu_but_3.tga │ │ │ └── main_menu_but_4.tga │ │ ├── PATCH │ │ │ ├── IPS_ARC.RC │ │ │ ├── LOCALE │ │ │ │ └── README.md │ │ │ └── code │ │ │ │ ├── Errors.dfm │ │ │ │ ├── Errors.pas │ │ │ │ ├── IPS_Patch.pas │ │ │ │ ├── Instruction.dfm │ │ │ │ ├── Instruction.pas │ │ │ │ ├── Readme.dfm │ │ │ │ ├── Readme.pas │ │ │ │ ├── SH0Patch.dpr │ │ │ │ ├── SH0Patch.res │ │ │ │ ├── SH0_ARC.dcu │ │ │ │ ├── SH0_BG.RES │ │ │ │ ├── SH0_Compression.dcu │ │ │ │ ├── SH0_Patch.dcu │ │ │ │ ├── SH0_Patch.dfm │ │ │ │ ├── SH0_Patch.pas │ │ │ │ └── shv_buttonactionpc.ico │ │ ├── PIC │ │ │ ├── README.md │ │ │ └── mainmenu.xml │ │ ├── PSP_GAME │ │ │ └── README.md │ │ ├── Readme.txt │ │ ├── SRC │ │ │ ├── Config.xml │ │ │ ├── Embeded.LST │ │ │ ├── LocalePalette.bap │ │ │ ├── README.md │ │ │ └── SH0_Locale.ops │ │ ├── TEX │ │ │ └── README.md │ │ └── TXD │ │ │ └── README.md │ │ ├── UIPS.EXE │ │ ├── _patch_make.bat │ │ └── _release │ │ └── .gitignore └── sources │ ├── 8ld │ ├── M8LD.bpf │ ├── M8LD.bpr │ ├── RPK.pas │ ├── RPKArc.dpr │ └── _8ld.cpp │ ├── Advance Wars 2 │ ├── AW2FontEditor.dpr │ ├── GbaUnit.pas │ ├── HexUnit.pas │ ├── aw2.ico │ ├── main.dfm │ └── main.pas │ ├── Avatar │ ├── AvatarPacker.dpr │ ├── LZO.pas │ ├── XML2RML.dpr │ └── minilzo.obj │ ├── Bionic Commando │ ├── fcl_decompress.dpr │ └── text_extract.dpr │ ├── Chrono Trigger │ └── TextExtract.dpr │ ├── Dantes Inferno │ ├── DanteFont │ │ ├── DanteFont.dpr │ │ ├── FontUnit.pas │ │ ├── bacup │ │ ├── main.dfm │ │ └── main.pas │ ├── LH2Finder.dpr │ ├── LH2Tool.dpr │ ├── LZO.pas │ ├── OLS3Parser.pas │ ├── OLSRebuild.dpr │ ├── Rpak.pas │ ├── SizeFix.dpr │ ├── StreamsCheck.dpr │ ├── VivExtract.dpr │ ├── lzx.c │ ├── lzx.h │ ├── lzx_int.h │ ├── rpak.cpp │ ├── rpak.h │ ├── rpak_decompress.bpr │ ├── rpak_decompress.cpp │ ├── rpak_delphi.bat │ ├── rpak_lib.c │ ├── rpak_test.bpr │ └── rpak_test.cpp │ ├── DawnOfSouls │ └── DoSTextExtract.dpr │ ├── Dead Rising 2 │ ├── FontEditor │ │ ├── AtlasBuilder.pas │ │ ├── CharProperties.dfm │ │ ├── CharProperties.pas │ │ ├── DR2Font.pas │ │ ├── DeadRisingFontEditor.dpr │ │ ├── FontConv.dpr │ │ ├── FontProporties.dfm │ │ ├── FontProporties.pas │ │ ├── Kerning.dfm │ │ ├── Kerning.pas │ │ ├── _DR2Font.pas │ │ ├── icon.ico │ │ ├── main.dfm │ │ └── main.pas │ └── TextConv.dpr │ ├── Ever17 │ ├── AnimED_Graphics_CPS.pas │ ├── Ever17_d.dpr │ └── PRT.pas │ ├── ExtraPaster │ ├── EP_Common_inc.pas │ ├── EP_GBA.pas │ ├── EPaster.pas │ └── ExtraPaster.dpr │ ├── FFFont │ ├── FontProporties.dfm │ ├── FontProporties.pas │ ├── GbaUnit.pas │ ├── HexUnit.pas │ ├── SERFontEditor.dpr │ ├── icon.ico │ ├── lz77.pas │ ├── main.dfm │ └── main.pas │ ├── FFGBA │ ├── ByteConvert.dpr │ ├── FFA_TextExtract.dpr │ └── FFDS_TextExtract.dpr │ ├── FFText │ ├── Errors.dfm │ ├── Errors.pas │ ├── FFHighlighter.pas │ ├── FFScript.pas │ ├── FF_TextEditor.dfm │ ├── FF_TextEditor.pas │ ├── ItemProporties.dfm │ ├── ItemProporties.pas │ ├── StringProperties.dfm │ ├── StringProperties.pas │ ├── TableFont.pas │ ├── TableText.pas │ ├── TextEditor.dpr │ ├── TextSearch.dfm │ ├── TextSearch.pas │ ├── TextViewer.pas │ └── _FFHighlighter.pas │ ├── FFx │ ├── BMPFnt.pas │ ├── DrawUnit.pas │ ├── FF6 │ │ ├── FF6.cfg │ │ ├── FF6BG.bmp │ │ ├── FF6Code.txt │ │ ├── FF6Table.tbl │ │ └── FF6fnt.bmp │ ├── FFView.dfm │ ├── FFView.pas │ ├── FFx.dpr │ ├── FFx.ini │ ├── MyClasses.pas │ ├── Project2.dpr │ ├── TextUnit.pas │ ├── dd.dfm │ └── dd.pas │ ├── Final Fantasy PSP │ ├── All.bmp │ ├── Build_ff.dpr │ ├── Extract_ff.dpr │ ├── FEdit.dfm │ ├── FEdit.pas │ ├── FFTextView.pas │ ├── FontBmp.dfm │ ├── FontBmp.pas │ ├── FontEditor.dfm │ ├── FontEditor.dpr │ ├── FontEditor.pas │ ├── FontEditor_ff.dpr │ ├── FontGim.pas │ ├── FontGim2Bmp.dpr │ ├── GETTABLE.FFF │ ├── GetTable.bmp │ ├── GetTableListConv.dpr │ ├── GetTable_ff.dpr │ ├── Msg2Txt.dpr │ ├── MsgList_ff.dpr │ ├── Old │ │ ├── Build_ff.dpr │ │ ├── FontGim2Bmp.dpr │ │ ├── Project1.dpr │ │ ├── TextEditor.dfm │ │ ├── TextEditor.pas │ │ └── TextEditor_FF.dpr │ ├── PSPRAW.pas │ ├── Pack_ff.dpr │ ├── Packer.pas │ ├── Replace_ff.dpr │ ├── ShowEByte_ff.dpr │ ├── TextEditor.dfm │ ├── TextEditor.pas │ ├── TextEditor_FF.dpr │ ├── TextView.dfm │ ├── TextView.pas │ ├── Unpack_ff.dpr │ └── WTxtToFIF.dpr │ ├── Final Fantasy Tactics │ ├── EvPaster.dpr │ ├── FFT.pas │ ├── FFTExtract.dpr │ ├── FFTLen.pas │ ├── FFTO.dpr │ ├── FFTPacker.pas │ ├── FFTTextExtract.dpr │ ├── FFTTextExtractor.dpr │ ├── FFTUnpack.dpr │ ├── FFT_Compression.pas │ ├── FFT_Text.pas │ ├── OpenView.pas │ ├── OpenViewer.dpr │ ├── PSPRawView.dpr │ ├── PSPRawViewer.pas │ ├── PasteTextTest.pas │ ├── TXTOpt.dpr │ ├── TestPaste.dpr │ ├── TextOpt.pas │ ├── Unit1.pas │ ├── Unit2.pas │ ├── Unit3.pas │ ├── WLDMES.dpr │ └── WLDMESPaster.dpr │ ├── Final Fantasy VII │ ├── About.dfm │ ├── About.pas │ ├── BagReport.dfm │ ├── BagReport.pas │ ├── BldDat.dfm │ ├── BldDat.pas │ ├── ConvImg.dfm │ ├── ConvImg.pas │ ├── DATTEST.dpr │ ├── DAT_TEST.dfm │ ├── DAT_TEST.pas │ ├── Editor.dpr │ ├── Errors.dfm │ ├── Errors.pas │ ├── FF7_Common.pas │ ├── FF7_Compression.pas │ ├── FF7_Dat.pas │ ├── FF7_Field.pas │ ├── FF7_Image.pas │ ├── FF7_Text.pas │ ├── FF7_TextEditor.dfm │ ├── FF7_TextEditor.pas │ ├── FF7_Window.pas │ ├── FF8.pas │ ├── FF8IMG.dpr │ ├── FF8Pst.dpr │ ├── FFT.pas │ ├── GZipMen.dfm │ ├── GZipMen.pas │ ├── NewProject.dfm │ ├── NewProject.pas │ ├── Test.dpr │ ├── ToCEditor.dfm │ ├── ToCEditor.pas │ ├── Unit1.dfm │ ├── Unit1.pas │ ├── WEditor.dpr │ ├── WINTEST.dfm │ ├── WINTEST.pas │ ├── WIN_TEST.dfm │ ├── WIN_TEST.dpr │ ├── WIN_TEST.pas │ ├── WinEditor.dfm │ └── WinEditor.pas │ ├── Final Fantasy VIII │ ├── FF8CD.dpr │ ├── FF8IMG.dpr │ ├── FF8LZS.dpr │ ├── FF8STR.dpr │ ├── FF8TXT.dpr │ ├── FF8_CD.pas │ ├── FF8_Dat.pas │ ├── FF8_Img.pas │ ├── FF8_Img_sectors.pas │ ├── FF8_Str.pas │ ├── FF8_Txt.pas │ ├── FF8_compression.pas │ ├── Font │ │ ├── FF8FNT.dpr │ │ ├── FF8FNT.res │ │ ├── FontProporties.dfm │ │ ├── FontProporties.pas │ │ ├── GbaUnit.pas │ │ ├── HexUnit.pas │ │ ├── SERFontEditor.res │ │ ├── icon.ico │ │ ├── lz77.pas │ │ ├── main.dfm │ │ └── main.pas │ ├── MIM │ │ ├── FF8MIM.dpr │ │ ├── FF8MIM.res │ │ ├── FF8MIM_Main.dfm │ │ ├── FF8MIM_Main.pas │ │ ├── FF8_Mim.pas │ │ └── bdifrit1_00_00.ico │ ├── compression.c │ ├── compression.obj │ ├── names.pas │ ├── old │ │ ├── ExtractHeaders.dpr │ │ ├── FF8.pas │ │ ├── FF8_ExtractDat.dpr │ │ └── FF_Compression.pas │ └── test │ │ ├── bghoke_2.msd │ │ └── compress_test.dpr │ ├── ICO │ ├── Bmp2Jim.dpr │ ├── Compression.pas │ ├── DFExtract.dpr │ ├── Extract.dpr │ ├── ICO_DF.pas │ ├── ICO_GZip.pas │ ├── Jim2Bmp.dpr │ ├── JimExtract.dpr │ ├── Tim2Jim.dof │ ├── Tim2Jim.dpr │ ├── jim2tga.dpr │ └── targa.pas │ ├── Just Cause 2 │ └── ArcTool.dpr │ ├── KruptarLib │ ├── DNULL │ │ └── DNULL.dpr │ ├── Desert Strike │ │ ├── Desert_Strike.dpr │ │ └── Desert_Strike_obj.dpr │ ├── FFTA │ │ └── FFTA.dpr │ ├── GBAFF │ │ ├── FF6.dpr │ │ ├── FF6I.dpr │ │ └── GBAFF.dpr │ ├── Needs.pas │ ├── SHPN │ │ ├── PlayNovel.dpr │ │ └── SHPL.pas │ ├── Sword of Mana │ │ ├── Sword_of_Mana.dpr │ │ ├── Sword_of_Mana_DW.dpr │ │ └── Sword_of_Mana_Small.dpr │ └── WinX Club │ │ ├── WinX.dpr │ │ └── lz.pas │ ├── LNBPassGen │ ├── CheckSum.dpr │ ├── ETC.dpr │ ├── ExpToCode.dfm │ ├── ExpToCode.pas │ ├── LNBPass.pas │ ├── PGen.dfm │ ├── PGen.pas │ ├── PTest.dpr │ ├── PassGen.dpr │ ├── Test.dfm │ ├── Test.pas │ ├── data │ │ ├── CRC_Error.png │ │ ├── Font.bmp │ │ ├── bg.bmp │ │ ├── bg.gif │ │ └── Копия bg.bmp │ └── icon.ico │ ├── Legend of Spyro │ ├── Logo.dfm │ ├── Logo.dpr │ ├── Logo.pas │ ├── Names.dpr │ ├── Nms.dfm │ ├── Nms.pas │ ├── Project1.dpr │ ├── SpyroLogo.dpr │ ├── Spyro_Logo.dfm │ ├── Spyro_Logo.pas │ ├── Unit1.dfm │ └── Unit1.pas │ ├── MGA │ ├── MGAExtractText.dpr │ ├── MGS.pas │ ├── TXDPack.dpr │ ├── TXDUnpack.dpr │ ├── Test1.dpr │ ├── Unit1.dfm │ ├── Unit1.pas │ └── ZarUnpack.dpr │ ├── Manhunt │ ├── FEditor.dpr │ ├── Font.dfm │ ├── Font.pas │ └── PSPRAW.pas │ ├── PSearch │ ├── PSearch.dpr │ └── PtrSrch.pas │ ├── PYCCKAR BEPCNR │ ├── BOUGHT.dpr │ ├── Cnv.dfm │ ├── Cnv.pas │ ├── Convert.dpr │ ├── dic.inc │ └── eng_base.txt │ ├── Pirates │ ├── Project1.dpr │ ├── Unit1.dfm │ └── Unit1.pas │ ├── Princess Maker 4 │ ├── extract.bpr │ ├── extract.cpp │ ├── images │ │ ├── ImgConv.bpr │ │ ├── ImgConv.cpp │ │ ├── image.cpp │ │ ├── image.h │ │ ├── pnglite.c │ │ ├── pnglite.h │ │ └── zlib │ │ │ ├── VERSION │ │ │ ├── adler32.c │ │ │ ├── compress.c │ │ │ ├── crc32.c │ │ │ ├── crc32.h │ │ │ ├── deflate.c │ │ │ ├── deflate.h │ │ │ ├── gzio.c │ │ │ ├── infback.c │ │ │ ├── inffast.c │ │ │ ├── inffast.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inflate.h │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── trees.c │ │ │ ├── trees.h │ │ │ ├── uncompr.c │ │ │ ├── zconf.h │ │ │ ├── zconf.in.h │ │ │ ├── zlib.h │ │ │ ├── zutil.c │ │ │ └── zutil.h │ ├── lz.c │ ├── lz.cpp │ ├── lz.h │ ├── mosn3.h │ ├── pm_decompress.bpr │ └── pm_decompress.cpp │ ├── Relativer │ ├── Relative.dfm │ ├── Relative.pas │ ├── Relativer.dpr │ └── SR.pas │ ├── Resident Evil Genesis │ ├── GbaUnit.pas │ ├── HexUnit.pas │ ├── Icon.ico │ ├── REGFontEditor.dpr │ ├── main.dfm │ └── main.pas │ ├── Risen │ ├── G3PakDef.pas │ ├── PakTool.dpr │ ├── PakUnit.pas │ ├── TabConv.pas │ ├── TabConvert.dpr │ └── risfont │ │ ├── RisenFont.dpr │ │ ├── main.dfm │ │ └── main.pas │ ├── RomHaxxor │ ├── Errors.dfm │ ├── Errors.pas │ ├── FVTLogo_black_ss.ico │ ├── HaxList.pas │ ├── RomHaxxor.dpr │ ├── RomHxr.dfm │ ├── RomHxr.pas │ ├── ValEdit.dfm │ └── ValEdit.pas │ ├── SRRFontEditor │ ├── HexUnit.pas │ ├── SEF.dfm │ ├── SEF.pas │ ├── SRRFontEditor.dpr │ ├── main.dfm │ └── main.pas │ ├── Silent Hill 2 │ ├── CreateTestTable.dpr │ ├── Font │ │ ├── 12.bmp │ │ ├── FontProporties.dfm │ │ ├── FontProporties.pas │ │ ├── GbaUnit.pas │ │ ├── HexUnit.pas │ │ ├── SH2FontEditor.dpr │ │ ├── SH2FontEditor.res │ │ ├── lz77.pas │ │ ├── main.dfm │ │ └── main.pas │ ├── SH2Text.dpr │ ├── SH2_ARC.pas │ ├── SH2_data.dpr │ ├── TEX │ │ ├── PS2Textures.pas │ │ ├── SH2TexEditor.dpr │ │ ├── SH2_TEX.pas │ │ ├── TexEditor.dfm │ │ ├── TexEditor.pas │ │ ├── checker_ico.bmp │ │ ├── config.inc │ │ ├── ps2swizzle.pas │ │ └── targa.pas │ ├── extract.bpr │ └── extract.cpp │ ├── Silent Hill 5 │ ├── DLZO.pas │ ├── Errors.dfm │ ├── Errors.pas │ ├── ImFrame.dfm │ ├── ImFrame.pas │ ├── Main.dfm │ ├── Main.pas │ ├── PakArc.dfm │ ├── PakArc.pas │ ├── SH5Tools.dpr │ ├── SH5_Common.pas │ ├── SH5_Compression.pas │ ├── SH5_Pak.pas │ ├── SH5_SYTGFX.pas │ ├── SH5_Syt.pas │ ├── SYT_PropDlg.dfm │ ├── SYT_PropDlg.pas │ ├── SytViewer.dfm │ ├── SytViewer.pas │ ├── icon.ico │ ├── shv_buttonactionpc.ico │ └── targa.pas │ ├── Silent Hill Origins │ ├── CMIOpt.pas │ ├── CMIUnit.pas │ ├── CMIView.dfm │ ├── CMIView.pas │ ├── CMIViewer.dpr │ ├── DIB_classic.pas │ ├── FilePaster.dpr │ ├── FontGim.dcu │ ├── GenerateRC.dpr │ ├── PSPRAW.pas │ ├── PrForm.dfm │ ├── PrForm.pas │ ├── ReadMe.txt │ ├── SH0_ARC.pas │ ├── SH0_Compression.pas │ ├── SHExtract.dpr │ ├── SHPack.dpr │ ├── SHPacker.pas │ ├── SHTXD.dpr │ ├── SHTextBuild.dpr │ ├── SHTextConv.dpr │ ├── SHUnpack.dpr │ ├── SHZlib.dpr │ ├── TDXViewer.dfm │ ├── TDXViewer.pas │ ├── TextEditor.dfm │ ├── TextEditor.pas │ └── ho_trolleywheel.ico │ ├── Silent Hill Play Novel │ ├── ExPstr.dpr │ ├── FontExtract.dpr │ ├── FontPaste.dpr │ └── SHPL.pas │ ├── Silent Hill │ ├── Count.dpr │ ├── DPst.dpr │ ├── DeadList │ │ ├── DList.dfm │ │ ├── DList.pas │ │ ├── DListEditor.dpr │ │ ├── Image.bmp │ │ ├── Sel.bmp │ │ └── Select.bmp │ ├── FontEditor.dpr │ ├── FontV.dfm │ ├── FontV.pas │ ├── FrameReplacer.dpr │ ├── PtrSrch.pas │ ├── SHDcdr.dpr │ ├── SHDec.pas │ ├── SHDecoder.dpr │ ├── SHDecoder1.dpr │ ├── SH_E_C_Paste.dpr │ ├── STR.pas │ ├── StrPaster │ │ ├── StrP.dfm │ │ ├── StrP.pas │ │ └── StrPaster.dpr │ └── TexturePaster │ │ └── TPaster.dpr │ ├── Sonic Rivals │ ├── Sonic Rivals Font │ │ ├── Project1.dpr │ │ ├── RawTextConv.dpr │ │ ├── SFEditor.dfm │ │ ├── SFEditor.pas │ │ ├── SFEditor2.dfm │ │ ├── SFEditor2.pas │ │ ├── SonicFont.dpr │ │ ├── SonicFontEditor.dpr │ │ ├── SonicFontEditor2.dpr │ │ ├── Unit1.dfm │ │ └── Unit1.pas │ └── Sonic txt │ │ ├── Project2.dpr │ │ └── Table.tbl │ ├── Sources │ ├── DIB.pas │ ├── DLZO.pas │ ├── DXConsts.pas │ ├── DelphiXcfg.inc │ ├── GBA_lz77.pas │ ├── GbaUnit.pas │ ├── MapImage │ │ ├── HexUnit.pas │ │ ├── MyClasses.pas │ │ ├── MyClassesEx.pas │ │ ├── MyUtils.pas │ │ ├── NodeLst.pas │ │ ├── NodeLstEx.pas │ │ ├── PlugInterface.pas │ │ ├── TilesUnit.pas │ │ └── mi_MapImage.pas │ ├── PS2Textures.pas │ ├── TIM.pas │ ├── TIM2.pas │ ├── ps2swizzle.pas │ └── targa.pas │ ├── Superstar Saga │ ├── FontEditor │ │ ├── MarioFontEditor.dpr │ │ ├── icon.ico │ │ ├── main.dfm │ │ └── main.pas │ ├── MarioTextExtract.dpr │ └── TextViewer │ │ ├── DrawFrameUnit.pas │ │ ├── FontUnit.pas │ │ ├── Fonts.mft │ │ ├── OpenGLUnit.pas │ │ ├── TextUnit.pas │ │ ├── TextView.dfm │ │ ├── TextView.pas │ │ ├── TextViewer.dpr │ │ ├── ViewForm.dfm │ │ ├── ViewForm.pas │ │ ├── ViewUnit.pas │ │ └── Window.inc │ ├── WinX │ ├── Extract.dpr │ ├── GBAUnit.pas │ ├── HexUnit.pas │ ├── SCANF.pas │ ├── SCANF_C.PAS │ ├── TextUnit.pas │ ├── WinXFontEditor.dpr │ ├── WinxText.dpr │ ├── icon.ico │ ├── lz77.pas │ ├── main.dfm │ └── main.pas │ ├── Xenosaga │ ├── PS2Textures.pas │ └── Xenofont.dpr │ └── vb6 │ ├── Arena │ ├── Form1.frm │ ├── Form2.frm │ ├── Form3.frm │ ├── Project1.vbp │ ├── QEdit.frm │ └── TabView.frm │ ├── Barbie │ ├── Form1.frm │ ├── Module1.bas │ └── Project1.vbp │ ├── CaveStory │ ├── EditSelect.frm │ ├── Form1.frm │ ├── Module1.bas │ ├── Project1.vbp │ ├── Search.frm │ └── ShowMsg.frm │ ├── Crimsonland │ ├── Form1.frm │ ├── GzToJaz │ │ ├── Form1.frm │ │ ├── Module1.bas │ │ ├── Project1.vbp │ │ └── zlib.dll │ ├── Module1.bas │ └── Project1.vbp │ ├── FF6Font │ ├── Form1.frm │ ├── Module1.bas │ ├── Module2.bas │ └── Project1.vbp │ ├── FF8 │ ├── FF8FNT │ │ ├── Form1.frm │ │ ├── Module1.bas │ │ └── Project1.vbp │ ├── FF8IMG │ │ ├── Form1.frm │ │ ├── Module1.bas │ │ └── Project1.vbp │ ├── FF8Paster │ │ ├── Form1.frm │ │ ├── Module1.bas │ │ ├── Module2.bas │ │ └── Project1.vbp │ ├── FF8RIP │ │ ├── Form1.frm │ │ ├── Module1.bas │ │ └── Project1.vbp │ ├── FF8Script │ │ ├── Bits.bas │ │ ├── Form1.frm │ │ ├── Module1.bas │ │ ├── Project1.vbp │ │ └── ShowOpen.bas │ ├── FF8Size │ │ ├── Form1.frm │ │ ├── Module1.bas │ │ └── Project1.vbp │ └── FF8UnPacker │ │ ├── Form1.frm │ │ ├── Module1.bas │ │ ├── OpenSave.bas │ │ └── Project1.vbp │ ├── FFT │ ├── FFTTXT │ │ ├── Form1.frm │ │ ├── Module1.bas │ │ └── Project1.vbp │ ├── Form1.frm │ ├── Module1.bas │ └── Project1.vbp │ ├── FinalFantasy │ ├── CRC │ │ ├── Form1.frm │ │ └── Project1.vbp │ ├── FFPC.frm │ ├── FFPC.vbp │ ├── FFRecalc.frm │ └── FFRecalc.vbp │ ├── Flash │ ├── Form1.frm │ └── Project1.vbp │ ├── KPE │ ├── Form1.frm │ ├── GLoad.frm │ ├── Module1.bas │ ├── OpnSve.bas │ └── Project1.vbp │ ├── LNB │ ├── Recalc.frm │ └── Recalc.vbp │ ├── LNBTA │ ├── Form1.frm │ ├── Module1.bas │ ├── Project1.vbp │ ├── SaveOpen.bas │ ├── TableView.frm │ └── Varibles.bas │ ├── Pac-Man │ ├── PM │ │ ├── Form1.frm │ │ └── Project1.vbp │ ├── PMGF │ │ ├── 1.frm │ │ ├── Module1.bas │ │ ├── Project1.vbp │ │ └── Ps.bas │ ├── PMPC │ │ ├── Form1.frm │ │ ├── Form2.frm │ │ ├── Module1.bas │ │ ├── Module2.bas │ │ ├── Project1.vbp │ │ ├── ico.ico │ │ └── ico.png │ └── PMT │ │ ├── Form1.frm │ │ ├── Module1.bas │ │ └── Project1.vbp │ ├── README.md │ └── Table │ ├── DicEditor.frm │ ├── Help.frm │ ├── Icon.ico │ ├── LoadTable.frm │ ├── Module1.bas │ ├── Project1.vbp │ ├── SaveTable.frm │ ├── ShowTable.frm │ └── Tbl.frm ├── libs ├── bc6h.lib ├── freetype249ST.lib ├── libgcc.a ├── libimagequant.a ├── libimagequant.dll ├── libimagequant_dll.a ├── libmingwex.a ├── nvcore.lib ├── nvimage.lib ├── nvmath.lib ├── nvthread.lib ├── nvtt.lib └── squish.lib ├── platform-specific └── wii │ ├── streams │ ├── Streams.pro │ ├── Tmd.h │ ├── WiiDisc.cpp │ ├── WiiDisc.h │ ├── WiiFileStream.cpp │ ├── WiiFileStream.h │ ├── WiiImage.cpp │ ├── WiiImage.h │ ├── WiiPartition.cpp │ ├── WiiPartition.h │ ├── WiiStream.cpp │ ├── WiiStream.h │ ├── WiiStreams.pro │ ├── WiiTypes.h │ ├── aes │ │ ├── aes_cbc.c │ │ ├── aes_cfb.c │ │ ├── aes_core.c │ │ ├── aes_ctr.c │ │ ├── aes_ecb.c │ │ ├── aes_ige.c │ │ ├── aes_locl.h │ │ ├── aes_misc.c │ │ └── aes_ofb.c │ ├── include │ │ └── openssl │ │ │ ├── aes.h │ │ │ ├── asn1.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1t.h │ │ │ ├── bio.h │ │ │ ├── blowfish.h │ │ │ ├── bn.h │ │ │ ├── buffer.h │ │ │ ├── cast.h │ │ │ ├── comp.h │ │ │ ├── conf.h │ │ │ ├── conf_api.h │ │ │ ├── cryptlib.h │ │ │ ├── crypto.h │ │ │ ├── des.h │ │ │ ├── des_old.h │ │ │ ├── dh.h │ │ │ ├── dsa.h │ │ │ ├── dso.h │ │ │ ├── dtls1.h │ │ │ ├── e_os.h │ │ │ ├── e_os2.h │ │ │ ├── ebcdic.h │ │ │ ├── ec.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── engine.h │ │ │ ├── err.h │ │ │ ├── evp.h │ │ │ ├── hmac.h │ │ │ ├── idea.h │ │ │ ├── krb5_asn.h │ │ │ ├── kssl.h │ │ │ ├── lhash.h │ │ │ ├── md2.h │ │ │ ├── md32_common.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── obj_mac.h │ │ │ ├── objects.h │ │ │ ├── ocsp.h │ │ │ ├── opensslconf.h │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs7.h │ │ │ ├── pq_compat.h │ │ │ ├── pqueue.h │ │ │ ├── rand.h │ │ │ ├── rc2.h │ │ │ ├── rc4.h │ │ │ ├── ripemd.h │ │ │ ├── rsa.h │ │ │ ├── safestack.h │ │ │ ├── sha.h │ │ │ ├── ssl.h │ │ │ ├── ssl2.h │ │ │ ├── ssl23.h │ │ │ ├── ssl3.h │ │ │ ├── stack.h │ │ │ ├── store.h │ │ │ ├── symhacks.h │ │ │ ├── tls1.h │ │ │ ├── tmdiff.h │ │ │ ├── txt_db.h │ │ │ ├── ui.h │ │ │ ├── ui_compat.h │ │ │ ├── x509.h │ │ │ ├── x509_vfy.h │ │ │ └── x509v3.h │ └── sha │ │ ├── Makefile │ │ ├── asm │ │ ├── README │ │ ├── sha1-586.pl │ │ ├── sha1-ia64.pl │ │ ├── sha512-ia64.pl │ │ └── sha512-sse2.pl │ │ ├── sha.h │ │ ├── sha1_one.c │ │ ├── sha1dgst.c │ │ ├── sha256.c │ │ ├── sha512.c │ │ ├── sha_dgst.c │ │ ├── sha_locl.h │ │ └── sha_one.c │ ├── tests │ ├── Tests.pro │ ├── WiiStreamsTests │ │ ├── WiiImageTests.cpp │ │ ├── WiiImageTests.h │ │ ├── WiiStreamsTests.pro │ │ ├── main.cpp │ │ └── testdata │ │ │ └── World_replace.txt │ └── make_vs_projects.bat │ └── textures │ ├── dxt1.cpp │ ├── dxt1.h │ ├── wiitex.cpp │ └── wiitex.h ├── projects ├── ff5a │ ├── _datascript.txt │ ├── _release │ │ └── .gitignore │ ├── build.bat │ ├── data │ │ ├── asm │ │ │ ├── ansi_rus.asm │ │ │ ├── battle_items.asm │ │ │ ├── black_screen.asm │ │ │ └── text_out.asm │ │ ├── fonts │ │ │ ├── font1_rus.fnt │ │ │ ├── font2_rus.fnt │ │ │ ├── font3_rus.fnt │ │ │ ├── staff_font_rus.bmp │ │ │ └── staff_font_small_rus.bmp │ │ ├── intro │ │ │ ├── intro.asm │ │ │ ├── intro.bmp │ │ │ └── intro.gbapal │ │ ├── list.txt │ │ ├── logo │ │ │ ├── bmp │ │ │ │ ├── Logo3_RUS.bmp │ │ │ │ ├── logo2_RUS.bmp │ │ │ │ ├── logo_RUS.bmp │ │ │ │ ├── mplayer.bmp │ │ │ │ ├── present.bmp │ │ │ │ ├── the_end │ │ │ │ │ ├── the_end.act │ │ │ │ │ ├── the_end.bmp │ │ │ │ │ ├── the_end_shine.bmp │ │ │ │ │ ├── the_end_shine_full.bmp │ │ │ │ │ ├── the_end_shine_mask.bmp │ │ │ │ │ └── the_end_white.bmp │ │ │ │ ├── title.bmp │ │ │ │ └── title_fixed.bmp │ │ │ └── res │ │ │ │ └── .gitignore │ │ ├── menu │ │ │ ├── menu.bmp │ │ │ ├── miss.bmp │ │ │ ├── press.bmp │ │ │ └── res │ │ │ │ └── .gitignore │ │ ├── name_input_ru.txt │ │ ├── screen │ │ │ ├── bmp │ │ │ │ ├── battle_screens.bmp │ │ │ │ └── job_screen.bmp │ │ │ ├── res │ │ │ │ └── .gitignore │ │ │ ├── screen.act │ │ │ └── screen_tiles.chr │ │ ├── staff │ │ │ ├── staff.tbl │ │ │ ├── staff_big.tbl │ │ │ └── staff_small.tbl │ │ └── tiles │ │ │ ├── tiles_inn_inside.bin │ │ │ └── tiles_pub_inn.bin │ ├── english.txt │ ├── gconvert.bat │ ├── release.bat │ ├── russian.txt │ ├── src │ │ ├── ExtraPaster │ │ │ ├── EP_Common_inc.pas │ │ │ ├── EP_GBA.pas │ │ │ ├── EPaster.pas │ │ │ └── ExtraPaster.dpr │ │ └── FF5 │ │ │ ├── CodePaster.dpr │ │ │ ├── CodePasterUnit.pas │ │ │ └── ImageConv.dpr │ ├── tables │ │ ├── Avatars.tbl │ │ ├── Names_Rus.tbl │ │ ├── Opcodes.tbl │ │ ├── Table_Eng.tbl │ │ ├── Table_Eng_tr.tbl │ │ └── Table_RUS.tbl │ ├── tools │ │ ├── ExtraPaster.exe │ │ ├── FFA_TextExtract.exe │ │ ├── ImageConv.exe │ │ ├── SERFontEditor.exe │ │ └── UIPS.EXE │ └── view │ │ ├── FF5 │ │ ├── FF5.cfg │ │ ├── FF5BG.bmp │ │ ├── FF5Code.txt │ │ ├── FF5Table.tbl │ │ ├── FF5_battle.cfg │ │ ├── FF5fnt.bmp │ │ └── battle_msg.BMP │ │ ├── FFx.exe │ │ └── FFx.ini ├── mp3c │ ├── buildPatch.bat │ ├── buildPatch.sh │ ├── buildResources.bat │ ├── buildResources.sh │ ├── builds │ │ ├── howto.txt │ │ ├── release │ │ │ └── .gitignore │ │ └── testing │ │ │ └── .gitignore │ ├── content │ │ ├── common │ │ │ └── fontsInfo.txt │ │ ├── eng │ │ │ ├── fonts │ │ │ │ └── .gitignore │ │ │ ├── text │ │ │ │ └── .gitignore │ │ │ └── textures │ │ │ │ └── .gitignore │ │ └── rus │ │ │ ├── fonts │ │ │ └── mtf │ │ │ │ ├── 073A875DB4D51CE9.mtf │ │ │ │ ├── 3D964165578C3990.mtf │ │ │ │ ├── 4AFB0CDAE17E6613.mtf │ │ │ │ ├── 8E959CB18B3E28C1.mtf │ │ │ │ ├── FC1BE4F13D86CE52.mtf │ │ │ │ └── system.mtf │ │ │ ├── mergemaps │ │ │ └── textures.txt │ │ │ ├── text │ │ │ └── .gitignore │ │ │ └── textures │ │ │ └── .gitignore │ ├── misc │ │ ├── userDefineLang.xml │ │ └── viewer_project │ │ │ └── textarea.png │ ├── resources │ │ └── readme.txt │ ├── scripts │ │ ├── build.py │ │ └── tests.py │ └── tools │ │ ├── FontTool.exe │ │ ├── QtCore4.dll │ │ ├── ScriptTester.exe │ │ ├── TextConv.exe │ │ └── TextureConv.exe ├── sh0 │ ├── buildResources.bat │ ├── content │ │ ├── common │ │ │ ├── ScriptEditor.config │ │ │ ├── authors.txt │ │ │ ├── categories.txt │ │ │ ├── comments.txt │ │ │ ├── data │ │ │ │ └── ps2 │ │ │ │ │ ├── files.list │ │ │ │ │ ├── manifest.ini │ │ │ │ │ ├── patch.dat │ │ │ │ │ └── textures.csv │ │ │ ├── languages.csv │ │ │ ├── mergemap.txt │ │ │ ├── patcher │ │ │ │ ├── icon.ico │ │ │ │ └── watermark.png │ │ │ └── tags.txt │ │ ├── eng │ │ │ ├── fonts │ │ │ │ └── .gitignore │ │ │ ├── misc │ │ │ │ └── .gitignore │ │ │ └── text │ │ │ │ └── .gitignore │ │ └── rus │ │ │ ├── fonts │ │ │ └── ps2 │ │ │ │ └── Font_EUR.kft │ │ │ ├── misc │ │ │ └── ps2 │ │ │ │ ├── mainmenu.xml │ │ │ │ └── messages.txt │ │ │ ├── patcher │ │ │ ├── manifest.ini │ │ │ ├── staff.txt │ │ │ └── version │ │ │ └── text │ │ │ ├── ps2 │ │ │ └── .gitignore │ │ │ └── psp │ │ │ └── .gitignore │ └── resources │ │ └── .gitignore └── shsm │ ├── buildResources.bat │ ├── buildResourcesPolish.bat │ ├── builds │ ├── howto.txt │ ├── release │ │ └── .gitignore │ └── testing │ │ └── .gitignore │ ├── content │ ├── common │ │ ├── authors.txt │ │ ├── categories.txt │ │ ├── comments.txt │ │ ├── data │ │ │ ├── ps2 │ │ │ │ ├── manifest.ini │ │ │ │ ├── patch.dat │ │ │ │ └── textures.csv │ │ │ ├── psp │ │ │ │ ├── manifest.ini │ │ │ │ ├── patch.dat │ │ │ │ └── textures.csv │ │ │ └── wii │ │ │ │ ├── manifest.ini │ │ │ │ ├── patch.dat │ │ │ │ └── textures.csv │ │ ├── languages.csv │ │ ├── manifest.ini.template │ │ ├── mergemap.txt │ │ ├── names.txt │ │ ├── patcher │ │ │ ├── icon.ico │ │ │ └── watermark.png │ │ └── tags.txt │ ├── eng │ │ ├── fonts │ │ │ ├── ps2 │ │ │ │ └── .gitignore │ │ │ ├── psp │ │ │ │ └── .gitignore │ │ │ └── wii │ │ │ │ └── .gitignore │ │ ├── misc │ │ │ └── messages.txt │ │ └── text │ │ │ ├── ps2 │ │ │ └── .gitignore │ │ │ ├── psp │ │ │ └── .gitignore │ │ │ └── wii │ │ │ └── .gitignore │ └── rus │ │ ├── fonts │ │ └── .gitignore │ │ ├── misc │ │ └── messages.txt │ │ ├── patcher │ │ ├── manifest.ini │ │ ├── staff.txt │ │ └── version │ │ └── text │ │ ├── hiera.list │ │ ├── ps2 │ │ └── .gitignore │ │ ├── psp │ │ └── .gitignore │ │ └── wii │ │ └── .gitignore │ ├── resources │ └── readme.txt │ └── scripts │ ├── build.py │ ├── environment.py │ ├── font.py │ ├── hash.py │ ├── patcher.py │ ├── strings.py │ ├── tests.py │ └── textures.py └── utils ├── HashDBCreator ├── HashDBCreator.pro └── main.cpp ├── make_vs_projects.bat └── utils.pro /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/README.md -------------------------------------------------------------------------------- /compression/Compression.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/compression/Compression.pro -------------------------------------------------------------------------------- /compression/SearchTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/compression/SearchTree.cpp -------------------------------------------------------------------------------- /compression/SearchTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/compression/SearchTree.h -------------------------------------------------------------------------------- /core/classes/Nullable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/core/classes/Nullable.h -------------------------------------------------------------------------------- /core/classes/PathInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/core/classes/PathInfo.cpp -------------------------------------------------------------------------------- /core/classes/PathInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/core/classes/PathInfo.h -------------------------------------------------------------------------------- /core/classes/Tree.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/classes/Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/core/classes/Tree.h -------------------------------------------------------------------------------- /core/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/core/core.h -------------------------------------------------------------------------------- /core/core.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/core/core.pro -------------------------------------------------------------------------------- /core/streams/FileStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/core/streams/FileStream.cpp -------------------------------------------------------------------------------- /core/streams/FileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/core/streams/FileStream.h -------------------------------------------------------------------------------- /core/streams/ImageFileStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/core/streams/ImageFileStream.cpp -------------------------------------------------------------------------------- /core/streams/ImageFileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/core/streams/ImageFileStream.h -------------------------------------------------------------------------------- /core/streams/MemoryStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/core/streams/MemoryStream.cpp -------------------------------------------------------------------------------- /core/streams/MemoryStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/core/streams/MemoryStream.h -------------------------------------------------------------------------------- /core/streams/PartStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/core/streams/PartStream.cpp -------------------------------------------------------------------------------- /core/streams/PartStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/core/streams/PartStream.h -------------------------------------------------------------------------------- /core/streams/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/core/streams/Stream.cpp -------------------------------------------------------------------------------- /core/streams/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/core/streams/Stream.h -------------------------------------------------------------------------------- /core/streams/Streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/core/streams/Streams.h -------------------------------------------------------------------------------- /core/streams/iso/IsoDirectory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/core/streams/iso/IsoDirectory.cpp -------------------------------------------------------------------------------- /core/streams/iso/IsoDirectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/core/streams/iso/IsoDirectory.h -------------------------------------------------------------------------------- /core/streams/iso/IsoFSCDVD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/core/streams/iso/IsoFSCDVD.cpp -------------------------------------------------------------------------------- /core/streams/iso/IsoFSCDVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/core/streams/iso/IsoFSCDVD.h -------------------------------------------------------------------------------- /core/streams/iso/IsoFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/core/streams/iso/IsoFile.cpp -------------------------------------------------------------------------------- /core/streams/iso/IsoFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/core/streams/iso/IsoFile.h -------------------------------------------------------------------------------- /core/streams/iso/IsoFileDescriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/core/streams/iso/IsoFileDescriptor.cpp -------------------------------------------------------------------------------- /core/streams/iso/IsoFileDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/core/streams/iso/IsoFileDescriptor.h -------------------------------------------------------------------------------- /core/streams/iso/IsoImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/core/streams/iso/IsoImage.cpp -------------------------------------------------------------------------------- /core/streams/iso/IsoImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/core/streams/iso/IsoImage.h -------------------------------------------------------------------------------- /core/streams/iso/SectorSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/core/streams/iso/SectorSource.h -------------------------------------------------------------------------------- /externals/libimagequant/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libimagequant/COPYRIGHT -------------------------------------------------------------------------------- /externals/libimagequant/MANUAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libimagequant/MANUAL.md -------------------------------------------------------------------------------- /externals/libimagequant/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libimagequant/Makefile -------------------------------------------------------------------------------- /externals/libimagequant/blur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libimagequant/blur.c -------------------------------------------------------------------------------- /externals/libimagequant/blur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libimagequant/blur.h -------------------------------------------------------------------------------- /externals/libimagequant/kmeans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libimagequant/kmeans.c -------------------------------------------------------------------------------- /externals/libimagequant/kmeans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libimagequant/kmeans.h -------------------------------------------------------------------------------- /externals/libimagequant/libimagequant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libimagequant/libimagequant.c -------------------------------------------------------------------------------- /externals/libimagequant/libimagequant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libimagequant/libimagequant.h -------------------------------------------------------------------------------- /externals/libimagequant/mediancut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libimagequant/mediancut.c -------------------------------------------------------------------------------- /externals/libimagequant/mediancut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libimagequant/mediancut.h -------------------------------------------------------------------------------- /externals/libimagequant/mempool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libimagequant/mempool.c -------------------------------------------------------------------------------- /externals/libimagequant/mempool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libimagequant/mempool.h -------------------------------------------------------------------------------- /externals/libimagequant/nearest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libimagequant/nearest.c -------------------------------------------------------------------------------- /externals/libimagequant/nearest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libimagequant/nearest.h -------------------------------------------------------------------------------- /externals/libimagequant/pam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libimagequant/pam.c -------------------------------------------------------------------------------- /externals/libimagequant/pam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libimagequant/pam.h -------------------------------------------------------------------------------- /externals/libimagequant/viter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libimagequant/viter.c -------------------------------------------------------------------------------- /externals/libimagequant/viter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libimagequant/viter.h -------------------------------------------------------------------------------- /externals/libjpeg/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/Makefile.am -------------------------------------------------------------------------------- /externals/libjpeg/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/Makefile.in -------------------------------------------------------------------------------- /externals/libjpeg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/README -------------------------------------------------------------------------------- /externals/libjpeg/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/aclocal.m4 -------------------------------------------------------------------------------- /externals/libjpeg/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/ar-lib -------------------------------------------------------------------------------- /externals/libjpeg/cderror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/cderror.h -------------------------------------------------------------------------------- /externals/libjpeg/cdjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/cdjpeg.c -------------------------------------------------------------------------------- /externals/libjpeg/cdjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/cdjpeg.h -------------------------------------------------------------------------------- /externals/libjpeg/change.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/change.log -------------------------------------------------------------------------------- /externals/libjpeg/cjpeg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/cjpeg.1 -------------------------------------------------------------------------------- /externals/libjpeg/cjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/cjpeg.c -------------------------------------------------------------------------------- /externals/libjpeg/ckconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/ckconfig.c -------------------------------------------------------------------------------- /externals/libjpeg/coderules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/coderules.txt -------------------------------------------------------------------------------- /externals/libjpeg/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/compile -------------------------------------------------------------------------------- /externals/libjpeg/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/config.guess -------------------------------------------------------------------------------- /externals/libjpeg/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/config.sub -------------------------------------------------------------------------------- /externals/libjpeg/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/configure -------------------------------------------------------------------------------- /externals/libjpeg/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/configure.ac -------------------------------------------------------------------------------- /externals/libjpeg/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/depcomp -------------------------------------------------------------------------------- /externals/libjpeg/djpeg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/djpeg.1 -------------------------------------------------------------------------------- /externals/libjpeg/djpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/djpeg.c -------------------------------------------------------------------------------- /externals/libjpeg/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/example.c -------------------------------------------------------------------------------- /externals/libjpeg/filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/filelist.txt -------------------------------------------------------------------------------- /externals/libjpeg/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/install-sh -------------------------------------------------------------------------------- /externals/libjpeg/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/install.txt -------------------------------------------------------------------------------- /externals/libjpeg/jaricom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jaricom.c -------------------------------------------------------------------------------- /externals/libjpeg/jcapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jcapimin.c -------------------------------------------------------------------------------- /externals/libjpeg/jcapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jcapistd.c -------------------------------------------------------------------------------- /externals/libjpeg/jcarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jcarith.c -------------------------------------------------------------------------------- /externals/libjpeg/jccoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jccoefct.c -------------------------------------------------------------------------------- /externals/libjpeg/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jccolor.c -------------------------------------------------------------------------------- /externals/libjpeg/jcdctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jcdctmgr.c -------------------------------------------------------------------------------- /externals/libjpeg/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jchuff.c -------------------------------------------------------------------------------- /externals/libjpeg/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jcinit.c -------------------------------------------------------------------------------- /externals/libjpeg/jcmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jcmainct.c -------------------------------------------------------------------------------- /externals/libjpeg/jcmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jcmarker.c -------------------------------------------------------------------------------- /externals/libjpeg/jcmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jcmaster.c -------------------------------------------------------------------------------- /externals/libjpeg/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jcomapi.c -------------------------------------------------------------------------------- /externals/libjpeg/jconfig.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jconfig.bcc -------------------------------------------------------------------------------- /externals/libjpeg/jconfig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jconfig.cfg -------------------------------------------------------------------------------- /externals/libjpeg/jconfig.dj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jconfig.dj -------------------------------------------------------------------------------- /externals/libjpeg/jconfig.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jconfig.mac -------------------------------------------------------------------------------- /externals/libjpeg/jconfig.manx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jconfig.manx -------------------------------------------------------------------------------- /externals/libjpeg/jconfig.mc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jconfig.mc6 -------------------------------------------------------------------------------- /externals/libjpeg/jconfig.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jconfig.sas -------------------------------------------------------------------------------- /externals/libjpeg/jconfig.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jconfig.st -------------------------------------------------------------------------------- /externals/libjpeg/jconfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jconfig.txt -------------------------------------------------------------------------------- /externals/libjpeg/jconfig.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jconfig.vc -------------------------------------------------------------------------------- /externals/libjpeg/jconfig.vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jconfig.vms -------------------------------------------------------------------------------- /externals/libjpeg/jconfig.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jconfig.wat -------------------------------------------------------------------------------- /externals/libjpeg/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jcparam.c -------------------------------------------------------------------------------- /externals/libjpeg/jcprepct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jcprepct.c -------------------------------------------------------------------------------- /externals/libjpeg/jcsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jcsample.c -------------------------------------------------------------------------------- /externals/libjpeg/jctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jctrans.c -------------------------------------------------------------------------------- /externals/libjpeg/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jdapimin.c -------------------------------------------------------------------------------- /externals/libjpeg/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jdapistd.c -------------------------------------------------------------------------------- /externals/libjpeg/jdarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jdarith.c -------------------------------------------------------------------------------- /externals/libjpeg/jdatadst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jdatadst.c -------------------------------------------------------------------------------- /externals/libjpeg/jdatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jdatasrc.c -------------------------------------------------------------------------------- /externals/libjpeg/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jdcoefct.c -------------------------------------------------------------------------------- /externals/libjpeg/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jdcolor.c -------------------------------------------------------------------------------- /externals/libjpeg/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jdct.h -------------------------------------------------------------------------------- /externals/libjpeg/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jddctmgr.c -------------------------------------------------------------------------------- /externals/libjpeg/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jdhuff.c -------------------------------------------------------------------------------- /externals/libjpeg/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jdinput.c -------------------------------------------------------------------------------- /externals/libjpeg/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jdmainct.c -------------------------------------------------------------------------------- /externals/libjpeg/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jdmarker.c -------------------------------------------------------------------------------- /externals/libjpeg/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jdmaster.c -------------------------------------------------------------------------------- /externals/libjpeg/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jdmerge.c -------------------------------------------------------------------------------- /externals/libjpeg/jdosabcc.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jdosabcc.obj -------------------------------------------------------------------------------- /externals/libjpeg/jdosamsc.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jdosamsc.obj -------------------------------------------------------------------------------- /externals/libjpeg/jdosaobj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jdosaobj.txt -------------------------------------------------------------------------------- /externals/libjpeg/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jdpostct.c -------------------------------------------------------------------------------- /externals/libjpeg/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jdsample.c -------------------------------------------------------------------------------- /externals/libjpeg/jdtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jdtrans.c -------------------------------------------------------------------------------- /externals/libjpeg/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jerror.c -------------------------------------------------------------------------------- /externals/libjpeg/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jerror.h -------------------------------------------------------------------------------- /externals/libjpeg/jfdctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jfdctflt.c -------------------------------------------------------------------------------- /externals/libjpeg/jfdctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jfdctfst.c -------------------------------------------------------------------------------- /externals/libjpeg/jfdctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jfdctint.c -------------------------------------------------------------------------------- /externals/libjpeg/jidctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jidctflt.c -------------------------------------------------------------------------------- /externals/libjpeg/jidctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jidctfst.c -------------------------------------------------------------------------------- /externals/libjpeg/jidctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jidctint.c -------------------------------------------------------------------------------- /externals/libjpeg/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jinclude.h -------------------------------------------------------------------------------- /externals/libjpeg/jmemansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jmemansi.c -------------------------------------------------------------------------------- /externals/libjpeg/jmemdos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jmemdos.c -------------------------------------------------------------------------------- /externals/libjpeg/jmemdosa.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jmemdosa.asm -------------------------------------------------------------------------------- /externals/libjpeg/jmemmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jmemmac.c -------------------------------------------------------------------------------- /externals/libjpeg/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jmemmgr.c -------------------------------------------------------------------------------- /externals/libjpeg/jmemname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jmemname.c -------------------------------------------------------------------------------- /externals/libjpeg/jmemnobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jmemnobs.c -------------------------------------------------------------------------------- /externals/libjpeg/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jmemsys.h -------------------------------------------------------------------------------- /externals/libjpeg/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jmorecfg.h -------------------------------------------------------------------------------- /externals/libjpeg/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jpegint.h -------------------------------------------------------------------------------- /externals/libjpeg/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jpeglib.h -------------------------------------------------------------------------------- /externals/libjpeg/jpegtran.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jpegtran.1 -------------------------------------------------------------------------------- /externals/libjpeg/jpegtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jpegtran.c -------------------------------------------------------------------------------- /externals/libjpeg/jquant1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jquant1.c -------------------------------------------------------------------------------- /externals/libjpeg/jquant2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jquant2.c -------------------------------------------------------------------------------- /externals/libjpeg/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jutils.c -------------------------------------------------------------------------------- /externals/libjpeg/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/jversion.h -------------------------------------------------------------------------------- /externals/libjpeg/libjpeg.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/libjpeg.map -------------------------------------------------------------------------------- /externals/libjpeg/libjpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/libjpeg.txt -------------------------------------------------------------------------------- /externals/libjpeg/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/ltmain.sh -------------------------------------------------------------------------------- /externals/libjpeg/makcjpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makcjpeg.st -------------------------------------------------------------------------------- /externals/libjpeg/makdjpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makdjpeg.st -------------------------------------------------------------------------------- /externals/libjpeg/makeadsw.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makeadsw.vc6 -------------------------------------------------------------------------------- /externals/libjpeg/makeasln.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makeasln.v10 -------------------------------------------------------------------------------- /externals/libjpeg/makecdep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makecdep.vc6 -------------------------------------------------------------------------------- /externals/libjpeg/makecdsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makecdsp.vc6 -------------------------------------------------------------------------------- /externals/libjpeg/makecfil.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makecfil.v10 -------------------------------------------------------------------------------- /externals/libjpeg/makecmak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makecmak.vc6 -------------------------------------------------------------------------------- /externals/libjpeg/makecvcx.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makecvcx.v10 -------------------------------------------------------------------------------- /externals/libjpeg/makeddep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makeddep.vc6 -------------------------------------------------------------------------------- /externals/libjpeg/makeddsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makeddsp.vc6 -------------------------------------------------------------------------------- /externals/libjpeg/makedfil.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makedfil.v10 -------------------------------------------------------------------------------- /externals/libjpeg/makedmak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makedmak.vc6 -------------------------------------------------------------------------------- /externals/libjpeg/makedvcx.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makedvcx.v10 -------------------------------------------------------------------------------- /externals/libjpeg/makefile.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makefile.ansi -------------------------------------------------------------------------------- /externals/libjpeg/makefile.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makefile.bcc -------------------------------------------------------------------------------- /externals/libjpeg/makefile.dj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makefile.dj -------------------------------------------------------------------------------- /externals/libjpeg/makefile.manx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makefile.manx -------------------------------------------------------------------------------- /externals/libjpeg/makefile.mc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makefile.mc6 -------------------------------------------------------------------------------- /externals/libjpeg/makefile.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makefile.mms -------------------------------------------------------------------------------- /externals/libjpeg/makefile.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makefile.sas -------------------------------------------------------------------------------- /externals/libjpeg/makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makefile.unix -------------------------------------------------------------------------------- /externals/libjpeg/makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makefile.vc -------------------------------------------------------------------------------- /externals/libjpeg/makefile.vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makefile.vms -------------------------------------------------------------------------------- /externals/libjpeg/makefile.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makefile.wat -------------------------------------------------------------------------------- /externals/libjpeg/makejdep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makejdep.vc6 -------------------------------------------------------------------------------- /externals/libjpeg/makejdsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makejdsp.vc6 -------------------------------------------------------------------------------- /externals/libjpeg/makejdsw.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makejdsw.vc6 -------------------------------------------------------------------------------- /externals/libjpeg/makejfil.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makejfil.v10 -------------------------------------------------------------------------------- /externals/libjpeg/makejmak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makejmak.vc6 -------------------------------------------------------------------------------- /externals/libjpeg/makejsln.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makejsln.v10 -------------------------------------------------------------------------------- /externals/libjpeg/makejvcx.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makejvcx.v10 -------------------------------------------------------------------------------- /externals/libjpeg/makeproj.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makeproj.mac -------------------------------------------------------------------------------- /externals/libjpeg/makerdep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makerdep.vc6 -------------------------------------------------------------------------------- /externals/libjpeg/makerdsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makerdsp.vc6 -------------------------------------------------------------------------------- /externals/libjpeg/makerfil.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makerfil.v10 -------------------------------------------------------------------------------- /externals/libjpeg/makermak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makermak.vc6 -------------------------------------------------------------------------------- /externals/libjpeg/makervcx.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makervcx.v10 -------------------------------------------------------------------------------- /externals/libjpeg/maketdep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/maketdep.vc6 -------------------------------------------------------------------------------- /externals/libjpeg/maketdsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/maketdsp.vc6 -------------------------------------------------------------------------------- /externals/libjpeg/maketfil.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/maketfil.v10 -------------------------------------------------------------------------------- /externals/libjpeg/maketmak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/maketmak.vc6 -------------------------------------------------------------------------------- /externals/libjpeg/maketvcx.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/maketvcx.v10 -------------------------------------------------------------------------------- /externals/libjpeg/makewdep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makewdep.vc6 -------------------------------------------------------------------------------- /externals/libjpeg/makewdsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makewdsp.vc6 -------------------------------------------------------------------------------- /externals/libjpeg/makewfil.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makewfil.v10 -------------------------------------------------------------------------------- /externals/libjpeg/makewmak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makewmak.vc6 -------------------------------------------------------------------------------- /externals/libjpeg/makewvcx.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makewvcx.v10 -------------------------------------------------------------------------------- /externals/libjpeg/makljpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makljpeg.st -------------------------------------------------------------------------------- /externals/libjpeg/maktjpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/maktjpeg.st -------------------------------------------------------------------------------- /externals/libjpeg/makvms.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/makvms.opt -------------------------------------------------------------------------------- /externals/libjpeg/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/missing -------------------------------------------------------------------------------- /externals/libjpeg/rdbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/rdbmp.c -------------------------------------------------------------------------------- /externals/libjpeg/rdcolmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/rdcolmap.c -------------------------------------------------------------------------------- /externals/libjpeg/rdgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/rdgif.c -------------------------------------------------------------------------------- /externals/libjpeg/rdjpgcom.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/rdjpgcom.1 -------------------------------------------------------------------------------- /externals/libjpeg/rdjpgcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/rdjpgcom.c -------------------------------------------------------------------------------- /externals/libjpeg/rdppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/rdppm.c -------------------------------------------------------------------------------- /externals/libjpeg/rdrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/rdrle.c -------------------------------------------------------------------------------- /externals/libjpeg/rdswitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/rdswitch.c -------------------------------------------------------------------------------- /externals/libjpeg/rdtarga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/rdtarga.c -------------------------------------------------------------------------------- /externals/libjpeg/readme.dos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/readme.dos -------------------------------------------------------------------------------- /externals/libjpeg/structure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/structure.txt -------------------------------------------------------------------------------- /externals/libjpeg/testimg.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/testimg.bmp -------------------------------------------------------------------------------- /externals/libjpeg/testimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/testimg.jpg -------------------------------------------------------------------------------- /externals/libjpeg/testimg.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/testimg.ppm -------------------------------------------------------------------------------- /externals/libjpeg/testimgp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/testimgp.jpg -------------------------------------------------------------------------------- /externals/libjpeg/testorig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/testorig.jpg -------------------------------------------------------------------------------- /externals/libjpeg/testprog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/testprog.jpg -------------------------------------------------------------------------------- /externals/libjpeg/transupp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/transupp.c -------------------------------------------------------------------------------- /externals/libjpeg/transupp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/transupp.h -------------------------------------------------------------------------------- /externals/libjpeg/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/usage.txt -------------------------------------------------------------------------------- /externals/libjpeg/wizard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/wizard.txt -------------------------------------------------------------------------------- /externals/libjpeg/wrbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/wrbmp.c -------------------------------------------------------------------------------- /externals/libjpeg/wrgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/wrgif.c -------------------------------------------------------------------------------- /externals/libjpeg/wrjpgcom.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/wrjpgcom.1 -------------------------------------------------------------------------------- /externals/libjpeg/wrjpgcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/wrjpgcom.c -------------------------------------------------------------------------------- /externals/libjpeg/wrppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/wrppm.c -------------------------------------------------------------------------------- /externals/libjpeg/wrrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/wrrle.c -------------------------------------------------------------------------------- /externals/libjpeg/wrtarga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libjpeg/wrtarga.c -------------------------------------------------------------------------------- /externals/libpng/ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/ANNOUNCE -------------------------------------------------------------------------------- /externals/libpng/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/CHANGES -------------------------------------------------------------------------------- /externals/libpng/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/CMakeLists.txt -------------------------------------------------------------------------------- /externals/libpng/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/INSTALL -------------------------------------------------------------------------------- /externals/libpng/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/LICENSE -------------------------------------------------------------------------------- /externals/libpng/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/Makefile.am -------------------------------------------------------------------------------- /externals/libpng/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/Makefile.in -------------------------------------------------------------------------------- /externals/libpng/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/README -------------------------------------------------------------------------------- /externals/libpng/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/TODO -------------------------------------------------------------------------------- /externals/libpng/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/aclocal.m4 -------------------------------------------------------------------------------- /externals/libpng/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/autogen.sh -------------------------------------------------------------------------------- /externals/libpng/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/compile -------------------------------------------------------------------------------- /externals/libpng/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/config.guess -------------------------------------------------------------------------------- /externals/libpng/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/config.h.in -------------------------------------------------------------------------------- /externals/libpng/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/config.sub -------------------------------------------------------------------------------- /externals/libpng/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/configure -------------------------------------------------------------------------------- /externals/libpng/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/configure.ac -------------------------------------------------------------------------------- /externals/libpng/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/depcomp -------------------------------------------------------------------------------- /externals/libpng/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/example.c -------------------------------------------------------------------------------- /externals/libpng/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/install-sh -------------------------------------------------------------------------------- /externals/libpng/libpng-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/libpng-config.in -------------------------------------------------------------------------------- /externals/libpng/libpng-manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/libpng-manual.txt -------------------------------------------------------------------------------- /externals/libpng/libpng.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/libpng.3 -------------------------------------------------------------------------------- /externals/libpng/libpng.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/libpng.pc.in -------------------------------------------------------------------------------- /externals/libpng/libpngpf.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/libpngpf.3 -------------------------------------------------------------------------------- /externals/libpng/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/ltmain.sh -------------------------------------------------------------------------------- /externals/libpng/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/missing -------------------------------------------------------------------------------- /externals/libpng/png.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/png.5 -------------------------------------------------------------------------------- /externals/libpng/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/png.c -------------------------------------------------------------------------------- /externals/libpng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/png.h -------------------------------------------------------------------------------- /externals/libpng/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/pngconf.h -------------------------------------------------------------------------------- /externals/libpng/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/pngdebug.h -------------------------------------------------------------------------------- /externals/libpng/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/pngerror.c -------------------------------------------------------------------------------- /externals/libpng/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/pngget.c -------------------------------------------------------------------------------- /externals/libpng/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/pnginfo.h -------------------------------------------------------------------------------- /externals/libpng/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/pngmem.c -------------------------------------------------------------------------------- /externals/libpng/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/pngpread.c -------------------------------------------------------------------------------- /externals/libpng/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/pngpriv.h -------------------------------------------------------------------------------- /externals/libpng/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/pngread.c -------------------------------------------------------------------------------- /externals/libpng/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/pngrio.c -------------------------------------------------------------------------------- /externals/libpng/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/pngrtran.c -------------------------------------------------------------------------------- /externals/libpng/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/pngrutil.c -------------------------------------------------------------------------------- /externals/libpng/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/pngset.c -------------------------------------------------------------------------------- /externals/libpng/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/pngstruct.h -------------------------------------------------------------------------------- /externals/libpng/pngtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/pngtest.c -------------------------------------------------------------------------------- /externals/libpng/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/pngtrans.c -------------------------------------------------------------------------------- /externals/libpng/pngusr.dfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/pngusr.dfa -------------------------------------------------------------------------------- /externals/libpng/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/pngwio.c -------------------------------------------------------------------------------- /externals/libpng/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/pngwrite.c -------------------------------------------------------------------------------- /externals/libpng/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/pngwtran.c -------------------------------------------------------------------------------- /externals/libpng/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/pngwutil.c -------------------------------------------------------------------------------- /externals/libpng/scripts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/README.txt -------------------------------------------------------------------------------- /externals/libpng/scripts/SCOPTIONS.ppc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/SCOPTIONS.ppc -------------------------------------------------------------------------------- /externals/libpng/scripts/checksym.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/checksym.awk -------------------------------------------------------------------------------- /externals/libpng/scripts/def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/def.c -------------------------------------------------------------------------------- /externals/libpng/scripts/descrip.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/descrip.mms -------------------------------------------------------------------------------- /externals/libpng/scripts/dfn.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/dfn.awk -------------------------------------------------------------------------------- /externals/libpng/scripts/genchk.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/genchk.cmake.in -------------------------------------------------------------------------------- /externals/libpng/scripts/genout.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/genout.cmake.in -------------------------------------------------------------------------------- /externals/libpng/scripts/gensrc.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/gensrc.cmake.in -------------------------------------------------------------------------------- /externals/libpng/scripts/intprefix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/intprefix.c -------------------------------------------------------------------------------- /externals/libpng/scripts/libpng.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/libpng.pc.in -------------------------------------------------------------------------------- /externals/libpng/scripts/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/libtool.m4 -------------------------------------------------------------------------------- /externals/libpng/scripts/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/ltoptions.m4 -------------------------------------------------------------------------------- /externals/libpng/scripts/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/ltsugar.m4 -------------------------------------------------------------------------------- /externals/libpng/scripts/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/ltversion.m4 -------------------------------------------------------------------------------- /externals/libpng/scripts/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/lt~obsolete.m4 -------------------------------------------------------------------------------- /externals/libpng/scripts/macro.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/macro.lst -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.32sunu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.32sunu -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.64sunu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.64sunu -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.acorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.acorn -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.aix -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.amiga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.amiga -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.atari: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.atari -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.bc32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.bc32 -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.beos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.beos -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.bor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.bor -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.cegcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.cegcc -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.darwin -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.dec -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.dj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.dj2 -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.gcc -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.hp64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.hp64 -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.hpgcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.hpgcc -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.hpux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.hpux -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.ibmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.ibmc -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.intel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.intel -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.knr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.knr -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.linux -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.mips -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.msc -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.msys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.msys -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.netbsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.netbsd -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.sco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.sco -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.sggcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.sggcc -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.sgi -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.so9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.so9 -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.std: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.std -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.sunos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.sunos -------------------------------------------------------------------------------- /externals/libpng/scripts/makefile.tc3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makefile.tc3 -------------------------------------------------------------------------------- /externals/libpng/scripts/makevms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/makevms.com -------------------------------------------------------------------------------- /externals/libpng/scripts/options.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/options.awk -------------------------------------------------------------------------------- /externals/libpng/scripts/pnglibconf.dfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/pnglibconf.dfa -------------------------------------------------------------------------------- /externals/libpng/scripts/pnglibconf.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/pnglibconf.mak -------------------------------------------------------------------------------- /externals/libpng/scripts/pngwin.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/pngwin.rc -------------------------------------------------------------------------------- /externals/libpng/scripts/prefix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/prefix.c -------------------------------------------------------------------------------- /externals/libpng/scripts/smakefile.ppc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/smakefile.ppc -------------------------------------------------------------------------------- /externals/libpng/scripts/sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/sym.c -------------------------------------------------------------------------------- /externals/libpng/scripts/symbols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/symbols.c -------------------------------------------------------------------------------- /externals/libpng/scripts/symbols.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/symbols.def -------------------------------------------------------------------------------- /externals/libpng/scripts/test.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/test.cmake.in -------------------------------------------------------------------------------- /externals/libpng/scripts/vers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/scripts/vers.c -------------------------------------------------------------------------------- /externals/libpng/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/libpng/test-driver -------------------------------------------------------------------------------- /externals/minilzo/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/minilzo/COPYING -------------------------------------------------------------------------------- /externals/minilzo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/minilzo/Makefile -------------------------------------------------------------------------------- /externals/minilzo/README.LZO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/minilzo/README.LZO -------------------------------------------------------------------------------- /externals/minilzo/lzoconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/minilzo/lzoconf.h -------------------------------------------------------------------------------- /externals/minilzo/lzodefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/minilzo/lzodefs.h -------------------------------------------------------------------------------- /externals/minilzo/minilzo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/minilzo/minilzo.c -------------------------------------------------------------------------------- /externals/minilzo/minilzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/minilzo/minilzo.h -------------------------------------------------------------------------------- /externals/minilzo/testmini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/minilzo/testmini.c -------------------------------------------------------------------------------- /externals/nvidia-texture-tools/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/nvidia-texture-tools/ChangeLog -------------------------------------------------------------------------------- /externals/nvidia-texture-tools/VERSION: -------------------------------------------------------------------------------- 1 | 2.0.8 2 | -------------------------------------------------------------------------------- /externals/nvidia-texture-tools/buildpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/nvidia-texture-tools/buildpkg -------------------------------------------------------------------------------- /externals/nvidia-texture-tools/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/nvidia-texture-tools/configure -------------------------------------------------------------------------------- /externals/pnglite/pnglite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/pnglite/pnglite.c -------------------------------------------------------------------------------- /externals/pnglite/pnglite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/pnglite/pnglite.h -------------------------------------------------------------------------------- /externals/zlib/VERSION: -------------------------------------------------------------------------------- 1 | 1.2.3 2 | -------------------------------------------------------------------------------- /externals/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/zlib/adler32.c -------------------------------------------------------------------------------- /externals/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/zlib/compress.c -------------------------------------------------------------------------------- /externals/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/zlib/crc32.c -------------------------------------------------------------------------------- /externals/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/zlib/crc32.h -------------------------------------------------------------------------------- /externals/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/zlib/deflate.c -------------------------------------------------------------------------------- /externals/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/zlib/deflate.h -------------------------------------------------------------------------------- /externals/zlib/gzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/zlib/gzio.c -------------------------------------------------------------------------------- /externals/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/zlib/infback.c -------------------------------------------------------------------------------- /externals/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/zlib/inffast.c -------------------------------------------------------------------------------- /externals/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/zlib/inffast.h -------------------------------------------------------------------------------- /externals/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/zlib/inffixed.h -------------------------------------------------------------------------------- /externals/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/zlib/inflate.c -------------------------------------------------------------------------------- /externals/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/zlib/inflate.h -------------------------------------------------------------------------------- /externals/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/zlib/inftrees.c -------------------------------------------------------------------------------- /externals/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/zlib/inftrees.h -------------------------------------------------------------------------------- /externals/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/zlib/trees.c -------------------------------------------------------------------------------- /externals/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/zlib/trees.h -------------------------------------------------------------------------------- /externals/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/zlib/uncompr.c -------------------------------------------------------------------------------- /externals/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/zlib/zconf.h -------------------------------------------------------------------------------- /externals/zlib/zconf.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/zlib/zconf.in.h -------------------------------------------------------------------------------- /externals/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/zlib/zlib.h -------------------------------------------------------------------------------- /externals/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/zlib/zutil.c -------------------------------------------------------------------------------- /externals/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/externals/zlib/zutil.h -------------------------------------------------------------------------------- /game-specific/Final Fantasy PSP/PackageArchiver/PackageArchiver.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game-specific/Metroid Prime 3/Patcher/patchdata/test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game-specific/Metroid Prime 3/Patcher/resources/Patcher.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game-specific/Metroid Prime 3/Patcher_deprecated/resources/Patcher.rc: -------------------------------------------------------------------------------- 1 | 1 ICON DISCARDABLE "SamusHelmet.ico" -------------------------------------------------------------------------------- /game-specific/Metroid Prime 3/make_patcher_vs_projects.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | qmake.exe -spec win32-msvc2008 -r -tp vc Patcher.pro 3 | -------------------------------------------------------------------------------- /game-specific/Metroid Prime 3/make_vs_projects.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | qmake.exe -spec win32-msvc -r -tp vc Corruption.pro 3 | -------------------------------------------------------------------------------- /game-specific/Metroid Prime 3/tests/ExtractorTests/testdata/009A730D911A65FE.MAPA: -------------------------------------------------------------------------------- 1 | 009A730D911A65FE -------------------------------------------------------------------------------- /game-specific/Metroid Prime 3/tests/ExtractorTests/testdata/61DA808D11A572A0.STRG: -------------------------------------------------------------------------------- 1 | 61DA808D11A572A0 -------------------------------------------------------------------------------- /game-specific/Resident Evil 3/make_vs_projects.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | qmake.exe -spec win32-msvc2008 -r -tp vc ResidentEvil.pro 3 | -------------------------------------------------------------------------------- /game-specific/Shattered Memories/ArcTool/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /game-specific/Shattered Memories/Compression/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /game-specific/Shattered Memories/Patcher/Patcher.pri: -------------------------------------------------------------------------------- 1 | include(../ShatteredMemories.pri) 2 | -------------------------------------------------------------------------------- /game-specific/Shattered Memories/Patcher/patchdata/ps2/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game-specific/Shattered Memories/Patcher/patchdata/psp/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game-specific/Shattered Memories/Patcher/patchdata/wii/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game-specific/Shattered Memories/Patcher/resources/Patcher.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game-specific/Shattered Memories/externals/nvtt/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | -------------------------------------------------------------------------------- /game-specific/Shattered Memories/make_vs_patcher_projects.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | qmake.exe -spec win32-msvc2008 -r -tp vc Patcher.pro 3 | -------------------------------------------------------------------------------- /game-specific/Shattered Memories/make_vs_projects.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | qmake.exe -spec win32-msvc2008 -r -tp vc ShatteredMemories.pro 3 | -------------------------------------------------------------------------------- /game-specific/Silent Hill/Silent.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/game-specific/Silent Hill/Silent.pri -------------------------------------------------------------------------------- /game-specific/Silent Hill/Silent.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/game-specific/Silent Hill/Silent.pro -------------------------------------------------------------------------------- /game-specific/Silent Hill/make_vs_projects.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | qmake.exe -spec win32-msvc2008 -r -tp vc Silent.pro 3 | -------------------------------------------------------------------------------- /legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/README.md -------------------------------------------------------------------------------- /legacy/projects/ICO/Build_iso.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/projects/ICO/Build_iso.bat -------------------------------------------------------------------------------- /legacy/projects/ICO/DATA/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /legacy/projects/ICO/ICO.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/projects/ICO/ICO.iml -------------------------------------------------------------------------------- /legacy/projects/ICO/IMAGE/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /legacy/projects/ICO/PATCH/PATCH_DF.RC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/projects/ICO/PATCH/PATCH_DF.RC -------------------------------------------------------------------------------- /legacy/projects/ICO/PATCH/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/projects/ICO/PATCH/Readme.txt -------------------------------------------------------------------------------- /legacy/projects/ICO/PATCH/bin/Patch.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/projects/ICO/PATCH/bin/Patch.dpr -------------------------------------------------------------------------------- /legacy/projects/ICO/PATCH/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/projects/ICO/PATCH/build.bat -------------------------------------------------------------------------------- /legacy/projects/ICO/PATCH/cmd/patch.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/projects/ICO/PATCH/cmd/patch.bat -------------------------------------------------------------------------------- /legacy/projects/ICO/PATCH/reduce.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/projects/ICO/PATCH/reduce.bat -------------------------------------------------------------------------------- /legacy/projects/ICO/PATCH/reduce_pal.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/projects/ICO/PATCH/reduce_pal.bat -------------------------------------------------------------------------------- /legacy/projects/ICO/PATCH/src/Errors.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/projects/ICO/PATCH/src/Errors.dfm -------------------------------------------------------------------------------- /legacy/projects/ICO/PATCH/src/Errors.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/projects/ICO/PATCH/src/Errors.pas -------------------------------------------------------------------------------- /legacy/projects/ICO/PATCH/src/Readme.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/projects/ICO/PATCH/src/Readme.dfm -------------------------------------------------------------------------------- /legacy/projects/ICO/PATCH/src/Readme.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/projects/ICO/PATCH/src/Readme.pas -------------------------------------------------------------------------------- /legacy/projects/ICO/PATCH/src/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/projects/ICO/PATCH/src/test.bat -------------------------------------------------------------------------------- /legacy/projects/ICO/RUS/FILES.LST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/projects/ICO/RUS/FILES.LST -------------------------------------------------------------------------------- /legacy/projects/ICO/RUS/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/projects/ICO/RUS/build.bat -------------------------------------------------------------------------------- /legacy/projects/ICO/RUS/text.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/projects/ICO/RUS/text.act -------------------------------------------------------------------------------- /legacy/projects/ICO/Utils/DFExtract.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/projects/ICO/Utils/DFExtract.exe -------------------------------------------------------------------------------- /legacy/projects/ICO/Utils/Extract.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/projects/ICO/Utils/Extract.exe -------------------------------------------------------------------------------- /legacy/projects/ICO/Utils/Tim2Jim.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/projects/ICO/Utils/Tim2Jim.exe -------------------------------------------------------------------------------- /legacy/projects/ICO/_release/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /legacy/projects/ICO/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/projects/ICO/build.bat -------------------------------------------------------------------------------- /legacy/projects/ICO/patch_make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/projects/ICO/patch_make.bat -------------------------------------------------------------------------------- /legacy/projects/ICO/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/projects/ICO/test.bat -------------------------------------------------------------------------------- /legacy/projects/Silent Hill Origins/ARC/README.md: -------------------------------------------------------------------------------- 1 | Directory for original files from game archives. -------------------------------------------------------------------------------- /legacy/projects/Silent Hill Origins/RUS/CMI/README.md: -------------------------------------------------------------------------------- 1 | Directory for translated *.cmi map files. -------------------------------------------------------------------------------- /legacy/projects/Silent Hill Origins/RUS/IPS/README.md: -------------------------------------------------------------------------------- 1 | Directory for generated IPS-patches. -------------------------------------------------------------------------------- /legacy/projects/Silent Hill Origins/RUS/SRC/Config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /legacy/projects/Silent Hill Origins/_release/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /legacy/sources/8ld/M8LD.bpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/8ld/M8LD.bpf -------------------------------------------------------------------------------- /legacy/sources/8ld/M8LD.bpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/8ld/M8LD.bpr -------------------------------------------------------------------------------- /legacy/sources/8ld/RPK.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/8ld/RPK.pas -------------------------------------------------------------------------------- /legacy/sources/8ld/RPKArc.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/8ld/RPKArc.dpr -------------------------------------------------------------------------------- /legacy/sources/8ld/_8ld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/8ld/_8ld.cpp -------------------------------------------------------------------------------- /legacy/sources/Advance Wars 2/aw2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Advance Wars 2/aw2.ico -------------------------------------------------------------------------------- /legacy/sources/Advance Wars 2/main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Advance Wars 2/main.dfm -------------------------------------------------------------------------------- /legacy/sources/Advance Wars 2/main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Advance Wars 2/main.pas -------------------------------------------------------------------------------- /legacy/sources/Avatar/AvatarPacker.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Avatar/AvatarPacker.dpr -------------------------------------------------------------------------------- /legacy/sources/Avatar/LZO.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Avatar/LZO.pas -------------------------------------------------------------------------------- /legacy/sources/Avatar/XML2RML.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Avatar/XML2RML.dpr -------------------------------------------------------------------------------- /legacy/sources/Avatar/minilzo.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Avatar/minilzo.obj -------------------------------------------------------------------------------- /legacy/sources/Dantes Inferno/LZO.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Dantes Inferno/LZO.pas -------------------------------------------------------------------------------- /legacy/sources/Dantes Inferno/Rpak.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Dantes Inferno/Rpak.pas -------------------------------------------------------------------------------- /legacy/sources/Dantes Inferno/lzx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Dantes Inferno/lzx.c -------------------------------------------------------------------------------- /legacy/sources/Dantes Inferno/lzx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Dantes Inferno/lzx.h -------------------------------------------------------------------------------- /legacy/sources/Dantes Inferno/lzx_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Dantes Inferno/lzx_int.h -------------------------------------------------------------------------------- /legacy/sources/Dantes Inferno/rpak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Dantes Inferno/rpak.cpp -------------------------------------------------------------------------------- /legacy/sources/Dantes Inferno/rpak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Dantes Inferno/rpak.h -------------------------------------------------------------------------------- /legacy/sources/Dantes Inferno/rpak_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Dantes Inferno/rpak_lib.c -------------------------------------------------------------------------------- /legacy/sources/Ever17/Ever17_d.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Ever17/Ever17_d.dpr -------------------------------------------------------------------------------- /legacy/sources/Ever17/PRT.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Ever17/PRT.pas -------------------------------------------------------------------------------- /legacy/sources/ExtraPaster/EP_GBA.pas: -------------------------------------------------------------------------------- 1 | unit EP_GBA; 2 | 3 | interface 4 | 5 | implementation 6 | 7 | end. 8 | -------------------------------------------------------------------------------- /legacy/sources/ExtraPaster/EPaster.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/ExtraPaster/EPaster.pas -------------------------------------------------------------------------------- /legacy/sources/FFFont/FontProporties.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFFont/FontProporties.dfm -------------------------------------------------------------------------------- /legacy/sources/FFFont/FontProporties.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFFont/FontProporties.pas -------------------------------------------------------------------------------- /legacy/sources/FFFont/GbaUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFFont/GbaUnit.pas -------------------------------------------------------------------------------- /legacy/sources/FFFont/HexUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFFont/HexUnit.pas -------------------------------------------------------------------------------- /legacy/sources/FFFont/SERFontEditor.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFFont/SERFontEditor.dpr -------------------------------------------------------------------------------- /legacy/sources/FFFont/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFFont/icon.ico -------------------------------------------------------------------------------- /legacy/sources/FFFont/lz77.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFFont/lz77.pas -------------------------------------------------------------------------------- /legacy/sources/FFFont/main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFFont/main.dfm -------------------------------------------------------------------------------- /legacy/sources/FFFont/main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFFont/main.pas -------------------------------------------------------------------------------- /legacy/sources/FFGBA/ByteConvert.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFGBA/ByteConvert.dpr -------------------------------------------------------------------------------- /legacy/sources/FFGBA/FFA_TextExtract.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFGBA/FFA_TextExtract.dpr -------------------------------------------------------------------------------- /legacy/sources/FFText/Errors.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFText/Errors.dfm -------------------------------------------------------------------------------- /legacy/sources/FFText/Errors.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFText/Errors.pas -------------------------------------------------------------------------------- /legacy/sources/FFText/FFHighlighter.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFText/FFHighlighter.pas -------------------------------------------------------------------------------- /legacy/sources/FFText/FFScript.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFText/FFScript.pas -------------------------------------------------------------------------------- /legacy/sources/FFText/FF_TextEditor.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFText/FF_TextEditor.dfm -------------------------------------------------------------------------------- /legacy/sources/FFText/FF_TextEditor.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFText/FF_TextEditor.pas -------------------------------------------------------------------------------- /legacy/sources/FFText/ItemProporties.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFText/ItemProporties.dfm -------------------------------------------------------------------------------- /legacy/sources/FFText/ItemProporties.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFText/ItemProporties.pas -------------------------------------------------------------------------------- /legacy/sources/FFText/TableFont.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFText/TableFont.pas -------------------------------------------------------------------------------- /legacy/sources/FFText/TableText.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFText/TableText.pas -------------------------------------------------------------------------------- /legacy/sources/FFText/TextEditor.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFText/TextEditor.dpr -------------------------------------------------------------------------------- /legacy/sources/FFText/TextSearch.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFText/TextSearch.dfm -------------------------------------------------------------------------------- /legacy/sources/FFText/TextSearch.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFText/TextSearch.pas -------------------------------------------------------------------------------- /legacy/sources/FFText/TextViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFText/TextViewer.pas -------------------------------------------------------------------------------- /legacy/sources/FFText/_FFHighlighter.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFText/_FFHighlighter.pas -------------------------------------------------------------------------------- /legacy/sources/FFx/BMPFnt.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFx/BMPFnt.pas -------------------------------------------------------------------------------- /legacy/sources/FFx/DrawUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFx/DrawUnit.pas -------------------------------------------------------------------------------- /legacy/sources/FFx/FF6/FF6.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFx/FF6/FF6.cfg -------------------------------------------------------------------------------- /legacy/sources/FFx/FF6/FF6BG.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFx/FF6/FF6BG.bmp -------------------------------------------------------------------------------- /legacy/sources/FFx/FF6/FF6Code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFx/FF6/FF6Code.txt -------------------------------------------------------------------------------- /legacy/sources/FFx/FF6/FF6Table.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFx/FF6/FF6Table.tbl -------------------------------------------------------------------------------- /legacy/sources/FFx/FF6/FF6fnt.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFx/FF6/FF6fnt.bmp -------------------------------------------------------------------------------- /legacy/sources/FFx/FFView.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFx/FFView.dfm -------------------------------------------------------------------------------- /legacy/sources/FFx/FFView.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFx/FFView.pas -------------------------------------------------------------------------------- /legacy/sources/FFx/FFx.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFx/FFx.dpr -------------------------------------------------------------------------------- /legacy/sources/FFx/FFx.ini: -------------------------------------------------------------------------------- 1 | FF6\FF6.cfg -------------------------------------------------------------------------------- /legacy/sources/FFx/MyClasses.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFx/MyClasses.pas -------------------------------------------------------------------------------- /legacy/sources/FFx/Project2.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFx/Project2.dpr -------------------------------------------------------------------------------- /legacy/sources/FFx/TextUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFx/TextUnit.pas -------------------------------------------------------------------------------- /legacy/sources/FFx/dd.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFx/dd.dfm -------------------------------------------------------------------------------- /legacy/sources/FFx/dd.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/FFx/dd.pas -------------------------------------------------------------------------------- /legacy/sources/Final Fantasy PSP/All.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Final Fantasy PSP/All.bmp -------------------------------------------------------------------------------- /legacy/sources/Final Fantasy PSP/FFTextView.pas: -------------------------------------------------------------------------------- 1 | unit FFTextView; 2 | 3 | interface 4 | 5 | implementation 6 | 7 | end. 8 | -------------------------------------------------------------------------------- /legacy/sources/Final Fantasy VII/FF8.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Final Fantasy VII/FF8.pas -------------------------------------------------------------------------------- /legacy/sources/Final Fantasy VII/FFT.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Final Fantasy VII/FFT.pas -------------------------------------------------------------------------------- /legacy/sources/ICO/Bmp2Jim.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/ICO/Bmp2Jim.dpr -------------------------------------------------------------------------------- /legacy/sources/ICO/Compression.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/ICO/Compression.pas -------------------------------------------------------------------------------- /legacy/sources/ICO/DFExtract.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/ICO/DFExtract.dpr -------------------------------------------------------------------------------- /legacy/sources/ICO/Extract.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/ICO/Extract.dpr -------------------------------------------------------------------------------- /legacy/sources/ICO/ICO_DF.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/ICO/ICO_DF.pas -------------------------------------------------------------------------------- /legacy/sources/ICO/ICO_GZip.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/ICO/ICO_GZip.pas -------------------------------------------------------------------------------- /legacy/sources/ICO/Jim2Bmp.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/ICO/Jim2Bmp.dpr -------------------------------------------------------------------------------- /legacy/sources/ICO/JimExtract.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/ICO/JimExtract.dpr -------------------------------------------------------------------------------- /legacy/sources/ICO/Tim2Jim.dof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/ICO/Tim2Jim.dof -------------------------------------------------------------------------------- /legacy/sources/ICO/Tim2Jim.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/ICO/Tim2Jim.dpr -------------------------------------------------------------------------------- /legacy/sources/ICO/jim2tga.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/ICO/jim2tga.dpr -------------------------------------------------------------------------------- /legacy/sources/ICO/targa.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/ICO/targa.pas -------------------------------------------------------------------------------- /legacy/sources/Just Cause 2/ArcTool.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Just Cause 2/ArcTool.dpr -------------------------------------------------------------------------------- /legacy/sources/KruptarLib/FFTA/FFTA.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/KruptarLib/FFTA/FFTA.dpr -------------------------------------------------------------------------------- /legacy/sources/KruptarLib/GBAFF/FF6.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/KruptarLib/GBAFF/FF6.dpr -------------------------------------------------------------------------------- /legacy/sources/KruptarLib/GBAFF/FF6I.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/KruptarLib/GBAFF/FF6I.dpr -------------------------------------------------------------------------------- /legacy/sources/KruptarLib/Needs.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/KruptarLib/Needs.pas -------------------------------------------------------------------------------- /legacy/sources/KruptarLib/SHPN/SHPL.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/KruptarLib/SHPN/SHPL.pas -------------------------------------------------------------------------------- /legacy/sources/LNBPassGen/CheckSum.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/LNBPassGen/CheckSum.dpr -------------------------------------------------------------------------------- /legacy/sources/LNBPassGen/ETC.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/LNBPassGen/ETC.dpr -------------------------------------------------------------------------------- /legacy/sources/LNBPassGen/ExpToCode.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/LNBPassGen/ExpToCode.dfm -------------------------------------------------------------------------------- /legacy/sources/LNBPassGen/ExpToCode.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/LNBPassGen/ExpToCode.pas -------------------------------------------------------------------------------- /legacy/sources/LNBPassGen/LNBPass.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/LNBPassGen/LNBPass.pas -------------------------------------------------------------------------------- /legacy/sources/LNBPassGen/PGen.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/LNBPassGen/PGen.dfm -------------------------------------------------------------------------------- /legacy/sources/LNBPassGen/PGen.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/LNBPassGen/PGen.pas -------------------------------------------------------------------------------- /legacy/sources/LNBPassGen/PTest.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/LNBPassGen/PTest.dpr -------------------------------------------------------------------------------- /legacy/sources/LNBPassGen/PassGen.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/LNBPassGen/PassGen.dpr -------------------------------------------------------------------------------- /legacy/sources/LNBPassGen/Test.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/LNBPassGen/Test.dfm -------------------------------------------------------------------------------- /legacy/sources/LNBPassGen/Test.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/LNBPassGen/Test.pas -------------------------------------------------------------------------------- /legacy/sources/LNBPassGen/data/Font.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/LNBPassGen/data/Font.bmp -------------------------------------------------------------------------------- /legacy/sources/LNBPassGen/data/bg.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/LNBPassGen/data/bg.bmp -------------------------------------------------------------------------------- /legacy/sources/LNBPassGen/data/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/LNBPassGen/data/bg.gif -------------------------------------------------------------------------------- /legacy/sources/LNBPassGen/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/LNBPassGen/icon.ico -------------------------------------------------------------------------------- /legacy/sources/Legend of Spyro/Logo.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Legend of Spyro/Logo.dfm -------------------------------------------------------------------------------- /legacy/sources/Legend of Spyro/Logo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Legend of Spyro/Logo.dpr -------------------------------------------------------------------------------- /legacy/sources/Legend of Spyro/Logo.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Legend of Spyro/Logo.pas -------------------------------------------------------------------------------- /legacy/sources/Legend of Spyro/Names.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Legend of Spyro/Names.dpr -------------------------------------------------------------------------------- /legacy/sources/Legend of Spyro/Nms.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Legend of Spyro/Nms.dfm -------------------------------------------------------------------------------- /legacy/sources/Legend of Spyro/Nms.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Legend of Spyro/Nms.pas -------------------------------------------------------------------------------- /legacy/sources/Legend of Spyro/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Legend of Spyro/Unit1.dfm -------------------------------------------------------------------------------- /legacy/sources/Legend of Spyro/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Legend of Spyro/Unit1.pas -------------------------------------------------------------------------------- /legacy/sources/MGA/MGAExtractText.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/MGA/MGAExtractText.dpr -------------------------------------------------------------------------------- /legacy/sources/MGA/MGS.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/MGA/MGS.pas -------------------------------------------------------------------------------- /legacy/sources/MGA/TXDPack.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/MGA/TXDPack.dpr -------------------------------------------------------------------------------- /legacy/sources/MGA/TXDUnpack.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/MGA/TXDUnpack.dpr -------------------------------------------------------------------------------- /legacy/sources/MGA/Test1.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/MGA/Test1.dpr -------------------------------------------------------------------------------- /legacy/sources/MGA/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/MGA/Unit1.dfm -------------------------------------------------------------------------------- /legacy/sources/MGA/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/MGA/Unit1.pas -------------------------------------------------------------------------------- /legacy/sources/MGA/ZarUnpack.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/MGA/ZarUnpack.dpr -------------------------------------------------------------------------------- /legacy/sources/Manhunt/FEditor.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Manhunt/FEditor.dpr -------------------------------------------------------------------------------- /legacy/sources/Manhunt/Font.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Manhunt/Font.dfm -------------------------------------------------------------------------------- /legacy/sources/Manhunt/Font.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Manhunt/Font.pas -------------------------------------------------------------------------------- /legacy/sources/Manhunt/PSPRAW.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Manhunt/PSPRAW.pas -------------------------------------------------------------------------------- /legacy/sources/PSearch/PSearch.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/PSearch/PSearch.dpr -------------------------------------------------------------------------------- /legacy/sources/PSearch/PtrSrch.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/PSearch/PtrSrch.pas -------------------------------------------------------------------------------- /legacy/sources/PYCCKAR BEPCNR/BOUGHT.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/PYCCKAR BEPCNR/BOUGHT.dpr -------------------------------------------------------------------------------- /legacy/sources/PYCCKAR BEPCNR/Cnv.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/PYCCKAR BEPCNR/Cnv.dfm -------------------------------------------------------------------------------- /legacy/sources/PYCCKAR BEPCNR/Cnv.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/PYCCKAR BEPCNR/Cnv.pas -------------------------------------------------------------------------------- /legacy/sources/PYCCKAR BEPCNR/dic.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/PYCCKAR BEPCNR/dic.inc -------------------------------------------------------------------------------- /legacy/sources/Pirates/Project1.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Pirates/Project1.dpr -------------------------------------------------------------------------------- /legacy/sources/Pirates/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Pirates/Unit1.dfm -------------------------------------------------------------------------------- /legacy/sources/Pirates/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Pirates/Unit1.pas -------------------------------------------------------------------------------- /legacy/sources/Princess Maker 4/images/zlib/VERSION: -------------------------------------------------------------------------------- 1 | 1.2.3 2 | -------------------------------------------------------------------------------- /legacy/sources/Princess Maker 4/lz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Princess Maker 4/lz.c -------------------------------------------------------------------------------- /legacy/sources/Princess Maker 4/lz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Princess Maker 4/lz.cpp -------------------------------------------------------------------------------- /legacy/sources/Princess Maker 4/lz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Princess Maker 4/lz.h -------------------------------------------------------------------------------- /legacy/sources/Princess Maker 4/mosn3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Princess Maker 4/mosn3.h -------------------------------------------------------------------------------- /legacy/sources/Relativer/Relative.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Relativer/Relative.dfm -------------------------------------------------------------------------------- /legacy/sources/Relativer/Relative.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Relativer/Relative.pas -------------------------------------------------------------------------------- /legacy/sources/Relativer/Relativer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Relativer/Relativer.dpr -------------------------------------------------------------------------------- /legacy/sources/Relativer/SR.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Relativer/SR.pas -------------------------------------------------------------------------------- /legacy/sources/Risen/G3PakDef.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Risen/G3PakDef.pas -------------------------------------------------------------------------------- /legacy/sources/Risen/PakTool.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Risen/PakTool.dpr -------------------------------------------------------------------------------- /legacy/sources/Risen/PakUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Risen/PakUnit.pas -------------------------------------------------------------------------------- /legacy/sources/Risen/TabConv.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Risen/TabConv.pas -------------------------------------------------------------------------------- /legacy/sources/Risen/TabConvert.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Risen/TabConvert.dpr -------------------------------------------------------------------------------- /legacy/sources/Risen/risfont/main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Risen/risfont/main.dfm -------------------------------------------------------------------------------- /legacy/sources/Risen/risfont/main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Risen/risfont/main.pas -------------------------------------------------------------------------------- /legacy/sources/RomHaxxor/Errors.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/RomHaxxor/Errors.dfm -------------------------------------------------------------------------------- /legacy/sources/RomHaxxor/Errors.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/RomHaxxor/Errors.pas -------------------------------------------------------------------------------- /legacy/sources/RomHaxxor/HaxList.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/RomHaxxor/HaxList.pas -------------------------------------------------------------------------------- /legacy/sources/RomHaxxor/RomHaxxor.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/RomHaxxor/RomHaxxor.dpr -------------------------------------------------------------------------------- /legacy/sources/RomHaxxor/RomHxr.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/RomHaxxor/RomHxr.dfm -------------------------------------------------------------------------------- /legacy/sources/RomHaxxor/RomHxr.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/RomHaxxor/RomHxr.pas -------------------------------------------------------------------------------- /legacy/sources/RomHaxxor/ValEdit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/RomHaxxor/ValEdit.dfm -------------------------------------------------------------------------------- /legacy/sources/RomHaxxor/ValEdit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/RomHaxxor/ValEdit.pas -------------------------------------------------------------------------------- /legacy/sources/SRRFontEditor/HexUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/SRRFontEditor/HexUnit.pas -------------------------------------------------------------------------------- /legacy/sources/SRRFontEditor/SEF.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/SRRFontEditor/SEF.dfm -------------------------------------------------------------------------------- /legacy/sources/SRRFontEditor/SEF.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/SRRFontEditor/SEF.pas -------------------------------------------------------------------------------- /legacy/sources/SRRFontEditor/main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/SRRFontEditor/main.dfm -------------------------------------------------------------------------------- /legacy/sources/SRRFontEditor/main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/SRRFontEditor/main.pas -------------------------------------------------------------------------------- /legacy/sources/Silent Hill 2/Font/12.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Silent Hill 2/Font/12.bmp -------------------------------------------------------------------------------- /legacy/sources/Silent Hill 2/SH2Text.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Silent Hill 2/SH2Text.dpr -------------------------------------------------------------------------------- /legacy/sources/Silent Hill 2/SH2_ARC.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Silent Hill 2/SH2_ARC.pas -------------------------------------------------------------------------------- /legacy/sources/Silent Hill 2/TEX/config.inc: -------------------------------------------------------------------------------- 1 | {$DEFINE PNG} -------------------------------------------------------------------------------- /legacy/sources/Silent Hill 2/extract.bpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Silent Hill 2/extract.bpr -------------------------------------------------------------------------------- /legacy/sources/Silent Hill 2/extract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Silent Hill 2/extract.cpp -------------------------------------------------------------------------------- /legacy/sources/Silent Hill 5/DLZO.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Silent Hill 5/DLZO.pas -------------------------------------------------------------------------------- /legacy/sources/Silent Hill 5/Errors.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Silent Hill 5/Errors.dfm -------------------------------------------------------------------------------- /legacy/sources/Silent Hill 5/Errors.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Silent Hill 5/Errors.pas -------------------------------------------------------------------------------- /legacy/sources/Silent Hill 5/ImFrame.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Silent Hill 5/ImFrame.dfm -------------------------------------------------------------------------------- /legacy/sources/Silent Hill 5/ImFrame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Silent Hill 5/ImFrame.pas -------------------------------------------------------------------------------- /legacy/sources/Silent Hill 5/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Silent Hill 5/Main.dfm -------------------------------------------------------------------------------- /legacy/sources/Silent Hill 5/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Silent Hill 5/Main.pas -------------------------------------------------------------------------------- /legacy/sources/Silent Hill 5/PakArc.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Silent Hill 5/PakArc.dfm -------------------------------------------------------------------------------- /legacy/sources/Silent Hill 5/PakArc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Silent Hill 5/PakArc.pas -------------------------------------------------------------------------------- /legacy/sources/Silent Hill 5/SH5_Pak.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Silent Hill 5/SH5_Pak.pas -------------------------------------------------------------------------------- /legacy/sources/Silent Hill 5/SH5_Syt.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Silent Hill 5/SH5_Syt.pas -------------------------------------------------------------------------------- /legacy/sources/Silent Hill 5/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Silent Hill 5/icon.ico -------------------------------------------------------------------------------- /legacy/sources/Silent Hill 5/targa.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Silent Hill 5/targa.pas -------------------------------------------------------------------------------- /legacy/sources/Silent Hill/Count.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Silent Hill/Count.dpr -------------------------------------------------------------------------------- /legacy/sources/Silent Hill/DPst.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Silent Hill/DPst.dpr -------------------------------------------------------------------------------- /legacy/sources/Silent Hill/FontV.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Silent Hill/FontV.dfm -------------------------------------------------------------------------------- /legacy/sources/Silent Hill/FontV.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Silent Hill/FontV.pas -------------------------------------------------------------------------------- /legacy/sources/Silent Hill/PtrSrch.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Silent Hill/PtrSrch.pas -------------------------------------------------------------------------------- /legacy/sources/Silent Hill/SHDcdr.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Silent Hill/SHDcdr.dpr -------------------------------------------------------------------------------- /legacy/sources/Silent Hill/SHDec.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Silent Hill/SHDec.pas -------------------------------------------------------------------------------- /legacy/sources/Silent Hill/SHDecoder.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Silent Hill/SHDecoder.dpr -------------------------------------------------------------------------------- /legacy/sources/Silent Hill/STR.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Silent Hill/STR.pas -------------------------------------------------------------------------------- /legacy/sources/Sources/DIB.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Sources/DIB.pas -------------------------------------------------------------------------------- /legacy/sources/Sources/DLZO.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Sources/DLZO.pas -------------------------------------------------------------------------------- /legacy/sources/Sources/DXConsts.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Sources/DXConsts.pas -------------------------------------------------------------------------------- /legacy/sources/Sources/DelphiXcfg.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Sources/DelphiXcfg.inc -------------------------------------------------------------------------------- /legacy/sources/Sources/GBA_lz77.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Sources/GBA_lz77.pas -------------------------------------------------------------------------------- /legacy/sources/Sources/GbaUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Sources/GbaUnit.pas -------------------------------------------------------------------------------- /legacy/sources/Sources/PS2Textures.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Sources/PS2Textures.pas -------------------------------------------------------------------------------- /legacy/sources/Sources/TIM.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Sources/TIM.pas -------------------------------------------------------------------------------- /legacy/sources/Sources/TIM2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Sources/TIM2.pas -------------------------------------------------------------------------------- /legacy/sources/Sources/ps2swizzle.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Sources/ps2swizzle.pas -------------------------------------------------------------------------------- /legacy/sources/Sources/targa.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Sources/targa.pas -------------------------------------------------------------------------------- /legacy/sources/WinX/Extract.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/WinX/Extract.dpr -------------------------------------------------------------------------------- /legacy/sources/WinX/GBAUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/WinX/GBAUnit.pas -------------------------------------------------------------------------------- /legacy/sources/WinX/HexUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/WinX/HexUnit.pas -------------------------------------------------------------------------------- /legacy/sources/WinX/SCANF.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/WinX/SCANF.pas -------------------------------------------------------------------------------- /legacy/sources/WinX/SCANF_C.PAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/WinX/SCANF_C.PAS -------------------------------------------------------------------------------- /legacy/sources/WinX/TextUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/WinX/TextUnit.pas -------------------------------------------------------------------------------- /legacy/sources/WinX/WinXFontEditor.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/WinX/WinXFontEditor.dpr -------------------------------------------------------------------------------- /legacy/sources/WinX/WinxText.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/WinX/WinxText.dpr -------------------------------------------------------------------------------- /legacy/sources/WinX/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/WinX/icon.ico -------------------------------------------------------------------------------- /legacy/sources/WinX/lz77.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/WinX/lz77.pas -------------------------------------------------------------------------------- /legacy/sources/WinX/main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/WinX/main.dfm -------------------------------------------------------------------------------- /legacy/sources/WinX/main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/WinX/main.pas -------------------------------------------------------------------------------- /legacy/sources/Xenosaga/PS2Textures.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Xenosaga/PS2Textures.pas -------------------------------------------------------------------------------- /legacy/sources/Xenosaga/Xenofont.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/Xenosaga/Xenofont.dpr -------------------------------------------------------------------------------- /legacy/sources/vb6/Arena/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/Arena/Form1.frm -------------------------------------------------------------------------------- /legacy/sources/vb6/Arena/Form2.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/Arena/Form2.frm -------------------------------------------------------------------------------- /legacy/sources/vb6/Arena/Form3.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/Arena/Form3.frm -------------------------------------------------------------------------------- /legacy/sources/vb6/Arena/Project1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/Arena/Project1.vbp -------------------------------------------------------------------------------- /legacy/sources/vb6/Arena/QEdit.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/Arena/QEdit.frm -------------------------------------------------------------------------------- /legacy/sources/vb6/Arena/TabView.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/Arena/TabView.frm -------------------------------------------------------------------------------- /legacy/sources/vb6/Barbie/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/Barbie/Form1.frm -------------------------------------------------------------------------------- /legacy/sources/vb6/Barbie/Module1.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/Barbie/Module1.bas -------------------------------------------------------------------------------- /legacy/sources/vb6/Barbie/Project1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/Barbie/Project1.vbp -------------------------------------------------------------------------------- /legacy/sources/vb6/CaveStory/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/CaveStory/Form1.frm -------------------------------------------------------------------------------- /legacy/sources/vb6/CaveStory/Module1.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/CaveStory/Module1.bas -------------------------------------------------------------------------------- /legacy/sources/vb6/CaveStory/Search.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/CaveStory/Search.frm -------------------------------------------------------------------------------- /legacy/sources/vb6/CaveStory/ShowMsg.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/CaveStory/ShowMsg.frm -------------------------------------------------------------------------------- /legacy/sources/vb6/Crimsonland/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/Crimsonland/Form1.frm -------------------------------------------------------------------------------- /legacy/sources/vb6/FF6Font/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/FF6Font/Form1.frm -------------------------------------------------------------------------------- /legacy/sources/vb6/FF6Font/Module1.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/FF6Font/Module1.bas -------------------------------------------------------------------------------- /legacy/sources/vb6/FF6Font/Module2.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/FF6Font/Module2.bas -------------------------------------------------------------------------------- /legacy/sources/vb6/FF6Font/Project1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/FF6Font/Project1.vbp -------------------------------------------------------------------------------- /legacy/sources/vb6/FF8/FF8FNT/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/FF8/FF8FNT/Form1.frm -------------------------------------------------------------------------------- /legacy/sources/vb6/FF8/FF8IMG/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/FF8/FF8IMG/Form1.frm -------------------------------------------------------------------------------- /legacy/sources/vb6/FFT/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/FFT/Form1.frm -------------------------------------------------------------------------------- /legacy/sources/vb6/FFT/Module1.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/FFT/Module1.bas -------------------------------------------------------------------------------- /legacy/sources/vb6/FFT/Project1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/FFT/Project1.vbp -------------------------------------------------------------------------------- /legacy/sources/vb6/Flash/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/Flash/Form1.frm -------------------------------------------------------------------------------- /legacy/sources/vb6/Flash/Project1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/Flash/Project1.vbp -------------------------------------------------------------------------------- /legacy/sources/vb6/KPE/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/KPE/Form1.frm -------------------------------------------------------------------------------- /legacy/sources/vb6/KPE/GLoad.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/KPE/GLoad.frm -------------------------------------------------------------------------------- /legacy/sources/vb6/KPE/Module1.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/KPE/Module1.bas -------------------------------------------------------------------------------- /legacy/sources/vb6/KPE/OpnSve.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/KPE/OpnSve.bas -------------------------------------------------------------------------------- /legacy/sources/vb6/KPE/Project1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/KPE/Project1.vbp -------------------------------------------------------------------------------- /legacy/sources/vb6/LNB/Recalc.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/LNB/Recalc.frm -------------------------------------------------------------------------------- /legacy/sources/vb6/LNB/Recalc.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/LNB/Recalc.vbp -------------------------------------------------------------------------------- /legacy/sources/vb6/LNBTA/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/LNBTA/Form1.frm -------------------------------------------------------------------------------- /legacy/sources/vb6/LNBTA/Module1.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/LNBTA/Module1.bas -------------------------------------------------------------------------------- /legacy/sources/vb6/LNBTA/Project1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/LNBTA/Project1.vbp -------------------------------------------------------------------------------- /legacy/sources/vb6/LNBTA/SaveOpen.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/LNBTA/SaveOpen.bas -------------------------------------------------------------------------------- /legacy/sources/vb6/LNBTA/TableView.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/LNBTA/TableView.frm -------------------------------------------------------------------------------- /legacy/sources/vb6/LNBTA/Varibles.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/LNBTA/Varibles.bas -------------------------------------------------------------------------------- /legacy/sources/vb6/Pac-Man/PMGF/1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/Pac-Man/PMGF/1.frm -------------------------------------------------------------------------------- /legacy/sources/vb6/Pac-Man/PMGF/Ps.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/Pac-Man/PMGF/Ps.bas -------------------------------------------------------------------------------- /legacy/sources/vb6/README.md: -------------------------------------------------------------------------------- 1 | Ancient tools written in Visual Basic 6.0. Just for fun :) -------------------------------------------------------------------------------- /legacy/sources/vb6/Table/DicEditor.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/Table/DicEditor.frm -------------------------------------------------------------------------------- /legacy/sources/vb6/Table/Help.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/Table/Help.frm -------------------------------------------------------------------------------- /legacy/sources/vb6/Table/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/Table/Icon.ico -------------------------------------------------------------------------------- /legacy/sources/vb6/Table/LoadTable.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/Table/LoadTable.frm -------------------------------------------------------------------------------- /legacy/sources/vb6/Table/Module1.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/Table/Module1.bas -------------------------------------------------------------------------------- /legacy/sources/vb6/Table/Project1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/Table/Project1.vbp -------------------------------------------------------------------------------- /legacy/sources/vb6/Table/SaveTable.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/Table/SaveTable.frm -------------------------------------------------------------------------------- /legacy/sources/vb6/Table/ShowTable.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/Table/ShowTable.frm -------------------------------------------------------------------------------- /legacy/sources/vb6/Table/Tbl.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/legacy/sources/vb6/Table/Tbl.frm -------------------------------------------------------------------------------- /libs/bc6h.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/libs/bc6h.lib -------------------------------------------------------------------------------- /libs/freetype249ST.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/libs/freetype249ST.lib -------------------------------------------------------------------------------- /libs/libgcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/libs/libgcc.a -------------------------------------------------------------------------------- /libs/libimagequant.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/libs/libimagequant.a -------------------------------------------------------------------------------- /libs/libimagequant.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/libs/libimagequant.dll -------------------------------------------------------------------------------- /libs/libimagequant_dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/libs/libimagequant_dll.a -------------------------------------------------------------------------------- /libs/libmingwex.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/libs/libmingwex.a -------------------------------------------------------------------------------- /libs/nvcore.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/libs/nvcore.lib -------------------------------------------------------------------------------- /libs/nvimage.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/libs/nvimage.lib -------------------------------------------------------------------------------- /libs/nvmath.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/libs/nvmath.lib -------------------------------------------------------------------------------- /libs/nvthread.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/libs/nvthread.lib -------------------------------------------------------------------------------- /libs/nvtt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/libs/nvtt.lib -------------------------------------------------------------------------------- /libs/squish.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/libs/squish.lib -------------------------------------------------------------------------------- /platform-specific/wii/streams/Tmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/platform-specific/wii/streams/Tmd.h -------------------------------------------------------------------------------- /platform-specific/wii/streams/sha/asm/README: -------------------------------------------------------------------------------- 1 | C2.pl works 2 | -------------------------------------------------------------------------------- /platform-specific/wii/tests/Tests.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/platform-specific/wii/tests/Tests.pro -------------------------------------------------------------------------------- /platform-specific/wii/tests/make_vs_projects.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | qmake.exe -spec win32-msvc2008 -r -tp vc Tests.pro 3 | -------------------------------------------------------------------------------- /platform-specific/wii/textures/dxt1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/platform-specific/wii/textures/dxt1.h -------------------------------------------------------------------------------- /projects/ff5a/_datascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/_datascript.txt -------------------------------------------------------------------------------- /projects/ff5a/_release/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/ff5a/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/build.bat -------------------------------------------------------------------------------- /projects/ff5a/data/asm/ansi_rus.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/data/asm/ansi_rus.asm -------------------------------------------------------------------------------- /projects/ff5a/data/asm/text_out.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/data/asm/text_out.asm -------------------------------------------------------------------------------- /projects/ff5a/data/fonts/font1_rus.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/data/fonts/font1_rus.fnt -------------------------------------------------------------------------------- /projects/ff5a/data/fonts/font2_rus.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/data/fonts/font2_rus.fnt -------------------------------------------------------------------------------- /projects/ff5a/data/fonts/font3_rus.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/data/fonts/font3_rus.fnt -------------------------------------------------------------------------------- /projects/ff5a/data/intro/intro.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/data/intro/intro.asm -------------------------------------------------------------------------------- /projects/ff5a/data/intro/intro.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/data/intro/intro.bmp -------------------------------------------------------------------------------- /projects/ff5a/data/intro/intro.gbapal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/data/intro/intro.gbapal -------------------------------------------------------------------------------- /projects/ff5a/data/list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/data/list.txt -------------------------------------------------------------------------------- /projects/ff5a/data/logo/bmp/title.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/data/logo/bmp/title.bmp -------------------------------------------------------------------------------- /projects/ff5a/data/logo/res/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/ff5a/data/menu/menu.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/data/menu/menu.bmp -------------------------------------------------------------------------------- /projects/ff5a/data/menu/miss.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/data/menu/miss.bmp -------------------------------------------------------------------------------- /projects/ff5a/data/menu/press.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/data/menu/press.bmp -------------------------------------------------------------------------------- /projects/ff5a/data/menu/res/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/ff5a/data/name_input_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/data/name_input_ru.txt -------------------------------------------------------------------------------- /projects/ff5a/data/screen/res/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/ff5a/data/screen/screen.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/data/screen/screen.act -------------------------------------------------------------------------------- /projects/ff5a/data/staff/staff.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/data/staff/staff.tbl -------------------------------------------------------------------------------- /projects/ff5a/data/staff/staff_big.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/data/staff/staff_big.tbl -------------------------------------------------------------------------------- /projects/ff5a/english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/english.txt -------------------------------------------------------------------------------- /projects/ff5a/gconvert.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/gconvert.bat -------------------------------------------------------------------------------- /projects/ff5a/release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/release.bat -------------------------------------------------------------------------------- /projects/ff5a/russian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/russian.txt -------------------------------------------------------------------------------- /projects/ff5a/src/ExtraPaster/EP_GBA.pas: -------------------------------------------------------------------------------- 1 | unit EP_GBA; 2 | 3 | interface 4 | 5 | implementation 6 | 7 | end. 8 | -------------------------------------------------------------------------------- /projects/ff5a/src/FF5/CodePaster.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/src/FF5/CodePaster.dpr -------------------------------------------------------------------------------- /projects/ff5a/src/FF5/ImageConv.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/src/FF5/ImageConv.dpr -------------------------------------------------------------------------------- /projects/ff5a/tables/Avatars.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/tables/Avatars.tbl -------------------------------------------------------------------------------- /projects/ff5a/tables/Names_Rus.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/tables/Names_Rus.tbl -------------------------------------------------------------------------------- /projects/ff5a/tables/Opcodes.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/tables/Opcodes.tbl -------------------------------------------------------------------------------- /projects/ff5a/tables/Table_Eng.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/tables/Table_Eng.tbl -------------------------------------------------------------------------------- /projects/ff5a/tables/Table_Eng_tr.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/tables/Table_Eng_tr.tbl -------------------------------------------------------------------------------- /projects/ff5a/tables/Table_RUS.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/tables/Table_RUS.tbl -------------------------------------------------------------------------------- /projects/ff5a/tools/ExtraPaster.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/tools/ExtraPaster.exe -------------------------------------------------------------------------------- /projects/ff5a/tools/ImageConv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/tools/ImageConv.exe -------------------------------------------------------------------------------- /projects/ff5a/tools/SERFontEditor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/tools/SERFontEditor.exe -------------------------------------------------------------------------------- /projects/ff5a/tools/UIPS.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/tools/UIPS.EXE -------------------------------------------------------------------------------- /projects/ff5a/view/FF5/FF5.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/view/FF5/FF5.cfg -------------------------------------------------------------------------------- /projects/ff5a/view/FF5/FF5BG.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/view/FF5/FF5BG.bmp -------------------------------------------------------------------------------- /projects/ff5a/view/FF5/FF5Code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/view/FF5/FF5Code.txt -------------------------------------------------------------------------------- /projects/ff5a/view/FF5/FF5Table.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/view/FF5/FF5Table.tbl -------------------------------------------------------------------------------- /projects/ff5a/view/FF5/FF5_battle.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/view/FF5/FF5_battle.cfg -------------------------------------------------------------------------------- /projects/ff5a/view/FF5/FF5fnt.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/view/FF5/FF5fnt.bmp -------------------------------------------------------------------------------- /projects/ff5a/view/FF5/battle_msg.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/view/FF5/battle_msg.BMP -------------------------------------------------------------------------------- /projects/ff5a/view/FFx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/view/FFx.exe -------------------------------------------------------------------------------- /projects/ff5a/view/FFx.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/ff5a/view/FFx.ini -------------------------------------------------------------------------------- /projects/mp3c/buildPatch.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/mp3c/buildPatch.bat -------------------------------------------------------------------------------- /projects/mp3c/buildPatch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/mp3c/buildPatch.sh -------------------------------------------------------------------------------- /projects/mp3c/buildResources.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | setlocal 3 | cd scripts 4 | python.exe build.py 5 | -------------------------------------------------------------------------------- /projects/mp3c/buildResources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd scripts 4 | python build.py 5 | -------------------------------------------------------------------------------- /projects/mp3c/builds/howto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/mp3c/builds/howto.txt -------------------------------------------------------------------------------- /projects/mp3c/builds/release/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/mp3c/builds/testing/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/mp3c/content/eng/fonts/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/mp3c/content/eng/text/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/mp3c/content/eng/textures/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/mp3c/content/rus/text/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/mp3c/content/rus/textures/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/mp3c/misc/userDefineLang.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/mp3c/misc/userDefineLang.xml -------------------------------------------------------------------------------- /projects/mp3c/resources/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/mp3c/resources/readme.txt -------------------------------------------------------------------------------- /projects/mp3c/scripts/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/mp3c/scripts/build.py -------------------------------------------------------------------------------- /projects/mp3c/scripts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/mp3c/scripts/tests.py -------------------------------------------------------------------------------- /projects/mp3c/tools/FontTool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/mp3c/tools/FontTool.exe -------------------------------------------------------------------------------- /projects/mp3c/tools/QtCore4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/mp3c/tools/QtCore4.dll -------------------------------------------------------------------------------- /projects/mp3c/tools/ScriptTester.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/mp3c/tools/ScriptTester.exe -------------------------------------------------------------------------------- /projects/mp3c/tools/TextConv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/mp3c/tools/TextConv.exe -------------------------------------------------------------------------------- /projects/mp3c/tools/TextureConv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/mp3c/tools/TextureConv.exe -------------------------------------------------------------------------------- /projects/sh0/buildResources.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/sh0/buildResources.bat -------------------------------------------------------------------------------- /projects/sh0/content/common/ScriptEditor.config: -------------------------------------------------------------------------------- 1 | platform=ps2 2 | -------------------------------------------------------------------------------- /projects/sh0/content/common/authors.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/sh0/content/common/comments.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/sh0/content/common/tags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/sh0/content/common/tags.txt -------------------------------------------------------------------------------- /projects/sh0/content/eng/fonts/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/sh0/content/eng/misc/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/sh0/content/eng/text/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/sh0/content/rus/patcher/version: -------------------------------------------------------------------------------- 1 | 0.8a -------------------------------------------------------------------------------- /projects/sh0/content/rus/text/ps2/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/sh0/content/rus/text/psp/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/sh0/resources/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/shsm/buildResources.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/shsm/buildResources.bat -------------------------------------------------------------------------------- /projects/shsm/buildResourcesPolish.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/shsm/buildResourcesPolish.bat -------------------------------------------------------------------------------- /projects/shsm/builds/howto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/shsm/builds/howto.txt -------------------------------------------------------------------------------- /projects/shsm/builds/release/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/shsm/builds/testing/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/shsm/content/common/names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/shsm/content/common/names.txt -------------------------------------------------------------------------------- /projects/shsm/content/common/tags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/shsm/content/common/tags.txt -------------------------------------------------------------------------------- /projects/shsm/content/eng/fonts/ps2/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/shsm/content/eng/fonts/psp/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/shsm/content/eng/fonts/wii/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/shsm/content/eng/misc/messages.txt: -------------------------------------------------------------------------------- 1 | [password] 2 | SUNDAY45 3 | 4 | -------------------------------------------------------------------------------- /projects/shsm/content/eng/text/ps2/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/shsm/content/eng/text/psp/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/shsm/content/eng/text/wii/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/shsm/content/rus/fonts/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/shsm/content/rus/misc/messages.txt: -------------------------------------------------------------------------------- 1 | [password] 2 | ВОСКР45 3 | 4 | -------------------------------------------------------------------------------- /projects/shsm/content/rus/patcher/version: -------------------------------------------------------------------------------- 1 | 0.1a -------------------------------------------------------------------------------- /projects/shsm/content/rus/text/hiera.list: -------------------------------------------------------------------------------- 1 | wii 2 | ps2 3 | psp 4 | -------------------------------------------------------------------------------- /projects/shsm/content/rus/text/ps2/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/shsm/content/rus/text/psp/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/shsm/content/rus/text/wii/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/shsm/resources/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/shsm/resources/readme.txt -------------------------------------------------------------------------------- /projects/shsm/scripts/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/shsm/scripts/build.py -------------------------------------------------------------------------------- /projects/shsm/scripts/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/shsm/scripts/environment.py -------------------------------------------------------------------------------- /projects/shsm/scripts/font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/shsm/scripts/font.py -------------------------------------------------------------------------------- /projects/shsm/scripts/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/shsm/scripts/hash.py -------------------------------------------------------------------------------- /projects/shsm/scripts/patcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/shsm/scripts/patcher.py -------------------------------------------------------------------------------- /projects/shsm/scripts/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/shsm/scripts/strings.py -------------------------------------------------------------------------------- /projects/shsm/scripts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/shsm/scripts/tests.py -------------------------------------------------------------------------------- /projects/shsm/scripts/textures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/projects/shsm/scripts/textures.py -------------------------------------------------------------------------------- /utils/HashDBCreator/HashDBCreator.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/utils/HashDBCreator/HashDBCreator.pro -------------------------------------------------------------------------------- /utils/HashDBCreator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/utils/HashDBCreator/main.cpp -------------------------------------------------------------------------------- /utils/make_vs_projects.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | qmake.exe -spec win32-msvc2008 -r -tp vc utils.pro 3 | -------------------------------------------------------------------------------- /utils/utils.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbystryantsev/consolgames-tools/HEAD/utils/utils.pro --------------------------------------------------------------------------------