aboutsummaryrefslogtreecommitdiff
path: root/engines/agos
diff options
context:
space:
mode:
authorTravis Howell2007-02-12 04:30:24 +0000
committerTravis Howell2007-02-12 04:30:24 +0000
commit2c0c7a8e1779826dc2122744c105d5a443256579 (patch)
tree66ce491ecdc871f5bf5ba3f19aaa2654c33c9608 /engines/agos
parentbfd3d872b8c88a4e10cefd1b3abee30844cce495 (diff)
downloadscummvm-rg350-2c0c7a8e1779826dc2122744c105d5a443256579.tar.gz
scummvm-rg350-2c0c7a8e1779826dc2122744c105d5a443256579.tar.bz2
scummvm-rg350-2c0c7a8e1779826dc2122744c105d5a443256579.zip
Minor changes for coding guidelines.
svn-id: r25508
Diffstat (limited to 'engines/agos')
-rw-r--r--engines/agos/agos.h2
-rw-r--r--engines/agos/res_ami.cpp24
-rw-r--r--engines/agos/vga.cpp2
3 files changed, 14 insertions, 14 deletions
diff --git a/engines/agos/agos.h b/engines/agos/agos.h
index a841eb96ad..d4c4a553bb 100644
--- a/engines/agos/agos.h
+++ b/engines/agos/agos.h
@@ -1337,7 +1337,7 @@ protected:
byte *getBackGround();
byte *getScaleBuf();
- byte *convertclip(VC10_state *state, byte flags);
+ byte *convertImage(VC10_state *state, bool compressed);
bool decrunchFile(byte *src, byte *dst, uint32 size);
void loadVGABeardFile(uint id);
diff --git a/engines/agos/res_ami.cpp b/engines/agos/res_ami.cpp
index 556875e740..ccebab7554 100644
--- a/engines/agos/res_ami.cpp
+++ b/engines/agos/res_ami.cpp
@@ -33,7 +33,7 @@ enum {
kMaxColorDepth = 5
};
-static void uncompressplane(const byte *plane, byte *outptr, int length) {
+static void uncompressPlane(const byte *plane, byte *outptr, int length) {
while (length != 0) {
int wordlen;
char x = *plane++;
@@ -53,7 +53,7 @@ static void uncompressplane(const byte *plane, byte *outptr, int length) {
}
}
-static void bitplanetochunky(uint16 *w, uint8 colorDepth, uint8 *&dst) {
+static void bitplaneToChunky(uint16 *w, uint8 colorDepth, uint8 *&dst) {
for (int j = 0; j < 8; j++) {
byte color1 = 0;
byte color2 = 0;
@@ -75,7 +75,7 @@ static void bitplanetochunky(uint16 *w, uint8 colorDepth, uint8 *&dst) {
}
}
-static void bitplanetochunkytext(uint16 *w, uint8 colorDepth, uint8 *&dst) {
+static void bitplaneToChunkyText(uint16 *w, uint8 colorDepth, uint8 *&dst) {
for (int j = 0; j < 16; j++) {
byte color = 0;
for (int p = 0; p < colorDepth; ++p) {
@@ -90,7 +90,7 @@ static void bitplanetochunkytext(uint16 *w, uint8 colorDepth, uint8 *&dst) {
}
}
-static void convertcompressedclip(const byte *src, byte *dst, uint8 colorDepth, int height, int width) {
+static void convertCompressedImage(const byte *src, byte *dst, uint8 colorDepth, int height, int width) {
const byte *plane[kMaxColorDepth];
byte *uncptr[kMaxColorDepth];
int length, i, j;
@@ -102,7 +102,7 @@ static void convertcompressedclip(const byte *src, byte *dst, uint8 colorDepth,
for (i = 0; i < colorDepth; ++i) {
plane[i] = src + READ_BE_UINT16(src + i * 4) + READ_BE_UINT16(src + i * 4 + 2);
uncptr[i] = (uint8 *)malloc(length * 2);
- uncompressplane(plane[i], uncptr[i], length);
+ uncompressPlane(plane[i], uncptr[i], length);
plane[i] = uncptr[i];
}
@@ -112,7 +112,7 @@ static void convertcompressedclip(const byte *src, byte *dst, uint8 colorDepth,
for (j = 0; j < colorDepth; ++j) {
w[j] = READ_BE_UINT16(plane[j]); plane[j] += 2;
}
- bitplanetochunky(w, colorDepth, uncbfroutptr);
+ bitplaneToChunky(w, colorDepth, uncbfroutptr);
}
uncbfroutptr = uncbfrout;
@@ -130,7 +130,7 @@ static void convertcompressedclip(const byte *src, byte *dst, uint8 colorDepth,
}
}
-byte *AGOSEngine::convertclip(VC10_state *state, byte flags) {
+byte *AGOSEngine::convertImage(VC10_state *state, bool compressed) {
int length, i, j;
uint8 colorDepth = 4;
@@ -148,8 +148,8 @@ byte *AGOSEngine::convertclip(VC10_state *state, byte flags) {
_planarBuf = (byte *)malloc(width * height);
byte *dst = _planarBuf;
- if (flags & 0x80) {
- convertcompressedclip(src, dst, colorDepth, height, width);
+ if (compressed) {
+ convertCompressedImage(src, dst, colorDepth, height, width);
} else {
length = (width + 15) / 16 * height;
for (i = 0; i < length; i++) {
@@ -159,16 +159,16 @@ byte *AGOSEngine::convertclip(VC10_state *state, byte flags) {
w[j] = READ_BE_UINT16(src + j * length * 2);
}
if (state->palette == 0xC0) {
- bitplanetochunkytext(w, colorDepth, dst);
+ bitplaneToChunkyText(w, colorDepth, dst);
} else {
- bitplanetochunky(w, colorDepth, dst);
+ bitplaneToChunky(w, colorDepth, dst);
}
src += 2;
} else {
for (j = 0; j < colorDepth; ++j) {
w[j] = READ_BE_UINT16(src); src += 2;
}
- bitplanetochunky(w, colorDepth, dst);
+ bitplaneToChunky(w, colorDepth, dst);
}
}
}
diff --git a/engines/agos/vga.cpp b/engines/agos/vga.cpp
index c014865d84..94e8564211 100644
--- a/engines/agos/vga.cpp
+++ b/engines/agos/vga.cpp
@@ -639,7 +639,7 @@ void AGOSEngine::vc10_draw() {
state.y_skip = 0; /* rows to skip = bl */
if (getFeatures() & GF_PLANAR) {
- state.depack_src = convertclip(&state, flags);
+ state.depack_src = convertImage(&state, (flags & 0x80));
// converted planar clip is already uncompressed
if (state.flags & kDFCompressedFlip) {