X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=laserbrain_demo;a=blobdiff_plain;f=src%2Fexhibit.cc;h=2e818540258c98c52774c0f0ff6cd007f2037a96;hp=266a5835da32100a90b95028c14842cfbc8e06ff;hb=37b68f014b46922b885c6344d6b069cba3c9c3c5;hpb=b5ed5107e21ff834d5a4510b9047f976abb03dff diff --git a/src/exhibit.cc b/src/exhibit.cc index 266a583..2e81854 100644 --- a/src/exhibit.cc +++ b/src/exhibit.cc @@ -1,17 +1,8 @@ #include "exhibit.h" #include "snode.h" #include "scene.h" -#include "geomdraw.h" -#include "app.h" -class ExhibitPriv { -public: - Vec3 orig_pos; - Quat orig_rot; - SceneNode *orig_node; - - ExhibitPriv(); -}; +ExSelection ExSelection::null; // selection @@ -38,28 +29,21 @@ ExData::~ExData() delete voice; } -// private data for each exhibit type -ExhibitPriv::ExhibitPriv() -{ - orig_node = 0; -} - // exhibit class Exhibit::Exhibit() { - priv = new ExhibitPriv; + orig_parent = 0; + prev_slot = 0; } Exhibit::~Exhibit() { - delete priv; } void Exhibit::set_node(SceneNode *node) { - this->node = priv->orig_node = node; - priv->orig_pos = node->get_position(); - priv->orig_rot = node->get_rotation(); + this->node = node; + orig_parent = node->get_parent(); } ExSelection Exhibit::select(const Ray &ray) const @@ -84,33 +68,6 @@ void Exhibit::update(float dt) { } -void Exhibit::pre_draw() const -{ - if(node) { - glMatrixMode(GL_MODELVIEW); - glPushMatrix(); - glMultMatrixf(node->get_matrix()[0]); - } -} - -void Exhibit::draw() const -{ -} - -void Exhibit::post_draw() const -{ - if(node) { - glMatrixMode(GL_MODELVIEW); - glPopMatrix(); - - if(exsel_hover.ex == this) { - const AABox &bvol = get_aabox(); - draw_geom_object(&bvol); - } - } -} - - const AABox &Exhibit::get_aabox() const { aabb = node->get_bounds();