1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
|
/* ScummVM Tools
*
* ScummVM Tools is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
/* Extracts the packed files used in the Amiga and AtariST versions */
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <iostream>
#include "extract_agos.h"
ExtractAgos::ExtractAgos(const std::string &name) : Tool(name, TOOLTYPE_EXTRACTION) {
_filelen = 0;
ToolInput input;
input.format = "*.*";
_inputPaths.push_back(input);
_shorthelp = "Used to extract Simon the Sorcerer and Feeble Files data files.";
_helptext = "\nUsage: " + getName() + " [-o outputname] infilename\n" + _shorthelp + "\n";
}
// Run the actual tool
void ExtractAgos::execute() {
// Loop through all input files
Common::Filename infilename(_inputPaths[0].path);
uint8 *x = (uint8 *)loadfile(infilename);
_outputPath.setFullName(infilename.getFullName());
uint32 decrlen = simon_decr_length(x, (uint32) _filelen);
uint8 *out = (uint8 *)malloc(decrlen);
if (out) {
if (simon_decr(x, out, _filelen)) {
savefile(_outputPath.getFullPath(), out, decrlen);
free(x);
free(out);
} else {
free(x);
free(out);
error("%s: decrunch error", infilename.getFullPath().c_str());
}
}
}
#define EndGetM32(a) ((((a)[0])<<24)|(((a)[1])<<16)|(((a)[2])<<8)|((a)[3]))
#define SD_GETBIT(var) do { \
if (!bits--) { s -= 4; if (s < src) return 0; bb=EndGetM32(s); bits=31; } \
(var) = bb & 1; bb >>= 1; \
} while (0)
#define SD_GETBITS(var, nbits) do { \
bc=(nbits); (var)=0; while (bc--) {(var)<<=1; SD_GETBIT(bit); (var)|=bit; } \
} while (0)
#define SD_TYPE_LITERAL (0)
#define SD_TYPE_MATCH (1)
int ExtractAgos::simon_decr(uint8 *src, uint8 *dest, uint32 srclen) {
uint8 *s = &src[srclen - 4];
uint32 destlen = EndGetM32(s);
uint32 bb, x, y;
uint8 *d = &dest[destlen];
uint8 bc, bit, bits, type;
/* initialise bit buffer */
s -= 4;
x = EndGetM32(s);
bb = x;
bits = 0;
do {
x >>= 1;
bits++;
} while (x);
bits--;
while (d > dest) {
SD_GETBIT(x);
if (x) {
SD_GETBITS(x, 2);
if (x == 0) {
type = SD_TYPE_MATCH;
x = 9;
y = 2;
} else if (x == 1) {
type = SD_TYPE_MATCH;
x = 10;
y = 3;
} else if (x == 2) {
type = SD_TYPE_MATCH;
x = 12;
SD_GETBITS(y, 8);
} else {
type = SD_TYPE_LITERAL;
x = 8;
y = 8;
}
} else {
SD_GETBIT(x);
if (x) {
type = SD_TYPE_MATCH;
x = 8;
y = 1;
} else {
type = SD_TYPE_LITERAL;
x = 3;
y = 0;
}
}
if (type == SD_TYPE_LITERAL) {
SD_GETBITS(x, x); y += x;
if ((int)(y + 1) > (d - dest)) {
return 0; /* overflow? */
}
do {
SD_GETBITS(x, 8);
*--d = x;
} while (y-- > 0);
} else {
if ((int)(y + 1) > (d - dest)) {
return 0; /* overflow? */
}
SD_GETBITS(x, x);
if ((d + x) > (dest + destlen)) {
return 0; /* offset overflow? */
}
do {
d--;
*d = d[x];
} while (y-- > 0);
}
}
/* successful decrunch */
return 1;
}
uint32 ExtractAgos::simon_decr_length(uint8 *src, uint32 srclen) {
return EndGetM32(&src[srclen - 4]);
}
/**
* loadfile(filename) loads a file from disk, and returns a pointer to that
* loaded file, or returns NULL on failure
* call free() on ptr to free memory
* size of loaded file is available in global var 'filelen'
*
* @param name The name of the file to be loaded
*/
void *ExtractAgos::loadfile(const Common::Filename &name) {
Common::File file(name, "rb");
// Using global here is not pretty
_filelen = file.size();
void *mem = malloc(file.size());
// Read data
file.read_throwsOnError(mem, _filelen);
return mem;
}
/**
* Saves N bytes from the buffer to the target file.
* Throws FileException on failure
*
* @param name The name of the file to save to
* @param mem Where to get data from
* @param length How many bytes to write
*/
void ExtractAgos::savefile(const Common::Filename &name, void *mem, size_t length) {
Common::File file(name, "wb");
file.write(mem, length);
}
#ifdef STANDALONE_MAIN
int main(int argc, char *argv[]) {
ExtractAgos agos(argv[0]);
return agos.run(argc, argv);
}
#endif
|