X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=laserbrain_demo;a=blobdiff_plain;f=src%2Fscene.h;h=c0a56127fd2212ed4d57eb21c4039183c73616a0;hp=f295bbced04a810bc867419b9a75dff534753291;hb=d29eba477666f0753170d9ad549a4715ce071d04;hpb=68e71418a70dab4174981d5a579e96a9089f8682 diff --git a/src/scene.h b/src/scene.h index f295bbc..c0a5612 100644 --- a/src/scene.h +++ b/src/scene.h @@ -60,6 +60,13 @@ public: bool remove_node(SceneNode *n); bool have_node(SceneNode *n) const; + // find node by name + SceneNode *find_node(const char *name) const; + // match nodes with regexp and return the first that matches + SceneNode *match_node(const char *qstr) const; + // match nodes with regexp and return a list of matches + std::list match_nodes(const char *qstr) const; + /* find and remove all nodes whose names match the regexp * XXX at the moment this has the effect of flattening the hierarchy in the * result scene. If we ever need verbatim extraction of whole subtrees we'll @@ -77,6 +84,7 @@ public: void draw() const; }; +//! Resource manager for Scenes class SceneSet : public DataSet { private: static Scene *create_scene();