summaryrefslogtreecommitdiff
path: root/hw4/src/boundedCompound.cpp
diff options
context:
space:
mode:
author53hornet <53hornet@gmail.com>2019-02-02 23:33:15 -0500
committer53hornet <53hornet@gmail.com>2019-02-02 23:33:15 -0500
commitdb072ad4dc181eca5a1458656b130beb43f475bf (patch)
treea3c03c7f5497cb70503e2486662fa85cfb53415a /hw4/src/boundedCompound.cpp
downloadcsci427-db072ad4dc181eca5a1458656b130beb43f475bf.tar.xz
csci427-db072ad4dc181eca5a1458656b130beb43f475bf.zip
Diffstat (limited to 'hw4/src/boundedCompound.cpp')
-rw-r--r--hw4/src/boundedCompound.cpp93
1 files changed, 93 insertions, 0 deletions
diff --git a/hw4/src/boundedCompound.cpp b/hw4/src/boundedCompound.cpp
new file mode 100644
index 0000000..1f43a82
--- /dev/null
+++ b/hw4/src/boundedCompound.cpp
@@ -0,0 +1,93 @@
+/******************************************************************/
+/* This file is part of the homework assignments for CSCI-427/527 */
+/* at The College of William & Mary and authored by Pieter Peers. */
+/* No part of this file, whether altered or in original form, can */
+/* be distributed or used outside the context of CSCI-427/527 */
+/* without consent of either the College of William & Mary or */
+/* Pieter Peers. */
+/******************************************************************/
+#include <cassert>
+#include <algorithm>
+
+#include "boundedCompound.h"
+#include "intersector_factory_base.h"
+
+/////////////////
+// Constructor //
+/////////////////
+boundedCompound::boundedCompound(void)
+ : boundedPrimitive()
+{
+ _transform = transformation3d();
+ _intersector = nullptr;
+}
+
+
+boundedCompound::boundedCompound(const transformation3d& transform, const std::shared_ptr<const shader_base>& shader)
+
+ : boundedPrimitive(boundingBox(), shader)
+{
+ _transform = transform;
+ _intersector = nullptr;
+}
+
+
+/////////////
+// Methods //
+/////////////
+intersectionPoint boundedCompound::intersect(const ray& r) const
+{
+ // sanity check
+ assert(_intersector);
+
+ // HW5: Implement this
+ // Incorporate _transformation in the intersection computation.
+ // Returns: intersectionPoint
+ // Modifies: nothing.
+
+ // pass intersection computation to _intersector
+ intersectionPoint ip = _intersector->intersect(r);
+
+ // Done.
+ return ip;
+}
+
+
+void boundedCompound::initialize(const intersector_factory_base& ifb)
+{
+ // create the _intersector
+ _intersector = ifb(*this);
+}
+
+
+void boundedCompound::initializeBoundingBox(void)
+{
+ // compute the bounding box in world coordinates
+ _bb = boundingBox();
+ for_each(compounds().begin(), compounds().end(), [&](const std::shared_ptr<const boundedPrimitive>& prim)
+ {
+ _bb += transform(prim->boundingbox(), _transform);
+ });
+}
+
+
+bool boundedCompound::hasShader(void) const
+{
+ // check if this has a shader
+ if(boundedPrimitive::hasShader()) return true;
+
+ // check if each child has a shader
+ for(auto itr = compounds().begin(); itr != compounds().end(); itr++)
+ {
+ if(!(*itr)->hasShader()) return false;
+ }
+
+ // Done.
+ return true;
+}
+
+
+void boundedCompound::_print(std::ostream& s) const
+{
+ s << "boundedCompound (" << _bb << ", " << compounds().size() << " compounds)";
+}