summaryrefslogtreecommitdiff
path: root/hw6/src/sceneIO_transformation3d.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 /hw6/src/sceneIO_transformation3d.cpp
downloadcsci427-master.tar.xz
csci427-master.zip
Diffstat (limited to 'hw6/src/sceneIO_transformation3d.cpp')
-rw-r--r--hw6/src/sceneIO_transformation3d.cpp80
1 files changed, 80 insertions, 0 deletions
diff --git a/hw6/src/sceneIO_transformation3d.cpp b/hw6/src/sceneIO_transformation3d.cpp
new file mode 100644
index 0000000..cf54449
--- /dev/null
+++ b/hw6/src/sceneIO_transformation3d.cpp
@@ -0,0 +1,80 @@
+/******************************************************************/
+/* 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 "sceneIO_core.h"
+#include "sceneIO_transformation3d.h"
+
+#include "rotationX3d.h"
+#include "rotationY3d.h"
+#include "rotationZ3d.h"
+#include "rotation3d.h"
+#include "translation3d.h"
+#include "scale3d.h"
+
+#include "errorMessage.h"
+
+static transformation3d importRotationX(const XMLNode& node)
+{
+ return rotationX3d(getFloat(node, "angle", 0.0f));
+}
+
+static transformation3d importRotationY(const XMLNode& node)
+{
+ return rotationY3d(getFloat(node, "angle", 0.0f));
+}
+
+static transformation3d importRotationZ(const XMLNode& node)
+{
+ return rotationZ3d(getFloat(node, "angle", 0.0f));
+}
+
+static transformation3d importRotationAxis(const XMLNode& node)
+{
+ return rotation3d(getFloat(node, "angle", 0.0f),
+ getVec3d(node, "axis", vec3d(0.0f, 0.0f, 1.0f)));
+}
+
+static transformation3d importTranslation(const XMLNode& node)
+{
+ return translation3d(getVec3d(node, "offset", vec3d(0.0f)));
+}
+
+static transformation3d importScale(const XMLNode& node)
+{
+ vec3d scale = getVec3d(node, "scale", vec3d(1.0f));
+ return scale3d(scale.x, scale.y, scale.z);
+}
+
+
+
+void importTransformation(const XMLNode& node, transformation3d& transform)
+{
+ // sanity check
+ assert(node.name() == "transformation");
+
+ // accumulate all child nodes
+ for(XMLNode childNode = node.firstChild(); childNode.isValid(); childNode++)
+ {
+ // get transformation type:
+ std::string type = childNode.name();
+
+ // parse
+ if(type == "rotationX") transform *= importRotationX(childNode);
+ else if(type == "rotationY") transform *= importRotationY(childNode);
+ else if(type == "rotationZ") transform *= importRotationZ(childNode);
+ else if(type == "rotation") transform *= importRotationAxis(childNode);
+ else if(type == "translation") transform *= importTranslation(childNode);
+ else if(type == "scale") transform *= importScale(childNode);
+ else errorMessage("Unknown transformation (%s)", type.c_str());
+ }
+
+ // Done.
+}
+
+