mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
50 lines
1.5 KiB
C#
50 lines
1.5 KiB
C#
using Remotely.ScreenCast.Core.Interfaces;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Remotely.ScreenCast.Core.Enums;
|
|
using Remotely.ScreenCast.Core.Services;
|
|
using Remotely.ScreenCast.Core.Capture;
|
|
using Remotely.ScreenCast.Core;
|
|
using Remotely.ScreenCast.Core.Models;
|
|
using Remotely.Shared.Models;
|
|
using Remotely.ScreenCast.Win.Capture;
|
|
|
|
namespace Remotely.ScreenCast.Win.Services
|
|
{
|
|
public class WinScreenCaster : IScreenCaster
|
|
{
|
|
public WinScreenCaster(CursorIconWatcher cursorIconWatcher)
|
|
{
|
|
CursorIconWatcher = cursorIconWatcher;
|
|
}
|
|
|
|
public CursorIconWatcher CursorIconWatcher { get; }
|
|
|
|
public async Task BeginScreenCasting(ScreenCastRequest screenCastRequest)
|
|
{
|
|
ICapturer capturer;
|
|
try
|
|
{
|
|
if (Conductor.Current.Viewers.Count == 0)
|
|
{
|
|
capturer = new DXCapture();
|
|
}
|
|
else
|
|
{
|
|
capturer = new BitBltCapture();
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Logger.Write(ex);
|
|
capturer = new BitBltCapture();
|
|
}
|
|
await Conductor.Current.CasterSocket.SendCursorChange(CursorIconWatcher.GetCurrentCursor(), new List<string>() { screenCastRequest.ViewerID });
|
|
_ = ScreenCaster.BeginScreenCasting(screenCastRequest.ViewerID, screenCastRequest.RequesterName, capturer);
|
|
}
|
|
}
|
|
}
|