Quellcode durchsuchen

bugs squashed

tags/online1.1
Madiwka vor 4 Jahren
Ursprung
Commit
1d5dcfba92
1 geänderte Dateien mit 7 neuen und 1 gelöschten Zeilen
  1. +7
    -1
      main.lua

+ 7
- 1
main.lua Datei anzeigen

@@ -765,6 +765,7 @@ function nettest(dt)
for i = 1, maxBalls do
ts = ts + dt
if ts > updaterate then
if ball[1].dx <= 0 then
--print (tostring(ball[i].dy))
udp:send(tostring(lastSentKey) ..
'|' .. tostring(ball[i].dy) ..
@@ -781,7 +782,10 @@ function nettest(dt)
'|' .. tostring(ballSpeed) ..
'|' .. tostring(paddle_SPEED) ..
"|HOST")
print("SENT: " .. lastSentKey)
print("PRIVILEGE SENT: " .. lastSentKey)
else
udp:send(tostring(lastSentKey) ..'|' .. player1.y .. "|HOST")
end
ts = 0
end
end
@@ -842,8 +846,10 @@ function clienttest(dt)
ts = ts + dt
if ts > updaterate then
if ball[1].dx <= 0 then
print("MINOR SENDING")
udp:send(tostring(lastSentKey) ..'|' .. player2.y .. "|CLIENT")
elseif ball[1].dx > 0 then
print("PRIVILEGED SENDING")
udp:send(tostring(lastSentKey) ..
'|' .. tostring(ball[1].dy) ..
'|' .. tostring(player1.y) ..


Laden…
Abbrechen
Speichern