aboutsummaryrefslogtreecommitdiff
path: root/saga/palanim.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2004-05-04 03:33:03 +0000
committerEugene Sandulenko2004-05-04 03:33:03 +0000
commit8de181f4f0b6f974016eaee6ec238bbdfb5ded2f (patch)
tree0079332b27bf2ca641387f8a6f2a0bb02db339de /saga/palanim.cpp
parentb9ebd68022f5614b0db6b30d8494062e911a8cc5 (diff)
downloadscummvm-rg350-8de181f4f0b6f974016eaee6ec238bbdfb5ded2f.tar.gz
scummvm-rg350-8de181f4f0b6f974016eaee6ec238bbdfb5ded2f.tar.bz2
scummvm-rg350-8de181f4f0b6f974016eaee6ec238bbdfb5ded2f.zip
Move from ys_binread.cpp and ys_binwrite.cpp to MemoryReadStream.
In fact there were no binary writes at all. svn-id: r13773
Diffstat (limited to 'saga/palanim.cpp')
-rw-r--r--saga/palanim.cpp21
1 files changed, 9 insertions, 12 deletions
diff --git a/saga/palanim.cpp b/saga/palanim.cpp
index e1759c4790..d0d3565952 100644
--- a/saga/palanim.cpp
+++ b/saga/palanim.cpp
@@ -25,8 +25,6 @@
#include "saga.h"
#include "reinherit.h"
-#include "yslib.h"
-
#include "events_mod.h"
#include "game_mod.h"
@@ -38,13 +36,10 @@ namespace Saga {
static PALANIM_DATA PAnimData;
int PALANIM_Load(const byte *resdata, size_t resdata_len) {
- const byte *read_p = resdata;
void *test_p;
uint16 i;
- YS_IGNORE_PARAM(resdata_len);
-
if (PAnimData.loaded) {
PALANIM_Free();
}
@@ -53,11 +48,13 @@ int PALANIM_Load(const byte *resdata, size_t resdata_len) {
return R_FAILURE;
}
+ MemoryReadStream *readS = new MemoryReadStream(resdata, resdata_len);
+
if (GAME_GetGameType() == R_GAMETYPE_IHNM) {
return R_SUCCESS;
}
- PAnimData.entry_count = ys_read_u16_le(read_p, &read_p);
+ PAnimData.entry_count = readS->readUint16LE();
R_printf(R_STDOUT, "PALANIM_Load(): Loading %d PALANIM entries.\n", PAnimData.entry_count);
@@ -74,8 +71,8 @@ int PALANIM_Load(const byte *resdata, size_t resdata_len) {
int pal_count;
int p, c;
- color_count = ys_read_u16_le(read_p, &read_p);
- pal_count = ys_read_u16_le(read_p, &read_p);
+ color_count = readS->readUint16LE();
+ pal_count = readS->readUint16LE();
PAnimData.entries[i].pal_count = pal_count;
PAnimData.entries[i].color_count = color_count;
@@ -105,13 +102,13 @@ int PALANIM_Load(const byte *resdata, size_t resdata_len) {
PAnimData.entries[i].colors = (R_COLOR *)test_p;
for (p = 0; p < pal_count; p++) {
- PAnimData.entries[i].pal_index[p] = (byte) ys_read_u8(read_p, &read_p);
+ PAnimData.entries[i].pal_index[p] = readS->readByte();
}
for (c = 0; c < color_count; c++) {
- PAnimData.entries[i].colors[c].red = (byte) ys_read_u8(read_p, &read_p);
- PAnimData.entries[i].colors[c].green = (byte) ys_read_u8(read_p, &read_p);
- PAnimData.entries[i].colors[c].blue = (byte) ys_read_u8(read_p, &read_p);
+ PAnimData.entries[i].colors[c].red = readS->readByte();
+ PAnimData.entries[i].colors[c].green = readS->readByte();
+ PAnimData.entries[i].colors[c].blue = readS->readByte();
}
}