mirror of
https://forge.univ-lyon1.fr/tplifap4/dungeonanddeamon.git
synced 2024-02-27 13:31:50 +01:00
67 lines
1.9 KiB
C++
67 lines
1.9 KiB
C++
#ifndef GODOT_CPP_NETWORKEDMULTIPLAYERPEER_HPP
|
|
#define GODOT_CPP_NETWORKEDMULTIPLAYERPEER_HPP
|
|
|
|
|
|
#include <gdnative_api_struct.gen.h>
|
|
#include <stdint.h>
|
|
|
|
#include <core/CoreTypes.hpp>
|
|
#include <core/Ref.hpp>
|
|
#include "NetworkedMultiplayerPeer.hpp"
|
|
|
|
#include "PacketPeer.hpp"
|
|
namespace godot {
|
|
|
|
|
|
class NetworkedMultiplayerPeer : public PacketPeer {
|
|
struct ___method_bindings {
|
|
godot_method_bind *mb_get_connection_status;
|
|
godot_method_bind *mb_get_packet_peer;
|
|
godot_method_bind *mb_get_transfer_mode;
|
|
godot_method_bind *mb_get_unique_id;
|
|
godot_method_bind *mb_is_refusing_new_connections;
|
|
godot_method_bind *mb_poll;
|
|
godot_method_bind *mb_set_refuse_new_connections;
|
|
godot_method_bind *mb_set_target_peer;
|
|
godot_method_bind *mb_set_transfer_mode;
|
|
};
|
|
static ___method_bindings ___mb;
|
|
|
|
public:
|
|
static void ___init_method_bindings();
|
|
|
|
static inline const char *___get_class_name() { return (const char *) "NetworkedMultiplayerPeer"; }
|
|
static inline Object *___get_from_variant(Variant a) { godot_object *o = (godot_object*) a; return (o) ? (Object *) godot::nativescript_1_1_api->godot_nativescript_get_instance_binding_data(godot::_RegisterState::language_index, o) : nullptr; }
|
|
|
|
// enums
|
|
enum ConnectionStatus {
|
|
CONNECTION_DISCONNECTED = 0,
|
|
CONNECTION_CONNECTING = 1,
|
|
CONNECTION_CONNECTED = 2,
|
|
};
|
|
enum TransferMode {
|
|
TRANSFER_MODE_UNRELIABLE = 0,
|
|
TRANSFER_MODE_UNRELIABLE_ORDERED = 1,
|
|
TRANSFER_MODE_RELIABLE = 2,
|
|
};
|
|
|
|
// constants
|
|
const static int TARGET_PEER_BROADCAST = 0;
|
|
const static int TARGET_PEER_SERVER = 1;
|
|
|
|
// methods
|
|
NetworkedMultiplayerPeer::ConnectionStatus get_connection_status() const;
|
|
int64_t get_packet_peer() const;
|
|
NetworkedMultiplayerPeer::TransferMode get_transfer_mode() const;
|
|
int64_t get_unique_id() const;
|
|
bool is_refusing_new_connections() const;
|
|
void poll();
|
|
void set_refuse_new_connections(const bool enable);
|
|
void set_target_peer(const int64_t id);
|
|
void set_transfer_mode(const int64_t mode);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif |