2021-11-15 15:02:55 -06:00
|
|
|
extends Node
|
|
|
|
|
2021-11-17 08:18:12 -06:00
|
|
|
"""
|
|
|
|
This module is responsible for making a WebSocket connection to the signaller
|
|
|
|
in order to enable establishish WebRTC P2P connections. Another module is
|
|
|
|
expected to fully setup the peer connections.
|
|
|
|
"""
|
|
|
|
|
|
|
|
onready var ws: WebSocketClient = WebSocketClient.new()
|
|
|
|
|
|
|
|
func _ready():
|
|
|
|
var _result = ws.connect("data_received", self, "_parse_msg")
|
|
|
|
_result = ws.connect("connection_established", self, "_connected")
|
|
|
|
_result = ws.connect("connection_closed", self, "_closed")
|
|
|
|
_result = ws.connect("connection_error", self, "_closed")
|
|
|
|
_result = ws.connect("server_close_request", self, "_close_request")
|
2021-11-15 15:02:55 -06:00
|
|
|
|
|
|
|
func close():
|
2021-11-17 08:18:12 -06:00
|
|
|
ws.disconnect_from_host()
|
|
|
|
|
|
|
|
func connect_to_websocket_signaller(url: String):
|
|
|
|
print(ws)
|
|
|
|
close()
|
|
|
|
print("Attempting to connect to WebSocket signalling server at ", url)
|
|
|
|
var _result = ws.connect_to_url(url)
|
2021-11-15 15:02:55 -06:00
|
|
|
|
2021-11-17 08:18:12 -06:00
|
|
|
func _closed():
|
|
|
|
# emit_signal("disconnected")
|
|
|
|
pass
|
2021-11-15 15:02:55 -06:00
|
|
|
|
2021-11-17 08:18:12 -06:00
|
|
|
func _close_request(code: int, reason: String):
|
|
|
|
print("Received WebSocket close request from signalling server ", code, reason)
|
2021-11-15 15:02:55 -06:00
|
|
|
|
|
|
|
func _connected(protocol = ""):
|
2021-11-17 08:18:12 -06:00
|
|
|
print("WebSocket signaller connected via protocol ", protocol)
|
|
|
|
ws.get_peer(1).set_write_mode(WebSocketPeer.WRITE_MODE_TEXT)
|
|
|
|
|
|
|
|
func _process(_delta: float):
|
|
|
|
var status: int = ws.get_connection_status()
|
|
|
|
if status == WebSocketClient.CONNECTION_CONNECTING or status == WebSocketClient.CONNECTION_CONNECTED:
|
|
|
|
ws.poll()
|
|
|
|
|
|
|
|
func _parse_msg():
|
|
|
|
var pkt_str: String = ws.get_peer(1).get_packet().get_string_from_utf8()
|
|
|
|
print("Signaller sent: ", pkt_str)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-11-15 15:02:55 -06:00
|
|
|
|
2021-11-17 08:18:12 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
"""
|
2021-11-15 15:02:55 -06:00
|
|
|
func _parse_msg():
|
2021-11-17 08:18:12 -06:00
|
|
|
var pkt_str: String = ws.get_peer(1).get_packet().get_string_from_utf8()
|
2021-11-15 15:02:55 -06:00
|
|
|
|
|
|
|
var req: PoolStringArray = pkt_str.split("\n", true, 1)
|
|
|
|
if req.size() != 2: # Invalid request size
|
|
|
|
return
|
|
|
|
|
|
|
|
var type: String = req[0]
|
|
|
|
if type.length() < 3: # Invalid type size
|
|
|
|
return
|
|
|
|
|
|
|
|
if type.begins_with("J: "):
|
2021-11-15 16:25:13 -06:00
|
|
|
print("Emitting lobby_joined")
|
2021-11-15 15:02:55 -06:00
|
|
|
emit_signal("lobby_joined", type.substr(3, type.length() - 3))
|
|
|
|
return
|
|
|
|
elif type.begins_with("S: "):
|
|
|
|
emit_signal("lobby_sealed")
|
|
|
|
return
|
|
|
|
|
|
|
|
var src_str: String = type.substr(3, type.length() - 3)
|
|
|
|
if not src_str.is_valid_integer(): # Source id is not an integer
|
|
|
|
return
|
|
|
|
|
|
|
|
var src_id: int = int(src_str)
|
|
|
|
|
|
|
|
if type.begins_with("I: "):
|
2021-11-15 16:25:13 -06:00
|
|
|
print("Emitting connected")
|
2021-11-15 15:02:55 -06:00
|
|
|
emit_signal("connected", src_id)
|
|
|
|
elif type.begins_with("N: "):
|
|
|
|
# Client connected
|
2021-11-15 16:25:13 -06:00
|
|
|
print("Emitting peer_connected")
|
2021-11-15 15:02:55 -06:00
|
|
|
emit_signal("peer_connected", src_id)
|
|
|
|
elif type.begins_with("D: "):
|
|
|
|
# Client connected
|
|
|
|
emit_signal("peer_disconnected", src_id)
|
|
|
|
elif type.begins_with("O: "):
|
|
|
|
# Offer received
|
2021-11-15 16:25:13 -06:00
|
|
|
print("Emitting offer_received")
|
2021-11-15 15:02:55 -06:00
|
|
|
emit_signal("offer_received", src_id, req[1])
|
|
|
|
elif type.begins_with("A: "):
|
|
|
|
# Answer received
|
2021-11-15 16:25:13 -06:00
|
|
|
print("Emitting answer_received")
|
2021-11-15 15:02:55 -06:00
|
|
|
emit_signal("answer_received", src_id, req[1])
|
|
|
|
elif type.begins_with("C: "):
|
|
|
|
# Candidate received
|
|
|
|
var candidate: PoolStringArray = req[1].split("\n", false)
|
|
|
|
if candidate.size() != 3:
|
|
|
|
return
|
|
|
|
if not candidate[1].is_valid_integer():
|
|
|
|
return
|
2021-11-15 16:25:13 -06:00
|
|
|
print("Emitting candidate_received")
|
2021-11-15 15:02:55 -06:00
|
|
|
emit_signal("candidate_received", src_id, candidate[0], int(candidate[1]), candidate[2])
|
|
|
|
|
2021-11-15 16:25:13 -06:00
|
|
|
func join_lobby(joined_lobby):
|
2021-11-17 08:18:12 -06:00
|
|
|
return ws.get_peer(1).put_packet(("J: %s\n" % joined_lobby).to_utf8())
|
2021-11-15 15:02:55 -06:00
|
|
|
|
|
|
|
func seal_lobby():
|
2021-11-17 08:18:12 -06:00
|
|
|
return ws.get_peer(1).put_packet("S: \n".to_utf8())
|
2021-11-15 15:02:55 -06:00
|
|
|
|
|
|
|
func send_candidate(id, mid, index, sdp) -> int:
|
|
|
|
return _send_msg("C", id, "\n%s\n%d\n%s" % [mid, index, sdp])
|
|
|
|
|
|
|
|
func send_offer(id, offer) -> int:
|
|
|
|
return _send_msg("O", id, offer)
|
|
|
|
|
|
|
|
func send_answer(id, answer) -> int:
|
|
|
|
return _send_msg("A", id, answer)
|
|
|
|
|
|
|
|
func _send_msg(type, id, data) -> int:
|
2021-11-17 08:18:12 -06:00
|
|
|
return ws.get_peer(1).put_packet(("%s: %d\n%s" % [type, id, data]).to_utf8())
|
|
|
|
"""
|