You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
261 lines
9.5 KiB
261 lines
9.5 KiB
using System; |
|
using System.ComponentModel; |
|
using System.Diagnostics; |
|
using System.Drawing; |
|
using System.Linq; |
|
using System.Windows.Forms; |
|
using ArdupilotMega.Controls.BackstageView; |
|
using ArdupilotMega.Presenter; |
|
using Transitions; |
|
|
|
namespace ArdupilotMega.GCSViews.ConfigurationView |
|
{ |
|
public partial class ConfigMount : UserControl, IActivate |
|
{ |
|
private Transition[] _ErrorTransition; |
|
private Transition _NoErrorTransition; |
|
|
|
public ConfigMount() |
|
{ |
|
InitializeComponent(); |
|
PBOX_WarningIcon.Opacity = 0.0F; |
|
LBL_Error.Opacity = 0.0F; |
|
|
|
|
|
|
|
|
|
var delay = new Transition(new TransitionType_Linear(2000)); |
|
var fadeIn = new Transition(new TransitionType_Linear(800)); |
|
fadeIn.add(PBOX_WarningIcon, "Opacity", 1.0F); |
|
fadeIn.add(LBL_Error, "Opacity", 1.0F); |
|
|
|
_ErrorTransition = new[] { delay, fadeIn }; |
|
|
|
_NoErrorTransition = new Transition(new TransitionType_Linear(10)); |
|
_NoErrorTransition.add(PBOX_WarningIcon, "Opacity", 0.0F); |
|
_NoErrorTransition.add(LBL_Error, "Opacity", 0.0F); |
|
|
|
//setup button actions |
|
foreach (var btn in Controls.Cast<Control>().OfType<Button>()) |
|
btn.Click += HandleButtonClick; |
|
|
|
LNK_wiki.MouseEnter += (s, e) => FadeLinkTo((LinkLabel)s, Color.CornflowerBlue); |
|
LNK_wiki.MouseLeave += (s, e) => FadeLinkTo((LinkLabel)s, Color.WhiteSmoke); |
|
|
|
SetErrorMessageOpacity(); |
|
|
|
if (MainV2.cs.firmware == MainV2.Firmwares.ArduPlane) |
|
{ |
|
mavlinkComboBoxTilt.Items.AddRange(Enum.GetNames(typeof(Channelap))); |
|
mavlinkComboBoxRoll.Items.AddRange(Enum.GetNames(typeof(Channelap))); |
|
mavlinkComboBoxPan.Items.AddRange(Enum.GetNames(typeof(Channelap))); |
|
} |
|
else |
|
{ |
|
mavlinkComboBoxTilt.Items.AddRange(Enum.GetNames(typeof(Channelac))); |
|
mavlinkComboBoxRoll.Items.AddRange(Enum.GetNames(typeof(Channelac))); |
|
mavlinkComboBoxPan.Items.AddRange(Enum.GetNames(typeof(Channelac))); |
|
} |
|
} |
|
|
|
// 0 = disabled 1 = enabled |
|
enum Channelap |
|
{ |
|
Disable = 0, |
|
RC5 = 1, |
|
RC6 = 1, |
|
RC7 = 1, |
|
RC8 = 1 |
|
} |
|
|
|
// 0 = disabled 1 = enabled |
|
enum Channelac |
|
{ |
|
Disable = 0, |
|
CAM_P = 1, |
|
CAM_R = 1, |
|
CAM_Y = 1 |
|
} |
|
|
|
public void Activate() |
|
{ |
|
foreach (string item in MainV2.comPort.param.Keys) |
|
{ |
|
if (item.EndsWith("_FUNCTION")) |
|
{ |
|
switch (MainV2.comPort.param[item].ToString()) |
|
{ |
|
case "6": |
|
mavlinkComboBoxPan.Text = item.Replace("_FUNCTION", ""); |
|
break; |
|
case "7": |
|
mavlinkComboBoxTilt.Text = item.Replace("_FUNCTION", ""); |
|
break; |
|
case "8": |
|
mavlinkComboBoxRoll.Text = item.Replace("_FUNCTION", ""); |
|
break; |
|
default: |
|
break; |
|
} |
|
} |
|
} |
|
|
|
try |
|
{ |
|
updatePitch(); |
|
updateRoll(); |
|
updateYaw(); |
|
} |
|
catch (Exception ex) { CustomMessageBox.Show("Failed to set Param\n" + ex.ToString()); this.Enabled = false; return; } |
|
} |
|
|
|
void ensureDisabled(ComboBox cmb, int number) |
|
{ |
|
foreach (string item in cmb.Items) |
|
{ |
|
if (MainV2.comPort.param.ContainsKey(item+"_FUNCTION")) { |
|
float ans = (float)MainV2.comPort.param[item+"_FUNCTION"]; |
|
|
|
if (ans == number) |
|
{ |
|
MainV2.comPort.setParam(item + "_FUNCTION",0); |
|
} |
|
} |
|
} |
|
} |
|
|
|
void updatePitch() |
|
{ |
|
// pitch |
|
if (mavlinkComboBoxTilt.Text != "Disable") |
|
{ |
|
MainV2.comPort.setParam(mavlinkComboBoxTilt.Text + "_FUNCTION", 7); |
|
MainV2.comPort.setParam("MNT_STAB_PITCH", 1); |
|
} |
|
else |
|
{ |
|
MainV2.comPort.setParam("MNT_STAB_PITCH", 0); |
|
ensureDisabled(mavlinkComboBoxTilt,7); |
|
} |
|
|
|
mavlinkNumericUpDownTSM.setup(800, 2200, 1, 1, mavlinkComboBoxTilt.Text +"_MIN", MainV2.comPort.param); |
|
mavlinkNumericUpDownTSMX.setup(800, 2200, 1, 1, mavlinkComboBoxTilt.Text + "_MAX", MainV2.comPort.param); |
|
mavlinkNumericUpDownTAM.setup(-90, 0, 100, 1, mavlinkComboBoxTilt.Text + "_ANGLE_MIN", MainV2.comPort.param); |
|
mavlinkNumericUpDownTAMX.setup(0, 90, 100, 1, mavlinkComboBoxTilt.Text + "_ANGLE_MAX", MainV2.comPort.param); |
|
mavlinkCheckBoxTR.setup(-1, 1, mavlinkComboBoxTilt.Text + "_REV", MainV2.comPort.param); |
|
} |
|
|
|
void updateRoll() |
|
{ |
|
// roll |
|
if (mavlinkComboBoxRoll.Text != "Disable") |
|
{ |
|
MainV2.comPort.setParam(mavlinkComboBoxRoll.Text + "_FUNCTION", 8); |
|
MainV2.comPort.setParam("MNT_STAB_ROLL", 1); |
|
} |
|
else |
|
{ |
|
MainV2.comPort.setParam("MNT_STAB_ROLL", 0); |
|
ensureDisabled(mavlinkComboBoxRoll,8); |
|
} |
|
|
|
mavlinkNumericUpDownRSM.setup(800, 2200, 1, 1, mavlinkComboBoxRoll.Text +"_MIN", MainV2.comPort.param); |
|
mavlinkNumericUpDownRSMX.setup(800, 2200, 1, 1, mavlinkComboBoxRoll.Text + "_MAX", MainV2.comPort.param); |
|
mavlinkNumericUpDownRAM.setup(-90, 0, 100, 1, mavlinkComboBoxRoll.Text + "_ANGLE_MIN", MainV2.comPort.param); |
|
mavlinkNumericUpDownRAMX.setup(0, 90, 100, 1, mavlinkComboBoxRoll.Text + "_ANGLE_MAX", MainV2.comPort.param); |
|
mavlinkCheckBoxRR.setup(-1, 1, mavlinkComboBoxRoll.Text + "_REV", MainV2.comPort.param); |
|
} |
|
|
|
void updateYaw() |
|
{ |
|
// yaw |
|
if (mavlinkComboBoxPan.Text != "Disable") |
|
{ |
|
MainV2.comPort.setParam(mavlinkComboBoxPan.Text + "_FUNCTION", 6); |
|
MainV2.comPort.setParam("MNT_STAB_YAW", 1); |
|
} |
|
else |
|
{ |
|
MainV2.comPort.setParam("MNT_STAB_YAW", 0); |
|
ensureDisabled(mavlinkComboBoxPan,6); |
|
} |
|
|
|
mavlinkNumericUpDownPSM.setup(800, 2200, 1, 1, mavlinkComboBoxPan.Text + "_MIN", MainV2.comPort.param); |
|
mavlinkNumericUpDownPSMX.setup(800, 2200, 1, 1, mavlinkComboBoxPan.Text + "_MAX", MainV2.comPort.param); |
|
mavlinkNumericUpDownPAM.setup(-90, 0, 100, 1, mavlinkComboBoxPan.Text + "_ANGLE_MIN", MainV2.comPort.param); |
|
mavlinkNumericUpDownPAMX.setup(0, 90, 100, 1, mavlinkComboBoxPan.Text + "_ANGLE_MAX", MainV2.comPort.param); |
|
mavlinkCheckBoxPR.setup(-1, 1, mavlinkComboBoxPan.Text + "_REV", MainV2.comPort.param); |
|
} |
|
|
|
private void SetErrorMessageOpacity() |
|
{ |
|
/* if (_presenter.HasError) |
|
{ |
|
// Todo - is this the prob? maybe single log trasition |
|
var t = new Transition(new TransitionType_Acceleration(1000)); |
|
t.add(PBOX_WarningIcon, "Opacity", 1.0F); |
|
t.add(LBL_Error, "Opacity", 1.0F); |
|
t.run(); |
|
|
|
//Transition.runChain(_ErrorTransition); |
|
} |
|
else*/ |
|
{ |
|
_NoErrorTransition.run(); |
|
} |
|
} |
|
|
|
private static void FadeLinkTo(LinkLabel l, Color c) |
|
{ |
|
var changeColorTransition = new Transition(new TransitionType_Linear(300)); |
|
changeColorTransition.add(l, "LinkColor", c); |
|
changeColorTransition.run(); |
|
} |
|
|
|
// Common handler for all buttons |
|
// Will execute an ICommand if one is found on the button Tag |
|
private static void HandleButtonClick(object sender, EventArgs e) |
|
{ |
|
if (sender is Button) |
|
{ |
|
var cmd = (sender as Button).Tag as ICommand; |
|
|
|
if (cmd != null) |
|
if (cmd.CanExecute(null)) |
|
cmd.Execute(null); |
|
} |
|
} |
|
|
|
// Something has changed on the presenter - This may be an Icommand |
|
// enabled state, so update the buttons as appropriate |
|
void CheckCommandStates(object sender, PropertyChangedEventArgs propertyChangedEventArgs) |
|
{ |
|
foreach (var btn in Controls.Cast<Control>().OfType<Button>()) |
|
{ |
|
var cmd = btn.Tag as ICommand; |
|
if (cmd != null) |
|
btn.Enabled = cmd.CanExecute(null); |
|
} |
|
} |
|
|
|
private void LNK_Wiki_Clicked(object sender, LinkLabelLinkClickedEventArgs e) |
|
{ |
|
Process.Start(new ProcessStartInfo("http://code.google.com/p/arducopter/wiki/AC2_Camera")); |
|
} |
|
|
|
private void mavlinkComboBox_SelectedIndexChanged(object sender, EventArgs e) |
|
{ |
|
// enable 3 axis stabilize |
|
if (MainV2.comPort.param.ContainsKey("MNT_MODE")) |
|
MainV2.comPort.setParam("MNT_MODE",3); |
|
|
|
try |
|
{ |
|
updatePitch(); |
|
updateRoll(); |
|
updateYaw(); |
|
} |
|
catch (Exception ex) { CustomMessageBox.Show("Failed to set Param\n"+ex.ToString()); return; } |
|
} |
|
} |
|
} |