From 783839a0b0e864835cdbd51143ec7a39b983ba4f Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Mon, 11 Nov 2024 23:20:31 +0100 Subject: [PATCH] Reformat files --- Assets/Scripts/ConfigureNavBar.cs | 8 +++- Assets/Scripts/ConfigureObservers.cs | 2 +- Assets/Scripts/ConfigureOrbital.cs | 7 ++- Assets/Scripts/ConfigurePointer.cs | 2 +- Assets/Scripts/DialogHandler.cs | 2 +- Assets/Scripts/EndpointLoader.cs | 2 +- Assets/Scripts/MdnsService.cs | 2 +- Assets/Scripts/ScrollablePagination.cs | 2 +- Assets/Scripts/ServiceDiscovery.cs | 18 +++++-- Assets/Scripts/ServicesListPopulator.cs | 2 +- Assets/Scripts/VideoCaptureHandler.cs | 63 +++++++++++++------------ Assets/Scripts/WebViewBrowser.cs | 2 +- 12 files changed, 67 insertions(+), 45 deletions(-) diff --git a/Assets/Scripts/ConfigureNavBar.cs b/Assets/Scripts/ConfigureNavBar.cs index 82a7220..bd3ad28 100644 --- a/Assets/Scripts/ConfigureNavBar.cs +++ b/Assets/Scripts/ConfigureNavBar.cs @@ -30,10 +30,14 @@ namespace WebViewStream BoxCollider boxCollider = canvas.GetComponent(); if (boxCollider != null) { - boxCollider.size = new Vector3(boxCollider.size.x, isVisible ? 400 : 370, boxCollider.size.z); + boxCollider.size = new Vector3( + boxCollider.size.x, + isVisible ? 400 : 370, + boxCollider.size.z + ); boxCollider.center = new Vector3(0, isVisible ? 0 : -16, 0); } } } } -} \ No newline at end of file +} diff --git a/Assets/Scripts/ConfigureObservers.cs b/Assets/Scripts/ConfigureObservers.cs index 13a15b3..539c8d0 100644 --- a/Assets/Scripts/ConfigureObservers.cs +++ b/Assets/Scripts/ConfigureObservers.cs @@ -24,4 +24,4 @@ namespace WebViewStream } } } -} \ No newline at end of file +} diff --git a/Assets/Scripts/ConfigureOrbital.cs b/Assets/Scripts/ConfigureOrbital.cs index af30b78..6476f48 100644 --- a/Assets/Scripts/ConfigureOrbital.cs +++ b/Assets/Scripts/ConfigureOrbital.cs @@ -76,7 +76,10 @@ namespace WebViewStream canvas.transform.position = cameraTransform.position + cameraTransform.TransformDirection(localOffset); - canvas.transform.rotation = Quaternion.LookRotation(cameraTransform.forward, cameraTransform.up); + canvas.transform.rotation = Quaternion.LookRotation( + cameraTransform.forward, + cameraTransform.up + ); localOffset = new Vector3( localOffset.x + endpointLoader.GetItemWidth(canvas), @@ -86,4 +89,4 @@ namespace WebViewStream } } } -} \ No newline at end of file +} diff --git a/Assets/Scripts/ConfigurePointer.cs b/Assets/Scripts/ConfigurePointer.cs index 0b76b67..74050c7 100644 --- a/Assets/Scripts/ConfigurePointer.cs +++ b/Assets/Scripts/ConfigurePointer.cs @@ -34,4 +34,4 @@ namespace WebViewStream PointerUtils.SetHandRayPointerBehavior(PointerBehavior.AlwaysOff); } } -} \ No newline at end of file +} diff --git a/Assets/Scripts/DialogHandler.cs b/Assets/Scripts/DialogHandler.cs index f28dc68..228063a 100644 --- a/Assets/Scripts/DialogHandler.cs +++ b/Assets/Scripts/DialogHandler.cs @@ -36,4 +36,4 @@ namespace WebViewStream } } } -} \ No newline at end of file +} diff --git a/Assets/Scripts/EndpointLoader.cs b/Assets/Scripts/EndpointLoader.cs index 21be470..99b785c 100644 --- a/Assets/Scripts/EndpointLoader.cs +++ b/Assets/Scripts/EndpointLoader.cs @@ -345,4 +345,4 @@ namespace WebViewStream } } } -} \ No newline at end of file +} diff --git a/Assets/Scripts/MdnsService.cs b/Assets/Scripts/MdnsService.cs index bda15d4..fcd5482 100644 --- a/Assets/Scripts/MdnsService.cs +++ b/Assets/Scripts/MdnsService.cs @@ -46,4 +46,4 @@ namespace WebViewStream return hash; } } -} \ No newline at end of file +} diff --git a/Assets/Scripts/ScrollablePagination.cs b/Assets/Scripts/ScrollablePagination.cs index 177109d..29e4c50 100644 --- a/Assets/Scripts/ScrollablePagination.cs +++ b/Assets/Scripts/ScrollablePagination.cs @@ -23,4 +23,4 @@ namespace WebViewStream scrollView.MoveByTiers(amount); } } -} \ No newline at end of file +} diff --git a/Assets/Scripts/ServiceDiscovery.cs b/Assets/Scripts/ServiceDiscovery.cs index bd350df..72f1d77 100644 --- a/Assets/Scripts/ServiceDiscovery.cs +++ b/Assets/Scripts/ServiceDiscovery.cs @@ -86,7 +86,11 @@ namespace WebViewStream } udpClient = new UdpClient(); - udpClient.Client.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true); + udpClient.Client.SetSocketOption( + SocketOptionLevel.Socket, + SocketOptionName.ReuseAddress, + true + ); udpClient.Client.Bind(new IPEndPoint(defaultIP, multicastPort)); udpClient.JoinMulticastGroup(IPAddress.Parse(multicastAddress), defaultIP); @@ -109,7 +113,11 @@ namespace WebViewStream byte[] query = CreateMdnsQuery(serviceName); Debug.Log($"Sending mDNS query for {serviceName}"); - udpClient.Send(query, query.Length, new IPEndPoint(IPAddress.Parse(multicastAddress), multicastPort)); + udpClient.Send( + query, + query.Length, + new IPEndPoint(IPAddress.Parse(multicastAddress), multicastPort) + ); } private byte[] CreateMdnsQuery(string serviceName) @@ -262,7 +270,9 @@ namespace WebViewStream if (recordType == 1) // A Record { - IPAddress ipAddress = new IPAddress(new ArraySegment(data, offset, dataLength).ToArray()); + IPAddress ipAddress = new IPAddress( + new ArraySegment(data, offset, dataLength).ToArray() + ); receivedIp = ipAddress.ToString(); receivedHost = name; } @@ -372,4 +382,4 @@ namespace WebViewStream udpClient = null; } } -} \ No newline at end of file +} diff --git a/Assets/Scripts/ServicesListPopulator.cs b/Assets/Scripts/ServicesListPopulator.cs index 069ee33..8be25c4 100644 --- a/Assets/Scripts/ServicesListPopulator.cs +++ b/Assets/Scripts/ServicesListPopulator.cs @@ -103,4 +103,4 @@ namespace WebViewStream gameObject.SetActive(isVisible); } } -} \ No newline at end of file +} diff --git a/Assets/Scripts/VideoCaptureHandler.cs b/Assets/Scripts/VideoCaptureHandler.cs index e0152e9..b03d213 100644 --- a/Assets/Scripts/VideoCaptureHandler.cs +++ b/Assets/Scripts/VideoCaptureHandler.cs @@ -18,37 +18,37 @@ namespace WebViewStream private VideoCapture videoCapture = null; #if WINDOWS_UWP && !UNITY_EDITOR - private const string freeSpace = "System.FreeSpace"; - private const UInt64 minAvailableSpace = 5UL * 1024 * 1024 * 1024; // 5GB + private const string freeSpace = "System.FreeSpace"; + private const UInt64 minAvailableSpace = 5UL * 1024 * 1024 * 1024; // 5GB - private IEnumerator CheckAvailableStorageSpace() - { - while (videoCapture != null && videoCapture.IsRecording) + private IEnumerator CheckAvailableStorageSpace() { - yield return CheckSpaceAndHandleRecording(); - yield return new WaitForSeconds(5); - } - } - - private async Task CheckSpaceAndHandleRecording() - { - try - { - StorageFolder folder = ApplicationData.Current.TemporaryFolder; - var props = await folder.Properties.RetrievePropertiesAsync(new string[] { freeSpace }); - UInt64 availableSpace = (UInt64)props[freeSpace]; - - if (availableSpace < minAvailableSpace) + while (videoCapture != null && videoCapture.IsRecording) { - Debug.LogWarning("Not enough storage space to continue recording. Saving video."); - StopRecordingVideo(); + yield return CheckSpaceAndHandleRecording(); + yield return new WaitForSeconds(5); } } - catch (Exception ex) + + private async Task CheckSpaceAndHandleRecording() { - Debug.LogError("Error checking storage space: " + ex.Message); + try + { + StorageFolder folder = ApplicationData.Current.TemporaryFolder; + var props = await folder.Properties.RetrievePropertiesAsync(new string[] { freeSpace }); + UInt64 availableSpace = (UInt64)props[freeSpace]; + + if (availableSpace < minAvailableSpace) + { + Debug.LogWarning("Not enough storage space to continue recording. Saving video."); + StopRecordingVideo(); + } + } + catch (Exception ex) + { + Debug.LogError("Error checking storage space: " + ex.Message); + } } - } #endif /// @@ -57,7 +57,7 @@ namespace WebViewStream public void StartRecordingVideo() { #if WINDOWS_UWP && !UNITY_EDITOR - VideoCapture.CreateAsync(true, OnVideoCaptureCreated); + VideoCapture.CreateAsync(true, OnVideoCaptureCreated); #else VideoCapture.CreateAsync(false, OnVideoCaptureCreated); #endif @@ -101,14 +101,19 @@ namespace WebViewStream Resolution cameraResolution = new Resolution(); foreach (Resolution resolution in VideoCapture.SupportedResolutions) { - if (resolution.width * resolution.height > cameraResolution.width * cameraResolution.height) + if ( + resolution.width * resolution.height + > cameraResolution.width * cameraResolution.height + ) { cameraResolution = resolution; } } float cameraFramerate = 0.0f; - foreach (float framerate in VideoCapture.GetSupportedFrameRatesForResolution(cameraResolution)) + foreach ( + float framerate in VideoCapture.GetSupportedFrameRatesForResolution(cameraResolution) + ) { if (framerate > cameraFramerate) { @@ -154,7 +159,7 @@ namespace WebViewStream { Debug.Log("Started recording video"); #if WINDOWS_UWP && !UNITY_EDITOR - StartCoroutine(CheckAvailableStorageSpace()); + StartCoroutine(CheckAvailableStorageSpace()); #endif } @@ -170,4 +175,4 @@ namespace WebViewStream videoCapture = null; } } -} \ No newline at end of file +} diff --git a/Assets/Scripts/WebViewBrowser.cs b/Assets/Scripts/WebViewBrowser.cs index 9aa57e5..dbbace9 100644 --- a/Assets/Scripts/WebViewBrowser.cs +++ b/Assets/Scripts/WebViewBrowser.cs @@ -45,4 +45,4 @@ namespace WebViewStream } } } -} \ No newline at end of file +}