Skip to content

Commit d8ba9e5

Browse files
committed
Adding better support for auto connect to first available streamer.
1 parent 24577cd commit d8ba9e5

File tree

6 files changed

+40
-4
lines changed

6 files changed

+40
-4
lines changed

Frontend/implementations/react/src/components/App.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ export const App = () => {
1717
AutoConnect: true,
1818
ss: 'ws://localhost:80',
1919
StartVideoMuted: true,
20-
HoveringMouse: true
20+
HoveringMouse: true,
21+
WaitForStreamer: true
2122
}}
2223
/>
2324
</div>

Frontend/implementations/typescript/src/uiless.ts

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ document.body.onload = function() {
1313
AutoConnect: true,
1414
ss: "ws://localhost:80",
1515
StartVideoMuted: true,
16+
WaitForStreamer: true,
1617
}
1718
});
1819

Frontend/library/src/Config/Config.ts

+12
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ export class Flags {
3232
static TouchInput = 'TouchInput' as const;
3333
static GamepadInput = 'GamepadInput' as const;
3434
static XRControllerInput = 'XRControllerInput' as const;
35+
static WaitForStreamer = "WaitForStreamer" as const;
3536
}
3637

3738
export type FlagsKeys = Exclude<keyof typeof Flags, 'prototype'>;
@@ -459,6 +460,17 @@ export class Config {
459460
)
460461
);
461462

463+
this.flags.set(
464+
Flags.WaitForStreamer,
465+
new SettingFlag(
466+
Flags.WaitForStreamer,
467+
'Wait for streamer',
468+
'Will continue trying to connect to the first streamer available.',
469+
true,
470+
useUrlParams
471+
)
472+
);
473+
462474
/**
463475
* Numeric parameters
464476
*/

Frontend/library/src/WebRtcPlayer/WebRtcPlayerController.ts

+16
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,8 @@ export class WebRtcPlayerController {
110110
// it will use this property to store the override message string
111111
disconnectMessageOverride: string;
112112

113+
autoJoinTimer: ReturnType<typeof setTimeout> = undefined;
114+
113115
/**
114116
*
115117
* @param config - the frontend config object
@@ -1389,6 +1391,11 @@ export class WebRtcPlayerController {
13891391
OptionParameters.StreamerId,
13901392
autoSelectedStreamerId
13911393
);
1394+
} else {
1395+
// no auto selected streamer
1396+
if (this.config.isFlagEnabled(Flags.WaitForStreamer)) {
1397+
this.startAutoJoinTimer()
1398+
}
13921399
}
13931400
this.pixelStreaming.dispatchEvent(
13941401
new StreamerListMessageEvent({
@@ -1399,6 +1406,15 @@ export class WebRtcPlayerController {
13991406
}
14001407
}
14011408

1409+
startAutoJoinTimer() {
1410+
clearTimeout(this.autoJoinTimer);
1411+
this.autoJoinTimer = setTimeout(() => this.tryAutoJoin(), 3000);
1412+
}
1413+
1414+
tryAutoJoin() {
1415+
this.connectToSignallingServer();
1416+
}
1417+
14021418
/**
14031419
* Handle the RTC Answer from the signaling server
14041420
* @param Answer - Answer SDP from the peer.

Frontend/ui-library/src/Application/Application.ts

+5-3
Original file line numberDiff line numberDiff line change
@@ -674,9 +674,11 @@ export class Application {
674674
handleStreamerListMessage(messageStreamingList: MessageStreamerList, autoSelectedStreamerId: string | null) {
675675
if (autoSelectedStreamerId === null) {
676676
if(messageStreamingList.ids.length === 0) {
677-
this.showDisconnectOverlay(
678-
'No streamers connected. <div class="clickableState">Click To Restart</div>'
679-
);
677+
var message = 'No streamers connected. ' +
678+
(this.stream.config.isFlagEnabled(Flags.WaitForStreamer)
679+
? 'Waiting for streamer...'
680+
: '<div style="clickableState">Click To Restart</div>');
681+
this.showDisconnectOverlay(message);
680682
} else {
681683
this.showTextOverlay(
682684
'Multiple streamers detected. Use the dropdown in the settings menu to select the streamer'

Frontend/ui-library/src/Config/ConfigUI.ts

+4
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,10 @@ export class ConfigUI {
198198
psSettingsSection,
199199
this.flagsUi.get(Flags.AFKDetection)
200200
);
201+
this.addSettingFlag(
202+
psSettingsSection,
203+
this.flagsUi.get(Flags.WaitForStreamer)
204+
);
201205
this.addSettingNumeric(
202206
psSettingsSection,
203207
this.numericParametersUi.get(NumericParameters.AFKTimeoutSecs)

0 commit comments

Comments
 (0)