Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/modules/multiplayer/multiplayer_spawner.h
10277 views
1
/**************************************************************************/
2
/* multiplayer_spawner.h */
3
/**************************************************************************/
4
/* This file is part of: */
5
/* GODOT ENGINE */
6
/* https://godotengine.org */
7
/**************************************************************************/
8
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
9
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
10
/* */
11
/* Permission is hereby granted, free of charge, to any person obtaining */
12
/* a copy of this software and associated documentation files (the */
13
/* "Software"), to deal in the Software without restriction, including */
14
/* without limitation the rights to use, copy, modify, merge, publish, */
15
/* distribute, sublicense, and/or sell copies of the Software, and to */
16
/* permit persons to whom the Software is furnished to do so, subject to */
17
/* the following conditions: */
18
/* */
19
/* The above copyright notice and this permission notice shall be */
20
/* included in all copies or substantial portions of the Software. */
21
/* */
22
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
23
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
24
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
25
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
26
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
27
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
28
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
29
/**************************************************************************/
30
31
#pragma once
32
33
#include "core/templates/local_vector.h"
34
#include "scene/main/node.h"
35
#include "scene/resources/packed_scene.h"
36
37
class MultiplayerSpawner : public Node {
38
GDCLASS(MultiplayerSpawner, Node);
39
40
public:
41
enum {
42
INVALID_ID = 0xFF,
43
};
44
45
private:
46
struct SpawnableScene {
47
String path;
48
Ref<PackedScene> cache;
49
};
50
51
LocalVector<SpawnableScene> spawnable_scenes;
52
53
HashSet<ResourceUID::ID> spawnable_ids;
54
NodePath spawn_path;
55
56
struct SpawnInfo {
57
Variant args;
58
int id = INVALID_ID;
59
SpawnInfo(Variant p_args, int p_id) {
60
id = p_id;
61
args = p_args;
62
}
63
SpawnInfo() {}
64
};
65
66
ObjectID spawn_node;
67
HashMap<ObjectID, SpawnInfo> tracked_nodes;
68
uint32_t spawn_limit = 0;
69
Callable spawn_function;
70
71
void _update_spawn_node();
72
void _track(Node *p_node, const Variant &p_argument, int p_scene_id = INVALID_ID);
73
void _node_added(Node *p_node);
74
void _node_exit(ObjectID p_id);
75
void _spawn_notify(ObjectID p_id);
76
77
Vector<String> _get_spawnable_scenes() const;
78
void _set_spawnable_scenes(const Vector<String> &p_scenes);
79
80
protected:
81
static void _bind_methods();
82
void _notification(int p_what);
83
84
#ifdef TOOLS_ENABLED
85
bool _set(const StringName &p_name, const Variant &p_value);
86
bool _get(const StringName &p_name, Variant &r_ret) const;
87
void _get_property_list(List<PropertyInfo> *p_list) const;
88
#endif
89
public:
90
PackedStringArray get_configuration_warnings() const override;
91
92
Node *get_spawn_node() const {
93
return spawn_node.is_valid() ? ObjectDB::get_instance<Node>(spawn_node) : nullptr;
94
}
95
96
void add_spawnable_scene(const String &p_path);
97
int get_spawnable_scene_count() const;
98
String get_spawnable_scene(int p_idx) const;
99
void clear_spawnable_scenes();
100
101
NodePath get_spawn_path() const;
102
void set_spawn_path(const NodePath &p_path);
103
uint32_t get_spawn_limit() const { return spawn_limit; }
104
void set_spawn_limit(uint32_t p_limit) { spawn_limit = p_limit; }
105
void set_spawn_function(Callable p_spawn_function) { spawn_function = p_spawn_function; }
106
Callable get_spawn_function() const { return spawn_function; }
107
108
const Variant get_spawn_argument(const ObjectID &p_id) const;
109
int find_spawnable_scene_index_from_object(const ObjectID &p_id) const;
110
int find_spawnable_scene_index_from_path(const String &p_path) const;
111
Node *spawn(const Variant &p_data = Variant());
112
Node *instantiate_custom(const Variant &p_data);
113
Node *instantiate_scene(int p_idx);
114
115
MultiplayerSpawner() {}
116
};
117
118