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.
111 lines
2.5 KiB
111 lines
2.5 KiB
using System.Collections.Generic;
|
|
|
|
public partial class MAVLink
|
|
{
|
|
public class MAVLinkParamList : List<MAVLinkParam>
|
|
{
|
|
object locker = new object();
|
|
|
|
public int TotalReported { get; set; }
|
|
|
|
public int TotalReceived
|
|
{
|
|
get { return this.Count; }
|
|
}
|
|
|
|
public MAVLinkParam this[string name]
|
|
{
|
|
get
|
|
{
|
|
lock (locker)
|
|
{
|
|
foreach (var item in this)
|
|
{
|
|
if (item.Name == name)
|
|
return item;
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
set
|
|
{
|
|
int index = 0;
|
|
lock (locker)
|
|
{
|
|
foreach (var item in this)
|
|
{
|
|
if (item.Name == name)
|
|
{
|
|
this[index] = value;
|
|
return;
|
|
}
|
|
|
|
index++;
|
|
}
|
|
|
|
base.Add(value);
|
|
}
|
|
}
|
|
}
|
|
|
|
public IEnumerable<string> Keys
|
|
{
|
|
get
|
|
{
|
|
foreach (MAVLinkParam item in this.ToArray())
|
|
{
|
|
yield return item.Name;
|
|
}
|
|
}
|
|
}
|
|
|
|
public bool ContainsKey(string v)
|
|
{
|
|
lock (locker)
|
|
{
|
|
foreach (MAVLinkParam item in this)
|
|
{
|
|
if (item.Name == v)
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
public new void Clear()
|
|
{
|
|
lock (locker)
|
|
{
|
|
TotalReported = 0;
|
|
base.Clear();
|
|
}
|
|
}
|
|
|
|
public new void Add(MAVLinkParam item)
|
|
{
|
|
this[item.Name] = item;
|
|
}
|
|
|
|
public new void AddRange(IEnumerable<MAVLinkParam> collection)
|
|
{
|
|
lock (locker)
|
|
{
|
|
base.AddRange(collection);
|
|
}
|
|
}
|
|
|
|
public static implicit operator Dictionary<string, double>(MAVLinkParamList list)
|
|
{
|
|
var copy = new Dictionary<string, double>();
|
|
foreach (MAVLinkParam item in list.ToArray())
|
|
{
|
|
copy[item.Name] = item.Value;
|
|
}
|
|
|
|
return copy;
|
|
}
|
|
}
|
|
}
|
|
|