-
Notifications
You must be signed in to change notification settings - Fork 12
/
ply.js
236 lines (181 loc) · 8.99 KB
/
ply.js
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
// PLY object
function PLY() { this.object; }
// Path to the folder where models are stored
var ModelFolderPath = "http://localhost/tigrisgames.com/fx/model/";
// Number of vertices in PLY file
var PLY_Vertices = 0;
// Number of faces in PLY file
var PLY_Faces = 0;
// For skipping header
var ReadingPLYData = false;
// 11 entries per vertex (x,y,z,nx,ny,nz,r,g,b,u,v)
var PLY_DataLenght = 11;
var FaceIndex = 0;
// PLY file vertex entry format
function PLY_Vertex(x, y, z, nx, ny, nz, u, v, r, g, b) {
this.x = 0; // a_Position
this.y = 0;
this.z = 0;
this.nx= 0; // a_Normal
this.ny= 0;
this.nz= 0;
this.u = 0; // a_Texture
this.v = 0;
this.r = 0; // a_Color
this.g = 0;
this.b = 0;
}
// PLY file face consisting of 3 vertex indices for each face
function PLY_Face(a, b, c) {
this.a = a;
this.b = b;
this.c = c;
}
// Load PLY function;
function LoadPLY(filename)
{
var vertices = null;
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == XMLHttpRequest.DONE) {
if (xmlhttp.status == 200) {
var data = xmlhttp.responseText;
var lines = data.split("\n");
var PLY_index = 0;
var arrayVertex, arrayNormal, arrayTexture, arrayColor, arrayIndex;
var vertices = null;
var faces = null;
console.log("PLY number of lines = " + lines.length);
var idx = 0;
for (var i = 0; i < lines.length; i++)
{
if (ReadingPLYData)
{
var e = lines[i].split(" ");
// Read vertices
if (PLY_index < PLY_Vertices) {
vertices[PLY_index] = new PLY_Vertex();
vertices[PLY_index].x = e[0];
vertices[PLY_index].y = e[1];
vertices[PLY_index].z = e[2];
vertices[PLY_index].nx = e[3];
vertices[PLY_index].ny = e[4];
vertices[PLY_index].nz = e[5];
vertices[PLY_index].u = e[6];
vertices[PLY_index].v = e[7];
vertices[PLY_index].r = e[8] / 255.0; // convert
vertices[PLY_index].g = e[9] / 255.0; // to 0.0-1.0
vertices[PLY_index].b = e[10] / 255.0; // range
// Read faces
} else {
// Reset index for building VAOs
if (PLY_index == PLY_Vertices) {
FaceIndex = 0;
}
// Wire face data to appropriate vertices
var n = e[0]; // unused, always 3; assumes triangulated models only
var a = e[1]; // face vertex A
var b = e[2]; // face vertex B
var c = e[3]; // face vertex C
if (FaceIndex < PLY_Faces)
{
// We don't really have to *store* face data
// faces[FaceIndex] = new PLY_Face(a, b, c);
// vertices
arrayVertex.push(vertices[a].x);
arrayVertex.push(vertices[a].y);
arrayVertex.push(vertices[a].z);
arrayVertex.push(vertices[b].x);
arrayVertex.push(vertices[b].y);
arrayVertex.push(vertices[b].z);
arrayVertex.push(vertices[c].x);
arrayVertex.push(vertices[c].y);
arrayVertex.push(vertices[c].z);
// normals
arrayNormal.push(vertices[a].nx);
arrayNormal.push(vertices[a].ny);
arrayNormal.push(vertices[a].nz);
arrayNormal.push(vertices[b].nx);
arrayNormal.push(vertices[b].ny);
arrayNormal.push(vertices[b].nz);
arrayNormal.push(vertices[c].nx);
arrayNormal.push(vertices[c].ny);
arrayNormal.push(vertices[c].nz);
// colors
arrayColor.push(vertices[a].r );
arrayColor.push(vertices[a].g);
arrayColor.push(vertices[a].b);
arrayColor.push(vertices[b].r);
arrayColor.push(vertices[b].g);
arrayColor.push(vertices[b].b);
arrayColor.push(vertices[c].r);
arrayColor.push(vertices[c].g);
arrayColor.push(vertices[c].b);
// uv
arrayTexture.push(vertices[a].u);
arrayTexture.push(vertices[a].v);
arrayTexture.push(vertices[b].u);
arrayTexture.push(vertices[b].v);
arrayTexture.push(vertices[c].u);
arrayTexture.push(vertices[c].v);
// index
arrayIndex.push(idx+0);
arrayIndex.push(idx+1);
arrayIndex.push(idx+2);
idx += 3;
}
FaceIndex++;
}
PLY_index++;
} else { // Still reading header...
// Read number of vertices stored in the file
if (lines[i].substr(0, "element vertex".length) == "element vertex")
PLY_Vertices = lines[i].split(" ")[2];
// Read number of faces stored in the file
if (lines[i].substr(0, "element face".length) == "element face")
PLY_Faces = lines[i].split(" ")[2];
}
// Finished reading header data, prepare for reading vertex data
if (lines[i] == "end_header") {
// Allocate enough space for vertices
vertices = new Array(PLY_Vertices);
// Allocate enough space for faces
faces = new Array(PLY_Faces);
// Allocate memory for returned arrays (VAOs)
arrayVertex = new Array(); // PLY_Vertices * 3
arrayNormal = new Array(); // PLY_Vertices * 3
arrayTexture = new Array(); // PLY_Vertices * 2
arrayColor = new Array(); // PLY_Vertices * 3
arrayIndex = new Array(); // PLY_Vertices * 1
ReadingPLYData = true;
}
}
console.log("PLY_Vertices = " + PLY_Vertices + " loaded");
console.log("PLY_Faces = " + PLY_Faces + " loaded");
console.log("arrayVertex length = " + arrayVertex.length);
console.log("arrayNormal length = " + arrayNormal.length);
console.log("arrayTexture length = " + arrayTexture.length);
console.log("arrayColor length = " + arrayColor.length);
console.log("arrayIndex length = " + arrayIndex.length);
// We now have both complete vertex and face data loaded;
// return everything we loaded as Float32Array & Uint16Array for index
window.ref_arrayMDL = [
new Float32Array(arrayVertex),
new Float32Array(arrayColor),
new Float32Array(arrayTexture),
new Float32Array(arrayNormal),
new Uint16Array(arrayIndex)
];
// Todo: read list of models in "models" folder and count them.
// Todo: if current_model >= total_models set ModelsLoaded to true
// We are currently only loading one model with this function, so this is sufficient
// But needs to be rewritten to test for asynchronous load
window.ModelsLoaded = true;
console.log("All models have finished loading... Ok.");
}
}
};
console.log("Loading Model <" + filename + ">...");
xmlhttp.open("GET", ModelFolderPath + filename, true);
xmlhttp.send();
}