Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #include <rve_render_client/triangles.h>
00031 #include <rve_render_client/material.h>
00032 #include <rve_render_client/scene.h>
00033
00034 #include <rve_msgs/Triangles.h>
00035 #include <rve_interfaces/Triangles.h>
00036
00037 #include <boost/bind.hpp>
00038
00039 namespace rve_render_client
00040 {
00041
00042 TrianglesPtr createTriangles(Scene* scene, const rve_msgs::TrianglesConstPtr& triangles)
00043 {
00044 TrianglesPtr inst(new Triangles(triangles), destroySceneObject);
00045 scene->addObject(inst.get());
00046 return inst;
00047 }
00048
00049 Triangles::Triangles(const rve_msgs::TrianglesConstPtr& triangles)
00050 : triangles_(triangles)
00051 {
00052 proxy_index_ = addProxy("triangles");
00053 }
00054
00055 Triangles::~Triangles()
00056 {
00057 }
00058
00059 rve_interfaces::TrianglesProxy* Triangles::getProxy(const ContextInfo& context)
00060 {
00061 return SceneObject::getProxy<rve_interfaces::TrianglesProxy>(context, proxy_index_);
00062 }
00063
00064 void Triangles::doCreate(ContextInfo& context)
00065 {
00066 rve_interfaces::TrianglesProxy* proxy = getProxy(context);
00067 proxy->create(getSceneID(context.scene), getID(), *triangles_);
00068 }
00069
00070 void Triangles::doDestroy(ContextInfo& context)
00071 {
00072 rve_interfaces::TrianglesProxy* proxy = getProxy(context);
00073 proxy->destroy(getSceneID(context.scene), getID());
00074 }
00075
00076 #define TRIANGLES_MULTIPLEX(func, ...) \
00077 multiplex<rve_interfaces::TrianglesProxy>(boost::bind(&rve_interfaces::TrianglesProxy::func, _1, _2, getID(), __VA_ARGS__), proxy_index_);
00078
00079
00080 }
00081
00082