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

obj_exporter.hh « exporter « wavefront_obj « io « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9f9ec5a6083e49bd5aeca17df99822ab720b615c (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
82
83
84
85
86
87
/* SPDX-License-Identifier: GPL-2.0-or-later */

/** \file
 * \ingroup obj
 */

#pragma once

#include "BLI_utility_mixins.hh"

#include "BLI_vector.hh"

#include "IO_wavefront_obj.h"

namespace blender::io::obj {

/**
 * Behaves like `std::unique_ptr<Depsgraph, custom_deleter>`.
 * Needed to free a new Depsgraph created for #DAG_EVAL_RENDER.
 */
class OBJDepsgraph : NonMovable, NonCopyable {
 private:
  Depsgraph *depsgraph_ = nullptr;
  bool needs_free_ = false;

 public:
  OBJDepsgraph(const bContext *C, eEvaluationMode eval_mode);
  ~OBJDepsgraph();

  Depsgraph *get();
  void update_for_newframe();
};

/**
 * The main function for exporting a .obj file according to the given `export_parameters`.
 * It uses the context `C` to get the dependency graph, and from that, the `Scene`.
 * Depending on whether or not `export_params.export_animation` is set, it writes
 * either one file per animation frame, or just one file.
 */
/**
 * Central internal function to call Scene update & writer functions.
 */
void exporter_main(bContext *C, const OBJExportParams &export_params);

class OBJMesh;
class OBJCurve;

/**
 * Export a single frame of a .obj file, according to the given `export_parameters`.
 * The frame state is given in `depsgraph`.
 * The output file name is given by `filepath`.
 * This function is normally called from `exporter_main`, but is exposed here for testing purposes.
 */
/**
 * Export a single frame to a .OBJ file.
 *
 * Conditionally write a .MTL file also.
 */
void export_frame(Depsgraph *depsgraph,
                  const OBJExportParams &export_params,
                  const char *filepath);

/**
 * Find the objects to be exported in the `view_layer` of the dependency graph`depsgraph`,
 * and return them in vectors `unique_ptr`s of `OBJMesh` and `OBJCurve`.
 * If `export_params.export_selected_objects` is set, then only selected objects are to be
 * exported, else all objects are to be exported. But only objects of type `OB_MESH`, `OB_CURVE`,
 * and `OB_SURF` are supported; the rest will be ignored. If `export_params.export_curves_as_nurbs`
 * is set, then curves of type `CU_NURBS` are exported in curve form in the .obj file, otherwise
 * they are converted to mesh and returned in the `OBJMesh` vector. All other exportable types are
 * always converted to mesh and returned in the `OBJMesh` vector.
 */
std::pair<Vector<std::unique_ptr<OBJMesh>>, Vector<std::unique_ptr<OBJCurve>>>
filter_supported_objects(Depsgraph *depsgraph, const OBJExportParams &export_params);

/**
 * Makes `r_filepath_with_frames` (which should point at a character array of size `FILE_MAX`)
 * be `filepath` with its "#" characters replaced by the number representing `frame`, and with
 * a .obj extension.
 */
/**
 * Append the current frame number in the .OBJ file name.
 *
 * \return Whether the filepath is in #FILE_MAX limits.
 */
bool append_frame_to_filename(const char *filepath, int frame, char *r_filepath_with_frames);
}  // namespace blender::io::obj