| 1 | /*
 | 
|---|
| 2 |  * Shape.cpp
 | 
|---|
| 3 |  *
 | 
|---|
| 4 |  *  Created on: Jun 18, 2010
 | 
|---|
| 5 |  *      Author: crueger
 | 
|---|
| 6 |  */
 | 
|---|
| 7 | 
 | 
|---|
| 8 | #include "Shape.hpp"
 | 
|---|
| 9 | #include "Shape_impl.hpp"
 | 
|---|
| 10 | 
 | 
|---|
| 11 | Shape::Shape(const Shape& src) :
 | 
|---|
| 12 |   impl(src.getImpl())
 | 
|---|
| 13 | {}
 | 
|---|
| 14 | 
 | 
|---|
| 15 | Shape::~Shape(){}
 | 
|---|
| 16 | 
 | 
|---|
| 17 | bool Shape::isInside(const Vector &point) const{
 | 
|---|
| 18 |   return impl->isInside(point);
 | 
|---|
| 19 | }
 | 
|---|
| 20 | 
 | 
|---|
| 21 | Shape::Shape(Shape::impl_ptr _impl) :
 | 
|---|
| 22 |     impl(_impl)
 | 
|---|
| 23 | {}
 | 
|---|
| 24 | 
 | 
|---|
| 25 | Shape &Shape::operator=(const Shape& rhs){
 | 
|---|
| 26 |   if(&rhs!=this){
 | 
|---|
| 27 |     impl=rhs.getImpl();
 | 
|---|
| 28 |   }
 | 
|---|
| 29 |   return *this;
 | 
|---|
| 30 | }
 | 
|---|
| 31 | 
 | 
|---|
| 32 | Shape::impl_ptr Shape::getImpl() const{
 | 
|---|
| 33 |   return impl;
 | 
|---|
| 34 | }
 | 
|---|
| 35 | 
 | 
|---|
| 36 | // allows arbitrary friendship, but only if implementation is known
 | 
|---|
| 37 | Shape::impl_ptr getShapeImpl(const Shape &shape){
 | 
|---|
| 38 |   return shape.getImpl();
 | 
|---|
| 39 | }
 | 
|---|
| 40 | 
 | 
|---|
| 41 | /***************************** Some simple Shapes ***************************/
 | 
|---|
| 42 | 
 | 
|---|
| 43 | Shape Everywhere(){
 | 
|---|
| 44 |   static Shape::impl_ptr impl = Shape::impl_ptr(new Everywhere_impl());
 | 
|---|
| 45 |   return Shape(impl);
 | 
|---|
| 46 | }
 | 
|---|
| 47 | 
 | 
|---|
| 48 | Shape Nowhere(){
 | 
|---|
| 49 |   static Shape::impl_ptr impl = Shape::impl_ptr(new Nowhere_impl());
 | 
|---|
| 50 |   return Shape(impl);
 | 
|---|
| 51 | }
 | 
|---|
| 52 | 
 | 
|---|
| 53 | /****************************** Operators ***********************************/
 | 
|---|
| 54 | 
 | 
|---|
| 55 | // AND
 | 
|---|
| 56 | 
 | 
|---|
| 57 | AndShape_impl::AndShape_impl(const Shape::impl_ptr &_lhs, const Shape::impl_ptr &_rhs) :
 | 
|---|
| 58 |   lhs(_lhs),rhs(_rhs)
 | 
|---|
| 59 | {}
 | 
|---|
| 60 | 
 | 
|---|
| 61 | AndShape_impl::~AndShape_impl(){}
 | 
|---|
| 62 | 
 | 
|---|
| 63 | bool AndShape_impl::isInside(const Vector &point){
 | 
|---|
| 64 |   return lhs->isInside(point) && rhs->isInside(point);
 | 
|---|
| 65 | }
 | 
|---|
| 66 | 
 | 
|---|
| 67 | Shape operator&&(const Shape &lhs,const Shape &rhs){
 | 
|---|
| 68 |   Shape::impl_ptr newImpl = Shape::impl_ptr(new AndShape_impl(getShapeImpl(lhs),getShapeImpl(rhs)));
 | 
|---|
| 69 |   return Shape(newImpl);
 | 
|---|
| 70 | }
 | 
|---|
| 71 | 
 | 
|---|
| 72 | // OR
 | 
|---|
| 73 | 
 | 
|---|
| 74 | OrShape_impl::OrShape_impl(const Shape::impl_ptr &_lhs, const Shape::impl_ptr &_rhs) :
 | 
|---|
| 75 |   lhs(_lhs),rhs(_rhs)
 | 
|---|
| 76 | {}
 | 
|---|
| 77 | 
 | 
|---|
| 78 | OrShape_impl::~OrShape_impl(){}
 | 
|---|
| 79 | 
 | 
|---|
| 80 | bool OrShape_impl::isInside(const Vector &point){
 | 
|---|
| 81 |   return rhs->isInside(point) || lhs->isInside(point);
 | 
|---|
| 82 | }
 | 
|---|
| 83 | 
 | 
|---|
| 84 | Shape operator||(const Shape &lhs,const Shape &rhs){
 | 
|---|
| 85 |   Shape::impl_ptr newImpl = Shape::impl_ptr(new OrShape_impl(getShapeImpl(lhs),getShapeImpl(rhs)));
 | 
|---|
| 86 |   return Shape(newImpl);
 | 
|---|
| 87 | }
 | 
|---|
| 88 | 
 | 
|---|
| 89 | // NOT
 | 
|---|
| 90 | 
 | 
|---|
| 91 | NotShape_impl::NotShape_impl(const Shape::impl_ptr &_arg) :
 | 
|---|
| 92 |   arg(_arg)
 | 
|---|
| 93 | {}
 | 
|---|
| 94 | 
 | 
|---|
| 95 | NotShape_impl::~NotShape_impl(){}
 | 
|---|
| 96 | 
 | 
|---|
| 97 | bool NotShape_impl::isInside(const Vector &point){
 | 
|---|
| 98 |   return !arg->isInside(point);
 | 
|---|
| 99 | }
 | 
|---|
| 100 | 
 | 
|---|
| 101 | Shape operator!(const Shape &arg){
 | 
|---|
| 102 |   Shape::impl_ptr newImpl = Shape::impl_ptr(new NotShape_impl(getShapeImpl(arg)));
 | 
|---|
| 103 |   return Shape(newImpl);
 | 
|---|
| 104 | }
 | 
|---|