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

mesh_encoder_helpers.h « mesh « compression « draco « src « dracoenc « draco « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d809a521369640b3b7d5ce2bb303cd8067ed37df (plain)
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
// Copyright 2016 The Draco Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
#ifndef DRACO_COMPRESSION_MESH_MESH_ENCODER_HELPERS_H_
#define DRACO_COMPRESSION_MESH_MESH_ENCODER_HELPERS_H_

#include "draco/compression/mesh/mesh_encoder.h"
#include "draco/mesh/triangle_soup_mesh_builder.h"

namespace draco {

// Helper class for encoding data supplied in a stream of single precision
// floating point numbers formatted as XYZ|UV. The stream must contain three
// XYZ|UV values for every face of the mesh.
// The encoded data is written into the output stream "os".
// In case of error, the stream is set to an invalid state (ios_base::bad_bit).
template <typename OStreamT>
OStreamT EncodePos3Tex2DataToStream(
    const float *data, int num_faces, CompressionMethod method,
    const MeshCompressionOptions &compression_options,
    const MeshAttributeCompressionOptions &pos_options,
    const MeshAttributeCompressionOptions &tex_options, OStreamT &&os) {
  // Build the mesh.
  TriangleSoupMeshBuilder mb;
  mb.Start(num_faces);
  const int pos_att_id =
      mb.AddAttribute(GeometryAttribute::POSITION, 3, DT_FLOAT32);
  const int tex_att_id =
      mb.AddAttribute(GeometryAttribute::TEX_COORD_0, 2, DT_FLOAT32);
  constexpr int data_stride = 5;
  constexpr int tex_offset = 3;
  for (int f = 0; f < num_faces; ++f) {
    int offset = 3 * f * data_stride;
    // Add position data for the face.
    mb.SetAttributeValuesForFace(pos_att_id, f, data + offset,
                                 data + offset + data_stride,
                                 data + offset + 2 * data_stride);
    // Add texture data for the face.
    offset += tex_offset;
    mb.SetAttributeValuesForFace(tex_att_id, f, data + offset,
                                 data + offset + data_stride,
                                 data + offset + 2 * data_stride);
  }
  std::unique_ptr<Mesh> mesh = mb.Finalize();
  if (mesh == nullptr) {
    os.setstate(ios_base::badbit);
    return os;
  }

  // Set up the encoder.
  std::unique_ptr<MeshEncoder> encoder =
      MeshEncoder::CreateEncoderForMethod(method);
  encoder->SetGlobalOptions(compression_options);
  encoder->SetAttributeOptions(GeometryAttribute::POSITION, pos_options);
  encoder->SetAttributeOptions(GeometryAttribute::TEX_COORD_0, tex_options);

  if (!encoder->EncodeMesh(mesh.get())) {
    os.setstate(ios_base::badbit);
    return os;
  }

  // Write the encoded data into the stream.
  os.write(static_cast<const char *>(encoder->buffer()->data()),
           encoder->buffer()->size());
  return os;
}

}  // namespace draco

#endif  // DRACO_COMPRESSION_MESH_MESH_ENCODER_HELPERS_H_