Преглед изворни кода

bugs squashed

tags/online1.1
Madiwka пре 4 година
родитељ
комит
1d5dcfba92
1 измењених фајлова са 7 додато и 1 уклоњено
  1. +7
    -1
      main.lua

+ 7
- 1
main.lua Прегледај датотеку

@@ -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) ..


Loading…
Откажи
Сачувај