-
-
Notifications
You must be signed in to change notification settings - Fork 968
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature: make "join game" button join the game, instead of first showing a lobby window #9467
Conversation
a2bb8d3
to
d748e98
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can't the server side be simplified as well? Practically not implementing Receive_CLIENT_COMPANY_INFO
(and letting tcp_game's implementation take over) would be possible since the lobby should never be shown without going through the game list which prevents connecting to a server with the wrong version, right?
Alternatively sending SERVER_COMPANY_INFO (SendCompanyInfo
) gets heavily simplified by just sending a packet with that type and a new version number and a false
boolean. Then the protocol is not closing the client's connection, but the client gets nothing except an unexpected version which is to be expected when you send a newer version. Although that might ofcourse cause whining from some people that you cannot acquire that information anymore, but alas... they should be using the admin protocol instead I guess.
I can imagine postponing this can of worms to a separate PR though.
As with the other comment, these packets are part of the "we never going to change this" group. I am in no mood to look into that any further :P So possibly you are right .. but yeah, not for this PR :) Edit: I created #9475 to address this. |
d748e98
to
ca5e508
Compare
ca5e508
to
a39cd7d
Compare
a39cd7d
to
4d692eb
Compare
4d692eb
to
ab3c0ab
Compare
@@ -38,7 +38,7 @@ enum PacketGameType { | |||
PACKET_CLIENT_JOIN, ///< The client telling the server it wants to join. | |||
PACKET_SERVER_ERROR, ///< Server sending an error message to the client. | |||
|
|||
/* Packets used for the pre-game lobby. */ | |||
/* Packets used for the pre-game lobby (unused, but remain for backward/forward compatibility). */ | |||
PACKET_CLIENT_COMPANY_INFO, ///< Request information about all companies. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe add a "_UNUSED" to the constants themself?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To give that change a bit more visibility, I did that in #9475 .
…ing a lobby window Nobody really paid attention to the lobby window, and it completely missed its purpose. Most people don't even wait for companies to show up, but just hit "New Company". This in turn means people create a lot of unneeded companies, while they "just want to watch the game" or join another company. Instead, "Join Game" now just joins the game as spectators.
ab3c0ab
to
c26ed4c
Compare
Motivation / Problem
(part of commit message)
Description
(part of commit message)
A future PR will address the gap that now exists between: I joined a server, now how to start playing?
Limitations
Checklist for review
Some things are not automated, and forgotten often. This list is a reminder for the reviewers.