mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-20 22:03:38 -06:00
266 lines
4.9 KiB
C++
266 lines
4.9 KiB
C++
#include "SDraw.h"
|
|
|
|
NAMESPACE_UPP
|
|
|
|
#define LTIMING(x) RTIMING(x)
|
|
|
|
void SDraw::Clear(const RGBA& color)
|
|
{
|
|
Upp::Fill(~buffer, color, buffer.GetLength());
|
|
}
|
|
|
|
inline void SDraw::PathPoint(double x, double y)
|
|
{
|
|
if(inpath) {
|
|
pathrect.left = min(pathrect.left, x);
|
|
pathrect.top = min(pathrect.top, y);
|
|
pathrect.right = max(pathrect.right, x);
|
|
pathrect.bottom = max(pathrect.bottom, y);
|
|
}
|
|
else {
|
|
path.remove_all();
|
|
pathrect.left = pathrect.right = x;
|
|
pathrect.top = pathrect.bottom = y;
|
|
pathattr = attr;
|
|
}
|
|
inpath = true;
|
|
current = Pointf(x, y);
|
|
}
|
|
|
|
inline void SDraw::ControlPoint(double x, double y)
|
|
{
|
|
control = Pointf(x, y);
|
|
PathPoint(x, y);
|
|
}
|
|
|
|
SDraw& SDraw::Move(double x, double y)
|
|
{
|
|
PathPoint(x, y);
|
|
path.move_to(x, y);
|
|
inpath = true;
|
|
return *this;
|
|
}
|
|
|
|
SDraw& SDraw::Line(double x, double y)
|
|
{
|
|
control = current;
|
|
PathPoint(x, y);
|
|
path.line_to(x, y);
|
|
inpath = true;
|
|
return *this;
|
|
}
|
|
|
|
SDraw& SDraw::Quadratic(double x1, double y1, double x, double y)
|
|
{
|
|
ControlPoint(x1, y1);
|
|
PathPoint(x, y);
|
|
path.curve3(x1, y1, x, y);
|
|
return *this;
|
|
}
|
|
|
|
Pointf SDraw::Reflection() const
|
|
{
|
|
return current + current - control;
|
|
}
|
|
|
|
SDraw& SDraw::Quadratic(double x, double y)
|
|
{
|
|
Pointf c = Reflection();
|
|
path.curve3(c.x, c.y, x, y);
|
|
return *this;
|
|
}
|
|
|
|
SDraw& SDraw::Cubic(double x1, double y1, double x2, double y2, double x, double y)
|
|
{
|
|
ControlPoint(x1, y1);
|
|
ControlPoint(x2, y2);
|
|
PathPoint(x, y);
|
|
path.curve4(x1, y1, x2, y2, x, y);
|
|
return *this;
|
|
}
|
|
|
|
SDraw& SDraw::Cubic(double x2, double y2, double x, double y)
|
|
{
|
|
Pointf c = Reflection();
|
|
path.curve4(c.x, c.y, x2, y2, x, y);
|
|
return *this;
|
|
}
|
|
|
|
SDraw& SDraw::Close()
|
|
{
|
|
path.close_polygon();
|
|
return *this;
|
|
}
|
|
|
|
inline void SDraw::MinMax(Pointf& minv, Pointf& maxv, Pointf p) const
|
|
{
|
|
p = pathattr.mtx.Transformed(p);
|
|
minv.x = min(minv.x, p.x);
|
|
minv.y = min(minv.y, p.y);
|
|
maxv.x = max(maxv.x, p.x);
|
|
maxv.y = max(maxv.y, p.y);
|
|
}
|
|
|
|
bool SDraw::PathVisible(double w) const
|
|
{
|
|
Pointf h = pathattr.mtx.Transformed(w, w);
|
|
w = max(abs(h.x), abs(h.y));
|
|
Pointf min;
|
|
Pointf max;
|
|
min = max = pathattr.mtx.Transformed(pathrect.TopLeft());
|
|
MinMax(min, max, pathrect.TopRight());
|
|
MinMax(min, max, pathrect.BottomLeft());
|
|
MinMax(min, max, pathrect.BottomRight());
|
|
return max.x + w >= 0 && max.y + w >= 0 && min.x - w <= sizef.cx && min.y - w <= sizef.cy;
|
|
}
|
|
|
|
void SDraw::Translate(double x, double y)
|
|
{
|
|
Transform(Translate2D(x, y));
|
|
}
|
|
|
|
void SDraw::Rotate(double a)
|
|
{
|
|
Transform(Rotate2D(a));
|
|
}
|
|
|
|
void SDraw::Scale(double scalex, double scaley)
|
|
{
|
|
Transform(Scale2D(scalex, scaley));
|
|
}
|
|
|
|
void SDraw::Scale(double scale)
|
|
{
|
|
Transform(Scale2D(scale));
|
|
}
|
|
|
|
void SDraw::Begin()
|
|
{
|
|
attrstack.Add(attr);
|
|
attr.hasclip = false;
|
|
}
|
|
|
|
void SDraw::End()
|
|
{
|
|
if(attrstack.GetCount() == 0) {
|
|
ASSERT_(0, "Painter::End: attribute stack is empty");
|
|
return;
|
|
}
|
|
pathattr = attr = attrstack.Pop();
|
|
clip.SetCount(attr.cliplevel);
|
|
if(attr.mask)
|
|
FinishMask();
|
|
}
|
|
|
|
void SDraw::Transform(const Matrix2D& m)
|
|
{
|
|
pathattr.mtx = m * attr.mtx;
|
|
if(!inpath)
|
|
attr.mtx = m * attr.mtx;
|
|
}
|
|
|
|
SDraw& SDraw::Opacity(double o)
|
|
{
|
|
pathattr.opacity *= o;
|
|
if(!inpath)
|
|
attr.opacity *= o;
|
|
return *this;
|
|
}
|
|
|
|
SDraw& SDraw::LineCap(int linecap)
|
|
{
|
|
pathattr.cap = linecap;
|
|
if(!inpath)
|
|
attr.cap = linecap;
|
|
return *this;
|
|
}
|
|
|
|
SDraw& SDraw::LineJoin(int linejoin)
|
|
{
|
|
pathattr.join = linejoin;
|
|
if(!inpath)
|
|
attr.join = linejoin;
|
|
return *this;
|
|
}
|
|
|
|
SDraw& SDraw::MiterLimit(double l)
|
|
{
|
|
pathattr.miter_limit = l;
|
|
if(!inpath)
|
|
attr.miter_limit = l;
|
|
return *this;
|
|
}
|
|
|
|
SDraw& SDraw::EvenOdd(bool evenodd)
|
|
{
|
|
pathattr.evenodd = evenodd;
|
|
if(!inpath)
|
|
attr.evenodd = evenodd;
|
|
return *this;
|
|
}
|
|
|
|
SDraw& SDraw::Dash(const Vector<double>& dash, double start)
|
|
{
|
|
pathattr.dash <<= dash;
|
|
if(dash.GetCount() & 1)
|
|
pathattr.dash.Append(dash);
|
|
pathattr.dash_start = start;
|
|
if(!inpath) {
|
|
attr.dash <<= dash;
|
|
if(dash.GetCount() & 1)
|
|
attr.dash.Append(dash);
|
|
attr.dash_start = start;
|
|
}
|
|
return *this;
|
|
}
|
|
|
|
SDraw& SDraw::Dash(const char *dash, double start)
|
|
{
|
|
Vector<double> d;
|
|
CParser p(dash);
|
|
try {
|
|
while(!p.IsEof())
|
|
if(p.Char(':'))
|
|
start = p.ReadDouble();
|
|
else
|
|
d.Add(p.ReadDouble());
|
|
}
|
|
catch(CParser::Error) {}
|
|
Dash(d, start);
|
|
return *this;
|
|
}
|
|
|
|
void SDraw::SetRbuf()
|
|
{
|
|
rbuf.attach((agg::int8u *)~buffer, size.cx, size.cy, size.cx * 4);
|
|
pixf.attach(rbuf);
|
|
renb.attach(pixf);
|
|
renderer.attach(renb);
|
|
}
|
|
|
|
SDraw::SDraw(ImageBuffer& ib)
|
|
: buffer(ib),
|
|
curved(path),
|
|
curved_trans(curved, attr.mtx)
|
|
{
|
|
size = ib.GetSize();
|
|
sizef = size;
|
|
inpath = false;
|
|
pathrect = Null;
|
|
control = current = Null;
|
|
|
|
attr.cap = LINECAP_BUTT;
|
|
attr.join = LINEJOIN_MITER;
|
|
attr.miter_limit = 4;
|
|
attr.evenodd = false;
|
|
attr.hasclip = false;
|
|
attr.cliplevel = 0;
|
|
attr.dash_start = 0.0;
|
|
attr.opacity = 1.0;
|
|
attr.mask = false;
|
|
pathattr = attr;
|
|
|
|
SetRbuf();
|
|
}
|
|
|
|
END_UPP_NAMESPACE
|