2017-01-16 08:04:19 +01:00
|
|
|
/*************************************************************************/
|
2021-09-03 19:40:47 +02:00
|
|
|
/* multiplayer.h */
|
2017-01-16 08:04:19 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2017-01-16 08:04:19 +01:00
|
|
|
/*************************************************************************/
|
2022-01-03 21:27:34 +01:00
|
|
|
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
|
2017-01-16 08:04:19 +01:00
|
|
|
/* */
|
|
|
|
/* 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. */
|
|
|
|
/*************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2021-09-03 19:40:47 +02:00
|
|
|
#ifndef MULTIPLAYER_H
|
|
|
|
#define MULTIPLAYER_H
|
2016-08-03 00:11:05 +02:00
|
|
|
|
2021-09-03 19:40:47 +02:00
|
|
|
#include "core/variant/binder_common.h"
|
2016-08-03 00:11:05 +02:00
|
|
|
|
2021-09-03 19:40:47 +02:00
|
|
|
#include "core/string/string_name.h"
|
2016-08-03 00:11:05 +02:00
|
|
|
|
2021-09-03 19:40:47 +02:00
|
|
|
namespace Multiplayer {
|
2016-08-03 00:11:05 +02:00
|
|
|
|
2021-09-03 19:40:47 +02:00
|
|
|
enum TransferMode {
|
|
|
|
TRANSFER_MODE_UNRELIABLE,
|
2021-10-01 10:43:22 +02:00
|
|
|
TRANSFER_MODE_UNRELIABLE_ORDERED,
|
2021-09-03 19:40:47 +02:00
|
|
|
TRANSFER_MODE_RELIABLE
|
|
|
|
};
|
2016-08-14 23:49:50 +02:00
|
|
|
|
2021-09-03 19:40:47 +02:00
|
|
|
enum RPCMode {
|
|
|
|
RPC_MODE_DISABLED, // No rpc for this method, calls to this will be blocked (default)
|
2021-10-01 10:43:22 +02:00
|
|
|
RPC_MODE_ANY_PEER, // Any peer can call this RPC
|
2021-09-07 23:35:19 +02:00
|
|
|
RPC_MODE_AUTHORITY, // / Only the node's multiplayer authority (server by default) can call this RPC
|
2021-09-03 19:40:47 +02:00
|
|
|
};
|
2016-08-03 00:11:05 +02:00
|
|
|
|
2021-09-03 19:40:47 +02:00
|
|
|
struct RPCConfig {
|
|
|
|
StringName name;
|
|
|
|
RPCMode rpc_mode = RPC_MODE_DISABLED;
|
2021-10-06 17:10:50 +02:00
|
|
|
bool call_local = false;
|
2021-09-03 19:40:47 +02:00
|
|
|
TransferMode transfer_mode = TRANSFER_MODE_RELIABLE;
|
|
|
|
int channel = 0;
|
2016-08-19 21:48:08 +02:00
|
|
|
|
2021-09-03 19:40:47 +02:00
|
|
|
bool operator==(RPCConfig const &p_other) const {
|
|
|
|
return name == p_other.name;
|
|
|
|
}
|
|
|
|
};
|
2016-08-19 21:48:08 +02:00
|
|
|
|
2021-09-03 19:40:47 +02:00
|
|
|
struct SortRPCConfig {
|
|
|
|
StringName::AlphCompare compare;
|
|
|
|
bool operator()(const RPCConfig &p_a, const RPCConfig &p_b) const {
|
|
|
|
return compare(p_a.name, p_b.name);
|
|
|
|
}
|
|
|
|
};
|
2016-08-19 21:48:08 +02:00
|
|
|
|
2021-09-03 19:40:47 +02:00
|
|
|
}; // namespace Multiplayer
|
2016-08-14 19:06:51 +02:00
|
|
|
|
2021-09-03 19:40:47 +02:00
|
|
|
// This is needed for proper docs generation (i.e. not "Multiplayer."-prefixed).
|
|
|
|
typedef Multiplayer::RPCMode RPCMode;
|
|
|
|
typedef Multiplayer::TransferMode TransferMode;
|
2016-08-03 00:11:05 +02:00
|
|
|
|
2021-09-03 19:40:47 +02:00
|
|
|
VARIANT_ENUM_CAST(RPCMode);
|
|
|
|
VARIANT_ENUM_CAST(TransferMode);
|
2016-08-03 00:11:05 +02:00
|
|
|
|
2021-09-03 19:40:47 +02:00
|
|
|
#endif // MULTIPLAYER_H
|