124 lines
5 KiB
C#
124 lines
5 KiB
C#
/*
|
|
Copyright (c) 2019, 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;
|
|
using MatterHackers.Localizations;
|
|
using MatterHackers.MatterControl.ConfigurationPage.PrintLeveling;
|
|
using MatterHackers.MatterControl.SlicerConfiguration;
|
|
using static MatterHackers.MatterControl.ConfigurationPage.PrintLeveling.XyCalibrationWizard;
|
|
|
|
namespace MatterHackers.MatterControl
|
|
{
|
|
public class XyCalibrationDataRecieved : WizardPage
|
|
{
|
|
public XyCalibrationDataRecieved(XyCalibrationWizard calibrationWizard)
|
|
: base(calibrationWizard)
|
|
{
|
|
this.WindowTitle = "Nozzle Offset Calibration Wizard".Localize();
|
|
this.HeaderText = "Nozzle Offset Calibration".Localize() + ":";
|
|
|
|
contentRow.Padding = theme.DefaultContainerPadding;
|
|
|
|
calibrationWizard.PrintAgain = false;
|
|
|
|
// check if we picked an outside of the calibration
|
|
if (calibrationWizard.XPick == 0
|
|
|| calibrationWizard.XPick == 6
|
|
|| calibrationWizard.YPick == 0
|
|
|| calibrationWizard.YPick == 6)
|
|
{
|
|
// offer to re-run the calibration with the same settings as last time
|
|
contentRow.AddChild(new TextWidget("Your printer has been adjusted but we should run calibrating again to improve accuracy.".Localize(), textColor: theme.TextColor, pointSize: theme.DefaultFontSize)
|
|
{
|
|
Margin = new Agg.BorderDouble(0, 15, 0, 0)
|
|
});
|
|
|
|
calibrationWizard.PrintAgain = true;
|
|
}
|
|
else
|
|
{
|
|
switch (calibrationWizard.Quality)
|
|
{
|
|
case QualityType.Coarse:
|
|
// if we are on coarse calibration offer to move down to normal
|
|
contentRow.AddChild(new TextWidget("Coarse calibration complete, we will now do a normal calibration to improve accuracy.".Localize(), textColor: theme.TextColor, pointSize: theme.DefaultFontSize)
|
|
{
|
|
Margin = new Agg.BorderDouble(0, 15, 0, 0)
|
|
});
|
|
|
|
// switch to normal calibration
|
|
calibrationWizard.Quality = QualityType.Normal;
|
|
calibrationWizard.PrintAgain = true;
|
|
break;
|
|
|
|
case QualityType.Normal:
|
|
// let the user know they are done with calibration, but if they would like they can print a fine calibration for even better results
|
|
// add a button to request fine calibration
|
|
var normalMessage = "Your nozzles should now be calibrated.".Localize();
|
|
normalMessage += "\n\n" + "You can continue to ultra fine calibration, but for most uses this is not necessary.".Localize();
|
|
contentRow.AddChild(new TextWidget(normalMessage, textColor: theme.TextColor, pointSize: theme.DefaultFontSize)
|
|
{
|
|
Margin = new Agg.BorderDouble(0, 15, 0, 0)
|
|
});
|
|
|
|
var startFineCalibratingButton = theme.CreateDialogButton("Print Ultra Fine Calibration".Localize());
|
|
startFineCalibratingButton.HAnchor = HAnchor.Fit | HAnchor.Right;
|
|
startFineCalibratingButton.VAnchor = VAnchor.Absolute;
|
|
startFineCalibratingButton.Name = "Fine Calibration Print";
|
|
startFineCalibratingButton.Click += (s, e) =>
|
|
{
|
|
// switch to fine
|
|
calibrationWizard.Quality = QualityType.Fine;
|
|
// start up at the print window
|
|
calibrationWizard.PrintAgain = true;
|
|
this.NextButton.InvokeClick();
|
|
};
|
|
contentRow.AddChild(startFineCalibratingButton);
|
|
break;
|
|
|
|
case QualityType.Fine:
|
|
// done!
|
|
contentRow.AddChild(new TextWidget("Offset Calibration complete.".Localize(), textColor: theme.TextColor, pointSize: theme.DefaultFontSize)
|
|
{
|
|
Margin = new Agg.BorderDouble(0, 15, 0, 0)
|
|
});
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!calibrationWizard.PrintAgain)
|
|
{
|
|
this.ShowWizardFinished(() =>
|
|
{
|
|
printer.Settings.SetValue(SettingsKey.xy_offsets_have_been_calibrated, "1");
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|