aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/vol.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cge/vol.cpp')
-rw-r--r--engines/cge/vol.cpp89
1 files changed, 38 insertions, 51 deletions
diff --git a/engines/cge/vol.cpp b/engines/cge/vol.cpp
index 4f39cd6186..46282d2bbe 100644
--- a/engines/cge/vol.cpp
+++ b/engines/cge/vol.cpp
@@ -35,68 +35,55 @@
namespace CGE {
#ifdef VOL_UPD
-BTFILE VFILE::Cat(CAT_NAME, UPD, CRP);
-VOLBASE DAT::File(DAT_NAME, UPD, CRP);
+BTFILE VFILE::Cat(CAT_NAME, UPD, CRP);
+VOLBASE DAT::File(DAT_NAME, UPD, CRP);
#else
-BTFILE VFILE::Cat(CAT_NAME, REA, CRP);
-VOLBASE DAT::File(DAT_NAME, REA, CRP);
+BTFILE VFILE::Cat(CAT_NAME, REA, CRP);
+VOLBASE DAT::File(DAT_NAME, REA, CRP);
+#endif
+DAT VFILE::Dat;
+VFILE *VFILE::Recent = NULL;
+
+
+VFILE::VFILE(const char *name, IOMODE mode)
+ : IOBUF(mode) {
+ if (mode == REA) {
+ if (Dat.File.Error || Cat.Error)
+ error("Bad volume data");
+ BT_KEYPACK *kp = Cat.Find(name);
+ if (scumm_stricmp(kp->Key, name) != 0)
+ Error = 1;
+ EndMark = (BufMark = BegMark = kp->Mark) + kp->Size;
+ }
+#ifdef VOL_UPD
+ else
+ Make(name);
#endif
-DAT VFILE::Dat;
-VFILE * VFILE::Recent = NULL;
-
-
-
-
-
-VFILE::VFILE (const char * name, IOMODE mode)
-: IOBUF(mode)
-{
- if (mode == REA)
- {
- if (Dat.File.Error || Cat.Error)
- error("Bad volume data");
- BT_KEYPACK * kp = Cat.Find(name);
- if (scumm_stricmp(kp->Key, name) != 0) Error = 1;
- EndMark = (BufMark = BegMark = kp->Mark) + kp->Size;
- }
- #ifdef VOL_UPD
- else Make(name);
- #endif
}
-
-
-
-VFILE::~VFILE (void)
-{
- if (Recent == this) Recent = NULL;
+VFILE::~VFILE(void) {
+ if (Recent == this)
+ Recent = NULL;
}
-
-
-
-bool VFILE::Exist (const char * name)
-{
- return scumm_stricmp(Cat.Find(name)->Key, name) == 0;
+bool VFILE::Exist(const char *name) {
+ return scumm_stricmp(Cat.Find(name)->Key, name) == 0;
}
-
-
-void VFILE::ReadBuff (void)
-{
- if (Recent != this)
- {
- Dat.File.Seek(BufMark + Lim);
- Recent = this;
- }
- BufMark = Dat.File.Mark();
- long n = EndMark - BufMark;
- if (n > IOBUF_SIZE) n = IOBUF_SIZE;
- Lim = Dat.File.Read(Buff, (uint16) n);
- Ptr = 0;
+void VFILE::ReadBuff(void) {
+ if (Recent != this) {
+ Dat.File.Seek(BufMark + Lim);
+ Recent = this;
+ }
+ BufMark = Dat.File.Mark();
+ long n = EndMark - BufMark;
+ if (n > IOBUF_SIZE)
+ n = IOBUF_SIZE;
+ Lim = Dat.File.Read(Buff, (uint16) n);
+ Ptr = 0;
}
} // End of namespace CGE