Improved network handling
This commit is contained in:
@ -1,8 +1,5 @@
|
||||
extends Label
|
||||
|
||||
func _ready():
|
||||
DisplayServer.window_set_vsync_mode(DisplayServer.VSYNC_DISABLED)
|
||||
|
||||
func _process(_delta):
|
||||
var fps = Engine.get_frames_per_second()
|
||||
text = str(fps)
|
37
ui/Ping.gd
37
ui/Ping.gd
@ -1,37 +0,0 @@
|
||||
extends Label
|
||||
|
||||
const HISTORY_SIZE = 8
|
||||
|
||||
var pingCount := 0
|
||||
var pingSent: Array[float] = []
|
||||
|
||||
func _ready():
|
||||
var timer := Timer.new()
|
||||
add_child(timer)
|
||||
timer.wait_time = 1
|
||||
timer.connect("timeout", self._ping)
|
||||
timer.start()
|
||||
|
||||
pingSent.resize(HISTORY_SIZE)
|
||||
|
||||
func _process(_delta):
|
||||
pass
|
||||
#if Client.udp.get_available_packet_count() > 0:
|
||||
#var bytes := Client.udp.get_packet()
|
||||
#var count := bytes.decode_u8(1)
|
||||
#var timeSent := pingSent[count]
|
||||
#var duration := Time.get_unix_time_from_system() - timeSent
|
||||
#var ping := duration * 1000
|
||||
#text = str(snapped(ping, 0.01))
|
||||
|
||||
func _ping():
|
||||
var buffer := StreamPeerBuffer.new()
|
||||
buffer.put_8(1)
|
||||
buffer.put_8(pingCount)
|
||||
Client.udp.put_packet(buffer.data_array)
|
||||
|
||||
pingSent[pingCount] = Time.get_unix_time_from_system()
|
||||
pingCount += 1
|
||||
|
||||
if pingCount >= HISTORY_SIZE:
|
||||
pingCount = 0
|
7
ui/PingLabel.gd
Normal file
7
ui/PingLabel.gd
Normal file
@ -0,0 +1,7 @@
|
||||
extends Label
|
||||
|
||||
func _ready():
|
||||
%Ping.connect("changed", on_ping_changed)
|
||||
|
||||
func on_ping_changed(ping):
|
||||
text = str(snapped(ping * 1000, 0.01))
|
41
ui/UI.tscn
41
ui/UI.tscn
@ -1,41 +0,0 @@
|
||||
[gd_scene load_steps=3 format=3 uid="uid://bxotvk73tbgw0"]
|
||||
|
||||
[ext_resource type="Script" path="res://ui/FPS.gd" id="1_128dk"]
|
||||
[ext_resource type="Script" path="res://ui/Ping.gd" id="2_m7fhx"]
|
||||
|
||||
[node name="UI" type="Control"]
|
||||
layout_mode = 3
|
||||
anchors_preset = 0
|
||||
|
||||
[node name="CanvasLayer" type="CanvasLayer" parent="."]
|
||||
|
||||
[node name="MarginContainer" type="MarginContainer" parent="CanvasLayer"]
|
||||
offset_right = 40.0
|
||||
offset_bottom = 50.0
|
||||
|
||||
[node name="VBoxContainer" type="VBoxContainer" parent="CanvasLayer/MarginContainer"]
|
||||
layout_mode = 2
|
||||
|
||||
[node name="HBoxContainer" type="HBoxContainer" parent="CanvasLayer/MarginContainer/VBoxContainer"]
|
||||
layout_mode = 2
|
||||
|
||||
[node name="FPSLabel" type="Label" parent="CanvasLayer/MarginContainer/VBoxContainer/HBoxContainer"]
|
||||
layout_mode = 2
|
||||
text = "FPS:"
|
||||
|
||||
[node name="FPS" type="Label" parent="CanvasLayer/MarginContainer/VBoxContainer/HBoxContainer"]
|
||||
layout_mode = 2
|
||||
text = "0"
|
||||
script = ExtResource("1_128dk")
|
||||
|
||||
[node name="HBoxContainer2" type="HBoxContainer" parent="CanvasLayer/MarginContainer/VBoxContainer"]
|
||||
layout_mode = 2
|
||||
|
||||
[node name="PingLabel" type="Label" parent="CanvasLayer/MarginContainer/VBoxContainer/HBoxContainer2"]
|
||||
layout_mode = 2
|
||||
text = "Ping:"
|
||||
|
||||
[node name="Ping" type="Label" parent="CanvasLayer/MarginContainer/VBoxContainer/HBoxContainer2"]
|
||||
layout_mode = 2
|
||||
text = "0"
|
||||
script = ExtResource("2_m7fhx")
|
Reference in New Issue
Block a user