public Entry(ref FileBase file) { mTable = new Dictionary <string, uint>(); mEntries = new List <TableEntry>(); int size = file.ReadInt32(); file.Skip(0x8); int loc = file.Position(); uint count = file.ReadUInt32(); for (int i = 0; i < count; i++) { TableEntry e = new TableEntry(); e.mIsValid = file.ReadUInt32(); e.mPtr = file.ReadInt32(); mEntries.Add(e); if (e.mIsValid == 1) { string str = file.ReadStringAt(loc + e.mPtr); uint val = file.ReadUInt32At(loc + e.mPtr + str.Length + 1); mTable.Add(str, val); } } file.Seek(loc + size); while ((file.Position() % 0x10) != 0) { file.Skip(0x1); } }
public LBL1(ref FileBase file) { int start = file.ReadInt32(); file.Skip(0x8); int baseOffs = file.Position(); uint count = file.ReadUInt32(); mEntries = new List <LabelEntry>(); for (int i = 0; i < count; i++) { LabelEntry e = new LabelEntry(); e.PairCount = file.ReadUInt32(); int offs = file.ReadInt32(); List <LabelPair> pairs = new List <LabelPair>(); int pos = file.Position(); file.Seek(baseOffs + offs); for (int j = 0; j < e.PairCount; j++) { LabelPair p = new LabelPair(); p.Label = file.ReadStringLenPrefix(); p.TextOffset = file.ReadUInt32(); pairs.Add(p); } file.Seek(pos); e.Pairs = pairs; mEntries.Add(e); } file.Seek(start + baseOffs); while (file.Position() % 0x10 != 0) { file.Skip(0x1); } }
public ATR1(ref FileBase file) { int start = file.ReadInt32(); file.Skip(0x8); int baseOffset = file.Position(); int entryCount = file.ReadInt32(); file.Skip(0x4); mAttributes = new List <AttributeEntry>(); for (int i = 0; i < entryCount; i++) { AttributeEntry e = new AttributeEntry { _0 = file.ReadByte(), _1 = file.ReadByte(), _2 = file.ReadByte(), _3 = file.ReadByte(), _4 = file.ReadByte(), _5 = file.ReadByte(), _6 = file.ReadByte(), _7 = file.ReadByte() }; int offs = file.ReadInt32(); int orig = file.Position(); file.Seek(baseOffset + offs); e.mString = file.ReadStringUTF16(); file.Seek(orig); } file.Seek(start + baseOffset); while (file.Position() % 0x10 != 0) { file.Skip(0x1); } }
public BCSV(FileBase file) { mFile = file; mFields = new Dictionary <int, Field>(); mEntries = new List <Entry>(); if (mFile.GetLength() == 0) { return; } int entryCount = mFile.ReadInt32(); int fieldCount = mFile.ReadInt32(); int dataOffs = mFile.ReadInt32(); int entryDataSize = mFile.ReadInt32(); int stringTableOffs = (dataOffs + (entryCount * entryDataSize)); for (int i = 0; i < fieldCount; i++) { Field f = new Field(); mFile.Seek(0x10 + (0xC * i)); f.mHash = mFile.ReadInt32(); f.mMask = mFile.ReadInt32(); f.mEntryOffset = mFile.ReadUInt16(); f.mShiftAmount = mFile.ReadByte(); f.mType = mFile.ReadByte(); string fieldName = HashToFieldName(f.mHash); f.mName = fieldName; mFields.Add(f.mHash, f); } for (int i = 0; i < entryCount; i++) { Entry e = new Entry(); foreach (Field f in mFields.Values) { mFile.Seek(dataOffs + (i * entryDataSize) + f.mEntryOffset); object val = null; switch (f.mType) { case 0: case 3: val = Convert.ToInt32((mFile.ReadInt32() & f.mMask) >> f.mShiftAmount); break; case 4: val = (short)((mFile.ReadInt16() & f.mMask) >> f.mShiftAmount); break; case 5: val = Convert.ToByte((mFile.ReadByte() & f.mMask) >> f.mShiftAmount); break; case 2: val = mFile.ReadSingle(); break; case 6: int offs = mFile.ReadInt32(); mFile.Seek(stringTableOffs + offs); val = mFile.ReadString(); break; default: throw new Exception($"BCSV::BCSV() - Unknown field type {f.mType}."); } e[f.mHash] = val; } mEntries.Add(e); } }
public TXT2(ref FileBase file) { int start = file.ReadInt32(); file.Skip(0x8); int dataStartOffs = file.Position(); int count = file.ReadInt32(); mMessages = new Dictionary <uint, List <MessageBase> >(); for (uint i = 0; i < count; i++) { List <MessageBase> msgs = new List <MessageBase>(); file.Seek(Convert.ToInt32(dataStartOffs + (i * 4) + 4)); int offs = file.ReadInt32(); file.Seek(offs + dataStartOffs); short cur = -1; while (cur != 0) { cur = file.ReadInt16(); if (cur == 0) { mMessages.Add(i, msgs); break; } switch (cur) { // new command case 0xE: ushort opcode = file.ReadUInt16(); switch (opcode) { case 0: msgs.Add(new SystemGroup(ref file)); break; case 1: msgs.Add(new DisplayGroup(ref file)); break; case 2: msgs.Add(new SoundGroup(ref file)); break; case 3: msgs.Add(new PictureGroup(ref file)); break; case 4: msgs.Add(new FontSizeGroup(ref file)); break; case 5: msgs.Add(new LocalizeGroup(ref file)); break; case 6: msgs.Add(new NumberGroup(ref file)); break; default: Console.WriteLine($"Unsupported opcode {opcode}"); break; } break; default: // normal char msgs.Add(new Character(cur)); break; } } } file.Seek(start + dataStartOffs); while (file.Position() % 0x10 != 0) { file.Skip(0x1); } }