BitSet.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. using CommonLang.IO;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace CommonLang
  7. {
  8. public struct BitSet8 : IExternalizable
  9. {
  10. private byte mMask;
  11. public byte Mask { get { return mMask; } set { mMask = value; } }
  12. public BitSet8(byte mask) { mMask = mask; }
  13. public bool Get(int i)
  14. {
  15. return BitMask.BitGetMask(mMask, i);
  16. }
  17. public void Set(int i, bool value)
  18. {
  19. BitMask.BitSetMask(ref mMask, i, value);
  20. }
  21. public void WriteExternal(IOutputStream output)
  22. {
  23. output.PutU8(mMask);
  24. }
  25. public void ReadExternal(IInputStream input)
  26. {
  27. this.mMask = input.GetU8();
  28. }
  29. }
  30. public struct BitSet16 : IExternalizable
  31. {
  32. private short mMask;
  33. public short Mask { get { return mMask; } set { mMask = value; } }
  34. public BitSet16(short mask) { mMask = mask; }
  35. public bool Get(int i)
  36. {
  37. return BitMask.BitGetMask(mMask, i);
  38. }
  39. public void Set(int i, bool value)
  40. {
  41. BitMask.BitSetMask(ref mMask, i, value);
  42. }
  43. public void WriteExternal(IOutputStream output)
  44. {
  45. output.PutS16(mMask);
  46. }
  47. public void ReadExternal(IInputStream input)
  48. {
  49. this.mMask = input.GetS16();
  50. }
  51. }
  52. public struct BitSet32 : IExternalizable
  53. {
  54. private int mMask;
  55. public int Mask { get { return mMask; } set { mMask = value; } }
  56. public BitSet32(int mask) { mMask = mask; }
  57. public bool Get(int i)
  58. {
  59. return BitMask.BitGetMask(mMask, i);
  60. }
  61. public void Set(int i, bool value)
  62. {
  63. BitMask.BitSetMask(ref mMask, i, value);
  64. }
  65. public void WriteExternal(IOutputStream output)
  66. {
  67. output.PutS32(mMask);
  68. }
  69. public void ReadExternal(IInputStream input)
  70. {
  71. this.mMask = input.GetS32();
  72. }
  73. }
  74. public struct BitSet64 : IExternalizable
  75. {
  76. private long mMask;
  77. public long Mask { get { return mMask; } set { mMask = value; } }
  78. public BitSet64(long mask) { mMask = mask; }
  79. public bool Get(int i)
  80. {
  81. return BitMask.BitGetMask(mMask, i);
  82. }
  83. public void Set(int i, bool value)
  84. {
  85. BitMask.BitSetMask(ref mMask, i, value);
  86. }
  87. public void WriteExternal(IOutputStream output)
  88. {
  89. output.PutS64(mMask);
  90. }
  91. public void ReadExternal(IInputStream input)
  92. {
  93. this.mMask = input.GetS64();
  94. }
  95. }
  96. public class BitMask
  97. {
  98. public static void BitSetMask(ref byte mask, int i, bool value)
  99. {
  100. if (value)
  101. {
  102. mask |= (byte)(1 << i);
  103. }
  104. else
  105. {
  106. mask &= (byte)(~(1 << i));
  107. }
  108. }
  109. public static bool BitGetMask(byte mask, int i)
  110. {
  111. return (mask & (1 << i)) != 0;
  112. }
  113. public static void BitSetMask(ref short mask, int i, bool value)
  114. {
  115. if (value)
  116. {
  117. #pragma warning disable CS0675 // 对进行了带符号扩展的操作数使用了按位或运算符
  118. mask |= (short)(1 << i);
  119. #pragma warning restore CS0675 // 对进行了带符号扩展的操作数使用了按位或运算符
  120. }
  121. else
  122. {
  123. mask &= (short)(~(1 << i));
  124. }
  125. }
  126. public static bool BitGetMask(short mask, int i)
  127. {
  128. return (mask & (1 << i)) != 0;
  129. }
  130. public static void BitSetMask(ref int mask, int i, bool value)
  131. {
  132. if (value)
  133. {
  134. mask |= (1 << i);
  135. }
  136. else
  137. {
  138. mask &= (~(1 << i));
  139. }
  140. }
  141. public static bool BitGetMask(int mask, int i)
  142. {
  143. return (mask & (1 << i)) != 0;
  144. }
  145. public static void BitSetMask(ref long mask, int i, bool value)
  146. {
  147. long m = (1L << i);
  148. if (value)
  149. {
  150. mask |= m;
  151. }
  152. else
  153. {
  154. mask &= ~m;
  155. }
  156. }
  157. public static bool BitGetMask(long mask, int i)
  158. {
  159. long m = (1L << i);
  160. return (mask & m) != 0;
  161. }
  162. }
  163. }