-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcapmodel_nvm.cpp
60 lines (50 loc) · 1.18 KB
/
capmodel_nvm.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
/*
*
* Copyright (c) 2019 Mateusz 'mteg' Golicz
*
* Distributed under Apache License version 2.0
*
*/
#include <cstring>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include "capengine.h"
#include "capdebug.h"
int capModel::loadNvm(const char *filename, int append, capColor *rgba) {
unsigned int voffs = 0;
capNvm *nvm;
nvm = new capNvm(this->renderer, this);
if(!nvm->load(filename, 0)) {
/* We should already have an error message */
delete nvm;
return 0;
}
append = this->loadStart(filename, append);
if(append)
voffs = this->nv;
else
{
capDebug::report(1, "Deleting old model data");
this->unload();
}
this->flags &= ~CAMF_NORMALS;
this->reallocBuffers(this->nv + nvm->n_points, this->nt);
for(unsigned int i = 0; i<nvm->n_points; i++)
{
capVertex &p = v[i+voffs];
capNvmPoint &np = nvm->points[i];
p.x = np.x;
p.y = np.y;
p.z = np.z;
p.r = np.r;
p.g = np.g;
p.b = np.b;
vf[i+voffs] = 0;
}
if(!this->nvm)
this->nvm = nvm;
else
delete nvm;
return this->loadEnd();
}