69 lines
1.7 KiB
C++
69 lines
1.7 KiB
C++
/**
|
|
* @author Edouard DUPIN
|
|
*
|
|
* @copyright 2011, Edouard DUPIN, all right reserved
|
|
*
|
|
* @license APACHE v2.0 (see license file)
|
|
*/
|
|
|
|
#ifndef __ESVG_RENDERER_H__
|
|
#define __ESVG_RENDERER_H__
|
|
|
|
#include <etk/types.h>
|
|
#include <etk/math/Vector2D.h>
|
|
#include <etk/Color.h>
|
|
#include <esvg/render/Weight.h>
|
|
|
|
namespace esvg {
|
|
class Renderer {
|
|
#ifdef DEBUG
|
|
private:
|
|
bool m_visualDebug;
|
|
int32_t m_factor;
|
|
#endif
|
|
public:
|
|
Renderer(const ivec2& _size, bool _visualDebug=false);
|
|
~Renderer();
|
|
protected:
|
|
ivec2 m_size;
|
|
public:
|
|
void setSize(const ivec2& _size);
|
|
const ivec2& getSize() const;
|
|
protected:
|
|
std::vector<etk::Color<float,4>> m_buffer;
|
|
public:
|
|
std::vector<etk::Color<float,4>> getData();
|
|
protected:
|
|
int32_t m_interpolationRecurtionMax;
|
|
public:
|
|
void setInterpolationRecurtionMax(int32_t _value);
|
|
int32_t getInterpolationRecurtionMax() const;
|
|
protected:
|
|
float m_interpolationThreshold;
|
|
public:
|
|
void setInterpolationThreshold(float _value);
|
|
float getInterpolationThreshold() const;
|
|
protected:
|
|
int32_t m_nbSubScanLine;
|
|
public:
|
|
void setNumberSubScanLine(int32_t _value);
|
|
int32_t getNumberSubScanLine() const;
|
|
public:
|
|
void writePPM(const std::string& _fileName);
|
|
void writeBMP(const std::string& _fileName);
|
|
protected:
|
|
etk::Color<float,4> mergeColor(etk::Color<float,4> _base, etk::Color<float,4> _integration);
|
|
public:
|
|
void print(const esvg::render::Weight& _weightFill,
|
|
const etk::Color<float,4>& _colorFill,
|
|
const esvg::render::Weight& _weightStroke,
|
|
const etk::Color<float,4>& _colorStroke,
|
|
float _opacity);
|
|
#ifdef DEBUG
|
|
void addDebugSegment(const esvg::render::SegmentList& _listSegment);
|
|
#endif
|
|
};
|
|
};
|
|
|
|
#endif
|