@loaders.gl/ply 3.1.3 → 4.0.0-alpha.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.js +2 -2
- package/dist/bundle.js.map +1 -0
- package/dist/dist.min.js +3 -11
- package/dist/index.js +11 -21
- package/dist/index.js.map +1 -0
- package/dist/lib/get-ply-schema.js +24 -33
- package/dist/lib/get-ply-schema.js.map +1 -0
- package/dist/lib/normalize-ply.js +65 -54
- package/dist/lib/normalize-ply.js.map +1 -0
- package/dist/lib/parse-ply-in-batches.d.ts.map +1 -1
- package/dist/lib/parse-ply-in-batches.js +200 -235
- package/dist/lib/parse-ply-in-batches.js.map +1 -0
- package/dist/lib/parse-ply.js +297 -320
- package/dist/lib/parse-ply.js.map +1 -0
- package/dist/lib/ply-types.js +2 -2
- package/dist/{es5/lib → lib}/ply-types.js.map +0 -0
- package/dist/ply-loader.js +18 -27
- package/dist/ply-loader.js.map +1 -0
- package/dist/ply-worker.js +1 -1
- package/dist/workers/ply-worker.js +4 -5
- package/dist/workers/ply-worker.js.map +1 -0
- package/package.json +7 -10
- package/src/lib/parse-ply-in-batches.ts +3 -4
- package/dist/es5/bundle.js +0 -7
- package/dist/es5/bundle.js.map +0 -1
- package/dist/es5/index.js +0 -63
- package/dist/es5/index.js.map +0 -1
- package/dist/es5/lib/get-ply-schema.js +0 -35
- package/dist/es5/lib/get-ply-schema.js.map +0 -1
- package/dist/es5/lib/normalize-ply.js +0 -78
- package/dist/es5/lib/normalize-ply.js.map +0 -1
- package/dist/es5/lib/parse-ply-in-batches.js +0 -370
- package/dist/es5/lib/parse-ply-in-batches.js.map +0 -1
- package/dist/es5/lib/parse-ply.js +0 -340
- package/dist/es5/lib/parse-ply.js.map +0 -1
- package/dist/es5/lib/ply-types.js +0 -2
- package/dist/es5/ply-loader.js +0 -27
- package/dist/es5/ply-loader.js.map +0 -1
- package/dist/es5/workers/ply-worker.js +0 -8
- package/dist/es5/workers/ply-worker.js.map +0 -1
- package/dist/esm/bundle.js +0 -5
- package/dist/esm/bundle.js.map +0 -1
- package/dist/esm/index.js +0 -12
- package/dist/esm/index.js.map +0 -1
- package/dist/esm/lib/get-ply-schema.js +0 -27
- package/dist/esm/lib/get-ply-schema.js.map +0 -1
- package/dist/esm/lib/normalize-ply.js +0 -69
- package/dist/esm/lib/normalize-ply.js.map +0 -1
- package/dist/esm/lib/parse-ply-in-batches.js +0 -218
- package/dist/esm/lib/parse-ply-in-batches.js.map +0 -1
- package/dist/esm/lib/parse-ply.js +0 -327
- package/dist/esm/lib/parse-ply.js.map +0 -1
- package/dist/esm/lib/ply-types.js +0 -2
- package/dist/esm/lib/ply-types.js.map +0 -1
- package/dist/esm/ply-loader.js +0 -19
- package/dist/esm/ply-loader.js.map +0 -1
- package/dist/esm/workers/ply-worker.js +0 -4
- package/dist/esm/workers/ply-worker.js.map +0 -1
|
@@ -1,253 +1,218 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
//
|
|
4
|
-
// Attributions per original THREE.js source file:
|
|
5
|
-
//
|
|
6
|
-
// @author Wei Meng / http://about.me/menway
|
|
7
|
-
//
|
|
8
|
-
// Description: A loader for PLY ASCII files (known as the Polygon File Format
|
|
9
|
-
// or the Stanford Triangle Format).
|
|
10
|
-
//
|
|
11
|
-
// Limitations: ASCII decoding assumes file is UTF-8.
|
|
12
|
-
//
|
|
13
|
-
// If the PLY file uses non standard property names, they can be mapped while
|
|
14
|
-
// loading. For example, the following maps the properties
|
|
15
|
-
// “diffuse_(red|green|blue)” in the file to standard color names.
|
|
16
|
-
//
|
|
17
|
-
// parsePLY(data, {
|
|
18
|
-
// propertyNameMapping: {
|
|
19
|
-
// diffuse_red: 'red',
|
|
20
|
-
// diffuse_green: 'green',
|
|
21
|
-
// diffuse_blue: 'blue'
|
|
22
|
-
// }
|
|
23
|
-
// });
|
|
24
|
-
// @ts-nocheck
|
|
25
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
27
|
-
};
|
|
28
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
-
const core_1 = require("@loaders.gl/core");
|
|
30
|
-
const normalize_ply_1 = __importDefault(require("./normalize-ply"));
|
|
1
|
+
import { makeLineIterator, makeTextDecoderIterator, forEach } from '@loaders.gl/loader-utils';
|
|
2
|
+
import normalizePLY from './normalize-ply';
|
|
31
3
|
let currentElement;
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
// attributes = await parseBinary(lineIterator, header);
|
|
48
|
-
}
|
|
49
|
-
yield (0, normalize_ply_1.default)(header, attributes, options);
|
|
4
|
+
export default async function* parsePLYInBatches(iterator, options) {
|
|
5
|
+
const lineIterator = makeLineIterator(makeTextDecoderIterator(iterator));
|
|
6
|
+
const header = await parsePLYHeader(lineIterator, options);
|
|
7
|
+
let attributes;
|
|
8
|
+
|
|
9
|
+
switch (header.format) {
|
|
10
|
+
case 'ascii':
|
|
11
|
+
attributes = await parseASCII(lineIterator, header);
|
|
12
|
+
break;
|
|
13
|
+
|
|
14
|
+
default:
|
|
15
|
+
throw new Error('Binary PLY can not yet be parsed in streaming mode');
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
yield normalizePLY(header, attributes, options);
|
|
50
19
|
}
|
|
51
|
-
|
|
52
|
-
/**
|
|
53
|
-
* Parses header
|
|
54
|
-
* @param lineIterator
|
|
55
|
-
* @param options
|
|
56
|
-
* @returns
|
|
57
|
-
*/
|
|
20
|
+
|
|
58
21
|
async function parsePLYHeader(lineIterator, options) {
|
|
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
|
-
currentElement = {
|
|
96
|
-
name: lineValues[0],
|
|
97
|
-
count: parseInt(lineValues[1], 10),
|
|
98
|
-
properties: []
|
|
99
|
-
};
|
|
100
|
-
break;
|
|
101
|
-
case 'property':
|
|
102
|
-
const property = makePLYElementProperty(lineValues, options.propertyNameMapping);
|
|
103
|
-
currentElement.properties.push(property);
|
|
104
|
-
break;
|
|
105
|
-
default:
|
|
106
|
-
// eslint-disable-next-line
|
|
107
|
-
console.log('unhandled', lineType, lineValues);
|
|
22
|
+
const header = {
|
|
23
|
+
comments: [],
|
|
24
|
+
elements: []
|
|
25
|
+
};
|
|
26
|
+
await forEach(lineIterator, line => {
|
|
27
|
+
line = line.trim();
|
|
28
|
+
|
|
29
|
+
if (line === 'end_header') {
|
|
30
|
+
return true;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
if (line === '') {
|
|
34
|
+
return false;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
const lineValues = line.split(/\s+/);
|
|
38
|
+
const lineType = lineValues.shift();
|
|
39
|
+
line = lineValues.join(' ');
|
|
40
|
+
|
|
41
|
+
switch (lineType) {
|
|
42
|
+
case 'ply':
|
|
43
|
+
break;
|
|
44
|
+
|
|
45
|
+
case 'format':
|
|
46
|
+
header.format = lineValues[0];
|
|
47
|
+
header.version = lineValues[1];
|
|
48
|
+
break;
|
|
49
|
+
|
|
50
|
+
case 'comment':
|
|
51
|
+
header.comments.push(line);
|
|
52
|
+
break;
|
|
53
|
+
|
|
54
|
+
case 'element':
|
|
55
|
+
if (currentElement) {
|
|
56
|
+
header.elements.push(currentElement);
|
|
108
57
|
}
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
58
|
+
|
|
59
|
+
currentElement = {
|
|
60
|
+
name: lineValues[0],
|
|
61
|
+
count: parseInt(lineValues[1], 10),
|
|
62
|
+
properties: []
|
|
63
|
+
};
|
|
64
|
+
break;
|
|
65
|
+
|
|
66
|
+
case 'property':
|
|
67
|
+
const property = makePLYElementProperty(lineValues, options.propertyNameMapping);
|
|
68
|
+
currentElement.properties.push(property);
|
|
69
|
+
break;
|
|
70
|
+
|
|
71
|
+
default:
|
|
72
|
+
console.log('unhandled', lineType, lineValues);
|
|
113
73
|
}
|
|
114
|
-
|
|
74
|
+
|
|
75
|
+
return false;
|
|
76
|
+
});
|
|
77
|
+
|
|
78
|
+
if (currentElement) {
|
|
79
|
+
header.elements.push(currentElement);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
return header;
|
|
115
83
|
}
|
|
84
|
+
|
|
116
85
|
function makePLYElementProperty(propertValues, propertyNameMapping) {
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
86
|
+
const property = {
|
|
87
|
+
type: propertValues[0]
|
|
88
|
+
};
|
|
89
|
+
|
|
90
|
+
if (property.type === 'list') {
|
|
91
|
+
property.name = propertValues[3];
|
|
92
|
+
property.countType = propertValues[1];
|
|
93
|
+
property.itemType = propertValues[2];
|
|
94
|
+
} else {
|
|
95
|
+
property.name = propertValues[1];
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
if (propertyNameMapping && property.name in propertyNameMapping) {
|
|
99
|
+
property.name = propertyNameMapping[property.name];
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
return property;
|
|
132
103
|
}
|
|
133
|
-
|
|
134
|
-
/**
|
|
135
|
-
* @param lineIterator
|
|
136
|
-
* @param header
|
|
137
|
-
* @returns
|
|
138
|
-
*/
|
|
104
|
+
|
|
139
105
|
async function parseASCII(lineIterator, header) {
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
106
|
+
const attributes = {
|
|
107
|
+
indices: [],
|
|
108
|
+
vertices: [],
|
|
109
|
+
normals: [],
|
|
110
|
+
uvs: [],
|
|
111
|
+
colors: []
|
|
112
|
+
};
|
|
113
|
+
let currentElement = 0;
|
|
114
|
+
let currentElementCount = 0;
|
|
115
|
+
|
|
116
|
+
for await (let line of lineIterator) {
|
|
117
|
+
line = line.trim();
|
|
118
|
+
|
|
119
|
+
if (line !== '') {
|
|
120
|
+
if (currentElementCount >= header.elements[currentElement].count) {
|
|
121
|
+
currentElement++;
|
|
122
|
+
currentElementCount = 0;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
const element = parseASCIIElement(header.elements[currentElement].properties, line);
|
|
126
|
+
handleElement(attributes, header.elements[currentElement].name, element);
|
|
127
|
+
currentElementCount++;
|
|
161
128
|
}
|
|
162
|
-
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
return attributes;
|
|
163
132
|
}
|
|
164
|
-
|
|
165
|
-
* Parses ASCII number
|
|
166
|
-
* @param n
|
|
167
|
-
* @param type
|
|
168
|
-
* @returns ASCII number
|
|
169
|
-
*/
|
|
170
|
-
// eslint-disable-next-line complexity
|
|
133
|
+
|
|
171
134
|
function parseASCIINumber(n, type) {
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
135
|
+
switch (type) {
|
|
136
|
+
case 'char':
|
|
137
|
+
case 'uchar':
|
|
138
|
+
case 'short':
|
|
139
|
+
case 'ushort':
|
|
140
|
+
case 'int':
|
|
141
|
+
case 'uint':
|
|
142
|
+
case 'int8':
|
|
143
|
+
case 'uint8':
|
|
144
|
+
case 'int16':
|
|
145
|
+
case 'uint16':
|
|
146
|
+
case 'int32':
|
|
147
|
+
case 'uint32':
|
|
148
|
+
return parseInt(n, 10);
|
|
149
|
+
|
|
150
|
+
case 'float':
|
|
151
|
+
case 'double':
|
|
152
|
+
case 'float32':
|
|
153
|
+
case 'float64':
|
|
154
|
+
return parseFloat(n);
|
|
155
|
+
|
|
156
|
+
default:
|
|
157
|
+
throw new Error(type);
|
|
158
|
+
}
|
|
194
159
|
}
|
|
195
|
-
|
|
196
|
-
* Parses ASCII element
|
|
197
|
-
* @param properties
|
|
198
|
-
* @param line
|
|
199
|
-
* @returns element
|
|
200
|
-
*/
|
|
160
|
+
|
|
201
161
|
function parseASCIIElement(properties, line) {
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
162
|
+
const values = line.split(/\s+/);
|
|
163
|
+
const element = {};
|
|
164
|
+
|
|
165
|
+
for (let i = 0; i < properties.length; i++) {
|
|
166
|
+
if (properties[i].type === 'list') {
|
|
167
|
+
const list = [];
|
|
168
|
+
const n = parseASCIINumber(values.shift(), properties[i].countType);
|
|
169
|
+
|
|
170
|
+
for (let j = 0; j < n; j++) {
|
|
171
|
+
list.push(parseASCIINumber(values.shift(), properties[i].itemType));
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
element[properties[i].name] = list;
|
|
175
|
+
} else {
|
|
176
|
+
element[properties[i].name] = parseASCIINumber(values.shift(), properties[i].type);
|
|
216
177
|
}
|
|
217
|
-
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
return element;
|
|
218
181
|
}
|
|
219
|
-
|
|
220
|
-
* @param buffer
|
|
221
|
-
* @param elementName
|
|
222
|
-
* @param element
|
|
223
|
-
*/
|
|
224
|
-
// HELPER FUNCTIONS
|
|
225
|
-
// eslint-disable-next-line complexity
|
|
182
|
+
|
|
226
183
|
function handleElement(buffer, elementName, element = {}) {
|
|
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
|
-
|
|
184
|
+
switch (elementName) {
|
|
185
|
+
case 'vertex':
|
|
186
|
+
buffer.vertices.push(element.x, element.y, element.z);
|
|
187
|
+
|
|
188
|
+
if ('nx' in element && 'ny' in element && 'nz' in element) {
|
|
189
|
+
buffer.normals.push(element.nx, element.ny, element.nz);
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
if ('s' in element && 't' in element) {
|
|
193
|
+
buffer.uvs.push(element.s, element.t);
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
if ('red' in element && 'green' in element && 'blue' in element) {
|
|
197
|
+
buffer.colors.push(element.red / 255.0, element.green / 255.0, element.blue / 255.0);
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
break;
|
|
201
|
+
|
|
202
|
+
case 'face':
|
|
203
|
+
const vertexIndices = element.vertex_indices || element.vertex_index;
|
|
204
|
+
|
|
205
|
+
if (vertexIndices.length === 3) {
|
|
206
|
+
buffer.indices.push(vertexIndices[0], vertexIndices[1], vertexIndices[2]);
|
|
207
|
+
} else if (vertexIndices.length === 4) {
|
|
208
|
+
buffer.indices.push(vertexIndices[0], vertexIndices[1], vertexIndices[3]);
|
|
209
|
+
buffer.indices.push(vertexIndices[1], vertexIndices[2], vertexIndices[3]);
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
break;
|
|
213
|
+
|
|
214
|
+
default:
|
|
215
|
+
break;
|
|
216
|
+
}
|
|
253
217
|
}
|
|
218
|
+
//# sourceMappingURL=parse-ply-in-batches.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/lib/parse-ply-in-batches.ts"],"names":["makeLineIterator","makeTextDecoderIterator","forEach","normalizePLY","currentElement","parsePLYInBatches","iterator","options","lineIterator","header","parsePLYHeader","attributes","format","parseASCII","Error","comments","elements","line","trim","lineValues","split","lineType","shift","join","version","push","name","count","parseInt","properties","property","makePLYElementProperty","propertyNameMapping","console","log","propertValues","type","countType","itemType","indices","vertices","normals","uvs","colors","currentElementCount","element","parseASCIIElement","handleElement","parseASCIINumber","n","parseFloat","values","i","length","list","j","buffer","elementName","x","y","z","nx","ny","nz","s","t","red","green","blue","vertexIndices","vertex_indices","vertex_index"],"mappings":"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","sourcesContent":["// PLY Loader, adapted from THREE.js (MIT license)\n//\n// Attributions per original THREE.js source file:\n//\n// @author Wei Meng / http://about.me/menway\n//\n// Description: A loader for PLY ASCII files (known as the Polygon File Format\n// or the Stanford Triangle Format).\n//\n// Limitations: ASCII decoding assumes file is UTF-8.\n//\n// If the PLY file uses non standard property names, they can be mapped while\n// loading. For example, the following maps the properties\n// “diffuse_(red|green|blue)” in the file to standard color names.\n//\n// parsePLY(data, {\n// propertyNameMapping: {\n// diffuse_red: 'red',\n// diffuse_green: 'green',\n// diffuse_blue: 'blue'\n// }\n// });\n\nimport {makeLineIterator, makeTextDecoderIterator, forEach} from '@loaders.gl/loader-utils';\nimport normalizePLY from './normalize-ply';\nimport {PLYMesh, PLYHeader, ASCIIElement, PLYAttributes} from './ply-types';\n\nlet currentElement: ASCIIElement;\n\n/**\n * PARSER\n * @param iterator\n * @param options\n */\nexport default async function* parsePLYInBatches(\n iterator: AsyncIterable<ArrayBuffer> | Iterable<ArrayBuffer>,\n options: any\n): AsyncIterable<PLYMesh> {\n const lineIterator = makeLineIterator(makeTextDecoderIterator(iterator));\n const header = await parsePLYHeader(lineIterator, options);\n\n let attributes: PLYAttributes;\n switch (header.format) {\n case 'ascii':\n attributes = await parseASCII(lineIterator, header);\n break;\n default:\n throw new Error('Binary PLY can not yet be parsed in streaming mode');\n // attributes = await parseBinary(lineIterator, header);\n }\n\n yield normalizePLY(header, attributes, options);\n}\n\n/**\n * Parses header\n * @param lineIterator\n * @param options\n * @returns\n */\nasync function parsePLYHeader(\n lineIterator: AsyncIterable<string> | Iterable<string>,\n options: {[key: string]: any}\n): Promise<PLYHeader> {\n const header: PLYHeader = {\n comments: [],\n elements: []\n // headerLength\n };\n\n // Note: forEach does not reset iterator if exiting loop prematurely\n // so that iteration can continue in a second loop\n await forEach(lineIterator, (line: string) => {\n line = line.trim();\n\n // End of header\n if (line === 'end_header') {\n return true; // Returning true cancels `forEach`\n }\n\n // Ignore empty lines\n if (line === '') {\n // eslint-disable-next-line\n return false; // Returning false does not cancel `forEach`\n }\n\n const lineValues = line.split(/\\s+/);\n const lineType = lineValues.shift();\n line = lineValues.join(' ');\n\n switch (lineType) {\n case 'ply':\n // First line magic characters, ignore\n break;\n\n case 'format':\n header.format = lineValues[0];\n header.version = lineValues[1];\n break;\n\n case 'comment':\n header.comments.push(line);\n break;\n\n case 'element':\n if (currentElement) {\n header.elements.push(currentElement);\n }\n\n currentElement = {\n name: lineValues[0],\n count: parseInt(lineValues[1], 10),\n properties: []\n };\n break;\n\n case 'property':\n const property = makePLYElementProperty(lineValues, options.propertyNameMapping);\n currentElement.properties.push(property);\n break;\n\n default:\n // eslint-disable-next-line\n console.log('unhandled', lineType, lineValues);\n }\n\n return false;\n });\n\n if (currentElement) {\n header.elements.push(currentElement);\n }\n\n return header;\n}\n\nfunction makePLYElementProperty(propertValues: string[], propertyNameMapping: []) {\n const property: {[index: string]: string} = {\n type: propertValues[0]\n };\n\n if (property.type === 'list') {\n property.name = propertValues[3];\n property.countType = propertValues[1];\n property.itemType = propertValues[2];\n } else {\n property.name = propertValues[1];\n }\n\n if (propertyNameMapping && property.name in propertyNameMapping) {\n property.name = propertyNameMapping[property.name];\n }\n\n return property;\n}\n\n// ASCII PARSING\n/**\n * @param lineIterator\n * @param header\n * @returns\n */\nasync function parseASCII(lineIterator: AsyncIterable<string>, header: PLYHeader) {\n // PLY ascii format specification, as per http://en.wikipedia.org/wiki/PLY_(file_format)\n const attributes: PLYAttributes = {\n indices: [],\n vertices: [],\n normals: [],\n uvs: [],\n colors: []\n };\n\n let currentElement = 0;\n let currentElementCount = 0;\n\n for await (let line of lineIterator) {\n line = line.trim();\n\n if (line !== '') {\n if (currentElementCount >= header.elements[currentElement].count) {\n currentElement++;\n currentElementCount = 0;\n }\n\n const element = parseASCIIElement(header.elements[currentElement].properties, line);\n handleElement(attributes, header.elements[currentElement].name, element);\n currentElementCount++;\n }\n }\n\n return attributes;\n}\n/**\n * Parses ASCII number\n * @param n\n * @param type\n * @returns ASCII number\n */\n// eslint-disable-next-line complexity\nfunction parseASCIINumber(n: string, type: string): number {\n switch (type) {\n case 'char':\n case 'uchar':\n case 'short':\n case 'ushort':\n case 'int':\n case 'uint':\n case 'int8':\n case 'uint8':\n case 'int16':\n case 'uint16':\n case 'int32':\n case 'uint32':\n return parseInt(n, 10);\n\n case 'float':\n case 'double':\n case 'float32':\n case 'float64':\n return parseFloat(n);\n\n default:\n throw new Error(type);\n }\n}\n/**\n * Parses ASCII element\n * @param properties\n * @param line\n * @returns element\n */\nfunction parseASCIIElement(properties: any[], line: string) {\n const values: any = line.split(/\\s+/);\n\n const element = {};\n\n for (let i = 0; i < properties.length; i++) {\n if (properties[i].type === 'list') {\n const list: any = [];\n const n = parseASCIINumber(values.shift(), properties[i].countType);\n\n for (let j = 0; j < n; j++) {\n list.push(parseASCIINumber(values.shift(), properties[i].itemType));\n }\n\n element[properties[i].name] = list;\n } else {\n element[properties[i].name] = parseASCIINumber(values.shift(), properties[i].type);\n }\n }\n\n return element;\n}\n/**\n * @param buffer\n * @param elementName\n * @param element\n */\n// HELPER FUNCTIONS\n// eslint-disable-next-line complexity\nfunction handleElement(\n buffer: {[index: string]: number[]},\n elementName: string,\n element: any = {}\n) {\n switch (elementName) {\n case 'vertex':\n buffer.vertices.push(element.x, element.y, element.z);\n if ('nx' in element && 'ny' in element && 'nz' in element) {\n buffer.normals.push(element.nx, element.ny, element.nz);\n }\n if ('s' in element && 't' in element) {\n buffer.uvs.push(element.s, element.t);\n }\n if ('red' in element && 'green' in element && 'blue' in element) {\n buffer.colors.push(element.red / 255.0, element.green / 255.0, element.blue / 255.0);\n }\n break;\n\n case 'face':\n const vertexIndices = element.vertex_indices || element.vertex_index; // issue #9338\n if (vertexIndices.length === 3) {\n buffer.indices.push(vertexIndices[0], vertexIndices[1], vertexIndices[2]);\n } else if (vertexIndices.length === 4) {\n buffer.indices.push(vertexIndices[0], vertexIndices[1], vertexIndices[3]);\n buffer.indices.push(vertexIndices[1], vertexIndices[2], vertexIndices[3]);\n }\n break;\n\n default:\n break;\n }\n}\n"],"file":"parse-ply-in-batches.js"}
|