]> Shamusworld >> Repos - architektonas/blobdiff - src/container.cpp
Add Dimension sizing.
[architektonas] / src / container.cpp
index b69a6e3ce679c155c2ddd4ea26d9d40a1764c7ed..e909c04ae14b1ba8f9a7e6c0af4b2464cf76aff0 100644 (file)
@@ -4,7 +4,7 @@
 // (C) 2011 Underground Software
 // See the README and GPLv3 files for licensing and warranty information
 //
-// JLH = James L. Hammons <jlhamm@acm.org>
+// JLH = James Hammons <jlhamm@acm.org>
 //
 // WHO  WHEN        WHAT
 // ---  ----------  ------------------------------------------------------------
 #include "container.h"
 
 #include <QtGui>
+#include "dimension.h"
+#include "painter.h"
 
 
 Container::Container(Vector p1, Object * p/*= NULL*/): Object(p1, p),
+       isTopLevelContainer(false),
        dragging(false), draggingHandle1(false), draggingHandle2(false)//, needUpdate(false)
 {
+       type = OTContainer;
 }
 
+
+// Copy constructor
+Container::Container(const Container & copy): Object(copy.position, copy.parent)
+{
+       // Use overloaded assignment operator
+       *this = copy;
+       type = OTContainer;
+}
+
+
 Container::~Container()
 {
-       // No memory leaks!
-       while (objects.size() > 0)
+       Clear();
+}
+
+
+// Assignment operator
+Container & Container::operator=(const Container & from)
+{
+       // Take care of self-assignment
+       if (this == &from)
+               return *this;
+
+       Clear();
+
+       // Small problem with this approach: if the copied object goes out of scope,
+       // all of the objects we copied in here will be deleted. D'oh!
+       for(uint i=0; i<from.objects.size(); i++)
        {
-               delete objects[0];
-               objects.erase(objects.begin());
+               Object * object = from.objects[i];
+
+               // Need to copy the object here...
+
+               objects.push_back(object);
        }
+
+       return *this;
 }
 
+
 /*virtual*/ void Container::Draw(Painter * painter)
 {
-       for(int i=0; i<(int)objects.size(); i++)
+       QRectF boundary;
+
+       for(std::vector<Object *>::iterator i=objects.begin(); i!=objects.end(); i++)
+//     for(int i=0; i<(int)objects.size(); i++)
+       {
+#if 0
+//printf("Container: About to draw (object = $%X)\n", objects[i]);
                objects[i]->Draw(painter);
+               bounds = bounds.united(objects[i].RectangularExtents());
+#else
+               (*i)->Draw(painter);
+               boundary = boundary.united((*i)->Extents());
+#endif
+       }
+
+       if (state == OSSelected)
+       {
+               painter->SetPen(QPen(Qt::magenta, 2.0, Qt::DashLine));
+               painter->SetBrush(QBrush(Qt::NoBrush));
+               painter->DrawRect(boundary);
+       }
 }
 
+
 /*virtual*/ Vector Container::Center(void)
 {
        return position;
@@ -57,108 +111,122 @@ I click here and drag there?"
 Also: should put the snap logic into the Object base class (as a static method)...
 */
 
+
+// Need to add checking here for clicking on a member of a group (Container),
+// and checking for if it's a top level container (the DrawingView's document).
+/*
+One approach is to check for the parent of the container: If it's NULL, then it's
+the DrawingView's document. It might be better, though, to set a boolean like
+isTopLevelContainer so that we can do things like edit members of a group without
+having to ungroup them first (like Inkscape).
+*/
 /*virtual*/ bool Container::Collided(Vector point)
 {
        objectWasDragged = false;
-       Vector v1 = position - point;
+//     Vector v1 = position - point;
 
-#if 0
-       if (state == OSInactive)
-       {
-//printf("Circle: pp = %lf, length = %lf, distance = %lf\n", parameterizedPoint, lineSegment.Magnitude(), distance);
-//printf("      v1.Magnitude = %lf, v2.Magnitude = %lf\n", v1.Magnitude(), v2.Magnitude());
-//printf("      point = %lf,%lf,%lf; p1 = %lf,%lf,%lf; p2 = %lf,%lf,%lf\n", point.x, point.y, point.z, position.x, position.y, position.z, endpoint.x, endpoint.y, endpoint.z);
-//printf("      \n", );
-//How to translate this into pixels from Document space???
-//Maybe we need to pass a scaling factor in here from the caller? That would make sense, as
-//the caller knows about the zoom factor and all that good kinda crap
-               if (v1.Magnitude() < 10.0)
-               {
-                       oldState = state;
-                       state = OSSelected;
-                       oldPoint = position; //maybe "position"?
-                       draggingHandle1 = true;
-                       return true;
-               }
-               else if ((v1.Magnitude() < radius + 2.0) && (v1.Magnitude() > radius - 2.0))
-               {
-                       oldState = state;
-                       state = OSSelected;
-                       oldPoint = point;
-                       dragging = true;
-                       return true;
-               }
-       }
-       else if (state == OSSelected)
-       {
-               // Here we test for collision with handles as well! (SOON!)
-/*
-Like so:
-               if (v1.Magnitude() < 2.0) // Handle #1
-               else if (v2.Magnitude() < 2.0) // Handle #2
-*/
-               if ((v1.Magnitude() < radius + 2.0) && (v1.Magnitude() > radius - 2.0))
-               {
-                       oldState = state;
-//                     state = OSInactive;
-                       oldPoint = point;
-                       dragging = true;
-                       return true;
-               }
-       }
-#else
        bool collision = false;
 
        // NOTE that this deletes the object on mouse down instead of mouse up. Have to
        // check to see how it feels to do it that way...
        if (deleteActive)
        {
-               for(int i=0; i<(int)objects.size(); i++)
+               for(std::vector<Object *>::iterator i=objects.begin(); i!=objects.end();)
                {
-                       if (objects[i]->Collided(point))
+                       if ((*i)->Collided(point))
                        {
-                               objects.erase(objects.begin() + i);     // Calls the destructor, (deletes the object, I presume... O_o)
-                               break;
+printf("Container::Collided: Deleting object ($%X)\n", *i);
+                               Object * objectToDelete = *i;
+                               objects.erase(i);
+                               delete objectToDelete;
                        }
+                       else
+                               i++;
                }
        }
        else
        {
-               for(int i=0; i<(int)objects.size(); i++)
+               for(std::vector<Object *>::iterator i=objects.begin(); i!=objects.end(); i++)
                {
-                       if (objects[i]->Collided(point))
+                       if ((*i)->Collided(point))
                                collision = true;
                }
        }
-#endif
 
-       // Do we decouple the state of the generic container from the objects inside??? Mebbe.
-       state = OSInactive;
-//     return false;
+       // We check to see if the container we're trying to access is the
+       // DrawingView's document. If so, we ignore the state of the container.
+       // Otherwise, we care about the state of the container. :-)
+       if (isTopLevelContainer)
+               state = OSInactive;
+       else
+       {
+               state = (collision ? OSSelected : OSInactive);
+
+               if (state == OSSelected)
+                       DeselectAll();
+       }
+
        return collision;
 }
 
+/*
+What we need to do is check for whether or not we're a top level container,
+and override the passing of stuff into the objects held. So here, if we're *NOT*
+a top level container, instead of passing PointerMoved to our contained objects,
+we check to see if our bounds are met (for selection rectangle, e.g.).
+
+Also, for things like being able to split point's hot spots we need to be able
+to check for that crap in the top level container. Which means that objects can
+still know how to move themselves, but they can also defer to their container
+as well. Which also means that things like HitTest() need to be in the Object
+class so that we can leverage that stuff here as well.
+*/
+
 // The TLC is passing all mouse movement here, so we're doing the same here.
 // Need to adjust all other objects to handle things correctly.
+
 // One optimization that will need to be done eventually is to subdivide the screen
 // into parts and keep subdividing until an acceptable number of objects lie within
 // the slice. This way, the GUI will still be responsive and *not* have to test
 // every object for collision.
 /*virtual*/ void Container::PointerMoved(Vector point)
 {
+       if (!isTopLevelContainer)
+       {
+               // check for selection rectangle too
+
+
+               needUpdate = true;
+
+               for(std::vector<Object *>::iterator i=objects.begin(); i!=objects.end(); i++)
+               {
+                       if ((*i)->HitTest(point))
+                       {
+                               state = OSSelected;
+                               return;
+                       }
+               }
+
+               state = OSInactive;
+               return;
+       }
+
 //     objectWasDragged = true;
 //printf("CONTAINER: PointerMoved()\n");
 
-       for(int i=0; i<(int)objects.size(); i++)
+       for(std::vector<Object *>::iterator i=objects.begin(); i!=objects.end(); i++)
+//     for(int i=0; i<(int)objects.size(); i++)
        {
-//             if (objects[i]->GetState() == OSSelected)
-                       objects[i]->PointerMoved(point);
+////           if (objects[i]->GetState() == OSSelected)
+//                     objects[i]->PointerMoved(point);
+               (*i)->PointerMoved(point);
        }
 
        // Generic container doesn't need this???
 //     needUpdate = false;
 }
 
+
 /*virtual*/ void Container::PointerReleased(void)
 {
        dragging = false;
@@ -179,20 +247,209 @@ about keeping track of old states...
                objects[i]->PointerReleased();
 }
 
+
 /*virtual*/ bool Container::NeedsUpdate(void)
 {
-       needUpdate = false;
+       // If this is *not* a top level container, then we treat it as an
+       // aggregate object.
+       if (!isTopLevelContainer)
+       {
+               return needUpdate;
+       }
 
-       for(int i=0; i<(int)objects.size(); i++)
+       // Search through objects for one that needs an update; if one is found,
+       // return immediately.
+       for(std::vector<Object *>::iterator i=objects.begin(); i!=objects.end(); i++)
        {
-               if (objects[i]->NeedsUpdate())
-                       needUpdate = true;
+               if ((*i)->NeedsUpdate())
+                       return true;
        }
 
-       return needUpdate;
+       return false;
 }
 
+
 /*virtual*/ void Container::Add(Object * object)
 {
        objects.push_back(object);
+printf("Container: Added object (=$%X). size = %li\n", object, objects.size());
+}
+
+
+/*virtual*/ QRectF Container::Extents(void)
+{
+       QRectF bounds;
+
+       for(std::vector<Object *>::iterator i=objects.begin(); i!=objects.end(); i++)
+               bounds = bounds.united((*i)->Extents());
+
+       return bounds;
 }
+
+
+void Container::Delete(Object * objectToDelete)
+{
+       std::vector<Object *>::iterator i = objects.begin();
+
+       while (i != objects.end())
+       {
+               if (*i == objectToDelete)
+               {
+                       objects.erase(i);
+                       delete objectToDelete;
+                       return;
+               }
+
+               i++;
+       }
+}
+
+
+void Container::DeleteSelectedItems(void)
+{
+       std::vector<Object *>::iterator i = objects.begin();
+
+       while (i != objects.end())
+       {
+               if ((*i)->state == OSSelected)
+               {
+                       delete *i;
+                       objects.erase(i);
+               }
+               else
+                       i++;
+       }
+}
+
+
+void Container::Clear(void)
+{
+       std::vector<Object *>::iterator i = objects.begin();
+
+       while (i != objects.end())
+       {
+printf("Container: Deleting object ($%X)...\n", *i);
+               delete (*i);
+               objects.erase(i);
+       }
+}
+
+
+void Container::SelectAll(void)
+{
+       for(unsigned int i=0; i<objects.size(); i++)
+               objects[i]->state = OSSelected;
+}
+
+
+void Container::DeselectAll(void)
+{
+       for(unsigned int i=0; i<objects.size(); i++)
+               objects[i]->state = OSInactive;
+}
+
+
+int Container::ItemsSelected(void)
+{
+       int selected = 0;
+
+       for(uint i=0; i<objects.size(); i++)
+               if (objects[i]->state == OSSelected)
+                       selected++;
+
+       return selected;
+}
+
+
+Object * Container::SelectedItem(unsigned int index)
+{
+       unsigned int selectedIndex = 0;
+
+       for(std::vector<Object *>::iterator i=objects.begin(); i!=objects.end(); i++)
+       {
+               if ((*i)->state == OSSelected)
+               {
+                       if (selectedIndex == index)
+                               return *i;
+                       else
+                               selectedIndex++;
+               }
+       }
+
+       return NULL;
+}
+
+
+void Container::MoveContentsTo(Container * newContainer)
+{
+       // Sanity check
+       if (newContainer == NULL)
+               return;
+
+       // Shuffle the contents of this container to the new one
+//     for(unsigned int i=0; i<objects.size(); i++)
+       for(std::vector<Object *>::iterator i=objects.begin(); i!=objects.end(); i++)
+       {
+               newContainer->Add(*i);
+               (*i)->Reparent(newContainer);
+       }
+
+       // & clear our vector
+       objects.clear();
+}
+
+
+void Container::MoveSelectedContentsTo(Container * newContainer)
+{
+       // Sanity check
+       if (newContainer == NULL)
+               return;
+
+       // Shuffle the contents of this container to the new one
+       for(std::vector<Object *>::iterator i=objects.begin(); i!=objects.end();)
+       {
+               if ((*i)->state != OSSelected)
+               {
+                       i++;
+                       continue;
+               }
+
+               newContainer->Add(*i);
+               (*i)->Reparent(newContainer);
+               objects.erase(i);
+       }
+}
+
+
+void Container::ResizeAllDimensions(double newSize)
+{
+       for(std::vector<Object *>::iterator i=objects.begin(); i!=objects.end(); i++)
+       {
+//             Object * object = *i;
+
+               if ((*i)->type == OTDimension)
+//             if (object->type == OTDimension)
+               {
+                       ((Dimension *)(*i))->size = newSize;
+               }
+               if ((*i)->type == OTContainer)
+               {
+                       ((Container *)(*i))->ResizeAllDimensions(newSize);
+               }
+       }
+}
+
+
+/*virtual*/ void Container::Enumerate(FILE * file)
+{
+       // Only put "CONTAINER" markers if *not* the top level container
+       if (parent != NULL)
+               fprintf(file, "CONTAINER\n");
+
+       for(uint i=0; i<objects.size(); i++)
+               objects[i]->Enumerate(file);
+
+       if (parent != NULL)
+               fprintf(file, "ENDCONTAINER\n");
+}
+