-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsutils.cpp
111 lines (104 loc) · 3.07 KB
/
sutils.cpp
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
#include "sutils.h"
using namespace NM_SUtils;
#include <QFile>
#include <QDebug>
SUtils::SUtils()
{
}
bool SUtils::LoadPointsFromFile(Points &points, const char *filename) {
QFile f(filename);
if (!f.open(QIODevice::ReadOnly | QIODevice::Text)) {
qWarning()<< "Open " << filename << " failed.";
return false;
}
while (!f.atEnd()) {
QByteArray line = f.readLine();
if (line.startsWith("v ")) {
line.chop(1);
QList<QByteArray> list = line.split(' ');
point p;
p.x = list[1].toFloat();
p.y = list[2].toFloat();
p.z = list[3].toFloat();
points.append(p);
}
}
f.close();
return true;
}
bool SUtils::LoadFaceIndexFromFile(QList<int> &fa3, QList<int> &fa4, const char *filename)
{
QFile f(filename);
if (!f.open(QIODevice::ReadOnly | QIODevice::Text)) {
qWarning() <<"Open " << filename << "failed.";
return false;
}
while (!f.atEnd()) {
QByteArray line = f.readLine();
if (line.startsWith("f ")) {
line.chop(1);
QList<QByteArray> list = line.split(' ');
if (list.size()==4) {
for (int i=1; i<4; ++i)
fa3.append(list[i].toInt());
} else {
for (int i=1; i<5; ++i)
fa4.append(list[i].toInt());
}
}
}
f.close();
return true;
}
bool SUtils::LoadFaceIndexFromFile(QList<int> &fa3, QList<int> &va3, QList<int> &fa4, QList<int> &va4, const char *filename)
{
QFile f(filename);
if (!f.open(QIODevice::ReadOnly | QIODevice::Text)) {
qWarning() <<"Open " << filename << "failed.";
return false;
}
while (!f.atEnd()) {
QByteArray line = f.readLine();
if (line.startsWith("f ")) {
line.chop(1);
QList<QByteArray> list = line.split(' ');
if (list.size()==4) {
for (int i=1; i<4; ++i) {
QList<QByteArray> val = list[i].split('/');
fa3.append(val[0].toInt());
va3.append(val[2].toInt());
}
} else {
for (int i=1; i<5; ++i) {
QList<QByteArray> val = list[i].split('/');
fa4.append(val[0].toInt());
va4.append(val[2].toInt());
}
}
}
}
f.close();
return true;
}
bool SUtils::LoadNormalsFromFile(Points &points, const char *filename)
{
QFile f(filename);
if (!f.open(QIODevice::ReadOnly | QIODevice::Text)) {
qWarning()<< "Open " << filename << " failed.";
return false;
}
while (!f.atEnd()) {
QByteArray line = f.readLine();
if (line.startsWith("vn ")) {
line.chop(1);
QList<QByteArray> list = line.split(' ');
point p;
p.x = list[1].toFloat();
p.y = list[2].toFloat();
p.z = list[3].toFloat();
points.append(p);
}
}
f.close();
return true;
}