diff options
author | Subv <subv2112@gmail.com> | 2017-06-13 20:14:17 +0200 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2017-06-15 18:57:49 +0200 |
commit | 38ceab13f6563ef3e4595ac46b3f9f1b1f7d697f (patch) | |
tree | 78359ed4e6c00ab772ef14001071d7d90c414eac /src | |
parent | Services/UDS: Set the proper bit in the ConnectionStatus structure when creating a network. (#2738) (diff) | |
download | yuzu-38ceab13f6563ef3e4595ac46b3f9f1b1f7d697f.tar yuzu-38ceab13f6563ef3e4595ac46b3f9f1b1f7d697f.tar.gz yuzu-38ceab13f6563ef3e4595ac46b3f9f1b1f7d697f.tar.bz2 yuzu-38ceab13f6563ef3e4595ac46b3f9f1b1f7d697f.tar.lz yuzu-38ceab13f6563ef3e4595ac46b3f9f1b1f7d697f.tar.xz yuzu-38ceab13f6563ef3e4595ac46b3f9f1b1f7d697f.tar.zst yuzu-38ceab13f6563ef3e4595ac46b3f9f1b1f7d697f.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/service/nwm/nwm_uds.cpp | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/core/hle/service/nwm/nwm_uds.cpp b/src/core/hle/service/nwm/nwm_uds.cpp index e92900d48..51786d172 100644 --- a/src/core/hle/service/nwm/nwm_uds.cpp +++ b/src/core/hle/service/nwm/nwm_uds.cpp @@ -543,6 +543,42 @@ static void BeaconBroadcastCallback(u64 userdata, int cycles_late) { beacon_broadcast_event, 0); } +/* + * Returns an available index in the nodes array for the + * currently-hosted UDS network. + */ +static u32 GetNextAvailableNodeId() { + ASSERT_MSG(connection_status.status == static_cast<u32>(NetworkStatus::ConnectedAsHost), + "Can not accept clients if we're not hosting a network"); + + for (unsigned index = 0; index < connection_status.max_nodes; ++index) { + if ((connection_status.node_bitmask & (1 << index)) == 0) + return index; + } + + // Any connection attempts to an already full network should have been refused. + ASSERT_MSG(false, "No available connection slots in the network"); +} + +/* + * Called when a client connects to an UDS network we're hosting, + * updates the connection status and signals the update event. + * @param network_node_id Network Node Id of the connecting client. + */ +void OnClientConnected(u16 network_node_id) { + ASSERT_MSG(connection_status.status == static_cast<u32>(NetworkStatus::ConnectedAsHost), + "Can not accept clients if we're not hosting a network"); + ASSERT_MSG(connection_status.total_nodes < connection_status.max_nodes, + "Can not accept connections on a full network"); + + u32 node_id = GetNextAvailableNodeId(); + connection_status.node_bitmask |= 1 << node_id; + connection_status.changed_nodes |= 1 << node_id; + connection_status.nodes[node_id] = network_node_id; + connection_status.total_nodes++; + connection_status_event->Signal(); +} + const Interface::FunctionInfo FunctionTable[] = { {0x00010442, nullptr, "Initialize (deprecated)"}, {0x00020000, nullptr, "Scrap"}, |