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

TextStrokeRenderer.cpp « stroke « intern « freestyle « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b2b151a74ccf371619f76ada630f2ce971495049 (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
/* SPDX-License-Identifier: GPL-2.0-or-later */

#include "TextStrokeRenderer.h"
#include "Canvas.h"
#include "StrokeIterators.h"

namespace Freestyle {

TextStrokeRenderer::TextStrokeRenderer(const char *iFileName)
{
  if (!iFileName) {
    iFileName = "freestyle.txt";
  }
  // open the stream:
  _ofstream.open(iFileName, ios::out);
  if (!_ofstream.is_open()) {
    cerr << "couldn't open the output file " << iFileName << endl;
  }
  _ofstream << "%!FREESTYLE" << endl;
  _ofstream << "%Creator: Freestyle (http://artis.imag.fr/Software/Freestyle)" << endl;
  // Bounding box
  _ofstream << 0 << " " << 0 << " " << Canvas::getInstance()->width() << " "
            << Canvas::getInstance()->height() << endl;
  _ofstream << "%u x y z tleft tright r g b ..." << endl;
}

void TextStrokeRenderer::RenderStrokeRep(StrokeRep *iStrokeRep) const
{
  RenderStrokeRepBasic(iStrokeRep);
}

void TextStrokeRenderer::RenderStrokeRepBasic(StrokeRep *iStrokeRep) const
{
  Stroke *stroke = iStrokeRep->getStroke();
  if (!stroke) {
    cerr << "no stroke associated with Rep" << endl;
    return;
  }

  StrokeInternal::StrokeVertexIterator v = stroke->strokeVerticesBegin();
  StrokeAttribute att;
  while (!v.isEnd()) {
    att = v->attribute();
    _ofstream << v->u() << " " << v->getProjectedX() << " " << v->getProjectedY() << " "
              << v->getProjectedZ() << " " << att.getThicknessL() << " " << att.getThicknessR()
              << " " << att.getColorR() << " " << att.getColorG() << " " << att.getColorB() << " ";
    ++v;
  }
  _ofstream << endl;
}

} /* namespace Freestyle */