Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxime Curioni <maxime.curioni@gmail.com>2008-08-08 12:53:13 +0400
committerMaxime Curioni <maxime.curioni@gmail.com>2008-08-08 12:53:13 +0400
commitcacd8a2a79e6d2e6852ec2f464c82d8e80339a50 (patch)
treed236d8723e0e757a61e972f5a578f452ae728c5c /source/blender/freestyle/intern
parent6445f9a647d782d59b1cc2b6654782ced38868bd (diff)
soc-2008-mxcurioni: clean up
Diffstat (limited to 'source/blender/freestyle/intern')
-rwxr-xr-xsource/blender/freestyle/intern/app_blender/Controller.cpp103
-rw-r--r--source/blender/freestyle/intern/app_blender/api.cpp26
-rwxr-xr-xsource/blender/freestyle/intern/scene_graph/MaxFileLoader.cpp388
-rwxr-xr-xsource/blender/freestyle/intern/scene_graph/MaxFileLoader.h98
4 files changed, 2 insertions, 613 deletions
diff --git a/source/blender/freestyle/intern/app_blender/Controller.cpp b/source/blender/freestyle/intern/app_blender/Controller.cpp
index 1572f26e214..c8105defbd3 100755
--- a/source/blender/freestyle/intern/app_blender/Controller.cpp
+++ b/source/blender/freestyle/intern/app_blender/Controller.cpp
@@ -32,7 +32,6 @@
#include "../system/StringUtils.h"
-#include "../scene_graph/MaxFileLoader.h"
#include "../scene_graph/NodeShape.h"
#include "../scene_graph/NodeTransform.h"
#include "../scene_graph/NodeDrawingStyle.h"
@@ -272,108 +271,6 @@ int Controller::LoadMesh(Render *re)
}
-int Controller::Load3DSFile(const char *iFileName)
-{
- if (_pView)
- _pView->setUpdateMode(false);
-
- MaxFileLoader loader3DS(iFileName);
- //_RootNode->AddChild(BuildSceneTest());
-
- _Chrono.start();
-
- NodeGroup *maxScene = loader3DS.Load();
-
- if (maxScene == NULL) {
- cout << "Cannot load scene" << endl;
- return 1;
- }
-
- cout << "Scene loaded\n" << endl;
-
- printf("Mesh cleaning : %lf\n", _Chrono.stop());
- _SceneNumFaces += loader3DS.numFacesRead();
-
- if(loader3DS.minEdgeSize() < _minEdgeSize)
- {
- _minEdgeSize = loader3DS.minEdgeSize();
- _EPSILON = _minEdgeSize*1e-6;
- if(_EPSILON < DBL_MIN)
- _EPSILON = 0.0;
- }
-
- cout << "Epsilon computed : " << _EPSILON << endl;
-
- // DEBUG
- // ScenePrettyPrinter spp;
- // maxScene->accept(spp);
-
- _RootNode->AddChild(maxScene);
- _RootNode->UpdateBBox(); // FIXME: Correct that by making a Renderer to compute the bbox
-
- _pView->setModel(_RootNode);
- //_pView->FitBBox();
-
-
- _Chrono.start();
-
-
- WXEdgeBuilder wx_builder;
- maxScene->accept(wx_builder);
- _winged_edge = wx_builder.getWingedEdge();
-
- printf("WEdge building : %lf\n", _Chrono.stop());
-
- _Chrono.start();
-
- _Grid.clear();
- Vec3r size;
- for(unsigned int i=0; i<3; i++)
- {
- size[i] = fabs(_RootNode->bbox().getMax()[i] - _RootNode->bbox().getMin()[i]);
- size[i] += size[i]/10.0; // let make the grid 1/10 bigger to avoid numerical errors while computing triangles/cells intersections
- if(size[i]==0){
- cout << "Warning: the bbox size is 0 in dimension "<<i<<endl;
- }
- }
- _Grid.configure(Vec3r(_RootNode->bbox().getMin() - size / 20.0), size,
- _SceneNumFaces);
-
- // Fill in the grid:
- WFillGrid fillGridRenderer(&_Grid, _winged_edge);
- fillGridRenderer.fillGrid();
-
- printf("Grid building : %lf\n", _Chrono.stop());
-
- // DEBUG
- _Grid.displayDebug();
-
- _pView->setDebug(_DebugNode);
-
- //delete stuff
- // if(0 != ws_builder)
- // {
- // delete ws_builder;
- // ws_builder = 0;
- // }
- _pView->updateGL();
-
-
- //soc QFileInfo qfi(iFileName);
- //soc string basename((const char*)qfi.fileName().toAscii().data());
- char cleaned[FILE_MAX];
- BLI_strncpy(cleaned, iFileName, FILE_MAX);
- BLI_cleanup_file(NULL, cleaned);
- string basename = StringUtils::toAscii( string(cleaned) );
-
- _ListOfModels.push_back(basename);
-
- cout << "Triangles nb : " << _SceneNumFaces << endl;
- _bboxDiag = (_RootNode->bbox().getMax()-_RootNode->bbox().getMin()).norm();
- cout << "Bounding Box : " << _bboxDiag << endl;
- return 0;
-}
-
void Controller::CloseFile()
{
WShape::setCurrentId(0);
diff --git a/source/blender/freestyle/intern/app_blender/api.cpp b/source/blender/freestyle/intern/app_blender/api.cpp
index 5ffe3dc4fa1..f1508971bc1 100644
--- a/source/blender/freestyle/intern/app_blender/api.cpp
+++ b/source/blender/freestyle/intern/app_blender/api.cpp
@@ -82,28 +82,7 @@ extern "C" {
view->_camera->setUpVector(camUp);
view->_camera->setViewDirection(camDirection);
}
-
- void FRS_scene_3ds_export(Render* re) {
- // export scene to 3ds format
- string script_3ds_export = pathconfig->getProjectDir() +
- Config::DIR_SEP + "python" +
- Config::DIR_SEP + "3ds_export.py";
- BPY_run_python_script( const_cast<char *>(script_3ds_export.c_str()) );
-
- // load 3ds scene
- char btempdir[255];
- BLI_where_is_temp(btempdir,1);
- string exported_3ds_file = btempdir;
- exported_3ds_file += Config::DIR_SEP + "tmp_scene_freestyle.3ds";
- if( BLI_exists( const_cast<char *>(exported_3ds_file.c_str()) ) ) {
- controller->Load3DSFile( exported_3ds_file.c_str() );
- }
- else {
- cout << "Cannot find" << exported_3ds_file << endl;
- return;
- }
- }
-
+
void FRS_load_mesh( Render *re ){
controller->LoadMesh(re);
}
@@ -113,8 +92,7 @@ extern "C" {
FRS_init_view(re);
FRS_init_camera(re);
-
- //FRS_scene_3ds_export(re);
+
FRS_load_mesh(re);
}
diff --git a/source/blender/freestyle/intern/scene_graph/MaxFileLoader.cpp b/source/blender/freestyle/intern/scene_graph/MaxFileLoader.cpp
deleted file mode 100755
index b32fb993c94..00000000000
--- a/source/blender/freestyle/intern/scene_graph/MaxFileLoader.cpp
+++ /dev/null
@@ -1,388 +0,0 @@
-
-//
-// Copyright (C) : Please refer to the COPYRIGHT file distributed
-// with this source distribution.
-//
-// 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 for more details.
-//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-//
-///////////////////////////////////////////////////////////////////////////////
-
-#include "MaxFileLoader.h"
-
-MaxFileLoader::MaxFileLoader()
-{
- _FileName = NULL;
- _3dsFile = NULL;
- _Scene = NULL;
- _numFacesRead = 0;
- _minEdgeSize = DBL_MAX;
-}
-
-MaxFileLoader::MaxFileLoader(const char *iFileName)
-{
- _FileName = new char[strlen(iFileName)+1];
- strcpy(_FileName, iFileName);
-
- _3dsFile = NULL;
- _Scene = NULL;
- _numFacesRead = 0;
- _minEdgeSize = DBL_MAX;
-}
-
-MaxFileLoader::~MaxFileLoader()
-{
- if(NULL != _FileName)
- {
- delete [] _FileName;
- _FileName = NULL;
- }
-
- if(NULL != _3dsFile)
- {
- lib3ds_file_free(_3dsFile);
- _3dsFile = NULL;
- }
-
- _Scene = NULL;
-}
-
-void MaxFileLoader::setFileName(const char *iFileName)
-{
- if(NULL != _FileName)
- delete [] _FileName;
-
- _FileName = new char[strlen(iFileName)+1];
- strcpy(_FileName, iFileName);
-}
-
-NodeGroup* MaxFileLoader::Load()
-{
- _3dsFile=lib3ds_file_load(_FileName);
- if(NULL == _3dsFile)
- return NULL;
-
- /* No nodes? Fabricate nodes to display all the meshes. */
- if( !_3dsFile->nodes )
- {
- Lib3dsMesh *mesh;
- Lib3dsNode *node;
-
- for(mesh = _3dsFile->meshes; mesh != NULL; mesh = mesh->next)
- {
- node = lib3ds_node_new_object();
- strcpy(node->name, mesh->name);
- node->parent_id = LIB3DS_NO_PARENT;
- node->data.object.scl_track.keyL = lib3ds_lin3_key_new();
- node->data.object.scl_track.keyL->value[0] = 1.;
- node->data.object.scl_track.keyL->value[1] = 1.;
- node->data.object.scl_track.keyL->value[2] = 1.;
- lib3ds_file_insert_node(_3dsFile, node);
- }
- }
-
- lib3ds_file_eval(_3dsFile, 0);
-
- // creation of the scene root node
- _Scene = new NodeGroup;
-
- // converts the 3ds format to the scene format
- // the RenderNode method modifies _Scene.
- Lib3dsNode *p;
- for (p=_3dsFile->nodes; p!=0; p=p->next) {
- RenderNode(p);
- }
- //Returns the built scene.
- return _Scene;
-}
-
-void lib3ds_normal_transform(Lib3dsVector c, Lib3dsMatrix m, Lib3dsVector a)
-{
- c[0]= (m[0][0]*a[0] + m[1][0]*a[1] + m[2][0]*a[2]);
- c[1]= (m[0][1]*a[0] + m[1][1]*a[1] + m[2][1]*a[2]);
- c[2]= (m[0][2]*a[0] + m[1][2]*a[1] + m[2][2]*a[2]);
-
- // c[0]= (m[0][0]*a[0] + m[1][0]*a[1] + m[2][0]*a[2])/m[0][0];
- // c[1]= (m[0][1]*a[0] + m[1][1]*a[1] + m[2][1]*a[2])/m[1][1];
- // c[2]= (m[0][2]*a[0] + m[1][2]*a[1] + m[2][2]*a[2])/m[2][2];
-
- //lib3ds_vector_normalize(c);
-
- // c[0] = c[0]*m[0][0];
- // c[1] = c[1]*m[1][1];
- // c[2] = c[2]*m[2][2];
-
-}
-
-
-
-void MaxFileLoader::RenderNode(Lib3dsNode *iNode)
-{
- Lib3dsNode *p;
- for (p=iNode->childs; p!=0; p=p->next)
- RenderNode(p);
-
- float minBBox[3];
- float maxBBox[3];
- if (iNode->type==LIB3DS_OBJECT_NODE)
- {
- if (strcmp(iNode->name,"$$$DUMMY")==0)
- return;
-
- NodeTransform *currentMesh = new NodeTransform;
- NodeShape * shape;
-
- if (!iNode->user.d) // If the shape is not built yet, just do it !
- {
- Lib3dsMesh *mesh=lib3ds_file_mesh_by_name(_3dsFile, iNode->name);
- ASSERT(mesh);
- if (!mesh)
- return;
-
- // builds the shape:
- shape = new NodeShape;
- iNode->user.d=(unsigned long)shape; // We store as user data the NodeShape address
-
- // We invert the matrix in order to
- // be able to retrieve the shape's coordinates
- // in its local coordinates system (origin is the iNode pivot)
- Lib3dsMatrix M;
- lib3ds_matrix_copy(M, mesh->matrix);
- lib3ds_matrix_inv(M);
-
- // We compute a normal per vertex and manages the smoothing of the shape:
- Lib3dsVector *normalL=(Lib3dsVector*)malloc(3*sizeof(Lib3dsVector)*mesh->faces);
- lib3ds_mesh_calculate_normals(mesh, normalL);
-
- // We build the rep:
- IndexedFaceSet *rep;
- unsigned numFaces = mesh->faces;
-
- unsigned vSize = 3*3*numFaces;
- float *vertices = new float[vSize];
- unsigned nSize = vSize;
- float *normals = new float[nSize];
- unsigned *numVertexPerFaces = new unsigned[numFaces];
- vector<FrsMaterial> meshFrsMaterials;
-
- IndexedFaceSet::TRIANGLES_STYLE *faceStyle = new IndexedFaceSet::TRIANGLES_STYLE[numFaces];
- unsigned i;
- for (i = 0; i <numFaces; i++) {
- faceStyle[i] = IndexedFaceSet::TRIANGLES;
- numVertexPerFaces[i] = 3;
- }
-
- unsigned viSize = 3*numFaces;
- unsigned *VIndices = new unsigned[viSize];
- unsigned niSize = viSize;
- unsigned *NIndices = new unsigned[niSize];
- unsigned *MIndices = new unsigned[viSize]; // Material Indices
-
-
- float *pv = vertices;
- float *pn = normals;
- unsigned *pvi = VIndices;
- unsigned *pni = NIndices;
- unsigned *pmi = MIndices;
-
- unsigned currentIndex = 0;
- unsigned currentMIndex = 0;
-
- FrsMaterial tmpMat;
-
- // we want to find the min and max coordinates as we build the rep.
- // We initialize the min and max values whith the first vertex.
- float pvtmp[3];
- lib3ds_vector_transform(pvtmp, M, mesh->pointL[mesh->faceL[0].points[0]].pos);
- minBBox[0] = pvtmp[0];
- maxBBox[0] = pvtmp[0];
- minBBox[1] = pvtmp[1];
- maxBBox[1] = pvtmp[1];
- minBBox[2] = pvtmp[2];
- maxBBox[2] = pvtmp[2];
-
- unsigned p;
- real vert[3][3];
- real norm;
- for(p=0; p<mesh->faces; ++p) // we parse the faces of the mesh
- {
- Lib3dsFace *f=&mesh->faceL[p];
- Lib3dsMaterial *mat=0;
- if (f->material[0])
- mat=lib3ds_file_material_by_name(_3dsFile, f->material);
-
- if (mat)
- {
- tmpMat.setDiffuse(mat->diffuse[0], mat->diffuse[1], mat->diffuse[2], mat->diffuse[3]);
- tmpMat.setSpecular(mat->specular[0], mat->specular[1], mat->specular[2], mat->specular[3]);
- float s = (float)pow(2.0, 10.0*mat->shininess);
- if(s > 128.f)
- s = 128.f;
- tmpMat.setShininess(s);
- }
-
- if(meshFrsMaterials.empty()){
- meshFrsMaterials.push_back(tmpMat);
- shape->setFrsMaterial(tmpMat);
- }else{
- // find if the material is aleady in the list
- unsigned i=0;
- bool found = false;
- for(vector<FrsMaterial>::iterator it=meshFrsMaterials.begin(), itend=meshFrsMaterials.end();
- it!=itend;
- ++it){
- if(*it == tmpMat){
- currentMIndex = i;
- found = true;
- break;
- }
- ++i;
- }
- if(!found){
- meshFrsMaterials.push_back(tmpMat);
- currentMIndex = meshFrsMaterials.size()-1;
- }
- }
-
-
- for(i=0; i<3; ++i) // we parse the vertices of the face f
- {
- unsigned j;
- lib3ds_vector_transform(pv, M, mesh->pointL[f->points[i]].pos); //fills the cells of the pv array
- for(j=0; j<3; j++) // we parse the xyz coordinates of the vertex i
- {
- if(minBBox[j] > pv[j])
- minBBox[j] = pv[j];
-
- if(maxBBox[j] < pv[j])
- maxBBox[j] = pv[j];
-
- vert[i][j] = pv[j];
- }
-
- // for(j=0; j<3; j++)
- // pn[j] = f->normal[j];
-
- lib3ds_normal_transform(pn, M, normalL[3*p+i]); //fills the cells of the pv array
- //lib3ds_vector_normalize(pn);
-
-
- *pvi = currentIndex;
- *pni = currentIndex;
- *pmi = currentMIndex;
-
-
- currentIndex +=3;
- pv += 3;
- pn += 3;
- pvi++;
- pni++;
- pmi++;
-
- }
-
- for(i=0; i<3; i++)
- {
- norm = 0.0;
- for (unsigned j = 0; j < 3; j++)
- norm += (vert[i][j] - vert[(i+1)%3][j])*(vert[i][j] - vert[(i+1)%3][j]);
- norm = sqrt(norm);
- if(_minEdgeSize > norm)
- _minEdgeSize = norm;
- }
-
- _numFacesRead++;
- }
-
- free(normalL);
-
- // We might have several times the same vertex. We want a clean
- // shape with no real-vertex. Here, we are making a cleaning
- // pass.
- real *cleanVertices = NULL;
- unsigned cvSize;
- unsigned *cleanVIndices = NULL;
-
- GeomCleaner::CleanIndexedVertexArray(
- vertices, vSize,
- VIndices, viSize,
- &cleanVertices, &cvSize,
- &cleanVIndices);
-
- real *cleanNormals = NULL;
- unsigned cnSize;
- unsigned *cleanNIndices = NULL;
-
- GeomCleaner::CleanIndexedVertexArray(
- normals, nSize,
- NIndices, niSize,
- &cleanNormals, &cnSize,
- &cleanNIndices);
-
- // format materials array
- FrsMaterial** marray = new FrsMaterial*[meshFrsMaterials.size()];
- unsigned mindex=0;
- for(vector<FrsMaterial>::iterator m=meshFrsMaterials.begin(), mend=meshFrsMaterials.end();
- m!=mend;
- ++m){
- marray[mindex] = new FrsMaterial(*m);
- ++mindex;
- }
- // deallocates memory:
- delete [] vertices;
- delete [] normals;
- delete [] VIndices;
- delete [] NIndices;
-
- // Create the IndexedFaceSet with the retrieved attributes
- rep = new IndexedFaceSet(cleanVertices, cvSize,
- cleanNormals, cnSize,
- marray, meshFrsMaterials.size(),
- 0, 0,
- numFaces, numVertexPerFaces, faceStyle,
- cleanVIndices, viSize,
- cleanNIndices, niSize,
- MIndices, viSize,
- 0,0,
- 0);
- // sets the id of the rep
- rep->setId(Id(iNode->node_id, 0));
-
-
- const BBox<Vec3r> bbox = BBox<Vec3r>(Vec3r(minBBox[0], minBBox[1], minBBox[2]),
- Vec3r(maxBBox[0], maxBBox[1], maxBBox[2]));
- rep->setBBox(bbox);
- shape->AddRep(rep);
- }
-
- if (iNode->user.d)
- {
- if(NULL != iNode->matrix)
- {
- Lib3dsObjectData *d = &iNode->data.object;
- Matrix44r M44f;
- for(unsigned i=0; i<4; i++)
- for(unsigned j=0; j<4; j++)
- M44f(i,j) = iNode->matrix[j][i];
-
- currentMesh->setMatrix(Matrix44r(M44f));
- currentMesh->Translate(-d->pivot[0], -d->pivot[1], -d->pivot[2]);
- }
- shape = (NodeShape*)iNode->user.d;
- currentMesh->AddChild(shape);
- _Scene->AddChild(currentMesh);
- }
- }
-
-}
diff --git a/source/blender/freestyle/intern/scene_graph/MaxFileLoader.h b/source/blender/freestyle/intern/scene_graph/MaxFileLoader.h
deleted file mode 100755
index ce71ab4be3b..00000000000
--- a/source/blender/freestyle/intern/scene_graph/MaxFileLoader.h
+++ /dev/null
@@ -1,98 +0,0 @@
-//
-// Filename : MaxFileLoader.h
-// Author(s) : Stephane Grabli
-// Purpose : Class used to load 3ds models.
-// Date of creation : 10/10/2002
-//
-///////////////////////////////////////////////////////////////////////////////
-
-
-//
-// Copyright (C) : Please refer to the COPYRIGHT file distributed
-// with this source distribution.
-//
-// 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 for more details.
-//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-//
-///////////////////////////////////////////////////////////////////////////////
-
-#ifndef MAX_FILE_LOADER_H
-# define MAX_FILE_LOADER_H
-
-# include <string.h>
-# include <float.h>
-
-//soc - modified to adapt Blender's in
-// lib3ds includes
-# include <lib3ds/file.h>
-# include <lib3ds/node.h>
-# include <lib3ds/camera.h>
-# include <lib3ds/mesh.h>
-# include <lib3ds/material.h>
-# include <lib3ds/matrix.h>
-# include <lib3ds/vector.h>
-# include <lib3ds/file.h>
-
-# include "../system/FreestyleConfig.h"
-# include "NodeGroup.h"
-# include "NodeTransform.h"
-# include "NodeShape.h"
-# include "IndexedFaceSet.h"
-# include "../geometry/BBox.h"
-# include "../geometry/Geom.h"
-# include "../geometry/GeomCleaner.h"
-
-
-class NodeGroup;
-
-class LIB_SCENE_GRAPH_EXPORT MaxFileLoader
-{
-public:
- /*! Builds a MaxFileLoader */
- MaxFileLoader();
- /*! Builds a MaxFileLoader to load the iFileName
- file.
- iFileName
- The name of the 3dsMax file to load
- */
- explicit MaxFileLoader(const char *iFileName);
- virtual ~MaxFileLoader();
-
- /*! Sets the name of the 3dsMax file to load */
- void setFileName(const char *iFileName);
-
- /*! Loads the 3D scene and returns
- * a pointer to the scene root node
- */
- NodeGroup * Load();
- //void Load(const char *iFileName);
-
- /*! Gets the number of read faces */
- inline unsigned int numFacesRead() {return _numFacesRead;}
-
- /*! Gets the smallest edge size read */
- inline real minEdgeSize() {return _minEdgeSize;}
-
-protected:
- void RenderNode(Lib3dsNode *iNode);
-
-protected:
- char *_FileName;
- Lib3dsFile *_3dsFile;
- NodeGroup* _Scene;
- unsigned _numFacesRead;
- real _minEdgeSize;
-};
-
-#endif // MAX_FILE_LOADER_H