From a64f9e671936451d7a3a60191dcca6e37e97e585 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Thu, 9 Jul 2009 21:03:16 +0000 Subject: Implement removing/inserting in the middle of a dmnsn_array*. --- libdimensionxx/scene.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'libdimensionxx/scene.cpp') diff --git a/libdimensionxx/scene.cpp b/libdimensionxx/scene.cpp index 4ff19e1..1bff351 100644 --- a/libdimensionxx/scene.cpp +++ b/libdimensionxx/scene.cpp @@ -99,6 +99,23 @@ namespace Dimension dmnsn_array_push(dmnsn()->objects, &cobject); } + // Remove an object + void + Scene::remove_object(Iterator i) + { + // Find it in the dmnsn_array* of objects and remove it + for (unsigned int j = 0; j < dmnsn_array_size(dmnsn()->objects); ++j) { + dmnsn_object* cobject; + dmnsn_array_get(dmnsn()->objects, j, &cobject); + if (cobject == i->dmnsn()) { + dmnsn_array_remove(dmnsn()->objects, j); + break; + } + } + // Remove it from the std::list + m_objects.erase(i.iterator()); + } + // Access the wrapped C object. dmnsn_scene* -- cgit v1.2.3