File: obj2pml.cpp

package info (click to toggle)
camitk 6.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 389,508 kB
  • sloc: cpp: 103,476; sh: 2,448; python: 1,618; xml: 984; makefile: 128; perl: 84; sed: 20
file content (286 lines) | stat: -rw-r--r-- 8,666 bytes parent folder | download
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
/*****************************************************************************
 * $CAMITK_LICENCE_BEGIN$
 *
 * CamiTK - Computer Assisted Medical Intervention ToolKit
 * (c) 2001-2025 Univ. Grenoble Alpes, CNRS, Grenoble INP - UGA, TIMC, 38000 Grenoble, France
 *
 * Visit http://camitk.imag.fr for more information
 *
 * This file is part of CamiTK.
 *
 * CamiTK is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version 3
 * only, as published by the Free Software Foundation.
 *
 * CamiTK 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 Lesser General Public License version 3 for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3 along with CamiTK.  If not, see <http://www.gnu.org/licenses/>.
 *
 * $CAMITK_LICENCE_END$
 ****************************************************************************/

// obj format description: http://www.cs.huji.ac.il/~danix/modeling/Format_Obj.html

#include <iostream>
#include <string>
using namespace std;

#include <pml/PhysicalModel.h>
#include <pml/StructuralComponent.h>
#include <pml/MultiComponent.h>

// the input .obj file
std::ifstream objStream;
PhysicalModel* pm;
unsigned lineNr;
bool eof;

// a .obj line
typedef struct {
    string directive;
    string data;
    bool ok;
} ObjLine;

ObjLine currentLine;

// -------------------- getNext ------------------------
// get the next current line
void getNext() {
    char l[200];
    string line;
    currentLine.ok = false;

    while (!eof && !currentLine.ok) {
        eof = !(objStream.getline(l, 199));
        lineNr++;
        if (l[0] != '#') {
            line = l;

            unsigned int space = line.find(' ');
            if (space != string::npos && space != 0) {
                currentLine.directive = line.substr(0, space);
                currentLine.data = line.substr(space + 1);
                currentLine.ok = true;
            }
        }
    }

}

// -------------------- getVector ------------------------
// get the double 3D vector in the current data
void getVector(double d[3]) {
    stringstream data(currentLine.data, std::stringstream::in);

    for (unsigned int i = 0; i < 3; i++) {
        data >> d[i];
    }
}

// -------------------- getFacetType ------------------------
// return 3 for triangular facets and 4 for quadrangular facets, 0 if there is an error
// current data is something like "vertexId/textureId/normalId vertexId/textureId/normalId..."
unsigned int getFacetType() {
    int count = 0;
    unsigned int space = 0;

    do {
        space = currentLine.data.find(' ', space + 1);
        if (space != string::npos) {
            count++;
        }
    }
    while (space != string::npos);

    return count + 1;
}

// -------------------- getVertex ------------------------
// get the vertex list {i0, j0, k0} in a facet directive data "i0/j0/k0 i1/j1/k1 i2/j2/k2"
void getVertex(unsigned int size, int v[]) {
    stringstream data(currentLine.data, std::stringstream::in);
    string buff;

    for (unsigned int i = 0; i < size; i++) {
        data >> buff; // buff is of the form "4/4" or "2/33/32" or "4"
        unsigned int slash = buff.find('/');
        //if (slash != string::npos) {
        v[i] = atoi(buff.substr(0, slash).c_str());
        //}
    }
}


// -------------------- vertexToAtoms ------------------------
StructuralComponent* vertexToAtoms() {
    StructuralComponent* atoms = new StructuralComponent(nullptr, "Atoms");
    double pos[3];
    unsigned int atomIndex;

    // very important: start at 1 to have the same index system
    atomIndex = 1;

    // go to the first v directive
    while (!eof && currentLine.directive != "v") {
        getNext();
    }

    do {
        if (currentLine.ok && currentLine.directive == "v") {
            getVector(pos);
            atoms->addStructure(new Atom(nullptr, atomIndex++, pos));
        }
        getNext();
    }
    while (!eof);

    cout << "Found atom #1 to #" << atomIndex << endl;

    return atoms;
}

// -------------------- facetsToSC ------------------------
void facetsToSC(MultiComponent* mother) {
    StructuralComponent* group = new StructuralComponent(nullptr, "Facets");
    int* vertex;
    Cell* c;
    unsigned int type;

    // go to the first f directive
    while (!eof && currentLine.directive != "f" && currentLine.directive != "g" && currentLine.directive != "o") {
        getNext();
    }

    // process f directives
    do {
        if (currentLine.ok && (currentLine.directive == "g" || currentLine.directive == "o")) {
            // insert the current group if exists
            if (group->getNumberOfStructures() > 0) {
                mother->addSubComponent(group);
            }
            // create a new group
            group = new StructuralComponent(nullptr, currentLine.data);
        }
        if (currentLine.ok && currentLine.directive == "f") {
            // create cell depending on type
            type = getFacetType();
            switch (type) {
                case 3:
                    c = new Cell(nullptr, StructureProperties::TRIANGLE);
                    break;
                case 4:
                    c = new Cell(nullptr, StructureProperties::QUAD);
                    break;
                default:
                    c = nullptr;
                    cerr << "line " << lineNr << ": error: cannot manage facet using " << type << " vertices" << endl;
                    break;
            }

            if (c != nullptr) {
                // get atom indexes
                vertex = new int[type];
                getVertex(type, vertex);

                // add atoms
                for (unsigned int i = 0; i < type; i++) {
                    Atom* a = pm->getAtom(vertex[i]);
                    if (a != nullptr) {
                        c->addStructure(a);
                    }
                    else {
                        cerr << "line " << lineNr << ": error: cannot find vertex #" << vertex[i] << endl;
                    }
                }

                // add facet to current group
                group->addStructure(c);

                delete [] vertex;
            }
        }

        // go to the next directive
        getNext();
    }
    while (!eof);

    // insert the current group if exists
    if (group->getNumberOfStructures() > 0) {
        mother->addSubComponent(group);
    }

    cout << "Found " << mother->getNumberOfSubComponents() << " groups, total " << mother->getNumberOfCells() << " facets" << endl;
}

// -------------------- init ------------------------
void init() {
    currentLine.ok = false;
    eof = false;
    lineNr = 0;
}


// -------------------- main ------------------------
int main(int argc, char** argv) {

    if (argc != 2) {
        cout << "Usage:" << endl;
        cout << "\t" << argv[0] << " file.obj" << endl;
        cout << "if file.obj is a valid Wavefront OBJ format, then a corresponding file.pml is created" << endl;
        cout << "PML " << PhysicalModel::VERSION << endl;
        exit(-1);
    }

    try {

        // open the obj file
        string filename(argv[1]);
        objStream.open(filename.c_str());
        if (!objStream.is_open()) {
            cerr << "Error: cannot open file " << filename << endl;
            exit(1);
        }
        init();

        // create a new physical model
        pm = new PhysicalModel();
        pm->setName("PML for " + filename);

        // first pass: read the vertex, and build atoms
        pm->setAtoms(vertexToAtoms());

        // rewind
        objStream.clear(); // clear the ios::eof flag, etc...
        objStream.seekg(0, ios::beg); // rewind
        init();

        // second pass: read the facets and build the corresponding SC
        pm->setExclusiveComponents(new MultiComponent(nullptr, "Exclusive Components"));
        facetsToSC(pm->getExclusiveComponents());
        // close input
        objStream.close();

        // save the result in the pml file
        unsigned int pLast = filename.rfind(".");
        if (pLast != string::npos) {
            filename.erase(pLast);
            filename += ".pml";
        }
        else {
            filename += ".pml";
        }
        ofstream outputFile(filename.c_str());
        pm->xmlPrint(outputFile);

    }
    catch (const PMLAbortException& ae) {
        cerr << "AbortException: Physical model aborted:" << endl ;
        cerr << ae.what() << endl;
    }
}