Switching to 4.3 with C++, some rules have changed. Now memnew and memdelete is forced.
Read about making a wrapper, but that doesn’t worked for create a node, then add it to a node as a child.
For now I only found this solution, but I really don’t like this way.
// in some.cpp
Button btn = memnew(Button);
somenode.add_child(btn);
// latter in other some2.cpp
for(size_t i {} ; i < get_children();i++){
...
if (...) memdelete(child);
}
According to the memory.h interface memnew doesn’t use any special placement mechanism. So it ends up essentially being the same as new. So this would not effect smart pointers functionality and any need to call delete manually. Which would be the case if you use a memnew_placement call.
// Some.hpp
class Some : public Node2D{
...
}
// OtherFile.hpp
auto Add() -> void {
Some* d = memnew(Some);
AParentNode.add_child(d);
}
auto Remove() -> void {
for (size_t i ...
memdelete( AParentNode.getchild(i) );
}
Your example isn’t clear. But since you want to preserve the parent and remove the children i think the for loop is your best bet.
You could also say this if the nodes are part of the scene tree.
child.queue_free()
If you want to make a unique_ptr you could try this
unique_ptr<SomeNode> node (memnew(SomeNode));
But this should probably be avoided as Godot doesn’t include much of the standard library. And you may want to modify the default_deleter behavior in some cases anyway.
The problem with using unique pointer is that it shouldn’t be shared, and when passing ownership should use the move syntax. Once your unique pointers goes out of scope it will delete the memory and Godot may try and access the raw pointer and free it later. Hence the invalid free error.