userConnacancel
branchsbox/mastercancel

467 Commits over 1,402 Days - 0.01cph!

5 Hours Ago
Fixed a bug where calling GameObject.GetPrefab could network spawn game objects. Never network spawn game objects if its scene is a PrefabScene. Merge branch 'master' of sbox
2 Days Ago
Don't try to auto-switch hosts if LobbyConfig.DestroyWhenHostLeaves is true. If that's true, we should only ever have the same host..
3 Days Ago
Automatically hotload user permissions if users.json is edited while the server is running - can change or add permissions without restarting the server
3 Days Ago
User perms config Allow Json comments Add default users.json file and change structure of config Don't ignore game/config/users.json because we want to keep the default with comments Return true in Connection.HasPermission if the connection is the host. We'll check user permissions from the config file for connections to a dedicated server. Remove some test logs and make HasPermission available
3 Days Ago
LobbyConfig.HideInServerList would let you hide a lobby from appearing in any server lists in s&box but still queryable with QueryLobbies Fix IsHidden support Filter in the query HideInServerList -> Hidden
4 Days Ago
Do the same when setting var
4 Days Ago
TrimQuoted...
4 Days Ago
Additional cmd line fix and extra test
4 Days Ago
Update test
4 Days Ago
Some backwards compat
4 Days Ago
Improve CommandLine parser. Added CommandLineTest.
5 Days Ago
Delta snapshot improvements. Fixed a bug where it was possible for a snapshot ack to be ignored - should fix a rare and difficult to reproduce bug where sync vars can become stuck
5 Days Ago
When running commands from command line, enclose args in quotes so they aren't split again by spaces internally (Fixes Facepunch/sbox-issues#7388)
5 Days Ago
No need to log that we can't find sound event if we're headless - we won't be playing any sounds anyway
5 Days Ago
Keep dedicated server alive when reloading a game. Allow managed to decide if a connection should be accepted. Improve auto-retry. Added net_dump_objects command to print all networked object names to console Hide a dedicated server from the server list when disconnecting - re-enable it when a lobby is created again
7 Days Ago
SendLog on a local connection should just log the message - no need to send a network message SendLog on a local connection should just log the message - no need to send a network message
7 Days Ago
Improvement + comment
7 Days Ago
Fix error with NetworkMode read in MapInstance. If network mode is Object then we want to NetworkSpawn the object here - this fixes networked objects from maps not appearing for clients
7 Days Ago
Server Commands / Admin Commands (#1772) * ConVarFlags.Server and ConVarFlags.Admin and the implementation of both. When the method has a Connection type as the first parameter, that parameter will be the source. Add Connection.SendLog( LogLevel, string ) * Safety * Add summaries
8 Days Ago
Don't send networked objects twice when the host switches scenes
8 Days Ago
Fixed a bug with the [Change] attribute not using the correct type in some cases - make sure we always use the type that the property belongs to
8 Days Ago
Start the networking thread
10 Days Ago
Move process of parsing command line switches on boot and setting ConVars and ConCmds from them from native to managed. Control when they are set / run ourselves, we'll do it in Bootstrap.Init.
12 Days Ago
Fixed a merge error
12 Days Ago
Protocol++
12 Days Ago
Improve networked scene changing by simplifying it and no longer reusing the handshake process
14 Days Ago
Always prefer explicitly set hostname for server name when running a dedicated server
14 Days Ago
Host Stats / Local Network Stats in Console (#1758)
14 Days Ago
Increase reasonable Steam connection time for dedicated server - ensure it shuts down properly if it doesn't connect in that time frame
32 Days Ago
Thread safe collection
32 Days Ago
Network++
32 Days Ago
SendRateMin/SendRateMax tweaks Tweak default encryption settings Tweak delta snapshot send mode This should have same treatment as SteamLobbySocket to be thread safe
32 Days Ago
Network Thread (#1748)
38 Days Ago
Fixed NRE in code upgrader for HostSync in scenario where no sibling Sync is found
38 Days Ago
Only add query flag is property was set to true - otherwise remove the query flag
38 Days Ago
Obsolete HostSync, add SyncFlag, add code upgrade / fix (#1729)
41 Days Ago
Fix duplicate def
41 Days Ago
Fix Send Buffer Buildup and Unreleased Message Bug (#1727)
51 Days Ago
Fixed backward compat for Authority attribute when specifying NetPermission. Ensure networking is cleaned up after game leave so any last-chance RPCs can be sent.
51 Days Ago
Actually include stats from direct connection / dedicated server with net_debug on
51 Days Ago
Added Connection.GetStats support / implementation for non-lobby Steam connections. Can view net stats for connection to dedicated server or clients connected to dedicated server as well
51 Days Ago
Reduce cluster size
51 Days Ago
Cluster Delta Snapshots - Improvements to Bandwidth, Max Snapshot Size (#1717) Resolves issues with Steam networking choking.
52 Days Ago
Some safety in Connection.All (don't add any null values to output list)
52 Days Ago
Fix Owner/Host mode RPCs not sending to target. Fix issue w/ Rider intellinse when typing Rpc. in attribute
52 Days Ago
Fixed RPCs
53 Days Ago
Don't need to update editor compiler if not running in the editor. Dedicated Server won't try to compile editor stuff
54 Days Ago
Fixed loading game from .sbproj with Dedicated Server that has libraries. Iterate any libraries in the project and add them as projects before compilation
55 Days Ago
PartyRoom uses SteamId. ConnectionInfoManager ensures we write party id as SteamId. Fixes being unable to join a game. Protocol++
55 Days Ago
Store last connection string globally for reconnect. Allows you to reconnect to your last server even when disconnected. Fix a bug where host changed may be called when not appropriate, such as an initial connection.