2023-09-04 18:20:02 +00:00
|
|
|
local lg = assert( love.graphics )
|
2023-09-04 18:31:47 +00:00
|
|
|
local scene = assert( require 'client.scene' )
|
2023-09-07 01:03:22 +00:00
|
|
|
local textInput = assert( require 'client.ui.textinput' )
|
|
|
|
local button = assert( require 'client.ui.button' )
|
2023-09-12 14:26:13 +00:00
|
|
|
local packet = assert( require 'shared.packet' )
|
2023-09-13 03:22:31 +00:00
|
|
|
local menu = assert( require 'client.ui.menu' )
|
2023-09-14 03:51:00 +00:00
|
|
|
local strings = assert( require 'client.assets.strings.strings' )
|
|
|
|
local utf8 = assert( require 'utf8' )
|
2023-09-15 02:21:34 +00:00
|
|
|
|
2023-09-04 18:20:02 +00:00
|
|
|
local browser = {}
|
|
|
|
|
2023-09-14 03:51:00 +00:00
|
|
|
local test = assert( require 'client.test.browser' )
|
|
|
|
|
2023-09-15 02:21:34 +00:00
|
|
|
|
2023-09-14 03:51:00 +00:00
|
|
|
local font = lg.newFont( "client/assets/fonts/Montserrat-Bold.ttf", 12 )
|
|
|
|
local headerFont = lg.newFont( "client/assets/fonts/Montserrat-Bold.ttf", 36 )
|
|
|
|
local midFont = lg.newFont( "client/assets/fonts/Montserrat-Bold.ttf", 24 )
|
|
|
|
|
2023-09-15 02:21:34 +00:00
|
|
|
local cw = font:getWidth( "w" )
|
|
|
|
|
2023-09-13 03:22:31 +00:00
|
|
|
local function joinServerCallback( button )
|
2023-09-14 03:51:00 +00:00
|
|
|
if button.ip and button.port then
|
|
|
|
return browser.joinIP( button.ip, button.port )
|
|
|
|
end
|
2023-09-13 03:22:31 +00:00
|
|
|
end
|
|
|
|
|
2023-09-15 02:21:34 +00:00
|
|
|
local function tryAdd( text, d, x )
|
|
|
|
local s = packet.getString( d )
|
|
|
|
return pcall( text.add, text, s, x ) or text:add( strings.utf8_error, x )
|
|
|
|
end
|
|
|
|
|
|
|
|
local function serverInfoToText( server )
|
2023-09-14 03:51:00 +00:00
|
|
|
local cw = font:getWidth( "w" )
|
2023-09-15 02:21:34 +00:00
|
|
|
local text = lg.newText( font )
|
|
|
|
tryAdd( text, server.svname, 0 )
|
|
|
|
tryAdd( text, server.map, cw * 16 )
|
|
|
|
text:add( tostring( server.ip ), cw * 32 )
|
|
|
|
text:add( server.port, cw * ( 32 + 12 ) )
|
|
|
|
text:add( server.players, cw * ( 32 + 12 + 6 ) )
|
|
|
|
text:add( server.capacity, cw * ( 32 + 12 + 9 ) )
|
|
|
|
return text
|
|
|
|
end
|
2023-09-14 03:51:00 +00:00
|
|
|
|
|
|
|
|
2023-09-15 02:21:34 +00:00
|
|
|
local serverButtons = {}
|
|
|
|
local color = { 1, 0.6, 0.6, 0.1 }
|
|
|
|
local headerButtons = {
|
|
|
|
button{ x = cw * 53, color = color, y = 135, text = lg.newText( font, strings.svinfo_capacity ) },
|
|
|
|
button{ x = cw * 50, color = color, y = 135, text = lg.newText( font, strings.svinfo_players ) },
|
|
|
|
button{ x = cw * 44, color = color, y = 135, text = lg.newText( font, strings.svinfo_port ) },
|
|
|
|
button{ x = cw * 32, color = color, y = 135, text = lg.newText( font, strings.svinfo_ip ) },
|
|
|
|
button{ x = cw * 16, color = color, y = 135, text = lg.newText( font, strings.svinfo_map ) },
|
|
|
|
button{ x = cw , color = color, y = 135, text = lg.newText( font, strings.svinfo_name ) },
|
|
|
|
}
|
2023-09-11 22:44:36 +00:00
|
|
|
|
2023-09-14 03:51:00 +00:00
|
|
|
|
|
|
|
local serverList = menu.new{
|
|
|
|
name = "serverList",
|
|
|
|
buttons = serverButtons,
|
2023-09-15 02:21:34 +00:00
|
|
|
fg = lg.newMesh{
|
|
|
|
{ 0.5, 0, 0.5, 0, 0, 0, 0, 0 },
|
|
|
|
{ 1, 0, 1, 0, 1, 1, 1, 1 },
|
|
|
|
{ 1, 1, 1, 1, 1, 1, 1, 1 },
|
|
|
|
{ 0.5, 1, 0.5, 1, 0, 0, 0, 0 },
|
|
|
|
},
|
2023-09-14 03:51:00 +00:00
|
|
|
bg = lg.newMesh{
|
2023-09-15 02:21:34 +00:00
|
|
|
{ 0, 0, 0, 0, 0.4, 0.05, 0.0, 0.9 },
|
2023-09-14 03:51:00 +00:00
|
|
|
{ 1, 0, 1, 0, 0.8, 0.3, 0.1, 0.8 },
|
|
|
|
{ 1, 1, 1, 1, 0.7, 0.4, 0.1, 0.8 },
|
2023-09-15 02:21:34 +00:00
|
|
|
{ 0, 1, 0, 1, 0.4, 0.05, 0.05, 0.9 },
|
2023-09-14 03:51:00 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
font = font,
|
|
|
|
subScene = true }
|
2023-09-12 14:26:13 +00:00
|
|
|
serverList.selected = false
|
|
|
|
serverList.x = 25
|
2023-09-14 03:51:00 +00:00
|
|
|
serverList.y = 0
|
2023-09-12 14:26:13 +00:00
|
|
|
serverList.h = 36
|
|
|
|
|
2023-09-15 02:21:34 +00:00
|
|
|
function serverList.refresh( serverInfo )
|
|
|
|
|
|
|
|
local n = 1
|
|
|
|
for j, headerButton in ipairs( headerButtons ) do
|
|
|
|
serverButtons[j] = headerButton
|
|
|
|
n = n + 1
|
|
|
|
end
|
2023-09-12 14:26:13 +00:00
|
|
|
|
2023-09-15 02:21:34 +00:00
|
|
|
for i, server in ipairs( serverInfo ) do
|
|
|
|
local b = serverButtons[n] or button{}
|
|
|
|
b.space = 0
|
|
|
|
b.y = 15 + n * 27
|
|
|
|
b.h = 24
|
|
|
|
b.color = { 0.3 + 0.1 * (n % 2), 0.3 + 0.1 * (n % 2), 0.8, 0.5 }
|
|
|
|
b.callback = joinServerCallback
|
|
|
|
b.serverInfo = server
|
|
|
|
b.ip = tostring( server.ip )
|
|
|
|
b.port = server.port
|
|
|
|
b.text = serverInfoToText( server )
|
|
|
|
serverButtons[n] = b
|
|
|
|
n = n + 1
|
|
|
|
print( "Button: ", i, b.y )
|
|
|
|
end
|
|
|
|
|
|
|
|
for i = #headerButtons + #serverInfo + 1, #headerButtons + #serverButtons do serverButtons[i] = nil end
|
2023-09-11 22:44:36 +00:00
|
|
|
|
2023-09-15 02:21:34 +00:00
|
|
|
--for i = #headerButtons, 1, -1 do
|
|
|
|
-- table.insert( serverButtons, 1, headerButtons[i] )
|
|
|
|
--end
|
|
|
|
return serverList:paint()
|
2023-09-11 22:44:36 +00:00
|
|
|
end
|
|
|
|
|
2023-09-15 02:21:34 +00:00
|
|
|
local refreshButton = button{
|
|
|
|
callback = serverList.onRefresh,
|
|
|
|
text = lg.newText( midFont, strings.refresh_button ) ,
|
|
|
|
color = { 1, 1, 1, 0.4 },
|
|
|
|
x = 450,
|
|
|
|
y = 75,
|
|
|
|
w = 400,
|
|
|
|
h = 55
|
|
|
|
}
|
|
|
|
|
|
|
|
do
|
|
|
|
local rs = serverList.resize
|
|
|
|
serverList.resize = function( x, y )
|
|
|
|
rs( x, y )
|
|
|
|
for i, button in ipairs( serverButtons ) do
|
|
|
|
button.w = x
|
|
|
|
end
|
|
|
|
return serverList:paint()
|
|
|
|
end
|
|
|
|
|
|
|
|
local ol = serverList.onLoad
|
|
|
|
function serverList:onLoad()
|
|
|
|
serverList.refresh( test.getTestServers() )
|
|
|
|
return ol( serverList )
|
|
|
|
end
|
2023-09-11 22:44:36 +00:00
|
|
|
end
|
|
|
|
|
2023-09-07 01:03:22 +00:00
|
|
|
local ti = textInput.new{
|
|
|
|
width = 300,
|
|
|
|
length = 20,
|
2023-09-14 03:51:00 +00:00
|
|
|
x = 150,
|
|
|
|
y = 75,
|
|
|
|
str = "8.8.8.8:1234"
|
2023-09-07 01:03:22 +00:00
|
|
|
}
|
|
|
|
|
2023-09-13 03:22:31 +00:00
|
|
|
browser.selected = false
|
|
|
|
|
2023-09-04 18:20:02 +00:00
|
|
|
function browser.draw()
|
2023-09-14 03:51:00 +00:00
|
|
|
serverList.draw()
|
2023-09-07 01:03:22 +00:00
|
|
|
lg.setColor( 1, 1, 1, 1 )
|
2023-09-14 03:51:00 +00:00
|
|
|
lg.setFont( headerFont )
|
|
|
|
lg.print( strings.server_browser, 15, 15 )
|
|
|
|
lg.setFont( midFont )
|
|
|
|
lg.print( strings.ip_button, 15, 85 )
|
2023-09-15 02:21:34 +00:00
|
|
|
refreshButton:draw()
|
2023-09-07 01:03:22 +00:00
|
|
|
ti:draw()
|
2023-09-04 18:20:02 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function browser.update( dt )
|
2023-09-12 14:26:13 +00:00
|
|
|
|
2023-09-04 18:20:02 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function browser.onLoad( )
|
2023-09-13 03:22:31 +00:00
|
|
|
serverList:onLoad()
|
2023-09-04 18:20:02 +00:00
|
|
|
lg.setColor( 1, 1, 1, 1 )
|
|
|
|
end
|
|
|
|
|
2023-09-14 03:51:00 +00:00
|
|
|
function browser.mousemoved( x, y, dx, dy, istouch )
|
2023-09-15 02:21:34 +00:00
|
|
|
refreshButton.selected = refreshButton:contains( x, y )
|
2023-09-14 03:51:00 +00:00
|
|
|
return serverList.mousemoved( x, y, dx, dy, istouch )
|
|
|
|
end
|
|
|
|
|
|
|
|
function browser.resize( x, y )
|
|
|
|
return serverList.resize( x, y )
|
|
|
|
end
|
|
|
|
|
2023-09-07 01:03:22 +00:00
|
|
|
function browser.mousepressed(x, y, button, istouch, pressed)
|
2023-09-15 02:21:34 +00:00
|
|
|
if refreshButton.selected and refreshButton:contains( x, y ) then return serverList.refresh( test.getTestServers() ) end
|
2023-09-07 01:03:22 +00:00
|
|
|
if ti:contains( x, y ) then return ti:enterText( browser.joinIPString ) end
|
2023-09-13 03:22:31 +00:00
|
|
|
return serverList.mousepressed( x, y, button, istouch, pressed )
|
2023-09-07 01:03:22 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function browser.joinIPString( s )
|
|
|
|
--Parse IP address and port from string. If it's valid, join the server.
|
2023-09-13 03:22:31 +00:00
|
|
|
print( "browser: entered IP and port", s )
|
2023-09-07 01:03:22 +00:00
|
|
|
if not s then return end
|
|
|
|
ti:clear()
|
2023-09-13 03:22:31 +00:00
|
|
|
local ip, port = s:match '(%d+%.%d+%.%d+%.%d+)', s:match ':(%d+)'
|
|
|
|
print( "browser:", "ip:", ip, port )
|
2023-09-12 14:26:13 +00:00
|
|
|
|
2023-09-13 03:22:31 +00:00
|
|
|
if ip and port then return browser.joinIP( ip, port ) end
|
2023-09-07 01:03:22 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function browser.joinIP( ip, port )
|
2023-09-11 22:44:36 +00:00
|
|
|
print( "Joining server:", ip, port )
|
2023-09-13 03:22:31 +00:00
|
|
|
return scene.loadScene( scene.connecting, { ip = ip, port = port } )
|
2023-09-05 00:40:07 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function browser.keypressed( key, code, isRepeat )
|
2023-09-15 02:21:34 +00:00
|
|
|
if code == "q" then return serverList.refresh( test.getTestServers() ) end
|
2023-09-05 00:40:07 +00:00
|
|
|
if code == "escape" then return scene.mainmenu() end
|
2023-09-07 01:03:22 +00:00
|
|
|
if code == "return" then return ti:enterText( browser.joinIPString ) end
|
2023-09-14 03:51:00 +00:00
|
|
|
return serverList.keypressed( key, code, isRepeat )
|
2023-09-05 00:40:07 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
scene.browser = browser
|
|
|
|
return browser
|