File tree 6 files changed +40
-4
lines changed
6 files changed +40
-4
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,8 @@ export const App = () => {
17
17
AutoConnect : true ,
18
18
ss : 'ws://localhost:80' ,
19
19
StartVideoMuted : true ,
20
- HoveringMouse : true
20
+ HoveringMouse : true ,
21
+ WaitForStreamer : true
21
22
} }
22
23
/>
23
24
</ div >
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ document.body.onload = function() {
13
13
AutoConnect : true ,
14
14
ss : "ws://localhost:80" ,
15
15
StartVideoMuted : true ,
16
+ WaitForStreamer : true ,
16
17
}
17
18
} ) ;
18
19
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ export class Flags {
32
32
static TouchInput = 'TouchInput' as const ;
33
33
static GamepadInput = 'GamepadInput' as const ;
34
34
static XRControllerInput = 'XRControllerInput' as const ;
35
+ static WaitForStreamer = "WaitForStreamer" as const ;
35
36
}
36
37
37
38
export type FlagsKeys = Exclude < keyof typeof Flags , 'prototype' > ;
@@ -459,6 +460,17 @@ export class Config {
459
460
)
460
461
) ;
461
462
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
+
462
474
/**
463
475
* Numeric parameters
464
476
*/
Original file line number Diff line number Diff line change @@ -110,6 +110,8 @@ export class WebRtcPlayerController {
110
110
// it will use this property to store the override message string
111
111
disconnectMessageOverride : string ;
112
112
113
+ autoJoinTimer : ReturnType < typeof setTimeout > = undefined ;
114
+
113
115
/**
114
116
*
115
117
* @param config - the frontend config object
@@ -1389,6 +1391,11 @@ export class WebRtcPlayerController {
1389
1391
OptionParameters . StreamerId ,
1390
1392
autoSelectedStreamerId
1391
1393
) ;
1394
+ } else {
1395
+ // no auto selected streamer
1396
+ if ( this . config . isFlagEnabled ( Flags . WaitForStreamer ) ) {
1397
+ this . startAutoJoinTimer ( )
1398
+ }
1392
1399
}
1393
1400
this . pixelStreaming . dispatchEvent (
1394
1401
new StreamerListMessageEvent ( {
@@ -1399,6 +1406,15 @@ export class WebRtcPlayerController {
1399
1406
}
1400
1407
}
1401
1408
1409
+ startAutoJoinTimer ( ) {
1410
+ clearTimeout ( this . autoJoinTimer ) ;
1411
+ this . autoJoinTimer = setTimeout ( ( ) => this . tryAutoJoin ( ) , 3000 ) ;
1412
+ }
1413
+
1414
+ tryAutoJoin ( ) {
1415
+ this . connectToSignallingServer ( ) ;
1416
+ }
1417
+
1402
1418
/**
1403
1419
* Handle the RTC Answer from the signaling server
1404
1420
* @param Answer - Answer SDP from the peer.
Original file line number Diff line number Diff line change @@ -674,9 +674,11 @@ export class Application {
674
674
handleStreamerListMessage ( messageStreamingList : MessageStreamerList , autoSelectedStreamerId : string | null ) {
675
675
if ( autoSelectedStreamerId === null ) {
676
676
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 ) ;
680
682
} else {
681
683
this . showTextOverlay (
682
684
'Multiple streamers detected. Use the dropdown in the settings menu to select the streamer'
Original file line number Diff line number Diff line change @@ -198,6 +198,10 @@ export class ConfigUI {
198
198
psSettingsSection ,
199
199
this . flagsUi . get ( Flags . AFKDetection )
200
200
) ;
201
+ this . addSettingFlag (
202
+ psSettingsSection ,
203
+ this . flagsUi . get ( Flags . WaitForStreamer )
204
+ ) ;
201
205
this . addSettingNumeric (
202
206
psSettingsSection ,
203
207
this . numericParametersUi . get ( NumericParameters . AFKTimeoutSecs )
You can’t perform that action at this time.
0 commit comments