1 /*! ========================================================================
2 ** Extended Template and Library
3 ** Surface Class Implementation
6 ** Copyright (c) 2002 Robert B. Quattlebaum Jr.
7 ** Copyright (c) 2008 Chris Moore
9 ** This package is free software; you can redistribute it and/or
10 ** modify it under the terms of the GNU General Public License as
11 ** published by the Free Software Foundation; either version 2 of
12 ** the License, or (at your option) any later version.
14 ** This package is distributed in the hope that it will be useful,
15 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 ** General Public License for more details.
19 ** === N O T E S ===========================================================
21 ** This is an internal header file, included by other ETL headers.
22 ** You should not attempt to use it directly.
24 ** ========================================================================= */
26 /* === S T A R T =========================================================== */
28 #ifndef __ETL__SURFACE_H
29 #define __ETL__SURFACE_H
31 /* === H E A D E R S ======================================================= */
38 /* === M A C R O S ========================================================= */
40 /* === C L A S S E S & S T R U C T S ======================================= */
44 template <typename T, typename AT>
49 typedef AT accumulator_type;
51 accumulator_type cook(const value_type& x)const { return (accumulator_type)x; }
52 value_type uncook(const accumulator_type& x)const { return (value_type)x; }
55 template <typename T, typename AT=T, class VP=value_prep<T,AT> >
60 typedef AT accumulator_type;
61 typedef value_type* pointer;
62 typedef const value_type* const_pointer;
63 typedef value_type& reference;
64 typedef generic_pen<value_type,accumulator_type> pen;
65 typedef generic_pen<const value_type,accumulator_type> const_pen;
66 typedef VP value_prep_type;
68 typedef alpha_pen<const_pen> const_alpha_pen;
69 typedef alpha_pen<pen> non_const_alpha_pen;
71 typedef typename pen::difference_type size_type;
72 typedef typename pen::difference_type difference_type;
74 typedef typename pen::iterator_x iterator_x;
75 typedef typename pen::iterator_y iterator_y;
76 typedef typename pen::const_iterator_x const_iterator_x;
77 typedef typename pen::const_iterator_y const_iterator_y;
81 value_type *zero_pos_;
82 typename difference_type::value_type pitch_;
86 value_prep_type cooker_;
88 void swap(const surface &x)
90 std::swap(data_,x.data_);
91 std::swap(zero_pos_,x.zero_pos_);
92 std::swap(pitch_,x.pitch_);
95 std::swap(deletable_,x.deletable_);
104 deletable_(false) { }
106 surface(value_type* data, int w, int h, bool deletable=false):
109 pitch_(sizeof(value_type)*w),
111 deletable_(deletable) { }
113 surface(const typename size_type::value_type &w, const typename size_type::value_type &h):
114 data_(new value_type[w*h]),
116 pitch_(sizeof(value_type)*w),
120 surface(const size_type &s):
121 data_(new value_type[s.x*s.y]),
123 pitch_(sizeof(value_type)*s.x),
127 template <typename _pen>
128 surface(const _pen &_begin, const _pen &_end)
130 typename _pen::difference_type size=_end-_begin;
132 data_=new value_type[size.x*size.y];
136 pitch_=sizeof(value_type)*w_;
143 (*this)[y][x]=_begin.get_value_at(x,y);
146 surface(const surface &s):
147 data_(s.data_?new value_type[s.w_*s.h_]:0),
148 zero_pos_(data_+(s.zero_pos_-s.data_)),
152 deletable_(s.data_?true:false)
158 memcpy(data_,s.data_,abs(pitch_)*h_);
171 { return size_type(w_,h_); }
173 typename size_type::value_type get_pitch()const { return pitch_; }
174 typename size_type::value_type get_w()const { return w_; }
175 typename size_type::value_type get_h()const { return h_; }
177 const surface &mirror(const surface &rhs)
179 if(deletable_)delete [] data_;
182 zero_pos_=rhs.zero_pos_;
191 const surface &operator=(const surface &rhs)
193 set_wh(rhs.w_,rhs.h_);
194 zero_pos_=data_+(rhs.zero_pos_-rhs.data_);
198 memcpy(data_,rhs.data_,pitch_*h_);
204 set_wh(typename size_type::value_type w, typename size_type::value_type h)
208 if(w==w_ && h==h_ && deletable_)
216 pitch_=sizeof(value_type)*w_;
217 zero_pos_=data_=new value_type[h_*w_];
222 fill(value_type v, int x, int y, int w, int h)
225 if(w<=0 || h<=0)return;
227 pen PEN(get_pen(x,y));
229 for(i=0;i<h;i++,PEN.inc_y(),PEN.dec_x(w))
233 template <class _pen> void
234 fill(value_type v, _pen& PEN, int w, int h)
237 if(w<=0 || h<=0)return;
240 for(y=0;y<h;y++,PEN.inc_y(),PEN.dec_x(w))
251 for(y=0;y<h_;y++,pen_.inc_y(),pen_.dec_x(w_))
255 template <class _pen> void blit_to(_pen &pen)
256 { return blit_to(pen,0,0, get_w(),get_h()); }
258 template <class _pen> void
259 blit_to(_pen &DEST_PEN,
260 int x, int y, int w, int h) //src param
278 //clip width against dest width
279 w = std::min((long)w,(long)(DEST_PEN.end_x()-DEST_PEN.x()));
280 h = std::min((long)h,(long)(DEST_PEN.end_y()-DEST_PEN.y()));
282 //clip width against src width
283 w = std::min(w,w_-x);
284 h = std::min(h,h_-y);
289 pen SOURCE_PEN(get_pen(x,y));
291 for(; h>0; h--,DEST_PEN.inc_y(),SOURCE_PEN.inc_y())
294 for(i=0; i<w; i++,DEST_PEN.inc_x(),SOURCE_PEN.inc_x())
296 DEST_PEN.put_value(SOURCE_PEN.get_value());
307 if(pitch_==(signed int)sizeof(value_type)*w_)
308 memset(data_,0,h_*pitch_);
314 operator[](const int &y)
315 { assert(data_); return (pointer)(((char*)zero_pos_)+y*pitch_); }
318 operator[](const int &y)const
319 { assert(data_); return (const_pointer)(((const char*)zero_pos_)+y*pitch_); }
326 zero_pos_=(pointer)(((char*)zero_pos_)+pitch_*h_);
341 operator bool()const { return is_valid(); }
343 pen begin() { assert(data_); return pen(data_,w_,h_,pitch_); }
344 pen get_pen(int x, int y) { assert(data_); return begin().move(x,y); }
345 pen end() { assert(data_); return get_pen(w_,h_); }
347 const_pen begin()const { assert(data_); return const_pen(data_,w_,h_,pitch_); }
348 const_pen get_pen(int x, int y)const { assert(data_); return begin().move(x,y); }
349 const_pen end()const { assert(data_); return get_pen(w_,h_); }
352 value_type linear_sample(const float x, const float y)const
354 int u(floor_to_int(x)), v(floor_to_int(y));
356 static const float epsilon(1.0e-6);
358 if(x<0.0f)u=0,a=0.0f;
359 else if(x>w_-1)u=w_-1,a=0.0f;
362 if(y<0.0f)v=0,b=0.0f;
363 else if(y>h_-1)v=h_-1,b=0.0f;
367 c(1.0f-a), d(1.0f-b),
368 e(a*d),f(c*b),g(a*b);
370 accumulator_type ret(cooker_.cook((*this)[v][u])*(c*d));
371 if(e>=epsilon)ret+=cooker_.cook((*this)[v][u+1])*e;
372 if(f>=epsilon)ret+=cooker_.cook((*this)[v+1][u])*f;
373 if(g>=epsilon)ret+=cooker_.cook((*this)[v+1][u+1])*g;
374 return cooker_.uncook(ret);
378 value_type cosine_sample(const float x, const float y)const
380 int u(floor_to_int(x)), v(floor_to_int(y));
382 static const float epsilon(1.0e-6);
384 if(x<0.0f)u=0,a=0.0f;
385 else if(x>w_-1)u=w_-1,a=0.0f;
388 if(y<0.0f)v=0,b=0.0f;
389 else if(y>h_-1)v=h_-1,b=0.0f;
392 a=(1.0f-cos(a*3.1415927f))*0.5f;
393 b=(1.0f-cos(b*3.1415927f))*0.5f;
396 c(1.0f-a), d(1.0f-b),
397 e(a*d),f(c*b),g(a*b);
399 accumulator_type ret(cooker_.cook((*this)[v][u])*(c*d));
400 if(e>=epsilon)ret+=cooker_.cook((*this)[v][u+1])*e;
401 if(f>=epsilon)ret+=cooker_.cook((*this)[v+1][u])*f;
402 if(g>=epsilon)ret+=cooker_.cook((*this)[v+1][u+1])*g;
404 return cooker_.uncook(ret);
408 value_type cubic_sample(float x, float y)const
411 #define P(x) (((x)>=0)?((x)*(x)*(x)):0.0f)
412 #define R(x) ( P(x+2) - 4.0f*P(x+1) + 6.0f*P(x) - 4.0f*P(x-1) )*(1.0f/6.0f)
413 #define F(i,j) (cooker_.cook((*this)[max(min(j+v,h_-1),0)][max(min(i+u,w_-1),0)])*(R((i)-a)*R(b-(j))))
414 #define Z(i,j) ret+=F(i,j)
415 #define X(i,j) // placeholder... To make box more symmetric
417 int u(floor_to_int(x)), v(floor_to_int(y));
421 if(x<0.0f)u=0,a=0.0f;
422 else if(u>w_-1)u=w_-1,a=0.0f;
426 if(y<0.0f)v=0,b=0.0f;
427 else if(v>h_-1)v=h_-1,b=0.0f;
431 accumulator_type ret(F(0,0));
432 Z(-1,-1); Z(-1, 0); Z(-1, 1); Z(-1, 2);
433 Z( 0,-1); X( 0, 0); Z( 0, 1); Z( 0, 2);
434 Z( 1,-1); Z( 1, 0); Z( 1, 1); Z( 1, 2);
435 Z( 2,-1); Z( 2, 0); Z( 2, 1); Z( 2, 2);
437 return cooker_.uncook(ret);
446 #define f(j,i) (cooker_.cook((*this)[j][i]))
447 //Using catmull rom interpolation because it doesn't blur at all
448 //bezier curve with intermediate ctrl pts: 0.5/3(p(i+1) - p(i-1)) and similar
449 accumulator_type xfa [4];
451 //precalculate indices (all clamped) and offset
452 const int xi = x > 0 ? (x < w_ ? (int)floor(x) : w_-1) : 0;
453 const int xa[] = {std::max(0,xi-1),xi,std::min(w_-1,xi+1),std::min(w_-1,xi+2)};
455 const int yi = y > 0 ? (y < h_ ? (int)floor(y) : h_-1) : 0;
456 const int ya[] = {std::max(0,yi-1),yi,std::min(h_-1,yi+1),std::min(h_-1,yi+2)};
458 const float xf = x-xi;
459 const float yf = y-yi;
461 //figure polynomials for each point
464 0.5*xf*(xf*(xf*(-1) + 2) - 1), //-t + 2t^2 -t^3
465 0.5*(xf*(xf*(3*xf - 5)) + 2), //2 - 5t^2 + 3t^3
466 0.5*xf*(xf*(-3*xf + 4) + 1), //t + 4t^2 - 3t^3
467 0.5*xf*xf*(xf-1) //-t^2 + t^3
472 0.5*yf*(yf*(yf*(-1) + 2) - 1), //-t + 2t^2 -t^3
473 0.5*(yf*(yf*(3*yf - 5)) + 2), //2 - 5t^2 + 3t^3
474 0.5*yf*(yf*(-3*yf + 4) + 1), //t + 4t^2 - 3t^3
475 0.5*yf*yf*(yf-1) //-t^2 + t^3
478 //evaluate polynomial for each row
479 for(int i = 0; i < 4; ++i)
481 xfa[i] = f(ya[i],xa[0])*txf[0] + f(ya[i],xa[1])*txf[1] + f(ya[i],xa[2])*txf[2] + f(ya[i],xa[3])*txf[3];
484 //return the cumulative column evaluation
485 return cooker_.uncook(xfa[0]*tyf[0] + xfa[1]*tyf[1] + xfa[2]*tyf[2] + xfa[3]*tyf[3]);
490 value_type sample_rect(float x0,float y0,float x1,float y1) const
492 const surface &s = *this;
494 //assumes it's clamped to the boundary of the image
495 //force min max relationship for x0,x1 and y0,y1
496 if(x0 > x1) std::swap(x0,x1);
497 if(y0 > y1) std::swap(y0,y1);
499 //local variable madness
500 //all things that want to inter-operate should provide a default value constructor for = 0
501 accumulator_type acum = 0;
504 int xib=(int)floor(x0),
507 int yib=(int)floor(y0),
510 //the weight for the pixel should remain the same...
511 float weight = (y1-y0)*(x1-x0);
514 float ylast = y0, xlastb = x0;
515 const_pen pen_ = s.get_pen(xib,yib);
517 for(yi = yib; yi < yie; ylast = ++yi, pen_.inc_y())
519 const float yweight = yi+1 - ylast;
521 float xlast = xlastb;
522 for(xi = xib; xi < xie; xlast = ++xi, pen_.inc_x())
524 const float w = yweight*(xi+1 - xlast);
525 acum += cooker_.cook(pen_.get_value())*w;
528 //post... with next being fractional...
529 const float w = yweight*(x1 - xlast);
530 acum += cooker_.cook(pen_.get_value())*w;
535 //post in y direction... must have all x...
537 const float yweight = y1 - ylast;
539 float xlast = xlastb;
540 for(xi = xib; xi < xie; xlast = ++xi)
542 const float w = yweight*(xi+1 - xlast);
544 acum += cooker_.cook(pen_.get_value())*w;
547 //post... with next being fractional...
548 const float w = yweight*(x1 - xlast);
549 acum += cooker_.cook(pen_.get_value())*w;
553 return cooker_.uncook(acum);
556 value_type sample_rect_clip(float x0,float y0,float x1,float y1) const
558 const surface &s = *this;
560 //assumes it's clamped to the boundary of the image
561 //force min max relationship for x0,x1 and y0,y1
562 if(x0 > x1) std::swap(x0,x1);
563 if(y0 > y1) std::swap(y0,y1);
565 //local variable madness
566 //all things that want to inter-operate should provide a default value constructor for = 0
567 accumulator_type acum = 0;
570 int xib=(int)floor(x0),
573 int yib=(int)floor(y0),
576 //the weight for the pixel should remain the same...
577 float weight = (y1-y0)*(x1-x0);
581 //clip to the input region
582 if(x0 >= s.get_w() || x1 <= 0) return acum;
583 if(y0 >= s.get_h() || y1 <= 0) return acum;
585 if(x0 < 0) { x0 = 0; xib = 0; }
588 x1 = s.get_w(); //want to be just below the last pixel...
592 if(y0 < 0) { y0 = 0; yib = 0; }
595 y1 = s.get_h(); //want to be just below the last pixel...
599 float ylast = y0, xlastb = x0;
600 const_pen pen = s.get_pen(xib,yib);
602 for(yi = yib; yi < yie; ylast = ++yi, pen.inc_y())
604 const float yweight = yi+1 - ylast;
606 float xlast = xlastb;
607 for(xi = xib; xi < xie; xlast = ++xi, pen.inc_x())
609 const float w = yweight*(xi+1 - xlast);
610 acum += cooker_.cook(pen.get_value())*w;
613 //post... with next being fractional...
614 const float w = yweight*(x1 - xlast);
615 acum += cooker_.cook(pen.get_value())*w;
620 //post in y direction... must have all x...
622 const float yweight = y1 - ylast;
624 float xlast = xlastb;
625 for(xi = xib; xi < xie; xlast = ++xi)
627 const float w = yweight*(xi+1 - xlast);
629 acum += cooker_.cook(pen.get_value())*w;
632 //post... with next being fractional...
633 const float w = yweight*(x1 - xlast);
634 acum += cooker_.cook(pen.get_value())*w;
638 return cooker_.uncook(acum);
644 /* === T Y P E D E F S ===================================================== */
647 /* === E N D =============================================================== */