2017-04-12 12:12:11 -07:00
|
|
|
|
/*
|
2019-02-15 20:25:07 -08:00
|
|
|
|
Copyright (c) 2019, Lars Brubaker, John Lewin
|
2017-04-12 12:12:11 -07:00
|
|
|
|
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;
|
|
|
|
|
|
using MatterHackers.Localizations;
|
|
|
|
|
|
|
|
|
|
|
|
namespace MatterHackers.MatterControl.ConfigurationPage.PrintLeveling
|
|
|
|
|
|
{
|
|
|
|
|
|
public class LevelingStrings
|
|
|
|
|
|
{
|
|
|
|
|
|
private int stepNumber = 1;
|
2018-05-24 09:34:23 -07:00
|
|
|
|
|
2019-02-15 08:56:45 -08:00
|
|
|
|
public LevelingStrings()
|
2017-09-05 10:33:14 -07:00
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-04-04 13:45:10 -07:00
|
|
|
|
public string HomingPageInstructions(bool useZProbe, bool heatBed)
|
2017-04-12 12:12:11 -07:00
|
|
|
|
{
|
2018-04-04 13:45:10 -07:00
|
|
|
|
string line1 = "The printer should now be 'homing'.".Localize();
|
|
|
|
|
|
if (heatBed)
|
|
|
|
|
|
{
|
2018-05-24 09:34:23 -07:00
|
|
|
|
line1 += " Once it is finished homing we will heat the bed.".Localize();
|
2018-04-04 13:45:10 -07:00
|
|
|
|
}
|
2018-05-24 09:34:23 -07:00
|
|
|
|
|
2018-03-12 16:36:51 -07:00
|
|
|
|
if (useZProbe)
|
2017-04-12 12:12:11 -07:00
|
|
|
|
{
|
2018-04-04 13:45:10 -07:00
|
|
|
|
return line1;
|
2018-03-12 16:36:51 -07:00
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
2018-05-24 09:34:23 -07:00
|
|
|
|
return string.Format(
|
|
|
|
|
|
"{0}\n\n{1}:\n\n\t• {2}\n\n{3}\n\n{4}",
|
|
|
|
|
|
line1,
|
|
|
|
|
|
"To complete the next few steps you will need".Localize(),
|
2019-02-15 09:04:39 -08:00
|
|
|
|
"A sheet of paper".Localize(),
|
2018-11-09 17:03:20 -08:00
|
|
|
|
"We will use this paper to measure the distance between the nozzle and the bed.".Localize(),
|
2018-11-02 16:14:37 -07:00
|
|
|
|
"Click 'Next' to continue.".Localize());
|
2017-04-12 12:12:11 -07:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-03-18 14:06:52 -07:00
|
|
|
|
public static string BelowControlsInstructions => string.Format(
|
|
|
|
|
|
"\t• {0}\n\t• {1}",
|
|
|
|
|
|
"Press [Z-] until there is resistance to moving the paper".Localize(),
|
|
|
|
|
|
"Press [Z+] once to release the paper".Localize());
|
2018-05-24 09:34:23 -07:00
|
|
|
|
|
2022-03-18 14:06:52 -07:00
|
|
|
|
public static string BelowControlsUltraFineInstructions => string.Format(
|
2022-03-27 19:50:13 -07:00
|
|
|
|
"\t• {0}\n\t• {1}\n\t• {2}\n",
|
2019-02-15 08:55:48 -08:00
|
|
|
|
"Press [Z-] until there is resistance to moving the paper".Localize(),
|
2022-03-27 19:50:13 -07:00
|
|
|
|
"The ideal resistance is when the paper first begins to bend, but can still be moved.".Localize(),
|
|
|
|
|
|
"Be sure you are not pressing down on the bed while moving the paper.".Localize());
|
2017-12-04 14:14:12 -08:00
|
|
|
|
|
2017-04-12 12:12:11 -07:00
|
|
|
|
public string GetStepString(int totalSteps)
|
|
|
|
|
|
{
|
2018-04-03 18:17:27 -07:00
|
|
|
|
return $"{"Step".Localize()} {stepNumber++} {"of".Localize()} {totalSteps}:";
|
2018-03-12 16:36:51 -07:00
|
|
|
|
}
|
2017-04-12 12:12:11 -07:00
|
|
|
|
}
|
|
|
|
|
|
}
|