2018-11-12 07:56:25 -08:00
|
|
|
|
/*
|
|
|
|
|
|
Copyright (c) 2018, Lars Brubaker, John Lewin
|
|
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
|
|
modification, are permitted provided that the following conditions are met:
|
|
|
|
|
|
|
|
|
|
|
|
1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
|
|
list of conditions and the following disclaimer.
|
|
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
|
|
this list of conditions and the following disclaimer in the documentation
|
|
|
|
|
|
and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
|
|
|
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
|
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
|
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
|
|
|
|
|
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
|
|
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
|
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
|
|
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
|
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
|
|
|
|
The views and conclusions contained in the software and documentation are those
|
|
|
|
|
|
of the authors and should not be interpreted as representing official policies,
|
|
|
|
|
|
either expressed or implied, of the FreeBSD Project.
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
using MatterHackers.Agg.UI;
|
|
|
|
|
|
|
|
|
|
|
|
namespace MatterHackers.MatterControl
|
|
|
|
|
|
{
|
2019-03-19 15:11:34 -07:00
|
|
|
|
using System;
|
2018-11-12 07:56:25 -08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
2019-04-15 16:04:28 -07:00
|
|
|
|
using MatterHackers.Agg;
|
2018-11-12 07:56:25 -08:00
|
|
|
|
using MatterHackers.DataConverters3D;
|
|
|
|
|
|
using MatterHackers.Localizations;
|
2018-11-24 08:02:03 -08:00
|
|
|
|
using MatterHackers.MatterControl.SlicerConfiguration;
|
2019-04-15 16:04:28 -07:00
|
|
|
|
using MatterHackers.VectorMath;
|
2018-11-12 07:56:25 -08:00
|
|
|
|
|
|
|
|
|
|
public static class PrinterExtensionMethods
|
|
|
|
|
|
{
|
|
|
|
|
|
public static bool InsideBuildVolume(this PrinterConfig printerConfig, IObject3D item)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (item.Mesh == null)
|
|
|
|
|
|
{
|
|
|
|
|
|
return true;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
var worldMatrix = item.WorldMatrix();
|
2022-05-23 15:11:49 -07:00
|
|
|
|
// probably need, true (require precision)
|
2018-11-12 07:56:25 -08:00
|
|
|
|
var aabb = item.Mesh.GetAxisAlignedBoundingBox(worldMatrix);
|
|
|
|
|
|
|
|
|
|
|
|
var bed = printerConfig.Bed;
|
|
|
|
|
|
|
|
|
|
|
|
if (bed.BuildHeight > 0
|
2019-01-11 16:49:34 -08:00
|
|
|
|
&& aabb.MaxXYZ.Z >= bed.BuildHeight
|
|
|
|
|
|
|| aabb.MaxXYZ.Z <= 0)
|
2018-11-12 07:56:25 -08:00
|
|
|
|
{
|
|
|
|
|
|
// object completely below the bed or any part above the build volume
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-03-21 17:40:22 -07:00
|
|
|
|
var bedBounds = printerConfig.Settings.MeshAllowedBounds;
|
|
|
|
|
|
|
2018-11-12 07:56:25 -08:00
|
|
|
|
switch (bed.BedShape)
|
|
|
|
|
|
{
|
|
|
|
|
|
case BedShape.Rectangular:
|
2022-03-21 17:40:22 -07:00
|
|
|
|
if (aabb.MinXYZ.X < bedBounds.Left
|
|
|
|
|
|
|| aabb.MaxXYZ.X > bedBounds.Right
|
|
|
|
|
|
|| aabb.MinXYZ.Y < bedBounds.Bottom
|
|
|
|
|
|
|| aabb.MaxXYZ.Y > bedBounds.Top)
|
2018-11-12 07:56:25 -08:00
|
|
|
|
{
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case BedShape.Circular:
|
|
|
|
|
|
// This could be much better if it checked the actual vertex data of the mesh against the cylinder
|
|
|
|
|
|
// first check if any of it is outside the bed rect
|
2019-01-11 16:49:34 -08:00
|
|
|
|
if (aabb.MinXYZ.X < bed.BedCenter.X - bed.ViewerVolume.X / 2
|
|
|
|
|
|
|| aabb.MaxXYZ.X > bed.BedCenter.X + bed.ViewerVolume.X / 2
|
|
|
|
|
|
|| aabb.MinXYZ.Y < bed.BedCenter.Y - bed.ViewerVolume.Y / 2
|
|
|
|
|
|
|| aabb.MaxXYZ.Y > bed.BedCenter.Y + bed.ViewerVolume.Y / 2)
|
2018-11-12 07:56:25 -08:00
|
|
|
|
{
|
|
|
|
|
|
// TODO: then check if all of it is outside the bed circle
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2019-04-15 16:04:28 -07:00
|
|
|
|
private static bool InsideHotendBounds(this PrinterConfig printer, IObject3D item)
|
|
|
|
|
|
{
|
2019-05-01 14:57:31 -07:00
|
|
|
|
if (printer.Settings.Helpers.HotendCount() == 1)
|
2019-04-15 16:04:28 -07:00
|
|
|
|
{
|
|
|
|
|
|
return true;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
var materialIndex = item.WorldMaterialIndex();
|
|
|
|
|
|
if (materialIndex == -1)
|
|
|
|
|
|
{
|
|
|
|
|
|
materialIndex = 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool isWipeTower = item?.OutputType == PrintOutputTypes.WipeTower;
|
|
|
|
|
|
|
|
|
|
|
|
// Determine if the given item is outside the bounds of the given extruder
|
2019-04-20 21:03:05 -07:00
|
|
|
|
if (materialIndex < printer.Settings.ToolBounds.Length
|
2019-04-15 16:04:28 -07:00
|
|
|
|
|| isWipeTower)
|
|
|
|
|
|
{
|
|
|
|
|
|
var itemAABB = item.WorldAxisAlignedBoundingBox();
|
|
|
|
|
|
var itemBounds = new RectangleDouble(new Vector2(itemAABB.MinXYZ), new Vector2(itemAABB.MaxXYZ));
|
|
|
|
|
|
|
|
|
|
|
|
var activeHotends = new HashSet<int>(new[] { materialIndex });
|
|
|
|
|
|
|
|
|
|
|
|
if (isWipeTower)
|
|
|
|
|
|
{
|
|
|
|
|
|
activeHotends.Add(0);
|
|
|
|
|
|
activeHotends.Add(1);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Validate against active hotends
|
|
|
|
|
|
foreach (var hotendIndex in activeHotends)
|
|
|
|
|
|
{
|
2019-04-20 21:03:05 -07:00
|
|
|
|
var hotendBounds = printer.Settings.ToolBounds[hotendIndex];
|
2019-04-15 16:04:28 -07:00
|
|
|
|
if (!hotendBounds.Contains(itemBounds))
|
|
|
|
|
|
{
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-11-12 07:56:25 -08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Filters items from a given source returning only persistable items inside the Build Volume
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="source">The source content to filter</param>
|
|
|
|
|
|
/// <param name="printer">The printer config to consider</param>
|
2019-04-15 16:04:28 -07:00
|
|
|
|
/// <returns>An enumerable set of printable items</returns>
|
2018-11-12 07:56:25 -08:00
|
|
|
|
public static IEnumerable<IObject3D> PrintableItems(this PrinterConfig printer, IObject3D source)
|
|
|
|
|
|
{
|
2019-04-15 16:04:28 -07:00
|
|
|
|
return source.VisibleMeshes().Where(item => item.WorldPersistable()
|
2021-10-19 10:19:34 -07:00
|
|
|
|
&& item.WorldPrintable()
|
|
|
|
|
|
&& printer.InsideBuildVolume(item)
|
|
|
|
|
|
&& printer.InsideHotendBounds(item)
|
|
|
|
|
|
&& !item.GetType().GetCustomAttributes(typeof(NonPrintableAttribute), true).Any());
|
2018-11-12 07:56:25 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Conditionally cancels prints within the first two minutes or interactively prompts the user to confirm cancellation
|
|
|
|
|
|
/// </summary>
|
2019-03-19 15:11:34 -07:00
|
|
|
|
/// <param name="abortCancel">The action to run if the user aborts the Cancel operation</param>
|
|
|
|
|
|
public static void CancelPrint(this PrinterConfig printer, Action abortCancel = null)
|
2018-11-12 07:56:25 -08:00
|
|
|
|
{
|
|
|
|
|
|
if (printer.Connection.SecondsPrinted > 120)
|
|
|
|
|
|
{
|
|
|
|
|
|
StyledMessageBox.ShowMessageBox(
|
|
|
|
|
|
(bool response) =>
|
|
|
|
|
|
{
|
|
|
|
|
|
if (response)
|
|
|
|
|
|
{
|
|
|
|
|
|
UiThread.RunOnIdle(() => printer.Connection.Stop());
|
|
|
|
|
|
}
|
2019-03-19 15:11:34 -07:00
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
abortCancel?.Invoke();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-11-12 07:56:25 -08:00
|
|
|
|
},
|
|
|
|
|
|
"Cancel the current print?".Localize(),
|
|
|
|
|
|
"Cancel Print?".Localize(),
|
|
|
|
|
|
StyledMessageBox.MessageType.YES_NO,
|
|
|
|
|
|
"Cancel Print".Localize(),
|
|
|
|
|
|
"Continue Printing".Localize());
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
printer.Connection.Stop();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|