477 lines
16 KiB
C#
477 lines
16 KiB
C#
///
|
|
/// Copyright (c) 2015 Sensus Metering Systems
|
|
///
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Windows.Forms;
|
|
using log4net;
|
|
using TBF.Resources;
|
|
|
|
namespace TBF.BenchControl.DataEntry.Standard12
|
|
{
|
|
public partial class TestStartEndForm : Form, GenericDevices.IHasCompleted
|
|
{
|
|
private static readonly ILog log = LogManager.GetLogger(typeof(TestStartEndForm));
|
|
|
|
// Set to 'true' when the form closes
|
|
public bool Completed { get { return completed; } }
|
|
bool completed;
|
|
|
|
/// <summary> Number of text boxes for serial numbers </summary>
|
|
public readonly int WaterMetersCount;
|
|
|
|
readonly bool[] disabled;
|
|
|
|
// To be retrieved after the form closes
|
|
public float[] WMStartState;
|
|
|
|
// To be retrieved after the form closes
|
|
public readonly string[] WMStartStateStr;
|
|
|
|
// To be retrieved after the form closes
|
|
public float[] WMEndState;
|
|
|
|
bool endStates; /// false=start states, true=end states
|
|
double refVolume;
|
|
double warningLimLo; /// limit to display exclamation mark, typically 2x errLimLo
|
|
double warningLimHi; /// limit to display exclamation mark, typically 2x errLimHi
|
|
|
|
int TextBoxesCount;
|
|
///
|
|
Label[] labels;
|
|
TextBox[] startTextBoxes;
|
|
TextBox[] endTextBoxes;
|
|
IList<TextBox> enabledTextBoxes;
|
|
|
|
/// <summary>
|
|
/// Parameterless constructor initializing common part for start and endstate form
|
|
/// </summary>
|
|
public TestStartEndForm()
|
|
{
|
|
InitializeComponent();
|
|
|
|
TextBoxesCount = 12;
|
|
|
|
labels = new Label[]
|
|
{
|
|
label1, label2, label3, label4, label5, label6,
|
|
label7, label8, label9, label10, label11, label12,
|
|
};
|
|
startTextBoxes = new TextBox[]
|
|
{
|
|
startTextBox1, startTextBox2, startTextBox3, startTextBox4, startTextBox5, startTextBox6,
|
|
startTextBox7, startTextBox8, startTextBox9, startTextBox10, startTextBox11, startTextBox12,
|
|
};
|
|
endTextBoxes = new TextBox[]
|
|
{
|
|
endTextBox1, endTextBox2, endTextBox3, endTextBox4, endTextBox5, endTextBox6,
|
|
endTextBox7, endTextBox8, endTextBox9, endTextBox10, endTextBox11, endTextBox12,
|
|
};
|
|
enabledTextBoxes = new List<TextBox>();
|
|
|
|
completed = false;
|
|
StartForceCloseHandler();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Constructor to fill in start states
|
|
/// </summary>
|
|
/// <param name="waterMetersCount">Number of water meters</param>
|
|
/// <param name="disabled">Information from CycleBeginningForm about availability of water meters</param>
|
|
public TestStartEndForm(int waterMetersCount, bool[] disabled)
|
|
: this()
|
|
{
|
|
endStates = false;
|
|
|
|
this.WaterMetersCount = waterMetersCount;
|
|
this.disabled = disabled;
|
|
|
|
ShuffleTextBoxes();
|
|
|
|
WMStartState = new float[waterMetersCount];
|
|
WMStartStateStr = new string[waterMetersCount];
|
|
}
|
|
|
|
/// <summary>
|
|
/// Constructor to fill in end states
|
|
/// </summary>
|
|
/// <param name="waterMetersCount">Number of water meters</param>
|
|
/// <param name="wmStartStateStr">Information entered on test start</param>
|
|
/// <param name="disabled">Information from CycleBeginningForm about availability of water meters</param>
|
|
/// <param name="refVolume">Reference volume, it is used to verify the end state, show/hide exclamation if necessary</param>
|
|
/// <param name="errLimLo">Error limit low, it is used to verify the end state, show/hide exclamation if necessary</param>
|
|
/// <param name="errLimHi">Error limit high, it is used to verify the end state, show/hide exclamation if necessary</param>
|
|
public TestStartEndForm(int waterMetersCount, string[] wmStartStateStr, bool[] disabled,
|
|
double refVolume, double errLimLo, double errLimHi)
|
|
: this()
|
|
{
|
|
endStates = true;
|
|
|
|
this.WaterMetersCount = waterMetersCount;
|
|
if (wmStartStateStr == null || wmStartStateStr.Length != waterMetersCount)
|
|
throw (new Exception("Invalid 'wmStartStateStr' argument"));
|
|
this.WMStartStateStr = wmStartStateStr;
|
|
this.disabled = disabled;
|
|
this.refVolume = refVolume;
|
|
this.warningLimLo = 2 * errLimLo;
|
|
this.warningLimHi = 2 * errLimHi;
|
|
|
|
ShuffleTextBoxes();
|
|
|
|
WMEndState = new float[waterMetersCount];
|
|
}
|
|
|
|
/// <summary>
|
|
/// Make sure the layout of labels/text boxes on the screen
|
|
/// corresponds to the layout of watermeters of the test bench.
|
|
/// </summary>
|
|
void ShuffleTextBoxes()
|
|
{
|
|
if (Config.Data.WMsCount < TextBoxesCount)
|
|
{
|
|
int nrLines = Config.Data.WMsCount / Config.Data.LineSize;
|
|
int gap = (TextBoxesCount - Config.Data.WMsCount) / nrLines;
|
|
|
|
int dest = 0;
|
|
for (int l = 0; l < nrLines; l++)
|
|
{
|
|
for (int i = 0; i < Config.Data.LineSize; i++)
|
|
{
|
|
labels[dest] = labels[l * Config.Data.LineSize + l * gap + i];
|
|
startTextBoxes[dest] = startTextBoxes[l * Config.Data.LineSize + l * gap + i];
|
|
endTextBoxes[dest] = endTextBoxes[l * Config.Data.LineSize + l * gap + i];
|
|
dest++;
|
|
}
|
|
}
|
|
TextBoxesCount = Config.Data.WMsCount;
|
|
}
|
|
}
|
|
|
|
private void CycleEndForm_Load(object sender, EventArgs e)
|
|
{
|
|
Localize();
|
|
|
|
//Height = 115 + 90 * WaterMetersCount;
|
|
|
|
for (int i = 0; i < TextBoxesCount; i++)
|
|
{
|
|
if (i < WaterMetersCount)
|
|
{
|
|
labels[i].Visible = startTextBoxes[i].Visible = endTextBoxes[i].Visible = true;
|
|
}
|
|
}
|
|
|
|
if (endStates)
|
|
{
|
|
for (int i = 0; i < TextBoxesCount; i++)
|
|
{
|
|
if (WMStartStateStr != null && i < WMStartStateStr.Length)
|
|
{
|
|
startTextBoxes[i].Text = WMStartStateStr[i];
|
|
}
|
|
|
|
if (disabled != null && i < disabled.Length && disabled[i])
|
|
{
|
|
endTextBoxes[i].Enabled = false;
|
|
}
|
|
else
|
|
{
|
|
endTextBoxes[i].Enabled = true;
|
|
enabledTextBoxes.Add(endTextBoxes[i]);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
for (int i = 0; i < TextBoxesCount; i++)
|
|
{
|
|
if (disabled != null && i < disabled.Length && disabled[i])
|
|
{
|
|
startTextBoxes[i].Enabled = false;
|
|
}
|
|
else
|
|
{
|
|
startTextBoxes[i].Enabled = true;
|
|
enabledTextBoxes.Add(startTextBoxes[i]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void Localize()
|
|
{
|
|
Text = Strings.Water_Meter_States;
|
|
for (int i = 0; i < TextBoxesCount; i++)
|
|
{
|
|
labels[i].Text = Strings.Water_Meter + " " + (i + 1).ToString();
|
|
}
|
|
startLabel.Text = Strings.Start;
|
|
endLabel.Text = Strings.End;
|
|
okButton.Text = Strings.OkBtnText;
|
|
}
|
|
|
|
private void okButton_Click(object sender, EventArgs eArgs)
|
|
{
|
|
try
|
|
{
|
|
if (endStates)
|
|
{
|
|
for (int i = 0; i < Math.Min(WaterMetersCount, TextBoxesCount); i++)
|
|
{
|
|
if (endTextBoxes[i].Visible && endTextBoxes[i].Enabled)
|
|
{
|
|
WMEndState[i] = Utils.ParseUFloat(endTextBoxes[i].Text);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
for (int i = 0; i < Math.Min(WaterMetersCount, TextBoxesCount); i++)
|
|
{
|
|
if (startTextBoxes[i].Visible && startTextBoxes[i].Enabled)
|
|
{
|
|
WMStartStateStr[i] = startTextBoxes[i].Text;
|
|
WMStartState[i] = Utils.ParseUFloat(startTextBoxes[i].Text);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
catch(Exception e)
|
|
{
|
|
log.ErrorFormat("Exception: {0}", e.Message);
|
|
return;
|
|
}
|
|
|
|
completed = true;
|
|
Close();
|
|
}
|
|
|
|
#region Forced close handling
|
|
|
|
public void StartForceCloseHandler()
|
|
{
|
|
UiBridge.Bridge.CloseModelessFormHandler += delegate(object sender, EventArgs args)
|
|
{
|
|
if (InvokeRequired) { Invoke(new EventHandler<EventArgs>(OnForceClose), sender, args); }
|
|
else OnForceClose(sender, args);
|
|
};
|
|
}
|
|
|
|
void OnForceClose(object sender, EventArgs args)
|
|
{
|
|
DialogResult = DialogResult.Cancel;
|
|
Close();
|
|
}
|
|
|
|
#endregion
|
|
|
|
/// <summary>
|
|
/// Calculate the approximate error and verify whether it is within limits.
|
|
/// Make an exclamation mark visible if out of range.
|
|
/// Similar event handler is implemented for all endTextBoxes (1..24).
|
|
/// </summary>
|
|
private void endTextBox1_TextChanged(object sender, EventArgs e)
|
|
{
|
|
double err = 0;
|
|
try
|
|
{
|
|
float endState = Utils.ParseUFloat(endTextBox1.Text);
|
|
float startState = Utils.ParseUFloat(startTextBox1.Text);
|
|
err = 100.0 * (endState - startState - refVolume) / refVolume;
|
|
}
|
|
catch { };
|
|
exclamation1.Visible = (err < warningLimLo) || (warningLimHi < err);
|
|
}
|
|
private void endTextBox2_TextChanged(object sender, EventArgs e)
|
|
{
|
|
double err = 0;
|
|
try
|
|
{
|
|
float endState = Utils.ParseUFloat(endTextBox2.Text);
|
|
float startState = Utils.ParseUFloat(startTextBox2.Text);
|
|
err = 100.0 * (endState - startState - refVolume) / refVolume;
|
|
}
|
|
catch { err = 1000.0f; };
|
|
exclamation2.Visible = (err < warningLimLo) || (warningLimHi < err);
|
|
}
|
|
private void endTextBox3_TextChanged(object sender, EventArgs e)
|
|
{
|
|
double err = 0;
|
|
try
|
|
{
|
|
float endState = Utils.ParseUFloat(endTextBox3.Text);
|
|
float startState = Utils.ParseUFloat(startTextBox3.Text);
|
|
err = 100.0 * (endState - startState - refVolume) / refVolume;
|
|
}
|
|
catch { err = 1000.0f; };
|
|
exclamation3.Visible = (err < warningLimLo) || (warningLimHi < err);
|
|
}
|
|
private void endTextBox4_TextChanged(object sender, EventArgs e)
|
|
{
|
|
double err = 0;
|
|
try
|
|
{
|
|
float endState = Utils.ParseUFloat(endTextBox4.Text);
|
|
float startState = Utils.ParseUFloat(startTextBox4.Text);
|
|
err = 100.0 * (endState - startState - refVolume) / refVolume;
|
|
}
|
|
catch { err = 1000.0f; };
|
|
exclamation4.Visible = (err < warningLimLo) || (warningLimHi < err);
|
|
}
|
|
private void endTextBox5_TextChanged(object sender, EventArgs e)
|
|
{
|
|
double err = 0;
|
|
try
|
|
{
|
|
float endState = Utils.ParseUFloat(endTextBox5.Text);
|
|
float startState = Utils.ParseUFloat(startTextBox5.Text);
|
|
err = 100.0 * (endState - startState - refVolume) / refVolume;
|
|
}
|
|
catch { err = 1000.0f; };
|
|
exclamation5.Visible = (err < warningLimLo) || (warningLimHi < err);
|
|
}
|
|
private void endTextBox6_TextChanged(object sender, EventArgs e)
|
|
{
|
|
double err = 0;
|
|
try
|
|
{
|
|
float endState = Utils.ParseUFloat(endTextBox6.Text);
|
|
float startState = Utils.ParseUFloat(startTextBox6.Text);
|
|
err = 100.0 * (endState - startState - refVolume) / refVolume;
|
|
}
|
|
catch { err = 1000.0f; };
|
|
exclamation6.Visible = (err < warningLimLo) || (warningLimHi < err);
|
|
}
|
|
private void endTextBox7_TextChanged(object sender, EventArgs e)
|
|
{
|
|
double err = 0;
|
|
try
|
|
{
|
|
float endState = Utils.ParseUFloat(endTextBox7.Text);
|
|
float startState = Utils.ParseUFloat(startTextBox7.Text);
|
|
err = 100.0 * (endState - startState - refVolume) / refVolume;
|
|
}
|
|
catch { err = 1000.0f; };
|
|
exclamation7.Visible = (err < warningLimLo) || (warningLimHi < err);
|
|
}
|
|
private void endTextBox8_TextChanged(object sender, EventArgs e)
|
|
{
|
|
double err = 0;
|
|
try
|
|
{
|
|
float endState = Utils.ParseUFloat(endTextBox8.Text);
|
|
float startState = Utils.ParseUFloat(startTextBox8.Text);
|
|
err = 100.0 * (endState - startState - refVolume) / refVolume;
|
|
}
|
|
catch { err = 1000.0f; };
|
|
exclamation8.Visible = (err < warningLimLo) || (warningLimHi < err);
|
|
}
|
|
private void endTextBox9_TextChanged(object sender, EventArgs e)
|
|
{
|
|
double err = 0;
|
|
try
|
|
{
|
|
float endState = Utils.ParseUFloat(endTextBox9.Text);
|
|
float startState = Utils.ParseUFloat(startTextBox9.Text);
|
|
err = 100.0 * (endState - startState - refVolume) / refVolume;
|
|
}
|
|
catch { err = 1000.0f; };
|
|
exclamation9.Visible = (err < warningLimLo) || (warningLimHi < err);
|
|
}
|
|
|
|
private void endTextBox10_TextChanged(object sender, EventArgs e)
|
|
{
|
|
double err = 0;
|
|
try
|
|
{
|
|
float endState = Utils.ParseUFloat(endTextBox10.Text);
|
|
float startState = Utils.ParseUFloat(startTextBox10.Text);
|
|
err = 100.0 * (endState - startState - refVolume) / refVolume;
|
|
}
|
|
catch { err = 1000.0f; };
|
|
exclamation10.Visible = (err < warningLimLo) || (warningLimHi < err);
|
|
}
|
|
|
|
private void endTextBox11_TextChanged(object sender, EventArgs e)
|
|
{
|
|
double err = 0;
|
|
try
|
|
{
|
|
float endState = Utils.ParseUFloat(endTextBox11.Text);
|
|
float startState = Utils.ParseUFloat(startTextBox11.Text);
|
|
err = 100.0 * (endState - startState - refVolume) / refVolume;
|
|
}
|
|
catch { err = 1000.0f; };
|
|
exclamation11.Visible = (err < warningLimLo) || (warningLimHi < err);
|
|
}
|
|
private void endTextBox12_TextChanged(object sender, EventArgs e)
|
|
{
|
|
double err = 0;
|
|
try
|
|
{
|
|
float endState = Utils.ParseUFloat(endTextBox12.Text);
|
|
float startState = Utils.ParseUFloat(startTextBox12.Text);
|
|
err = 100.0 * (endState - startState - refVolume) / refVolume;
|
|
}
|
|
catch { err = 1000.0f; };
|
|
exclamation12.Visible = (err < warningLimLo) || (warningLimHi < err);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Process a key press within any enabled text boxe
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
/// <param name="currentFocusOwner">TextBox control which received the event</param>
|
|
private void ProcKeyPress(object sender, KeyPressEventArgs e, TextBox currentFocusOwner)
|
|
{
|
|
if (e.KeyChar == '+')
|
|
{
|
|
/// Process '+' key ..... Form completed
|
|
okButton_Click(sender, e);
|
|
}
|
|
if (e.KeyChar == '\r')
|
|
{
|
|
/// Process <enter> key ..... Next text field
|
|
if (enabledTextBoxes.Count < 2) return; /// There is just one enabled textbox
|
|
|
|
for (int i = 0; i < enabledTextBoxes.Count; i++)
|
|
{
|
|
if (enabledTextBoxes[i] == currentFocusOwner)
|
|
{
|
|
/// Change focus to the next enabled text box
|
|
enabledTextBoxes[(i + 1) % enabledTextBoxes.Count].Focus();
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private void startTextBox1_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox1); }
|
|
private void startTextBox2_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox2); }
|
|
private void startTextBox3_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox3); }
|
|
private void startTextBox4_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox4); }
|
|
private void startTextBox5_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox5); }
|
|
private void startTextBox6_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox6); }
|
|
private void startTextBox7_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox7); }
|
|
private void startTextBox8_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox8); }
|
|
private void startTextBox9_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox9); }
|
|
private void startTextBox10_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox10); }
|
|
private void startTextBox11_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox11); }
|
|
private void startTextBox12_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox12); }
|
|
|
|
private void endTextBox1_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox1); }
|
|
private void endTextBox2_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox2); }
|
|
private void endTextBox3_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox3); }
|
|
private void endTextBox4_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox4); }
|
|
private void endTextBox5_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox5); }
|
|
private void endTextBox6_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox6); }
|
|
private void endTextBox7_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox7); }
|
|
private void endTextBox8_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox8); }
|
|
private void endTextBox9_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox9); }
|
|
private void endTextBox10_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox10); }
|
|
private void endTextBox11_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox11); }
|
|
private void endTextBox12_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox12); }
|
|
}
|
|
}
|