mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-22 00:48:09 +01:00
Added a new dummy navigation server module.
This commit is contained in:
parent
45ffb33025
commit
88d12ace16
@ -57,6 +57,7 @@ slim_args = ''
|
||||
#slim_args += 'module_mesh_utils_enabled=no '
|
||||
#slim_args += 'module_minimp3_enabled=no '
|
||||
#slim_args += 'module_navigation_enabled=no '
|
||||
#slim_args += 'module_navigation_dummy_enabled=no '
|
||||
#slim_args += 'module_network_synchronizer_enabled=no '
|
||||
#slim_args += 'module_ogg_enabled=no '
|
||||
#slim_args += 'module_opensimplex_enabled=no '
|
||||
|
14
modules/navigation_dummy/SCsub
Normal file
14
modules/navigation_dummy/SCsub
Normal file
@ -0,0 +1,14 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
Import("env")
|
||||
Import("env_modules")
|
||||
|
||||
env_navigation = env_modules.Clone()
|
||||
|
||||
# Pandemonium source files
|
||||
|
||||
module_obj = []
|
||||
|
||||
env_navigation.add_source_files(module_obj, "*.cpp")
|
||||
|
||||
env.modules_sources += module_obj
|
7
modules/navigation_dummy/config.py
Normal file
7
modules/navigation_dummy/config.py
Normal file
@ -0,0 +1,7 @@
|
||||
|
||||
def can_build(env, platform):
|
||||
return True
|
||||
|
||||
|
||||
def configure(env):
|
||||
pass
|
37
modules/navigation_dummy/dummy_navigation_2d_server.cpp
Normal file
37
modules/navigation_dummy/dummy_navigation_2d_server.cpp
Normal file
@ -0,0 +1,37 @@
|
||||
/*************************************************************************/
|
||||
/* navigation_2d_server.cpp */
|
||||
/*************************************************************************/
|
||||
/* This file is part of: */
|
||||
/* GODOT ENGINE */
|
||||
/* https://godotengine.org */
|
||||
/*************************************************************************/
|
||||
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
|
||||
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
|
||||
/* */
|
||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||
/* a copy of this software and associated documentation files (the */
|
||||
/* "Software"), to deal in the Software without restriction, including */
|
||||
/* without limitation the rights to use, copy, modify, merge, publish, */
|
||||
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
||||
/* permit persons to whom the Software is furnished to do so, subject to */
|
||||
/* the following conditions: */
|
||||
/* */
|
||||
/* The above copyright notice and this permission notice shall be */
|
||||
/* included in all copies or substantial portions of the Software. */
|
||||
/* */
|
||||
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
||||
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
||||
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
||||
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
||||
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
||||
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
||||
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||
/*************************************************************************/
|
||||
|
||||
#include "dummy_navigation_2d_server.h"
|
||||
|
||||
DummyNavigation2DServer::DummyNavigation2DServer() {
|
||||
}
|
||||
|
||||
DummyNavigation2DServer::~DummyNavigation2DServer() {
|
||||
}
|
63
modules/navigation_dummy/dummy_navigation_2d_server.h
Normal file
63
modules/navigation_dummy/dummy_navigation_2d_server.h
Normal file
@ -0,0 +1,63 @@
|
||||
#ifndef DUMMY_NAVIGATION_2D_SERVER_H
|
||||
#define DUMMY_NAVIGATION_2D_SERVER_H
|
||||
|
||||
#include "servers/navigation_2d_server.h"
|
||||
|
||||
class DummyNavigation2DServer : public Navigation2DServer {
|
||||
public:
|
||||
virtual Array get_maps() const { return Array(); }
|
||||
|
||||
virtual RID map_create() const { return RID(); }
|
||||
virtual void map_set_active(RID p_map, bool p_active) const {}
|
||||
virtual bool map_is_active(RID p_map) const { return false; }
|
||||
virtual void map_set_cell_size(RID p_map, real_t p_cell_size) const {}
|
||||
virtual real_t map_get_cell_size(RID p_map) const { return 0; }
|
||||
virtual void map_set_cell_height(RID p_map, real_t p_cell_height) const {}
|
||||
virtual real_t map_get_cell_height(RID p_map) const { return 0; }
|
||||
virtual void map_set_edge_connection_margin(RID p_map, real_t p_connection_margin) const {}
|
||||
virtual real_t map_get_edge_connection_margin(RID p_map) const { return 0; }
|
||||
virtual Vector<Vector2> map_get_path(RID p_map, Vector2 p_origin, Vector2 p_destination, bool p_optimize, uint32_t p_navigation_layers = 1) const { return Vector<Vector2>(); }
|
||||
virtual Vector2 map_get_closest_point(RID p_map, const Vector2 &p_point) const { return Vector2(); }
|
||||
virtual RID map_get_closest_point_owner(RID p_map, const Vector2 &p_point) const { return RID(); }
|
||||
virtual Array map_get_regions(RID p_map) const { return Array(); }
|
||||
virtual Array map_get_agents(RID p_map) const { return Array(); }
|
||||
virtual void map_force_update(RID p_map) {}
|
||||
|
||||
virtual RID region_create() const { return RID(); }
|
||||
virtual void region_set_enter_cost(RID p_region, real_t p_enter_cost) const {}
|
||||
virtual real_t region_get_enter_cost(RID p_region) const { return 0; }
|
||||
virtual void region_set_travel_cost(RID p_region, real_t p_travel_cost) const {}
|
||||
virtual real_t region_get_travel_cost(RID p_region) const { return 0; }
|
||||
virtual bool region_owns_point(RID p_region, const Vector2 &p_point) const { return false; }
|
||||
virtual void region_set_map(RID p_region, RID p_map) const {}
|
||||
virtual RID region_get_map(RID p_region) const { return RID(); }
|
||||
virtual void region_set_navigation_layers(RID p_region, uint32_t p_navigation_layers) const {}
|
||||
virtual uint32_t region_get_navigation_layers(RID p_region) const { return 0; }
|
||||
virtual void region_set_transform(RID p_region, Transform2D p_transform) const {}
|
||||
virtual void region_set_navpoly(RID p_region, Ref<NavigationPolygon> p_nav_mesh) const {}
|
||||
virtual int region_get_connections_count(RID p_region) const { return 0; }
|
||||
virtual Vector2 region_get_connection_pathway_start(RID p_region, int p_connection_id) const { return Vector2(); }
|
||||
virtual Vector2 region_get_connection_pathway_end(RID p_region, int p_connection_id) const { return Vector2(); }
|
||||
|
||||
virtual RID agent_create() const { return RID(); }
|
||||
virtual void agent_set_map(RID p_agent, RID p_map) const {}
|
||||
virtual RID agent_get_map(RID p_agent) const { return RID(); }
|
||||
virtual void agent_set_neighbor_dist(RID p_agent, real_t p_dist) const {}
|
||||
virtual void agent_set_max_neighbors(RID p_agent, int p_count) const {}
|
||||
virtual void agent_set_time_horizon(RID p_agent, real_t p_time) const {}
|
||||
virtual void agent_set_radius(RID p_agent, real_t p_radius) const {}
|
||||
virtual void agent_set_max_speed(RID p_agent, real_t p_max_speed) const {}
|
||||
virtual void agent_set_velocity(RID p_agent, Vector2 p_velocity) const {}
|
||||
virtual void agent_set_target_velocity(RID p_agent, Vector2 p_velocity) const {}
|
||||
virtual void agent_set_position(RID p_agent, Vector2 p_position) const {}
|
||||
virtual void agent_set_ignore_y(RID p_agent, bool p_ignore) const {}
|
||||
virtual bool agent_is_map_changed(RID p_agent) const { return false; }
|
||||
virtual void agent_set_callback(RID p_agent, ObjectID p_object_id, StringName p_method, Variant p_udata = Variant()) const {}
|
||||
|
||||
virtual void free(RID p_object) const {}
|
||||
|
||||
DummyNavigation2DServer();
|
||||
virtual ~DummyNavigation2DServer();
|
||||
};
|
||||
|
||||
#endif
|
8
modules/navigation_dummy/dummy_navigation_server.cpp
Normal file
8
modules/navigation_dummy/dummy_navigation_server.cpp
Normal file
@ -0,0 +1,8 @@
|
||||
|
||||
#include "dummy_navigation_server.h"
|
||||
|
||||
DummyNavigationServer::DummyNavigationServer() {
|
||||
}
|
||||
|
||||
DummyNavigationServer::~DummyNavigationServer() {
|
||||
}
|
72
modules/navigation_dummy/dummy_navigation_server.h
Normal file
72
modules/navigation_dummy/dummy_navigation_server.h
Normal file
@ -0,0 +1,72 @@
|
||||
#ifndef DUMMY_NAVIGATION_SERVER_H
|
||||
#define DUMMY_NAVIGATION_SERVER_H
|
||||
|
||||
#include "servers/navigation_server.h"
|
||||
|
||||
class DummyNavigationServer : public NavigationServer {
|
||||
public:
|
||||
virtual Array get_maps() const { return Array(); }
|
||||
|
||||
virtual RID map_create() const { return RID(); }
|
||||
virtual void map_set_active(RID p_map, bool p_active) const {}
|
||||
virtual bool map_is_active(RID p_map) const { return false; }
|
||||
virtual void map_set_up(RID p_map, Vector3 p_up) const {}
|
||||
virtual Vector3 map_get_up(RID p_map) const { return Vector3(); }
|
||||
virtual void map_set_cell_size(RID p_map, real_t p_cell_size) const {}
|
||||
virtual real_t map_get_cell_size(RID p_map) const { return 0; }
|
||||
virtual void map_set_cell_height(RID p_map, real_t p_cell_height) const {}
|
||||
virtual real_t map_get_cell_height(RID p_map) const { return 0; }
|
||||
virtual void map_set_edge_connection_margin(RID p_map, real_t p_connection_margin) const {}
|
||||
virtual real_t map_get_edge_connection_margin(RID p_map) const { return 0; }
|
||||
virtual Vector<Vector3> map_get_path(RID p_map, Vector3 p_origin, Vector3 p_destination, bool p_optimize, uint32_t p_navigation_layers = 1) const { return Vector<Vector3>(); }
|
||||
virtual Vector3 map_get_closest_point_to_segment(RID p_map, const Vector3 &p_from, const Vector3 &p_to, const bool p_use_collision = false) const { return Vector3(); }
|
||||
virtual Vector3 map_get_closest_point(RID p_map, const Vector3 &p_point) const { return Vector3(); }
|
||||
virtual Vector3 map_get_closest_point_normal(RID p_map, const Vector3 &p_point) const { return Vector3(); }
|
||||
virtual RID map_get_closest_point_owner(RID p_map, const Vector3 &p_point) const { return RID(); }
|
||||
virtual Array map_get_regions(RID p_map) const { return Array(); }
|
||||
virtual Array map_get_agents(RID p_map) const { return Array(); }
|
||||
virtual void map_force_update(RID p_map) {}
|
||||
|
||||
virtual RID region_create() const { return RID(); }
|
||||
virtual void region_set_enter_cost(RID p_region, real_t p_enter_cost) const {}
|
||||
virtual real_t region_get_enter_cost(RID p_region) const { return 0; }
|
||||
virtual void region_set_travel_cost(RID p_region, real_t p_travel_cost) const {}
|
||||
virtual real_t region_get_travel_cost(RID p_region) const { return 0; }
|
||||
virtual bool region_owns_point(RID p_region, const Vector3 &p_point) const { return false; }
|
||||
virtual void region_set_map(RID p_region, RID p_map) const {}
|
||||
virtual RID region_get_map(RID p_region) const { return RID(); }
|
||||
virtual void region_set_navigation_layers(RID p_region, uint32_t p_navigation_layers) const {}
|
||||
virtual uint32_t region_get_navigation_layers(RID p_region) const { return 0; }
|
||||
virtual void region_set_transform(RID p_region, Transform p_transform) const {}
|
||||
virtual void region_set_navmesh(RID p_region, Ref<NavigationMesh> p_nav_mesh) const {}
|
||||
virtual void region_bake_navmesh(Ref<NavigationMesh> r_mesh, Node *p_node) const {}
|
||||
virtual int region_get_connections_count(RID p_region) const { return 0; }
|
||||
virtual Vector3 region_get_connection_pathway_start(RID p_region, int p_connection_id) const { return Vector3(); }
|
||||
virtual Vector3 region_get_connection_pathway_end(RID p_region, int p_connection_id) const { return Vector3(); }
|
||||
|
||||
virtual RID agent_create() const { return RID(); }
|
||||
virtual void agent_set_map(RID p_agent, RID p_map) const {}
|
||||
virtual RID agent_get_map(RID p_agent) const { return RID(); }
|
||||
virtual void agent_set_neighbor_dist(RID p_agent, real_t p_dist) const {}
|
||||
virtual void agent_set_max_neighbors(RID p_agent, int p_count) const {}
|
||||
virtual void agent_set_time_horizon(RID p_agent, real_t p_time) const {}
|
||||
virtual void agent_set_radius(RID p_agent, real_t p_radius) const {}
|
||||
virtual void agent_set_max_speed(RID p_agent, real_t p_max_speed) const {}
|
||||
virtual void agent_set_velocity(RID p_agent, Vector3 p_velocity) const {}
|
||||
virtual void agent_set_target_velocity(RID p_agent, Vector3 p_velocity) const {}
|
||||
virtual void agent_set_position(RID p_agent, Vector3 p_position) const {}
|
||||
virtual void agent_set_ignore_y(RID p_agent, bool p_ignore) const {}
|
||||
virtual bool agent_is_map_changed(RID p_agent) const { return false; }
|
||||
virtual void agent_set_callback(RID p_agent, ObjectID p_object_id, StringName p_method, Variant p_udata = Variant()) const {}
|
||||
|
||||
virtual void free(RID p_object) const {};
|
||||
|
||||
virtual void set_active(bool p_active) const {};
|
||||
|
||||
virtual void process(real_t delta_time){};
|
||||
|
||||
DummyNavigationServer();
|
||||
virtual ~DummyNavigationServer();
|
||||
};
|
||||
|
||||
#endif
|
54
modules/navigation_dummy/register_types.cpp
Normal file
54
modules/navigation_dummy/register_types.cpp
Normal file
@ -0,0 +1,54 @@
|
||||
/*************************************************************************/
|
||||
/* register_types.cpp */
|
||||
/*************************************************************************/
|
||||
/* This file is part of: */
|
||||
/* GODOT ENGINE */
|
||||
/* https://godotengine.org */
|
||||
/*************************************************************************/
|
||||
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
|
||||
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
|
||||
/* */
|
||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||
/* a copy of this software and associated documentation files (the */
|
||||
/* "Software"), to deal in the Software without restriction, including */
|
||||
/* without limitation the rights to use, copy, modify, merge, publish, */
|
||||
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
||||
/* permit persons to whom the Software is furnished to do so, subject to */
|
||||
/* the following conditions: */
|
||||
/* */
|
||||
/* The above copyright notice and this permission notice shall be */
|
||||
/* included in all copies or substantial portions of the Software. */
|
||||
/* */
|
||||
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
||||
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
||||
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
||||
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
||||
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
||||
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
||||
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||
/*************************************************************************/
|
||||
|
||||
#include "register_types.h"
|
||||
|
||||
#include "core/config/engine.h"
|
||||
|
||||
#include "dummy_navigation_2d_server.h"
|
||||
#include "dummy_navigation_server.h"
|
||||
|
||||
NavigationServer *new_dummy_server() {
|
||||
return memnew(DummyNavigationServer);
|
||||
}
|
||||
|
||||
Navigation2DServer *new_dummy_2d_server() {
|
||||
return memnew(DummyNavigation2DServer);
|
||||
}
|
||||
|
||||
void register_navigation_dummy_types(ModuleRegistrationLevel p_level) {
|
||||
if (p_level == MODULE_REGISTRATION_LEVEL_SINGLETON) {
|
||||
NavigationServerManager::register_server("Dummy", new_dummy_server);
|
||||
Navigation2DServerManager::register_server("Dummy", new_dummy_2d_server);
|
||||
}
|
||||
}
|
||||
|
||||
void unregister_navigation_dummy_types(ModuleRegistrationLevel p_level) {
|
||||
}
|
39
modules/navigation_dummy/register_types.h
Normal file
39
modules/navigation_dummy/register_types.h
Normal file
@ -0,0 +1,39 @@
|
||||
#ifndef NAVIGATION_DUMMY_REGISTER_TYPES_H
|
||||
#define NAVIGATION_DUMMY_REGISTER_TYPES_H
|
||||
|
||||
/*************************************************************************/
|
||||
/* register_types.h */
|
||||
/*************************************************************************/
|
||||
/* This file is part of: */
|
||||
/* GODOT ENGINE */
|
||||
/* https://godotengine.org */
|
||||
/*************************************************************************/
|
||||
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
|
||||
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
|
||||
/* */
|
||||
/* Permission is hereby granted, free of charge, to any person obtaining */
|
||||
/* a copy of this software and associated documentation files (the */
|
||||
/* "Software"), to deal in the Software without restriction, including */
|
||||
/* without limitation the rights to use, copy, modify, merge, publish, */
|
||||
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
||||
/* permit persons to whom the Software is furnished to do so, subject to */
|
||||
/* the following conditions: */
|
||||
/* */
|
||||
/* The above copyright notice and this permission notice shall be */
|
||||
/* included in all copies or substantial portions of the Software. */
|
||||
/* */
|
||||
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
||||
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
||||
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
||||
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
||||
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
||||
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
||||
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||
/*************************************************************************/
|
||||
|
||||
#include "modules/register_module_types.h"
|
||||
|
||||
void register_navigation_dummy_types(ModuleRegistrationLevel p_level);
|
||||
void unregister_navigation_dummy_types(ModuleRegistrationLevel p_level);
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue
Block a user