mattercontrol/MatterControlLib/PrinterControls/TerminalWindow/TerminalWidget.cs

398 lines
13 KiB
C#
Raw Normal View History

2014-01-29 19:09:30 -08:00
/*
Copyright (c) 2014, Lars Brubaker
2014-01-29 19:09:30 -08:00
All rights reserved.
Redistribution and use in source and binary forms, with or without
2015-04-08 15:20:10 -07:00
modification, are permitted provided that the following conditions are met:
2014-01-29 19:09:30 -08:00
1. Redistributions of source code must retain the above copyright notice, this
2015-04-08 15:20:10 -07:00
list of conditions and the following disclaimer.
2014-01-29 19:09:30 -08:00
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
2015-04-08 15:20:10 -07:00
and/or other materials provided with the distribution.
2014-01-29 19:09:30 -08:00
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
2015-04-08 15:20:10 -07:00
of the authors and should not be interpreted as representing official policies,
2014-01-29 19:09:30 -08:00
either expressed or implied, of the FreeBSD Project.
*/
2014-11-06 15:19:38 -08:00
2017-08-26 15:51:12 +03:00
using System;
using System.Collections.Generic;
using System.Diagnostics;
2019-03-25 14:23:45 -07:00
using MatterControl.Printing;
2014-01-29 19:09:30 -08:00
using MatterHackers.Agg;
using MatterHackers.Agg.Platform;
2017-08-26 15:51:12 +03:00
using MatterHackers.Agg.UI;
2014-01-29 19:09:30 -08:00
using MatterHackers.Localizations;
using MatterHackers.MatterControl.CustomWidgets;
2019-03-25 14:23:45 -07:00
using MatterHackers.MatterControl.PartPreviewWindow;
2014-01-29 19:09:30 -08:00
namespace MatterHackers.MatterControl
2014-11-06 15:19:38 -08:00
{
public class TerminalWidget : FlowLayoutWidget, ICloseableTab
2015-04-08 15:20:10 -07:00
{
private CheckBox autoUppercase;
private MHTextEditWidget manualCommandTextEdit;
private TextScrollWidget textScrollWidget;
private PrinterConfig printer;
2019-03-25 14:23:45 -07:00
private string writeFailedWaring = "WARNING: Write Failed!".Localize();
private string cantAccessPath = "Can't access '{0}'.".Localize();
private List<string> commandHistory = new List<string>();
private int commandHistoryIndex = 0;
2018-07-12 09:22:28 -07:00
public TerminalWidget(PrinterConfig printer, ThemeConfig theme)
2017-08-26 19:19:35 +03:00
: base(FlowDirection.TopToBottom)
2015-04-08 15:20:10 -07:00
{
this.printer = printer;
this.Name = "TerminalWidget";
2015-04-08 15:20:10 -07:00
this.Padding = new BorderDouble(5, 0);
// Header
var headerRow = new FlowLayoutWidget(FlowDirection.LeftToRight)
{
HAnchor = HAnchor.Left | HAnchor.Stretch,
2017-08-27 00:23:10 +03:00
Padding = new BorderDouble(0, 8)
};
this.AddChild(headerRow);
2017-08-26 19:19:35 +03:00
2019-03-25 14:23:45 -07:00
headerRow.AddChild(CreateFilterOptions(theme));
2018-01-12 14:05:04 -08:00
autoUppercase = new CheckBox("Auto Uppercase".Localize(), textSize: theme.DefaultFontSize)
2017-08-26 19:19:35 +03:00
{
2017-08-27 00:23:10 +03:00
Margin = new BorderDouble(left: 25),
Checked = UserSettings.Instance.Fields.GetBool(UserSettingsKey.TerminalAutoUppercase, true),
TextColor = theme.TextColor,
2019-03-25 14:23:45 -07:00
VAnchor = VAnchor.Center
2017-08-26 19:19:35 +03:00
};
2017-08-26 19:49:44 +03:00
autoUppercase.CheckedStateChanged += (s, e) =>
2017-08-26 19:19:35 +03:00
{
UserSettings.Instance.Fields.SetBool(UserSettingsKey.TerminalAutoUppercase, autoUppercase.Checked);
2017-08-26 19:19:35 +03:00
};
headerRow.AddChild(autoUppercase);
2015-04-08 15:20:10 -07:00
// Body
var bodyRow = new FlowLayoutWidget()
{
Margin = new BorderDouble(bottom: 4),
HAnchor = HAnchor.Stretch,
VAnchor = VAnchor.Stretch
};
this.AddChild(bodyRow);
2017-08-26 15:51:12 +03:00
textScrollWidget = new TextScrollWidget(printer, printer.Connection.TerminalLog.PrinterLines)
2017-08-26 19:19:35 +03:00
{
2018-10-13 17:58:54 -07:00
BackgroundColor = theme.MinimalShade,
TextColor = theme.TextColor,
2017-08-26 19:19:35 +03:00
HAnchor = HAnchor.Stretch,
VAnchor = VAnchor.Stretch,
2017-08-27 00:23:10 +03:00
Margin = 0,
2017-08-26 19:19:35 +03:00
Padding = new BorderDouble(3, 0)
};
bodyRow.AddChild(textScrollWidget);
bodyRow.AddChild(new TextScrollBar(textScrollWidget, 15)
{
ThumbColor = theme.AccentMimimalOverlay,
BackgroundColor = theme.SlightShade,
Margin = 0
});
2017-08-26 19:19:35 +03:00
2019-03-25 14:23:45 -07:00
textScrollWidget.LineFilterFunction = lineData =>
{
var line = lineData.line;
var lineWithoutChecksum = line;
var outputLine = line;
if (lineWithoutChecksum.StartsWith("N"))
{
int lineNumber = 0;
if (GCodeFile.GetFirstNumberAfter("N", lineWithoutChecksum, ref lineNumber, out int numberEnd))
{
lineWithoutChecksum = lineWithoutChecksum.Substring(numberEnd).Trim();
int checksumStart = lineWithoutChecksum.IndexOf('*');
if (checksumStart != -1)
{
lineWithoutChecksum = lineWithoutChecksum.Substring(0, checksumStart);
// and set this as the output if desired
if(!UserSettings.Instance.Fields.GetBool(UserSettingsKey.TerminalShowChecksum, true))
{
outputLine = lineWithoutChecksum;
}
}
}
}
if (lineWithoutChecksum.StartsWith("ok")
&& !UserSettings.Instance.Fields.GetBool(UserSettingsKey.TerminalShowOks, true))
{
return null;
}
else if (lineWithoutChecksum.StartsWith("M105")
&& !UserSettings.Instance.Fields.GetBool(UserSettingsKey.TerminalShowTempRequests, true))
{
return null;
}
else if ((lineWithoutChecksum.StartsWith("G0 ") || lineWithoutChecksum.StartsWith("G1 "))
&& !UserSettings.Instance.Fields.GetBool(UserSettingsKey.TerminalShowMovementRequests, true))
{
return null;
}
else if (( lineWithoutChecksum.StartsWith("T") || lineWithoutChecksum.StartsWith("ok T"))
&& !UserSettings.Instance.Fields.GetBool(UserSettingsKey.TerminalShowTempResponse, true))
{
return null;
}
else if (lineWithoutChecksum.StartsWith("wait")
&& !UserSettings.Instance.Fields.GetBool(UserSettingsKey.TerminalShowWaitResponse, true))
{
return null;
}
if (UserSettings.Instance.Fields.GetBool(UserSettingsKey.TerminalShowInputOutputMarks, true))
{
if (lineData.output)
{
outputLine = "->" + outputLine;
}
else
{
outputLine = "<-" + outputLine;
}
}
return outputLine;
};
// Input Row
var inputRow = new FlowLayoutWidget(FlowDirection.LeftToRight)
2017-08-26 19:19:35 +03:00
{
BackgroundColor = this.BackgroundColor,
2017-08-26 20:18:23 +03:00
HAnchor = HAnchor.Stretch,
Margin = new BorderDouble(bottom: 2)
2017-08-26 19:19:35 +03:00
};
this.AddChild(inputRow);
2017-08-26 19:19:35 +03:00
manualCommandTextEdit = new MHTextEditWidget("", theme, typeFace: ApplicationController.GetTypeFace(NamedTypeFace.Liberation_Mono))
2017-08-26 19:19:35 +03:00
{
Margin = new BorderDouble(right: 3),
HAnchor = HAnchor.Stretch,
VAnchor = VAnchor.Bottom
};
manualCommandTextEdit.ActualTextEditWidget.EnterPressed += (s, e) =>
{
SendManualCommand();
};
2017-08-26 19:55:55 +03:00
manualCommandTextEdit.ActualTextEditWidget.KeyDown += (s, keyEvent) =>
{
bool changeToHistory = false;
if (keyEvent.KeyCode == Keys.Up)
{
commandHistoryIndex--;
if (commandHistoryIndex < 0)
{
commandHistoryIndex = 0;
}
changeToHistory = true;
}
else if (keyEvent.KeyCode == Keys.Down)
{
commandHistoryIndex++;
if (commandHistoryIndex > commandHistory.Count - 1)
{
commandHistoryIndex = commandHistory.Count - 1;
}
else
{
changeToHistory = true;
}
}
else if (keyEvent.KeyCode == Keys.Escape)
{
manualCommandTextEdit.Text = "";
}
2015-04-08 15:20:10 -07:00
2017-08-26 19:55:55 +03:00
if (changeToHistory && commandHistory.Count > 0)
{
manualCommandTextEdit.Text = commandHistory[commandHistoryIndex];
}
};
inputRow.AddChild(manualCommandTextEdit);
2017-08-26 19:19:35 +03:00
// Footer
2017-08-27 00:57:54 +03:00
var toolbarPadding = theme.ToolbarPadding;
var footerRow = new FlowLayoutWidget
2017-08-26 19:19:35 +03:00
{
HAnchor = HAnchor.Stretch,
2017-08-26 20:18:23 +03:00
Padding = new BorderDouble(0, toolbarPadding.Bottom, toolbarPadding.Right, toolbarPadding.Top)
2017-08-26 19:19:35 +03:00
};
this.AddChild(footerRow);
var sendButton = theme.CreateDialogButton("Send".Localize());
sendButton.Margin = theme.ButtonSpacing;
2017-08-26 19:48:25 +03:00
sendButton.Click += (s, e) =>
{
SendManualCommand();
};
2017-08-26 19:48:25 +03:00
footerRow.AddChild(sendButton);
2017-08-26 19:19:35 +03:00
var clearButton = theme.CreateDialogButton("Clear".Localize());
2017-08-26 19:48:25 +03:00
clearButton.Margin = theme.ButtonSpacing;
2017-08-26 19:49:44 +03:00
clearButton.Click += (s, e) =>
2017-08-26 19:19:35 +03:00
{
printer.Connection.TerminalLog.Clear();
2017-08-26 19:19:35 +03:00
};
2017-08-26 19:48:25 +03:00
footerRow.AddChild(clearButton);
2017-08-26 19:19:35 +03:00
var exportButton = theme.CreateDialogButton("Export".Localize());
2017-08-26 19:48:25 +03:00
exportButton.Margin = theme.ButtonSpacing;
2017-08-26 19:49:44 +03:00
exportButton.Click += (s, e) =>
2017-08-26 19:19:35 +03:00
{
UiThread.RunOnIdle(() =>
2015-04-08 15:20:10 -07:00
{
2017-08-26 19:19:35 +03:00
AggContext.FileDialogs.SaveFileDialog(
new SaveFileDialogParams("Save as Text|*.txt")
{
Title = "MatterControl: Terminal Log",
ActionButtonLabel = "Export",
FileName = "print_log.txt"
},
(saveParams) =>
{
if (!string.IsNullOrEmpty(saveParams.FileName))
{
2017-08-26 19:19:35 +03:00
string filePathToSave = saveParams.FileName;
if (filePathToSave != null && filePathToSave != "")
{
2017-08-26 19:19:35 +03:00
try
{
2017-08-26 19:19:35 +03:00
textScrollWidget.WriteToFile(filePathToSave);
}
2017-08-26 19:55:55 +03:00
catch (UnauthorizedAccessException ex)
2017-08-26 19:19:35 +03:00
{
2017-08-26 19:55:55 +03:00
Debug.Print(ex.Message);
2017-08-26 19:19:35 +03:00
2019-03-25 14:23:45 -07:00
printer.Connection.TerminalLog.PrinterLines.Add(("", true));
printer.Connection.TerminalLog.PrinterLines.Add((writeFailedWaring, true));
printer.Connection.TerminalLog.PrinterLines.Add((cantAccessPath.FormatWith(filePathToSave), true));
printer.Connection.TerminalLog.PrinterLines.Add(("", true));
2017-08-26 19:19:35 +03:00
UiThread.RunOnIdle(() =>
{
StyledMessageBox.ShowMessageBox(ex.Message, "Couldn't save file".Localize());
2017-08-26 19:19:35 +03:00
});
}
}
2017-08-26 19:19:35 +03:00
}
});
});
};
2017-08-26 19:48:25 +03:00
footerRow.AddChild(exportButton);
2015-04-08 15:20:10 -07:00
footerRow.AddChild(new HorizontalSpacer());
2015-04-08 15:20:10 -07:00
this.AnchorAll();
}
2019-03-25 14:23:45 -07:00
private GuiWidget CreateFilterOptions(ThemeConfig theme)
{
2019-03-25 14:23:45 -07:00
var filterOptionsButton = new PopupMenuButton("Filter Options", theme)
{
VAnchor = VAnchor.Center
};
2015-04-08 15:20:10 -07:00
2019-03-25 14:23:45 -07:00
var popupMenu = new PopupMenu(ApplicationController.Instance.MenuTheme);
2019-03-25 14:23:45 -07:00
filterOptionsButton.PopupContent = popupMenu;
// put in options for filtering various output
popupMenu.CreateBoolMenuItem(
"Show 'Ok' response".Localize(),
() => UserSettings.Instance.Fields.GetBool(UserSettingsKey.TerminalShowOks, true),
(isChecked) =>
{
UserSettings.Instance.Fields.SetBool(UserSettingsKey.TerminalShowOks, isChecked);
textScrollWidget.RebuildFilteredList();
});
popupMenu.CreateBoolMenuItem(
"Show Checksum".Localize(),
() => UserSettings.Instance.Fields.GetBool(UserSettingsKey.TerminalShowChecksum, true),
(isChecked) =>
{
UserSettings.Instance.Fields.SetBool(UserSettingsKey.TerminalShowChecksum, isChecked);
textScrollWidget.RebuildFilteredList();
});
popupMenu.CreateBoolMenuItem(
"Show In / Out Indicators".Localize(),
() => UserSettings.Instance.Fields.GetBool(UserSettingsKey.TerminalShowInputOutputMarks, true),
(isChecked) =>
{
UserSettings.Instance.Fields.SetBool(UserSettingsKey.TerminalShowInputOutputMarks, isChecked);
textScrollWidget.RebuildFilteredList();
});
popupMenu.CreateBoolMenuItem(
"Show Temperature Requests".Localize(),
() => UserSettings.Instance.Fields.GetBool(UserSettingsKey.TerminalShowTempRequests, true),
(isChecked) =>
{
UserSettings.Instance.Fields.SetBool(UserSettingsKey.TerminalShowTempRequests, isChecked);
textScrollWidget.RebuildFilteredList();
});
popupMenu.CreateBoolMenuItem(
"Show Movement Requests".Localize(),
() => UserSettings.Instance.Fields.GetBool(UserSettingsKey.TerminalShowMovementRequests, true),
(isChecked) =>
{
UserSettings.Instance.Fields.SetBool(UserSettingsKey.TerminalShowMovementRequests, isChecked);
textScrollWidget.RebuildFilteredList();
});
popupMenu.CreateBoolMenuItem(
"Show Temperature Responses".Localize(),
() => UserSettings.Instance.Fields.GetBool(UserSettingsKey.TerminalShowTempResponse, true),
(isChecked) =>
{
UserSettings.Instance.Fields.SetBool(UserSettingsKey.TerminalShowTempResponse, isChecked);
textScrollWidget.RebuildFilteredList();
});
popupMenu.CreateBoolMenuItem(
"Show Wait Responses".Localize(),
() => UserSettings.Instance.Fields.GetBool(UserSettingsKey.TerminalShowWaitResponse, true),
(isChecked) =>
{
UserSettings.Instance.Fields.SetBool(UserSettingsKey.TerminalShowWaitResponse, isChecked);
textScrollWidget.RebuildFilteredList();
});
return filterOptionsButton;
}
2015-04-08 15:20:10 -07:00
private void SendManualCommand()
2015-04-08 15:20:10 -07:00
{
string textToSend = manualCommandTextEdit.Text.Trim();
if (autoUppercase.Checked)
{
textToSend = textToSend.ToUpper();
}
commandHistory.Add(textToSend);
commandHistoryIndex = commandHistory.Count;
printer.Connection.QueueLine(textToSend);
2015-04-08 15:20:10 -07:00
manualCommandTextEdit.Text = "";
}
}
2019-03-25 14:23:45 -07:00
}