/** * Reads event commands. */ void RawStruct<std::vector<RPG::EventCommand> >::ReadLcf( std::vector<RPG::EventCommand>& event_commands, LcfReader& stream, uint32_t length) { // Event Commands is a special array // Has no size information. Is terminated by 4 times 0x00. unsigned long startpos = stream.Tell(); unsigned long endpos = startpos + length; for (;;) { uint8_t ch = (uint8_t)stream.Peek(); if (ch == 0) { stream.Seek(4, LcfReader::FromCurrent); break; } if (stream.Tell() >= endpos) { stream.Seek(endpos, LcfReader::FromStart); fprintf(stderr, "Event command corrupted at %" PRIu32 "\n", stream.Tell()); for (;;) { // Try finding the real end of the event command (4 0-bytes) int i = 0; for (; i < 4; ++i) { stream.Read(ch); if (ch != 0) { break; } } if (i == 4 || stream.Eof()) { break; } } break; } RPG::EventCommand command; RawStruct<RPG::EventCommand>::ReadLcf(command, stream, 0); event_commands.push_back(command); } }
void Struct<S>::ReadLcf(S& obj, LcfReader& stream) { MakeFieldMap(); LcfReader::Chunk chunk_info; while (!stream.Eof()) { chunk_info.ID = stream.ReadInt(); if (chunk_info.ID == 0) break; chunk_info.length = stream.ReadInt(); if (chunk_info.length == 0) continue; typename field_map_type::const_iterator it = field_map.find(chunk_info.ID); if (it != field_map.end()) { //printf("%s\n", it->second->name); it->second->ReadLcf(obj, stream, chunk_info.length); } else stream.Skip(chunk_info); } }