#region License /* Copyright 2011 James F. Bellinger Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #endregion using System; using System.Collections.Generic; namespace HidSharp.ReportDescriptors.Parser { public class IndexRange : IndexBase { public IndexRange() { } public IndexRange(uint minimum, uint maximum) { Minimum = minimum; Maximum = maximum; } public override bool IndexFromValue(uint value, out int index) { if (value >= Minimum && value <= Maximum) { index = (int)(value - Minimum); return true; } return base.IndexFromValue(value, out index); } public override IEnumerable ValuesFromIndex(int index) { if (index < 0) { yield break; } yield return index >= Count ? Maximum : (uint)(Minimum + index); } public override int Count { get { return (int)(Maximum - Minimum + 1); } } public uint Minimum { get; set; } public uint Maximum { get; set; } } }