2017-03-06 07:49:24 +00:00
|
|
|
#include "NodePath.hpp"
|
|
|
|
#include "String.hpp"
|
2017-10-20 23:42:10 +00:00
|
|
|
#include "GodotGlobal.hpp"
|
2017-03-06 02:30:46 +00:00
|
|
|
|
2017-10-03 10:37:34 +00:00
|
|
|
#include <gdnative/node_path.h>
|
2017-03-06 02:30:46 +00:00
|
|
|
|
|
|
|
namespace godot {
|
|
|
|
|
|
|
|
|
|
|
|
NodePath::NodePath()
|
|
|
|
{
|
2017-04-06 00:32:24 +00:00
|
|
|
String from = "";
|
2017-10-20 23:42:10 +00:00
|
|
|
godot::api->godot_node_path_new(&_node_path, (godot_string *) &from);
|
2017-04-06 00:32:24 +00:00
|
|
|
}
|
2017-03-06 02:30:46 +00:00
|
|
|
|
2017-04-06 00:32:24 +00:00
|
|
|
NodePath::NodePath(const NodePath &other)
|
|
|
|
{
|
|
|
|
String from = other;
|
2017-10-20 23:42:10 +00:00
|
|
|
godot::api->godot_node_path_new(&_node_path, (godot_string *) &from);
|
|
|
|
godot::api->godot_node_path_operator_equal(&_node_path, &other._node_path);
|
2017-03-06 02:30:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NodePath::NodePath(const String &from)
|
|
|
|
{
|
2017-10-20 23:42:10 +00:00
|
|
|
godot::api->godot_node_path_new(&_node_path, (godot_string *) &from);
|
2017-03-06 02:30:46 +00:00
|
|
|
}
|
|
|
|
|
2017-04-06 00:32:24 +00:00
|
|
|
NodePath::NodePath(const char *contents)
|
|
|
|
{
|
|
|
|
String from = contents;
|
2017-10-20 23:42:10 +00:00
|
|
|
godot::api->godot_node_path_new(&_node_path, (godot_string *) &from);
|
2017-04-06 00:32:24 +00:00
|
|
|
}
|
|
|
|
|
2017-03-06 02:30:46 +00:00
|
|
|
String NodePath::get_name(const int idx) const
|
|
|
|
{
|
2017-10-20 23:42:10 +00:00
|
|
|
godot_string str = godot::api->godot_node_path_get_name(&_node_path, idx);
|
2017-03-06 02:30:46 +00:00
|
|
|
|
|
|
|
return *(String *) &str;
|
|
|
|
}
|
|
|
|
|
|
|
|
int NodePath::get_name_count() const
|
|
|
|
{
|
2017-10-20 23:42:10 +00:00
|
|
|
return godot::api->godot_node_path_get_name_count(&_node_path);
|
2017-03-06 02:30:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
String NodePath::get_subname(const int idx) const
|
|
|
|
{
|
2017-10-20 23:42:10 +00:00
|
|
|
godot_string str = godot::api->godot_node_path_get_subname(&_node_path, idx);
|
2017-03-06 02:30:46 +00:00
|
|
|
return *(String *) &str;
|
|
|
|
}
|
|
|
|
|
|
|
|
int NodePath::get_subname_count() const
|
|
|
|
{
|
2017-10-20 23:42:10 +00:00
|
|
|
return godot::api->godot_node_path_get_subname_count(&_node_path);
|
2017-03-06 02:30:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool NodePath::is_absolute() const
|
|
|
|
{
|
2017-10-20 23:42:10 +00:00
|
|
|
return godot::api->godot_node_path_is_absolute(&_node_path);
|
2017-03-06 02:30:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool NodePath::is_empty() const
|
|
|
|
{
|
2017-10-20 23:42:10 +00:00
|
|
|
return godot::api->godot_node_path_is_empty(&_node_path);
|
2017-03-06 02:30:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NodePath::operator String() const
|
|
|
|
{
|
2017-10-20 23:42:10 +00:00
|
|
|
godot_string str = godot::api->godot_node_path_as_string(&_node_path);
|
2017-03-06 02:30:46 +00:00
|
|
|
|
|
|
|
return *(String *) &str;
|
|
|
|
}
|
|
|
|
|
2017-04-06 00:32:24 +00:00
|
|
|
void NodePath::operator =(const NodePath& other)
|
|
|
|
{
|
2017-10-20 23:42:10 +00:00
|
|
|
godot::api->godot_node_path_operator_equal(&_node_path, &other._node_path);
|
2017-04-06 00:32:24 +00:00
|
|
|
}
|
|
|
|
|
2017-03-06 02:30:46 +00:00
|
|
|
NodePath::~NodePath()
|
|
|
|
{
|
2017-10-20 23:42:10 +00:00
|
|
|
godot::api->godot_node_path_destroy(&_node_path);
|
2017-03-06 02:30:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|