box.cpp
Go to the documentation of this file.
00001 /*
00002  * Copyright (c) 2010, Willow Garage, Inc.
00003  * All rights reserved.
00004  *
00005  * Redistribution and use in source and binary forms, with or without
00006  * modification, are permitted provided that the following conditions are met:
00007  *
00008  *     * Redistributions of source code must retain the above copyright
00009  *       notice, this list of conditions and the following disclaimer.
00010  *     * Redistributions in binary form must reproduce the above copyright
00011  *       notice, this list of conditions and the following disclaimer in the
00012  *       documentation and/or other materials provided with the distribution.
00013  *     * Neither the name of the Willow Garage, Inc. nor the names of its
00014  *       contributors may be used to endorse or promote products derived from
00015  *       this software without specific prior written permission.
00016  *
00017  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
00018  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
00019  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
00020  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
00021  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
00022  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
00023  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
00024  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
00025  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
00026  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
00027  * POSSIBILITY OF SUCH DAMAGE.
00028  */
00029 
00030 #include <rve_render_client/box.h>
00031 #include <rve_render_client/material.h>
00032 #include <rve_render_client/scene.h>
00033 #include <rve_msgs/make_vector3.h>
00034 
00035 #include <rve_interfaces/Box.h>
00036 
00037 #include <boost/bind.hpp>
00038 
00039 namespace rve_render_client
00040 {
00041 
00042 BoxPtr createBox()
00043 {
00044   BoxPtr inst(new Box(), destroySceneObject);
00045   return inst;
00046 }
00047 
00048 BoxPtr createBox(Scene* scene)
00049 {
00050   BoxPtr inst = createBox();
00051   scene->addObject(inst.get());
00052   return inst;
00053 }
00054 
00055 Box::Box()
00056 {
00057   orientation_.w = 1.0;
00058   scale_ = rve_msgs::makeVector3(1.0, 1.0, 1.0);
00059   proxy_index_ = addProxy("box");
00060 }
00061 
00062 Box::~Box()
00063 {
00064 }
00065 
00066 rve_interfaces::BoxProxy* Box::getProxy(const ContextInfo& context)
00067 {
00068   return SceneObject::getProxy<rve_interfaces::BoxProxy>(context, proxy_index_);
00069 }
00070 
00071 void Box::doCreate(ContextInfo& context)
00072 {
00073   rve_interfaces::BoxProxy* proxy = getProxy(context);
00074   proxy->create(getSceneID(context.scene), getID());
00075 
00076   const rve_common::UUID& scene_id = getSceneID(context.scene);
00077 
00078   if (material_)
00079   {
00080     proxy->setMaterialAsync(scene_id, getID(), material_->getID());
00081   }
00082 
00083   proxy->setPositionAsync(scene_id, getID(), position_);
00084   proxy->setOrientationAsync(scene_id, getID(), orientation_);
00085   proxy->setScaleAsync(scene_id, getID(), scale_);
00086 }
00087 
00088 void Box::doDestroy(ContextInfo& context)
00089 {
00090   rve_interfaces::BoxProxy* proxy = getProxy(context);
00091   proxy->destroy(getSceneID(context.scene), getID());
00092 }
00093 
00094 #define BOX_MULTIPLEX(func, ...) \
00095     multiplex<rve_interfaces::BoxProxy>(boost::bind(&rve_interfaces::BoxProxy::func, _1, _2, getID(), __VA_ARGS__), proxy_index_);
00096 
00097 void Box::setPosition(const rve_msgs::Vector3& pos)
00098 {
00099   position_ = pos;
00100   BOX_MULTIPLEX(setPositionAsync, pos);
00101 }
00102 
00103 void Box::setOrientation(const rve_msgs::Quaternion& orient)
00104 {
00105   orientation_ = orient;
00106   BOX_MULTIPLEX(setOrientationAsync, orient);
00107 }
00108 
00109 void Box::setScale(const rve_msgs::Vector3& scale)
00110 {
00111   scale_ = scale;
00112   BOX_MULTIPLEX(setScaleAsync, scale);
00113 }
00114 
00115 void Box::setMaterial(const MaterialPtr& mat)
00116 {
00117   material_ = mat;
00118   if (mat)
00119   {
00120     BOX_MULTIPLEX(setMaterialAsync, mat->getID());
00121   }
00122 }
00123 
00124 void Box::getContextDependencies(V_UUID& deps)
00125 {
00126   if (material_)
00127   {
00128     deps.push_back(material_->getID());
00129   }
00130 }
00131 
00132 } // namespace rviz_render_client
00133 
00134 


rve_render_client
Author(s): Josh Faust
autogenerated on Wed Dec 11 2013 14:31:32