DATAKIT API  V2025.2
testlibgltfwrite.cpp File Reference

Functions

Dtk_ErrorStatus GltfwInstances (const Dtk_string &outputFileName)
 
int GltfWriteSample (const Dtk_string &inResultDirectory)
 
Dtk_ErrorStatus GltfwTwoMeshes (const Dtk_string &outputFileName)
 

Function Documentation

◆ GltfwInstances()

Dtk_ErrorStatus GltfwInstances ( const Dtk_string outputFileName)
58 { // SAMPLE 2
59  Dtk_MeshPtr CubeMesh;
60  Dtk_MeshPtr WireMesh;
61  // Cube Sample
62  CubeMesh = sampleWriter::CreateMeshCube();
63  WireMesh = sampleWriter::CreateMeshWire();
64  Dtk_transfo cubetransfo;
65  Dtk_bool useless, isNewNode; // useless pour this sample
66 
67  // For this sample, we write 10 instances of cube.
68  // the matrix given is shifted in all iterations
69  // Inside the for below, we give an ID to OpenInstance. Then we add the cube, and close the child.
70  // For all others instances, we give the same ID to OpenInstance, and just close the child. Gltf Writer will recognize the ID and automatic reinstance the cube with another matrix.
72  // First we initialize writing with name of files and protection fonction if needed (3rd parameter)
73  Dtk_GltfWriter GW( outputFileName, err );
74  if( err != dtkNoError )
75  return err;
76  GW.OpenInstance( "RootNode", -1, useless );
77  int i;
78  for( i = 0; i < 10; i++ )
79  {
80  GW.OpenInstance( "Cube", 1, isNewNode, cubetransfo ); // Giving ID 1
81  if( isNewNode )
82  {
83  GW.WriteMesh( CubeMesh );
84  }
85  GW.CloseLastInstance();
86  cubetransfo.addTranslate( Dtk_dir( 10, 0, 0 ) ); // shift matrix.
87  }
88  GW.OpenInstance("WireMesh", 2, isNewNode, Dtk_transfo()); // Giving ID 2
89  if (isNewNode)
90  {
91  GW.WriteMesh(WireMesh);
92  }
93  GW.CloseLastInstance();
94 
95  GW.CloseLastInstance();
96  return dtkNoError;
97 }

◆ GltfWriteSample()

int GltfWriteSample ( const Dtk_string inResultDirectory)
101 {
102  Dtk_string outputDirectory, fileName;
103  cout << endl << "----------------------------------------------" << endl;
104 
105  // Choosing output directory and file name
106  outputDirectory = inResultDirectory + L"Gltf/";
107  outputDirectory.FixPathSeparator();
108  outputDirectory.mkdir();
109 
110  cout << "Gltf Write start" << endl;
111  cout << "sample 1" << endl;
112  // sample 1 : just write 2 meshes
113  fileName = outputDirectory + L"twomeshes.gltf";
114  Dtk_ErrorStatus errorStatus = GltfwTwoMeshes( fileName );
115  if( errorStatus == dtkNoError )
116  cout << "=> " << fileName.c_str() << endl;
117  else
118  cout << "error : " << dtkTypeError( errorStatus ).c_str() << endl;
119 
120  cout << "sample 2" << endl;
121  // sample 2 : write instances
122  fileName = outputDirectory + L"instances.gltf";
123  errorStatus = GltfwInstances( fileName );
124  if( errorStatus == dtkNoError )
125  cout << "=> " << fileName.c_str() << endl;
126  else
127  cout << "error : " << dtkTypeError( errorStatus ).c_str() << endl;
128 
129  cout << "Gltf Write end" << endl;
130 
131  return errorStatus;
132 }

◆ GltfwTwoMeshes()

Dtk_ErrorStatus GltfwTwoMeshes ( const Dtk_string outputFileName)
18 { // SAMPLE 1
19  Dtk_MeshPtr CubeMesh, CylinderMesh;
20  Dtk_bool useless; // useless for this sample
21  // Cube Sample
22  CubeMesh = sampleWriter::CreateMeshCube();
23  // Cylinder Sample
24  CylinderMesh = sampleWriter::CreateMeshCylinder( 30 );
25 
27  // First we initialize writing with name of files and protection fonction if needed (3rd parameter)
28  Dtk_GltfWriter GW( outputFileName, err );
29  if( err != dtkNoError )
30  return err;
31 
32  // Rootnode creation
33  GW.OpenInstance( "RootNode", -1, useless );
34 
35  // from this node, create a Child for the cube, and naming it "Cube"
36  GW.OpenInstance( "Cube", -1, useless );
37  // write the cube
38  GW.WriteMesh( CubeMesh );
39 
40  // close the cube node
41  GW.CloseLastInstance();
42 
43  // from root node again, create a Child for the cylinder, and naming it "Cylinder"
44  GW.OpenInstance( "Cylinder", -1, useless );
45  // write the cube
46  GW.WriteMesh( CylinderMesh );
47  // close the cube node
48  GW.CloseLastInstance();
49 
50  // Rootnode closing.
51  GW.CloseLastInstance();
52 
53  return dtkNoError;
54 }
Dtk_transfo
This is the Transformation dedicated class.
Definition: dtk_transfo.hpp:19
sampleWriter::CreateMeshCube
Dtk_MeshPtr CreateMeshCube()
Mesh Cube sample.
Definition: testcreatemesh.cpp:207
Dtk_GltfWriter
GLTF Writer main class.
Definition: gltfw.hpp:22
Dtk_string
This is a high level string class.
Definition: dtk_string.hpp:58
Dtk_bool
char Dtk_bool
Definition: define.h:725
sampleWriter::CreateMeshWire
Dtk_MeshPtr CreateMeshWire()
Wire mesh sample.
Definition: testcreatemesh.cpp:388
GltfwTwoMeshes
Dtk_ErrorStatus GltfwTwoMeshes(const Dtk_string &outputFileName)
Definition: testlibgltfwrite.cpp:17
Dtk_ErrorStatus
Dtk_ErrorStatus
Definition: error_dtk.hpp:6
Dtk_SmartPtr
Definition: util_ptr_dtk.hpp:37
dtkTypeError
Dtk_string dtkTypeError(Dtk_Int32 errNumero)
Dtk_string::c_str
const char * c_str() const
Retrieve the ASCII conversion string.
sampleWriter::CreateMeshCylinder
Dtk_MeshPtr CreateMeshCylinder(int nbpoints)
Mesh Cylinder sample.
Definition: testcreatemesh.cpp:337
Dtk_string::mkdir
int mkdir() const
File Utility : Create a Directory.
Dtk_string::FixPathSeparator
void FixPathSeparator()
File Utility : Fixes path separator consistency. It lets you replace the '\' or '/' by the OS needed ...
Dtk_transfo::addTranslate
void addTranslate(const Dtk_dir &V)
Translate the Dtk_transfo.
GltfwInstances
Dtk_ErrorStatus GltfwInstances(const Dtk_string &outputFileName)
Definition: testlibgltfwrite.cpp:57
dtkNoError
@ dtkNoError
Definition: error_dtk.hpp:140
Dtk_dir
This is a mathematical direction class.
Definition: dtk_dir.hpp:15