33 lines
641 B
GDScript3
Raw Normal View History

2024-01-20 21:18:58 +00:00
extends PacketHandler
2024-01-15 23:22:14 +00:00
signal changed(ping: float)
const HISTORY_SIZE = 8
var count := 0
var history: Array[float] = []
func _init():
history.resize(HISTORY_SIZE)
func _ready():
2024-01-20 21:18:58 +00:00
%Client.set_handler(Packet.PING, self)
2024-01-16 22:01:16 +00:00
func send_ping():
2024-01-15 23:22:14 +00:00
var buffer := StreamPeerBuffer.new()
2024-01-16 22:01:16 +00:00
buffer.put_8(Packet.PING)
2024-01-15 23:22:14 +00:00
buffer.put_8(count)
2024-01-20 21:18:58 +00:00
%Client.socket.put_packet(buffer.data_array)
2024-01-15 23:22:14 +00:00
history[count] = Time.get_unix_time_from_system()
count += 1
if count >= HISTORY_SIZE:
count = 0
2024-01-20 21:18:58 +00:00
func handle_packet(data: PackedByteArray, _peer: PacketPeer):
var id := data[0]
2024-01-15 23:22:14 +00:00
var ping := Time.get_unix_time_from_system() - history[id]
changed.emit(ping)