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 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
|
/***************************************************************************
File : Origin810Parser.cpp
--------------------------------------------------------------------
Copyright : (C) 2010 Ion Vasilief
Email (use @ for *) : ion_vasilief*yahoo.fr
Description : Origin 8.1 file parser class (uses code from file
Origin750Parser.cpp written by Alex Kargovsky)
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, *
* Boston, MA 02110-1301 USA *
* *
***************************************************************************/
#include "Origin810Parser.h"
#include <cstring>
#include <sstream>
#include <boost/format.hpp>
#include <boost/lexical_cast.hpp>
#include <logging.hpp>
using namespace boost;
Origin810Parser::Origin810Parser(const string& fileName)
: Origin800Parser(fileName)
{
d_colormap_offset = 0x25F;
d_start_offset = 0x10;
notes_pos_mark = "P";
}
void Origin810Parser::readProjectTreeFolder(tree<ProjectNode>::iterator parent)
{
unsigned int POS = file.tellg();
double creationDate, modificationDate;
POS += 5;
file.seekg(POS + 0x10, ios_base::beg);
file >> creationDate;
if (creationDate >= 1e10)
return;
file >> modificationDate;
if (modificationDate >= 1e10)
return;
POS += 0x20 + 1 + 5;
unsigned int size;
file.seekg(POS, ios_base::beg);
file >> size;
POS += 5;
// read folder name
string name(size, 0);
file.seekg(POS, ios_base::beg);
file >> name;
tree<ProjectNode>::iterator current_folder = projectTree.append_child(parent, ProjectNode(name, ProjectNode::Folder, doubleToPosixTime(creationDate), doubleToPosixTime(modificationDate)));
file.seekg(1, ios_base::cur);
for (int i = 0; i < 6; i++)
skipLine();
POS = file.tellg();
unsigned int objectcount;
file >> objectcount;
POS += 5 + 5;
for (unsigned int i = 0; i < objectcount; ++i){
POS += 5;
char c;
file.seekg(POS + 0x2, ios_base::beg);
file >> c;
unsigned int objectID;
file.seekg(POS + 0x4, ios_base::beg);
file >> objectID;
if(c == 0x10){
projectTree.append_child(current_folder, ProjectNode(notes[objectID].name, ProjectNode::Note));
} else {
pair<ProjectNode::NodeType, string> object = findObjectByIndex(objectID);
projectTree.append_child(current_folder, ProjectNode(object.second, object.first));
}
POS += 8 + 1 + 5 + 5;
}
file.seekg(POS, ios_base::beg);
file >> objectcount;
file.seekg(1, ios_base::cur);
for(unsigned int i = 0; i < objectcount; ++i)
readProjectTreeFolder(current_folder);
}
void Origin810Parser::readColorMap(ColorMap& colorMap)
{
unsigned char h;
short w;
unsigned int colorMapSize;
file >> colorMapSize;
file.seekg(0x140, ios_base::cur);
for(unsigned int i = 0; i < colorMapSize + 3; ++i){
ColorMapLevel level;
file >> level.fillPattern;
file.seekg(0x03, ios_base::cur);
file >> level.fillPatternColor;
file >> w;
level.fillPatternLineWidth = (double)w/500.0;
file.seekg(0x06, ios_base::cur);
file >> level.lineStyle;
file.seekg(0x01, ios_base::cur);
file >> w;
level.lineWidth = (double)w/500.0;
file >> level.lineColor;
file.seekg(0x02, ios_base::cur);
file >> h;
level.labelVisible = (h & 0x1);
level.lineVisible = !(h & 0x2);
file.seekg(0x0D, ios_base::cur);
file >> level.fillColor;
file.seekg(0x04, ios_base::cur);
double value;
file >> value;
colorMap.levels.push_back(make_pair(value, level));
}
}
OriginParser* createOrigin810Parser(const string& fileName)
{
return new Origin810Parser(fileName);
}
|