Click here to Skip to main content
15,896,606 members
Articles / Programming Languages / C#

Universal Framework for Science and Engineering - Part 4: Space elevator

Rate me:
Please Sign up or sign in to vote.
4.56/5 (6 votes)
14 Aug 20066 min read 36.6K   2.2K   37  
An article on framework applications to the space elevator.
using System;
using System.Windows.Forms;
using System.IO;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Formatters.Binary;
using System.Configuration.Assemblies;
using System.Collections;
using System.Drawing;
using System.ComponentModel;
using System.Xml;


using CategoryTheory;
using DiagramUI;
using FormulaEditor;
using FormulaEditorUI;
using DataPerformer;


namespace DataPerformerUI
{
	/// <summary>
	/// Panel of formula consumer
	/// </summary>
	public class PanelMeasureFormula : Panel
	{
		/// <summary>
		/// The arrow that corresponds to this panel
		/// </summary>
		//protected DataLink arrow;

		/// <summary>
		/// The input data
		/// </summary>
		protected IMeasurements measurements;

		/// <summary>
		/// Controls of measurements
		/// </summary>
		protected ArrayList measurementControls;

		/// <summary>
		/// The name of panel
		/// </summary>
		private string panelName;

		/// <summary>
		/// Variables of formula
		/// </summary>
		private string variables;

		/// <summary>
		/// The consumer that corresponds to this panel
		/// </summary>
		private IDataConsumer consumer;

		/// <summary>
		/// Constructor
		/// </summary>
		/// <param name="arrow">The arrow that corresponds to this panel</param>
		/// <param name="variables">Variables of formula</param>
		/// <param name="consumer">The consumer that corresponds to this panel</param>
		public PanelMeasureFormula(IMeasurements measurements, string variables, IDataConsumer consumer)
		{
			//this.arrow = arrow;
            this.measurements = measurements;
			this.Width = 300;
			this.variables = variables;
			this.consumer = consumer;
			initialize();
		}

		/// <summary>
		/// Name of panel
		/// </summary>
		public string PanelName
		{
			get
			{
				return panelName;
			}
		}

		/// <summary>
		/// Adds argument labels to list
		/// </summary>
		/// <param name="list">The list to add</param>
		public void AddArgumentLabels(ArrayList list)
		{
			foreach (object[] o in measurementControls)
			{
				ComboBox cb = o[0] as ComboBox;
				object ob = cb.SelectedItem;
				if (ob == null)
				{
					continue;
				}
				string sn = cb.SelectedItem.ToString();
				if (sn.Length == 0)
				{
					continue;
				}
				IMeasure m = o[1] as IMeasure;
				string sm = m.Name;
				list.Add(sn + " = " + PureDesktop.GetRelativeName(consumer as IAssociatedObject,
					measurements as IAssociatedObject) + "." + sm);
			}
		}

		/// <summary>
		/// Creates arguments to dynamical parameter
		/// </summary>
		/// <param name="par">The dynamical parameter</param>
		public void CreateArguments(DynamicalParameter par)
		{
			foreach (object[] o in measurementControls)
			{
				ComboBox cb = o[0] as ComboBox;
				object ob = cb.SelectedItem;
				if (ob == null)
				{
					continue;
				}
				string sn = ob.ToString();
				if (sn.Length == 0)
				{
					continue;
				}
				IMeasure m = o[1] as IMeasure;
				par.Add(sn[0], m);
			}
		}

		/// <summary>
		/// Creates arguments and writes them to list
		/// </summary>
		/// <param name="list">The list to write</param>
		public void CreateArguments(ArrayList list)
		{
			foreach (object[] o in measurementControls)
			{
				ComboBox cb = o[0] as ComboBox;
				object ob = cb.SelectedItem;
				if (ob == null)
				{
					continue;
				}
				string sn = ob.ToString();
				if (sn.Length == 0)
				{
					continue;
				}
				IMeasure m = o[1] as IMeasure;
				string s = sn[0] + " = " + 
					PureDesktop.GetRelativeName(consumer as IAssociatedObject,
					measurements as IAssociatedObject) 
					+ "." + m.Name;
				list.Add(s);
			}
		}

		/// <summary>
		/// Fills parameters comboboxes
		/// </summary>
		/// <param name="str">String of parameters</param>
		public void FillComboboxes(string str)
		{
			foreach (object[] o in measurementControls)
			{
				ComboBox cb = o[0] as ComboBox;
				cb.Items.Clear();
				cb.Text = "";
				foreach (char c in str)
				{
					cb.Items.Add("" + c);
				}
			}
		}

		/// <summary>
		/// Resets comboboxes
		/// </summary>
		public void ResetCombo()
		{
			foreach (object[] o in measurementControls)
			{
				ComboBox cb = o[0] as ComboBox;
				cb.Items.Clear();
				cb.Text = "";
			}

		}


		/// <summary>
		/// Initialization
		/// </summary>
		private void initialize()
		{
//			measurements = arrow.Measurements;
			Control panel = HeaderControl.Object.GetHeaderControl(measurements);
			panelName = panel.Name;
			Controls.Add(panel);
			measurementControls = new ArrayList();
			int y = panel.Height + 10;
			ICollection arguments = null;
			if (consumer is IArguments)
			{
				IArguments arg = consumer as IArguments;
				arguments = arg.Arguments;
			}
			else
			{
			/*	if (consumer is FormulaDataConsumer)
				{
					arguments = ((FormulaDataConsumer)consumer).Arguments;
				}*/
				if (consumer is DifferentialEquationSolver)
				{
					arguments = ((DifferentialEquationSolver)consumer).Arguments;
				}
				if (consumer is  VectorFormulaConsumer)
				{
					arguments = ((VectorFormulaConsumer)consumer).Arguments;
				}
			/*	if (consumer is TwoParameterTable)
				{
					arguments = ((TwoParameterTable)consumer).Arguments;
				}*/
			/*	if (consumer is FourierSeries)
				{
					arguments = new ArrayList();
					(arguments as ArrayList).Add(((FourierSeries)consumer).Argument);
				}*/
				/*
				if (consumer is SpatialUI.MassCenterDriver)
				{
					arguments = ((SpatialUI.MassCenterDriver)consumer).Arguments;
				}*/
				if (consumer is Recursive)
				{
					Recursive r = consumer as Recursive;
					arguments = r.ExternalArguments;
				}
			}
			for (int i = 0; i < measurements.Count; i++)
			{
				IMeasure measure = measurements[i];
				Label lab = new Label();
				lab.Top = y;
				lab.Left = 20;
				lab.Text = Measure.GetTypeName(measure.Type);
				y += lab.Height + 10;
				Controls.Add(lab);
				ComboBox cb = new ComboBox();
				cb.Location = new System.Drawing.Point(20, y);
				cb.Size = new System.Drawing.Size(121, 21);
				foreach (char c in variables)
				{
					cb.Items.Add(c + "");
				}
				if (consumer is DifferentialEquationSolver)
				{
					DifferentialEquationSolver s = consumer as DifferentialEquationSolver;
					string str = s.InputParameters;
					foreach (char c in str)
					{
						cb.Items.Add(c + "");
					}
				}
				Label l = new Label();
				l.Text = (string)measure.Name.Clone();
				l.Location = new System.Drawing.Point(cb.Left + cb.Width + 10, y);
				l.Width = Width - 20;
				measurementControls.Add(new object[]{cb, measure});
				Controls.Add(cb);
				Controls.Add(l);
				y = cb.Top + cb.Height + 5;
				if (arguments == null)
				{
					continue;
				}
				string argName = DataConsumer.GetName(consumer as IAssociatedObject, measurements) 
					+ "." + measure.Name;
				foreach (string arg in arguments)
				{
					if (arg.Length < 4)
					{
						continue;
					}
					if (arg.Substring(4).Equals(argName))
					{
						char c = arg[0];
						for (int j = 0; j < cb.Items.Count; j++)
						{
							char s = cb.Items[j].ToString()[0];
							if (c == s)
							{
								cb.SelectedIndex = j;
								goto A;
							}
						}
					}
				}
			A: continue;
			}
			Width = 100;
			Height = y + 10;

		}

 

 	}


}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Architect
Russian Federation Russian Federation
Ph. D. Petr Ivankov worked as scientific researcher at Russian Mission Control Centre since 1978 up to 2000. Now he is engaged by Aviation training simulators http://dinamika-avia.com/ . His additional interests are:

1) Noncommutative geometry

http://front.math.ucdavis.edu/author/P.Ivankov

2) Literary work (Russian only)

http://zhurnal.lib.ru/editors/3/3d_m/

3) Scientific articles
http://arxiv.org/find/all/1/au:+Ivankov_Petr/0/1/0/all/0/1

Comments and Discussions