Debug test
This commit is contained in:
parent
a97b2568e5
commit
88f1a9a8a1
@ -42,7 +42,6 @@ namespace Network {
|
||||
LastConnectionSended = to.ID;
|
||||
}
|
||||
PacketPeer.PutPacket(packetBuffer.ByteBuffer);
|
||||
GD.print("Putting stuff to " + to.Address + ":" + to.Port);
|
||||
}
|
||||
|
||||
public bool StartListening(int port, string address = "*") {
|
||||
|
@ -27,14 +27,18 @@ namespace Network.Syncing {
|
||||
Connection = connection;
|
||||
}
|
||||
|
||||
public void SerializeAndSendQueues() {
|
||||
public void SerializeAndSendQueues(int UnreliableSyncID) {
|
||||
PacketBuffer Buffer = PacketBuffer.WithSignature();
|
||||
|
||||
SyncPkt Sync = new SyncPkt();
|
||||
Sync.Reliable = false;
|
||||
Sync.ID = UnreliableSyncID;
|
||||
|
||||
Sync.Serialize(Buffer);
|
||||
|
||||
// Add Queues
|
||||
|
||||
GD.print("Sending sync-" + Sync.ID);
|
||||
Peer.SendBuffer(Buffer, Connection);
|
||||
}
|
||||
|
||||
|
@ -23,12 +23,14 @@ namespace Network.Syncing {
|
||||
}
|
||||
|
||||
public void Update(float delta) {
|
||||
//GD.print("Update! + " + delta);
|
||||
TimeSinceLastSync += delta;
|
||||
if (TimeSinceLastSync > Interval) {
|
||||
TimeSinceLastSync = 0;
|
||||
|
||||
foreach (ConnectionHandler Handler in HandlerList) {
|
||||
Handler.SerializeAndSendQueues();
|
||||
GD.print("Sending to " + Handler.Connection.Name);
|
||||
Handler.SerializeAndSendQueues(UnreliableIDCounter++);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user