Add clearance logic to PamhagenPlant
This commit is contained in:
@@ -11,6 +11,8 @@ namespace PamhagenSysCtrl.Windows {
|
||||
private ISource? _lastSource;
|
||||
private List<INode> _path = [];
|
||||
private ISet<INode>? _lastSelected;
|
||||
private ISet<INode>? _hover;
|
||||
private bool _mouseDown;
|
||||
|
||||
public PlantSchemeWindow() {
|
||||
InitializeComponent();
|
||||
@@ -39,7 +41,9 @@ namespace PamhagenSysCtrl.Windows {
|
||||
foreach (var c in clicked) {
|
||||
if (_lastSource == null && Graph.SelectedPaths.Any(p => p.Start == c)) {
|
||||
var path = Graph.SelectedPaths.First(p => p.Start == c);
|
||||
Graph.RemovePath(path);
|
||||
if (!path.Hops.Any(h => (h.Node as Pump)?.IsActive ?? false)) {
|
||||
Graph.RemovePath(path);
|
||||
}
|
||||
} else if (_lastSource != null && c is ISink sink) {
|
||||
var res = Graph.GetPath([_lastSource, .._path, sink], (n) => n is not ISink && (n is not Valve v || !v.IsLocked));
|
||||
if (res is Path path) {
|
||||
@@ -57,14 +61,74 @@ namespace PamhagenSysCtrl.Windows {
|
||||
} else {
|
||||
_lastSource = null;
|
||||
}
|
||||
if (c is EntryTrough trough) {
|
||||
trough.IsActive = !trough.IsActive;
|
||||
} else if (c is Rebler rebler) {
|
||||
rebler.IsActive = !rebler.IsActive;
|
||||
} else if (c is EncasedAuger auger) {
|
||||
auger.IsActive = !auger.IsActive;
|
||||
} else if (c is ConveyorBelt belt) {
|
||||
belt.IsActive = !belt.IsActive;
|
||||
try {
|
||||
if (c is EntryTrough trough) {
|
||||
if (trough.IsActive) {
|
||||
App.Plant?.StopTroughAuger();
|
||||
} else {
|
||||
App.Plant?.StartTroughAuger();
|
||||
}
|
||||
} else if (c is Rebler rebler) {
|
||||
if (rebler.IsActive) {
|
||||
App.Plant?.StopRebler();
|
||||
} else {
|
||||
App.Plant?.StartRebler();
|
||||
}
|
||||
} else if (c is EncasedAuger auger) {
|
||||
//
|
||||
} else if (c is ConveyorBelt belt) {
|
||||
if (belt.IsActive) {
|
||||
App.Plant?.StopBelt();
|
||||
} else {
|
||||
App.Plant?.StartBelt();
|
||||
}
|
||||
} else if (c is Pump pump) {
|
||||
if (pump == Graph.MP1) {
|
||||
if (pump.IsActive) {
|
||||
App.Plant?.StopMP1();
|
||||
} else {
|
||||
App.Plant?.StartMP1Forward();
|
||||
}
|
||||
} else if (pump == Graph.MP2) {
|
||||
if (pump.IsActive) {
|
||||
App.Plant?.StopMP2();
|
||||
} else {
|
||||
App.Plant?.StartMP2Forward();
|
||||
}
|
||||
} else if (pump == Graph.P12) {
|
||||
if (pump.IsActive) {
|
||||
App.Plant?.StopP12();
|
||||
} else {
|
||||
App.Plant?.StartP12();
|
||||
}
|
||||
} else if (pump == Graph.P3) {
|
||||
if (pump.IsActive) {
|
||||
App.Plant?.StopP3();
|
||||
} else {
|
||||
App.Plant?.StartP3();
|
||||
}
|
||||
} else if (pump == Graph.P4) {
|
||||
if (pump.IsActive) {
|
||||
App.Plant?.StopP4();
|
||||
} else {
|
||||
App.Plant?.StartP4();
|
||||
}
|
||||
} else if (pump == Graph.P5) {
|
||||
if (pump.IsActive) {
|
||||
App.Plant?.StopP5();
|
||||
} else {
|
||||
App.Plant?.StartP5();
|
||||
}
|
||||
} else if (pump == Graph.P6) {
|
||||
if (pump.IsActive) {
|
||||
App.Plant?.StopP6();
|
||||
} else {
|
||||
App.Plant?.StartP6();
|
||||
}
|
||||
}
|
||||
}
|
||||
} catch (NoClearanceException exc) {
|
||||
MessageBox.Show($"{exc.Message}", "Keine Freigabe", MessageBoxButton.OK, MessageBoxImage.Error);
|
||||
}
|
||||
}
|
||||
UpdateScheme(pos, evt.LeftButton == MouseButtonState.Pressed);
|
||||
@@ -75,14 +139,20 @@ namespace PamhagenSysCtrl.Windows {
|
||||
e.Highlight = null;
|
||||
e.Flow = null;
|
||||
}
|
||||
foreach (var p in Graph.SelectedPaths) {
|
||||
Graph.ColorPipesAdjacientToPath(p, PamhagenBrushes.Green, true, PamhagenBrushes.DimOrange);
|
||||
foreach (var n in Graph.Nodes) {
|
||||
if (n is Pump p) {
|
||||
p.Highlight = null;
|
||||
}
|
||||
}
|
||||
var hover = Graph.GetHover(pos.X, pos.Y);
|
||||
if (_lastSource != null && (hover.Count > 0 || _path.Count > 0)) {
|
||||
foreach (var p in Graph.SelectedPaths) {
|
||||
Graph.ColorPipesAdjacientToPath(p, PamhagenBrushes.Green, p.Hops.Any(h => (h.Node as Pump)?.IsActive ?? false), PamhagenBrushes.DimOrange);
|
||||
}
|
||||
_hover = Graph.GetHover(pos.X, pos.Y);
|
||||
_mouseDown = down;
|
||||
if (_lastSource != null && (_hover.Count > 0 || _path.Count > 0)) {
|
||||
List<INode> points = [_lastSource, .. _path];
|
||||
if (hover.Count > 0 && !points.Contains(hover.First())) {
|
||||
points.Add(hover.First());
|
||||
if (_hover.Count > 0 && !points.Contains(_hover.First())) {
|
||||
points.Add(_hover.First());
|
||||
}
|
||||
if (points.Count >= 2) {
|
||||
var res = Graph.GetPath(points, (n) => n is not ISink && (n is not Valve v || !v.IsLocked));
|
||||
@@ -90,21 +160,29 @@ namespace PamhagenSysCtrl.Windows {
|
||||
Graph.ColorPipesAdjacientToPath(path, PamhagenBrushes.Green, false, PamhagenBrushes.DimOrange);
|
||||
}
|
||||
}
|
||||
} else if (_lastSource == null && hover.Count > 0 && Graph.SelectedPaths.Any(p => p.Start == hover.First())) {
|
||||
var path = Graph.SelectedPaths.First(p => p.Start == hover.First());
|
||||
Graph.ColorPipesAdjacientToPath(path, PamhagenBrushes.Red, true, null);
|
||||
} else if (_lastSource == null && _hover.Count > 0 && Graph.SelectedPaths.Any(p => p.Start == _hover.First())) {
|
||||
var path = Graph.SelectedPaths.First(p => p.Start == _hover.First());
|
||||
var pumpActive = path.Hops.Any(h => (h.Node as Pump)?.IsActive ?? false);
|
||||
if (pumpActive) {
|
||||
foreach (var pump in path.Hops.Select(h => h.Node as Pump).Where(p => p != null)) {
|
||||
pump?.Highlight = PamhagenBrushes.Red;
|
||||
}
|
||||
} else {
|
||||
Graph.ColorPipesAdjacientToPath(path, PamhagenBrushes.Red, false, null);
|
||||
}
|
||||
}
|
||||
if (_lastSource != null) {
|
||||
foreach (var edge in _lastSource.Outputs) {
|
||||
edge.Highlight = PamhagenBrushes.Green;
|
||||
}
|
||||
}
|
||||
Graph.Update(hover, down);
|
||||
return hover;
|
||||
Graph.Update(_hover, down);
|
||||
return _hover;
|
||||
}
|
||||
|
||||
public void OnUpdate(object? sender, PlantEventArgs evt) {
|
||||
if (sender is not PamhagenPlant plant) return;
|
||||
Graph.Update(_hover ?? new HashSet<INode>(), _mouseDown);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user