1 | /**************************************************************************/ |
2 | /* webrtc_data_channel_extension.cpp */ |
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 | #include "webrtc_data_channel_extension.h" |
32 | |
33 | void WebRTCDataChannelExtension::_bind_methods() { |
34 | ADD_PROPERTY_DEFAULT("write_mode" , WRITE_MODE_BINARY); |
35 | |
36 | GDVIRTUAL_BIND(_get_packet, "r_buffer" , "r_buffer_size" ); |
37 | GDVIRTUAL_BIND(_put_packet, "p_buffer" , "p_buffer_size" ); |
38 | GDVIRTUAL_BIND(_get_available_packet_count); |
39 | GDVIRTUAL_BIND(_get_max_packet_size); |
40 | |
41 | GDVIRTUAL_BIND(_poll); |
42 | GDVIRTUAL_BIND(_close); |
43 | |
44 | GDVIRTUAL_BIND(_set_write_mode, "p_write_mode" ); |
45 | GDVIRTUAL_BIND(_get_write_mode); |
46 | |
47 | GDVIRTUAL_BIND(_was_string_packet); |
48 | GDVIRTUAL_BIND(_get_ready_state); |
49 | GDVIRTUAL_BIND(_get_label); |
50 | GDVIRTUAL_BIND(_is_ordered); |
51 | GDVIRTUAL_BIND(_get_id); |
52 | GDVIRTUAL_BIND(_get_max_packet_life_time); |
53 | GDVIRTUAL_BIND(_get_max_retransmits); |
54 | GDVIRTUAL_BIND(_get_protocol); |
55 | GDVIRTUAL_BIND(_is_negotiated); |
56 | GDVIRTUAL_BIND(_get_buffered_amount); |
57 | } |
58 | |
59 | Error WebRTCDataChannelExtension::get_packet(const uint8_t **r_buffer, int &r_buffer_size) { |
60 | Error err; |
61 | if (GDVIRTUAL_CALL(_get_packet, r_buffer, &r_buffer_size, err)) { |
62 | return err; |
63 | } |
64 | WARN_PRINT_ONCE("WebRTCDataChannelExtension::_get_packet_native is unimplemented!" ); |
65 | return FAILED; |
66 | } |
67 | |
68 | Error WebRTCDataChannelExtension::put_packet(const uint8_t *p_buffer, int p_buffer_size) { |
69 | Error err; |
70 | if (GDVIRTUAL_CALL(_put_packet, p_buffer, p_buffer_size, err)) { |
71 | return err; |
72 | } |
73 | WARN_PRINT_ONCE("WebRTCDataChannelExtension::_put_packet_native is unimplemented!" ); |
74 | return FAILED; |
75 | } |
76 | |