File size: 1,868 Bytes
985c397 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 | // SPDX-License-Identifier: LGPL-2.1-or-later
#include "JtReader.h"
#include <assert.h>
#include <fstream>
#include <iostream>
#include <vector>
#include "Element_Header.h"
#include "GUID.h"
#include "I32.h"
#include "LodHandler.h"
#include "Segment_Header.h"
#include "TOC_Entry.h"
#include "UChar.h"
using namespace std;
const GUID JtReader::TriStripSetShapeLODElement_ID(
0x10dd10ab,
0x2ac8,
0x11d1,
0x9b,
0x6b,
0x0,
0x80,
0xc7,
0xbb,
0x59,
0x97
);
JtReader::JtReader()
{}
JtReader::~JtReader()
{}
void JtReader::setFile(const std::string fileName)
{
this->_fileName = fileName;
}
const std::vector<TOC_Entry>& JtReader::readToc()
{
ifstream strm;
strm.open(_fileName, ios::binary);
if (!strm) {
throw "cannot open file";
}
Context cont(strm);
char headerString[80];
strm.read(headerString, 80);
UChar Byte_Order(cont);
I32 Empty_Field(cont);
I32 TOC_Offset(cont);
GUID LSG_Segment_ID(cont);
cont.Strm.seekg((int32_t)TOC_Offset);
I32 Entry_Count(cont);
TocEntries.resize(Entry_Count);
for (std::vector<TOC_Entry>::iterator i = TocEntries.begin(); i != TocEntries.end(); ++i) {
i->read(cont);
}
return TocEntries;
}
void JtReader::readLodSegment(const TOC_Entry& toc, LodHandler& /*handler*/)
{
std::ifstream strm;
strm.open(_fileName, ios::binary);
if (!strm) {
throw "cannot open file";
}
strm.seekg((int32_t)toc.Segment_Offset);
Context cont(strm);
// check if called with the right Toc
assert(toc.getSegmentType() == 7);
// read the segment header
Segment_Header header(cont);
// read the non zip Element header
Element_Header eHeader(cont, false);
if (eHeader.Object_Type_ID != TriStripSetShapeLODElement_ID) {
return;
}
}
|