vcglib/apps/nexus/nxsedit.cpp

527 lines
15 KiB
C++
Raw Normal View History

2005-02-08 13:43:03 +01:00
/****************************************************************************
* VCGLib o o *
* Visual and Computer Graphics Library o o *
* _ O _ *
* Copyright(C) 2004 \/)\/ *
* Visual Computing Lab /\/| *
* ISTI - Italian National Research Council | *
* \ *
* All rights reserved. *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program 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 General Public License (http://www.gnu.org/licenses/gpl.txt) *
* for more details. *
* *
****************************************************************************/
/****************************************************************************
History
$Log: not supported by cvs2svn $
2005-02-18 14:04:13 +01:00
Revision 1.18 2005/02/08 12:43:03 ponchio
Added copyright
2005-02-08 13:43:03 +01:00
****************************************************************************/
2004-10-30 22:17:03 +02:00
#ifdef WIN32
#include <wrap/system/getopt.h>
#else
#include <unistd.h>
#endif
#include <assert.h>
2004-09-30 03:24:45 +02:00
#include <iostream>
2004-10-30 22:17:03 +02:00
#include <vcg/simplex/vertex/with/vc.h>
#include <vcg/simplex/face/face.h>
#include <vcg/complex/trimesh/base.h>
//WARNING WARNING this must be included AFTER mesh includes....
#include <wrap/io_trimesh/import_ply.h>
#include <vcg/space/index/grid_static_ptr.h>
2004-09-30 03:24:45 +02:00
2004-10-01 01:56:33 +02:00
#include "nxsalgo.h"
2004-09-30 03:24:45 +02:00
#include "nexus.h"
2004-10-21 14:22:21 +02:00
#include "watch.h"
2004-09-30 03:24:45 +02:00
using namespace nxs;
using namespace vcg;
2004-10-30 22:17:03 +02:00
using namespace std;
using namespace tri;
2004-09-30 03:24:45 +02:00
2004-10-30 22:17:03 +02:00
class CFace;
2004-09-30 03:24:45 +02:00
2004-10-30 22:17:03 +02:00
class CVertex: public VertexVCf<DUMMYEDGETYPE,CFace ,DUMMYTETRATYPE> {};
2004-10-11 18:03:18 +02:00
2004-10-30 22:17:03 +02:00
class CFace: public Face<CVertex, DUMMYEDGETYPE , CFace>{};
class CMesh: public tri::TriMesh<vector<CVertex>, vector<CFace> > {};
2004-10-11 18:03:18 +02:00
2004-10-01 18:54:57 +02:00
string getSuffix(unsigned int signature) {
string suff;
if(signature&NXS_COMPRESSED) suff += "Z";
if(signature&NXS_STRIP) suff += "S";
if(signature&NXS_COLORS) suff += "C";
if(signature&NXS_NORMALS_SHORT) suff += "N";
if(signature&NXS_TEXTURES_SHORT) suff += "T";
if(signature&NXS_DATA32) suff += "D";
return suff;
}
2004-09-30 03:24:45 +02:00
int main(int argc, char *argv[]) {
string input;
string output;
string plysource;
bool info = false;
2005-01-21 18:09:13 +01:00
bool verbose = false;
2004-10-10 19:19:42 +02:00
unsigned int ram_size = 128000000;
unsigned int chunk_size = 0;
2004-09-30 03:24:45 +02:00
unsigned int add = 0;
bool add_strip = false;
bool add_colors = false;
bool add_normals = false;
bool add_textures = false;
bool add_data = false;
unsigned int remove = 0;
bool remove_strip = false;
bool remove_colors = false;
bool remove_normals = false;
bool remove_textures = false;
bool remove_data = false;
bool compress = false;
bool uncompress = false;
float qvertex = 0;
float qnormal = 0;
float qcolor = 0;
float qtexture = 0;
2005-02-18 14:04:13 +01:00
bool zsort = false;
2004-09-30 03:24:45 +02:00
int option;
2005-02-18 14:04:13 +01:00
while((option = getopt(argc, argv, "ilo:a:r:zxsv:n:k:t:b:c:")) != EOF) {
2004-09-30 03:24:45 +02:00
switch(option) {
case 'i': info = true; break;
2005-01-21 18:09:13 +01:00
case 'l': verbose = true; break;
2004-09-30 03:24:45 +02:00
case 'o': output = optarg; break;
case 'a': {
if(strstr(optarg, "strip")) {
add_strip = true;
add |= NXS_STRIP;
remove |= NXS_FACES;
}
if(strstr(optarg, "colors")) {
add_colors = true;
add |= NXS_COLORS;
}
if(strstr(optarg, "normals")) {
add_normals = true;
add |= NXS_NORMALS_SHORT;
}
if(strstr(optarg, "textures")) {
add_textures = true;
add |= NXS_TEXTURES_SHORT;
}
if(strstr(optarg, "data")) {
add_data = true;
add |= NXS_DATA32;
}
if(add == 0) {
cerr << "Invalid -a argument: " << optarg << "\n"
<< "Valid options are: strip, colors, normals, textures, data\n";
return -1;
}
break;
}
case 'r': {
if(strstr(optarg, "strip")) {
cerr << "Strip reming not supported!\n";
return -1;
remove_strip = true;
add |= NXS_FACES;
remove |= NXS_STRIP;
}
if(strstr(optarg, "colors")) {
remove_colors = true;
remove |= NXS_COLORS;
}
if(strstr(optarg, "normals")) {
remove_normals = true;
remove |= NXS_NORMALS_SHORT;
}
if(strstr(optarg, "textures")) {
remove_textures = true;
remove |= NXS_TEXTURES_SHORT;
}
if(strstr(optarg, "data")) {
remove_data = true;
remove |= NXS_DATA32;
}
if(remove == 0) {
cerr << "Invalid -a argument: " << optarg << "\n"
<< "Valid options are: strip, colors, normals, textures, data\n";
return -1;
}
break;
}
case 'p': plysource = optarg; break;
case 'z': compress = true; break;
case 'x': uncompress = true; break;
2005-02-18 14:04:13 +01:00
case 's': zsort = true; break;
2004-09-30 03:24:45 +02:00
2004-10-21 15:40:16 +02:00
case 'v': qvertex = (float)atof(optarg);
2004-09-30 03:24:45 +02:00
if(qvertex == 0) {
cerr << "Invalid value for quantization: " << optarg << endl;
return -1;
}
break;
2004-10-21 15:40:16 +02:00
case 'n': qnormal = (float)atof(optarg);
2004-09-30 03:24:45 +02:00
if(qnormal == 0) {
cerr << "Invalid value for quantization: " << optarg << endl;
return -1;
}
break;
2004-10-21 15:40:16 +02:00
case 'k': qcolor = (float)atof(optarg);
2004-09-30 03:24:45 +02:00
if(qcolor == 0) {
cerr << "Invalid value for quantization: " << optarg << endl;
return -1;
}
break;
2004-10-21 15:40:16 +02:00
case 't': qtexture = (float)atof(optarg);
2004-09-30 03:24:45 +02:00
if(qtexture == 0) {
cerr << "Invalid value for quantization: " << optarg << endl;
return -1;
}
break;
2004-10-10 19:19:42 +02:00
case 'b': ram_size = atoi(optarg);
if(ram_size == 0) {
cerr << "Invalid ram_size: " << optarg << endl;
return -1;
}
break;
case 'c': chunk_size = atoi(optarg);
if(chunk_size == 0) {
cerr << "Invalid chunk_size: " << optarg << endl;
return -1;
}
break;
2004-09-30 03:24:45 +02:00
default: cerr << "Unknown option: " << (char)option << endl;
return -1;
}
}
if(compress && uncompress) {
cerr << "x and z are obviously exclusive :P\n";
return -1;
}
if(optind != argc - 1) {
cerr << "Usage: " << argv[0] << " <nexus file> [options]\n"
<< " -i : display some info about nexus file\n"
2005-01-21 18:09:13 +01:00
<< " -l : list nodes\n"
2004-09-30 03:24:45 +02:00
<< " -o <file>: output filename (default is adding 00 to nexus)\n"
<< " -a <what>: Add [colors|normals|strip|textures|data|borders]\n"
<< " -r <what>: As add...\n"
<< " -p <ply> : Ply source for colors or textures or data\n"
<< " -z : compress\n"
<< " -x : uncompress\n"
2005-02-18 14:04:13 +01:00
<< " -s : sort using zcurve\n"
2004-09-30 03:24:45 +02:00
<< " -v<float>: Vertex quantization (float is the 0 level amount)\n"
<< " -n<float>: Normal quantization\n"
<< " -c<float>: Color quantization\n"
<< " -t<float>: Texture quantization\n\n";
2004-10-01 18:54:57 +02:00
return -1;
2004-09-30 03:24:45 +02:00
}
input = argv[optind];
2004-10-01 18:54:57 +02:00
2004-09-30 03:24:45 +02:00
Nexus nexus;
2004-12-15 17:37:55 +01:00
2004-10-10 19:19:42 +02:00
if(!nexus.Load(input, true)) {
2004-10-21 14:22:21 +02:00
cerr << "Could not open nexus file: " << input << "\n";
2004-09-30 03:24:45 +02:00
return -1;
}
2005-01-14 16:25:29 +01:00
nexus.MaxRam() = ram_size / nexus.chunk_size;
2004-09-30 03:24:45 +02:00
2004-10-10 19:19:42 +02:00
2004-09-30 03:24:45 +02:00
//Sanity tests
if(remove_strip && !(nexus.signature & NXS_STRIP)) {
cerr << "Nexus file does not have strips\n";
return -1;
}
if(remove_colors && !(nexus.signature & NXS_COLORS)) {
cerr << "Nexus file does not have colors\n";
return -1;
}
if(remove_normals && !(nexus.signature & NXS_NORMALS_SHORT)) {
cerr << "Nexus file does not have normals\n";
return -1;
}
if(remove_textures && !(nexus.signature & NXS_TEXTURES_SHORT)) {
cerr << "Nexus file does not have textures\n";
return -1;
}
if(remove_data && !(nexus.signature & NXS_DATA32)) {
cerr << "Nexus file does not have data\n";
return -1;
}
if(nexus.IsCompressed() && compress) {
cerr << "File already compressed.\n";
return -1;
}
if(!nexus.IsCompressed() && uncompress) {
cerr << "File not compressed.\n";
return -1;
}
if(info) {
2005-02-18 14:04:13 +01:00
//perform locality statistics
double meandist = 0;
vcg::Sphere3f last = nexus[0].sphere;
for(unsigned int i = 1; i < nexus.size(); i++) {
vcg::Sphere3f &sphere = nexus[i].sphere;
double dist = vcg::Distance(last.Center(), sphere.Center());
meandist += dist;
last = sphere;
}
meandist /= nexus.size() -1;
cout << "Nexus file: " << input << "\n"
2004-09-30 03:24:45 +02:00
<< "\n\tCompressed: " << nexus.IsCompressed()
<< "\n\tStripped: " << (int)((nexus.signature&NXS_STRIP) !=0)
<< "\n\tColor : " << (int)((nexus.signature&NXS_COLORS) !=0)
<< "\n\tNormal : " << (int)((nexus.signature&NXS_NORMALS_SHORT) !=0)
<< "\n\tTexture : " << (int)((nexus.signature&NXS_TEXTURES_SHORT) !=0)
<< "\n\tData : " << (int)((nexus.signature&NXS_DATA32) !=0)
<< "\n\n\tVertices: " << nexus.totvert
<< "\tFaces: " << nexus.totface
2005-01-14 16:25:29 +01:00
<< "\tPatches: " << nexus.size()
2004-10-11 18:03:18 +02:00
<< "\n\tSphere: "
<< nexus.sphere.Center()[0] << " "
<< nexus.sphere.Center()[1] << " "
<< nexus.sphere.Center()[2] << " R: "
<< nexus.sphere.Radius()
2005-02-18 14:04:13 +01:00
<< "\n\tAverage distance: " << meandist
2004-10-11 18:03:18 +02:00
<< "\n\tChunk size " << nexus.chunk_size << endl;
2005-01-21 18:09:13 +01:00
if(verbose) {
for(unsigned int i = 0; i < nexus.size(); i++) {
Entry &entry = nexus[i];
cout << i << " -> nv: " << entry.nvert << " nf: " << entry.nface
2005-02-18 14:04:13 +01:00
<< " error: " << entry.error
<< " disk_size: " << entry.disk_size << endl;
2005-01-21 18:09:13 +01:00
}
cout << endl;
}
2004-09-30 03:24:45 +02:00
}
//determine if we must proceed:
2005-02-18 14:04:13 +01:00
if(add == 0 && remove == 0 && !compress && !uncompress && !zsort &&
2004-09-30 03:24:45 +02:00
qvertex == 0 && qnormal == 0 && qcolor == 0 && qtexture == 0) {
nexus.Close();
return 0;
}
2005-02-18 14:04:13 +01:00
2004-10-30 22:17:03 +02:00
CMesh mesh;
GridStaticPtr<CMesh::FaceContainer> grid;
if(add_colors) {
if(!plysource.size()) {
cerr << "No plysource specified when adding color (-p option)\n";
return -1;
}
if(!tri::io::ImporterPLY<CMesh>::Open(mesh, plysource.c_str())) {
cerr << "Could not load ply: " << plysource << endl;
return -1;
}
//calcoliamo il box:
Box3f box;
for(unsigned int i = 0; i < mesh.vert.size(); i++)
box.Add(mesh.vert[i].P());
grid.SetBBox(box);
grid.Set(mesh.face);
}
2004-10-21 15:40:16 +02:00
if((add & NXS_NORMALS_SHORT) && compress) {
cerr << "Its not possible to add normals and compress in the same step\n";
return -1;
}
2004-09-30 03:24:45 +02:00
unsigned int signature = nexus.signature;
signature |= add;
signature &= ~remove;
2004-10-10 19:19:42 +02:00
if(compress) signature |= NXS_COMPRESSED;
if(uncompress) signature &= ~NXS_COMPRESSED;
2004-09-30 03:24:45 +02:00
2004-10-01 18:54:57 +02:00
if(!output.size()) output = input + getSuffix(signature);
2004-10-21 14:22:21 +02:00
cout << "Writing to nexus: " << output << endl;
2004-10-10 19:19:42 +02:00
2004-09-30 03:24:45 +02:00
Nexus out;
2004-12-15 17:37:55 +01:00
2004-10-10 19:19:42 +02:00
if(!chunk_size)
2005-01-14 16:25:29 +01:00
chunk_size = nexus.chunk_size;
2004-10-10 19:19:42 +02:00
if(!out.Create(output, (Signature)signature, chunk_size)) {
2004-09-30 03:24:45 +02:00
cerr << "Could not open output: " << output << endl;
return -1;
}
2005-02-18 14:04:13 +01:00
2005-01-14 16:25:29 +01:00
out.MaxRam() = ram_size / out.chunk_size;
2004-10-21 14:22:21 +02:00
//TODO set rambuffer low (or even direct access!)
2005-02-18 14:04:13 +01:00
vector<unsigned int> forward;
vector<unsigned int> backward;
if(zsort)
ZSort(nexus, forward, backward);
2005-01-26 13:46:29 +01:00
//Fixing history
unsigned int h_size;
char *buffer = nexus.history.Save(h_size);
out.history.Load(h_size, buffer);
2005-02-18 14:04:13 +01:00
if(zsort) {
if(out.history.IsQuick()) {
for(unsigned int i = 0; i < out.history.n_frags(); i++)
out.history.frags[i].patch = backward[out.history.frags[i].patch];
} else {
for(unsigned int i = 0; i < out.history.updates.size(); i++) {
History::Update &update = out.history.updates[i];
for(unsigned int k = 0; k < update.created.size(); k++)
update.created[k] = backward[update.created[k]];
for(unsigned int k = 0; k < update.erased.size(); k++)
update.erased[k] = backward[update.erased[k]];
}
}
}
2005-01-14 16:25:29 +01:00
Report report(nexus.size());
2004-10-21 14:22:21 +02:00
cout << "Copying and allocating...\n";
2005-02-18 14:04:13 +01:00
for(unsigned int p = 0; p < nexus.size(); p++) {
unsigned int patch = p;
2004-10-21 14:22:21 +02:00
report.Step(patch);
2005-02-18 14:04:13 +01:00
if(zsort) patch = forward[patch];
2005-01-14 16:25:29 +01:00
Entry &src_entry = nexus[patch];
Patch &src_patch = nexus.GetPatch(patch);
2005-01-21 18:09:13 +01:00
Border &src_border = nexus.GetBorder(patch);
2004-09-30 03:24:45 +02:00
2004-10-01 01:56:33 +02:00
vector<unsigned short> strip;
if(add_strip) {
ComputeTriStrip(src_patch.nf, src_patch.FaceBegin(), strip);
2004-10-01 18:54:57 +02:00
assert(strip.size() < 32767);
2004-10-08 17:12:04 +02:00
out.AddPatch(src_entry.nvert, strip.size(), src_border.Available());
2004-10-01 01:56:33 +02:00
} else
2004-10-08 17:12:04 +02:00
out.AddPatch(src_entry.nvert, src_entry.nface, src_border.Available());
2004-10-01 01:56:33 +02:00
2004-09-30 03:24:45 +02:00
2005-02-18 14:04:13 +01:00
Entry &dst_entry = out[p];
Patch &dst_patch = out.GetPatch(p);
2004-10-08 17:12:04 +02:00
2004-10-11 18:03:18 +02:00
//copy vertices:
2004-09-30 03:24:45 +02:00
memcpy(dst_patch.VertBegin(), src_patch.VertBegin(),
src_patch.nv * sizeof(Point3f));
2004-10-21 15:40:16 +02:00
if(qvertex && !add_normals) {
2004-10-11 18:03:18 +02:00
float *ptr = (float *)dst_patch.VertBegin();
2004-10-21 15:40:16 +02:00
for(int i = 0; i < dst_patch.nv*3; i++) {
ptr[i] = qvertex * (int)(ptr[i]/qvertex);
2004-10-11 18:03:18 +02:00
//ptr[i] = 0;
}
}
2004-09-30 03:24:45 +02:00
//now faces.
if(add_strip) {
2004-10-01 01:56:33 +02:00
memcpy(dst_patch.FaceBegin(), &*strip.begin(),
strip.size() * sizeof(short));
2004-09-30 03:24:45 +02:00
} else {
2004-10-11 18:03:18 +02:00
if(nexus.signature & NXS_STRIP) {
2004-10-21 15:40:16 +02:00
memcpy(dst_patch.FaceBegin(), src_patch.FaceBegin(),
src_patch.nf * sizeof(unsigned short));
2004-10-11 18:03:18 +02:00
} else {
2004-10-21 15:40:16 +02:00
memcpy(dst_patch.FaceBegin(), src_patch.FaceBegin(),
src_patch.nf * sizeof(unsigned short) * 3);
2004-10-11 18:03:18 +02:00
}
2004-09-30 03:24:45 +02:00
}
2004-10-01 01:56:33 +02:00
if((nexus.signature & NXS_COLORS) && (out.signature & NXS_COLORS))
memcpy(dst_patch.ColorBegin(), src_patch.ColorBegin(),
2004-10-21 15:40:16 +02:00
src_patch.nv * sizeof(unsigned int));
2004-10-01 01:56:33 +02:00
if((nexus.signature & NXS_NORMALS_SHORT) &&
(out.signature & NXS_NORMALS_SHORT))
memcpy(dst_patch.Norm16Begin(), src_patch.Norm16Begin(),
2004-10-21 15:40:16 +02:00
src_patch.nv * sizeof(short)*4);
2004-09-30 03:24:45 +02:00
2004-10-19 03:23:02 +02:00
//reordering
//WATCH OUT BORDERS!
// Reorder(out.signature, dst_patch);
2004-09-30 03:24:45 +02:00
//copying entry information;
dst_entry.sphere = src_entry.sphere;
dst_entry.error = src_entry.error;
//adding borders.
2004-12-04 16:48:57 +01:00
/*for(unsigned int i = 0; i < src_border.Size(); i++) {
2004-10-08 17:12:04 +02:00
Link &link = src_border[i];
if(link.IsNull()) continue;
2004-10-21 14:22:21 +02:00
assert(link.end_patch < nexus.index.size());
2004-12-04 16:48:57 +01:00
}*/
2005-02-18 14:04:13 +01:00
out.borders.ResizeBorder(p, src_border.Size());
Border &dst_border = out.GetBorder(p);
2004-09-30 03:24:45 +02:00
memcpy(dst_border.Start(), src_border.Start(),
2004-12-15 17:37:55 +01:00
src_border.Size() * sizeof(Link));
2004-09-30 03:24:45 +02:00
}
2004-12-15 17:37:55 +01:00
report.Finish();
2004-09-30 03:24:45 +02:00
2004-10-01 01:56:33 +02:00
//TODO this is ok only if we have faces still!
if(add_normals) {
2004-10-21 14:22:21 +02:00
cout << "Computing normals" << endl;
2004-10-01 01:56:33 +02:00
ComputeNormals(out);
}
if(add_colors) {
//source of color:
cerr << "Unsupported color\n";
return -1;
}
2004-10-30 22:17:03 +02:00
2004-10-21 15:40:16 +02:00
if(qvertex && add_normals) {
2005-01-14 16:25:29 +01:00
report.Init(nexus.size());
2004-10-21 14:22:21 +02:00
cout << "Quantizing vertices\n";
2005-01-14 16:25:29 +01:00
for(unsigned int patch = 0; patch < nexus.size(); patch++) {
2004-10-21 14:22:21 +02:00
report.Step(patch);
Patch src_patch = nexus.GetPatch(patch);
float *ptr = (float *)src_patch.VertBegin();
2004-10-21 15:40:16 +02:00
for(int i = 0; i < src_patch.nv*3; i++)
ptr[i] = qvertex * (int)(ptr[i]/qvertex);
2004-10-21 14:22:21 +02:00
}
report.Finish();
}
2004-09-30 03:24:45 +02:00
out.sphere = nexus.sphere;
2005-01-14 16:25:29 +01:00
2004-09-30 03:24:45 +02:00
out.Close();
nexus.Close();
return 0;
}