1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00

Working on render logic

This commit is contained in:
Robert 2019-10-23 20:10:02 +02:00
parent 7cd8bc246c
commit 49e6dbf09b
8 changed files with 50 additions and 19 deletions

View File

@ -14,16 +14,24 @@ namespace Artemis.Core.RGB.NET
public GraphicsDecorator(ListLedGroup ledGroup)
{
var width = ledGroup.GetLeds().Max(l => l.AbsoluteLedRectangle.X + l.AbsoluteLedRectangle.Width);
var height = ledGroup.GetLeds().Max(l => l.AbsoluteLedRectangle.Y + l.AbsoluteLedRectangle.Height);
var leds = ledGroup.GetLeds().ToList();
if (!leds.Any())
{
_bitmap = null;
}
else
{
var width = leds.Max(l => l.AbsoluteLedRectangle.X + l.AbsoluteLedRectangle.Width);
var height = leds.Max(l => l.AbsoluteLedRectangle.Y + l.AbsoluteLedRectangle.Height);
_bitmap = new DirectBitmap((int) width, (int) height);
_bitmap = new DirectBitmap((int) width, (int) height);
}
}
public Color ManipulateColor(Rectangle rectangle, BrushRenderTarget renderTarget, Color color)
{
var point = renderTarget.Point;
if (_bitmap.Width - 1 >= point.X && _bitmap.Height - 1 >= point.Y)
var point = renderTarget.Led.AbsoluteLedRectangle.Center;
if (_bitmap != null && _bitmap.Width - 1 >= point.X && _bitmap.Height - 1 >= point.Y)
{
var pixel = _bitmap.GetPixel((int) point.X, (int) point.Y);
return new Color(pixel.A, pixel.R, pixel.G, pixel.B);
@ -34,7 +42,7 @@ namespace Artemis.Core.RGB.NET
public Graphics GetGraphics()
{
return Graphics.FromImage(_bitmap.Bitmap);
return _bitmap == null ? null : Graphics.FromImage(_bitmap.Bitmap);
}
}
}

View File

@ -64,12 +64,17 @@ namespace Artemis.Core.Services
foreach (var module in modules)
module.Update(args.DeltaTime);
// If there is no graphics decorator, skip the frame
if (_rgbService.GraphicsDecorator == null)
return;
// Render all active modules
using (var g = _rgbService.GraphicsDecorator.GetGraphics())
{
// If there are no graphics, skip the frame
if (g == null)
return;
g.Clear(Color.Black);
foreach (var module in modules)
module.Render(args.DeltaTime, _rgbService.Surface, g);

View File

@ -25,5 +25,7 @@ namespace Artemis.Core.Services.Interfaces
/// Occurs when a single device has reloaded
/// </summary>
event EventHandler<DeviceEventArgs> DeviceReloaded;
void UpdateGraphicsDecorator();
}
}

View File

@ -19,6 +19,7 @@ namespace Artemis.Core.Services
private readonly List<IRGBDevice> _loadedDevices;
private readonly ILogger _logger;
private readonly TimerUpdateTrigger _updateTrigger;
private ListLedGroup _background;
internal RgbService(ILogger logger)
{
@ -58,7 +59,7 @@ namespace Artemis.Core.Services
_logger.Warning("Device provider {deviceProvider} has no devices", deviceProvider.GetType().Name);
return;
}
lock (_loadedDevices)
{
foreach (var surfaceDevice in deviceProvider.Devices)
@ -74,11 +75,6 @@ namespace Artemis.Core.Services
}
}
}
// Apply the application wide brush and decorator
var background = new ListLedGroup(Surface.Leds) {Brush = new SolidColorBrush(new Color(255, 255, 255, 255))};
GraphicsDecorator = new GraphicsDecorator(background);
background.Brush.AddDecorator(GraphicsDecorator);
}
public void Dispose()
@ -99,6 +95,23 @@ namespace Artemis.Core.Services
public event EventHandler<DeviceEventArgs> DeviceLoaded;
public event EventHandler<DeviceEventArgs> DeviceReloaded;
public void UpdateGraphicsDecorator()
{
// Clean up the old background if present
if (_background != null)
{
_background.RemoveAllDecorators();
_background.Detach();
}
// Apply the application wide brush and decorator
_background = new ListLedGroup(Surface.Leds) {Brush = new SolidColorBrush(new Color(255, 255, 255, 255))};
GraphicsDecorator = new GraphicsDecorator(_background);
_background.Brush.RemoveAllDecorators();
_background.Brush.AddDecorator(GraphicsDecorator);
}
private void OnDeviceLoaded(DeviceEventArgs e)
{
DeviceLoaded?.Invoke(this, e);

View File

@ -58,7 +58,7 @@ namespace Artemis.Core.Services.Storage
deviceConfiguration.ApplyToDevice();
}
// Update the RGB service's graphics decorator to work with the new surface configuration
_rgbService.GraphicsDecorator.UpdateBitmap();
_rgbService.UpdateGraphicsDecorator();
OnActiveSurfaceConfigurationChanged(new SurfaceConfigurationEventArgs(_activeSurfaceConfiguration));
}

View File

@ -63,8 +63,8 @@ namespace Artemis.UI.ViewModels.Controls.SurfaceEditor
{
var roundedX = Math.Round((mousePosition.X + _dragOffsetX) / 10, 0, MidpointRounding.AwayFromZero) * 10;
var roundedY = Math.Round((mousePosition.Y + _dragOffsetY) / 10, 0, MidpointRounding.AwayFromZero) * 10;
X = roundedX;
Y = roundedY;
X = Math.Max(0, roundedX);
Y = Math.Max(0, roundedY);
}
// ReSharper disable once UnusedMember.Global - Called from view

View File

@ -42,8 +42,8 @@ namespace Artemis.UI.ViewModels
Zoom = Math.Max(0.1, Math.Min(4, Zoom));
// Update the PanX/Y to enable zooming relative to cursor
PanX = absoluteX - relative.X * Zoom;
PanY = absoluteY - relative.Y * Zoom;
PanX = Math.Min(0, absoluteX - relative.X * Zoom);
PanY = Math.Min(0, absoluteY - relative.Y * Zoom);
}
public void ProcessMouseMove(object sender, MouseEventArgs e)
@ -60,9 +60,10 @@ namespace Artemis.UI.ViewModels
var position = e.GetPosition((IInputElement) sender);
var delta = _lastPanPosition - position;
PanX -= delta.Value.X;
PanY -= delta.Value.Y;
PanX = Math.Min(0, PanX - delta.Value.X);
PanY = Math.Min(0, PanY - delta.Value.Y);
_lastPanPosition = position;
}

View File

@ -105,6 +105,8 @@ namespace Artemis.UI.ViewModels.Screens
Devices.Add(viewModel);
});
});
_surfaceService.ActiveSurfaceConfiguration = SelectedSurfaceConfiguration;
}
#region Overrides of Screen