InternalStorage.cs 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace CommonUtils.内部存储
  7. {
  8. public static class InternalStorage
  9. {
  10. private static Dictionary<string, bool> boolStorage = new Dictionary<string, bool>();
  11. private static Dictionary<string, byte> byteStorage = new Dictionary<string, byte>();
  12. private static Dictionary<string, int> intStorage = new Dictionary<string, int>();
  13. private static Dictionary<string, float> floatStorage = new Dictionary<string, float>();
  14. private static Dictionary<string, string> stringStorage = new Dictionary<string, string>();
  15. public static List<string> StorageTypes = new List<string>();
  16. public static List<string> StorageIndexs = new List<string>();
  17. public static double[] Buffs=new double[5000];
  18. public static bool ischange=false;
  19. public static void Init()
  20. {
  21. for (int i = 0; i < 20; i++)
  22. {
  23. boolStorage.Add("Bool" + i, false);
  24. byteStorage.Add("Byte" + i, new byte());
  25. intStorage.Add("Bool" + i, 0);
  26. floatStorage.Add("Float" + i, 0);
  27. stringStorage.Add("String" + i, "");
  28. StorageIndexs.Add(i.ToString());
  29. }
  30. StorageTypes.Add("无");
  31. StorageTypes.Add("Bool");
  32. StorageTypes.Add("Byte");
  33. StorageTypes.Add("Int");
  34. StorageTypes.Add("Float");
  35. StorageTypes.Add("String");
  36. }
  37. public static bool SetValue(string key, object vlaue)
  38. {
  39. string[] type = key.Split(':');
  40. switch (type[0])
  41. {
  42. case "Bool":
  43. bool booltemp = false;
  44. if (bool.TryParse((string?)vlaue, out booltemp))
  45. {
  46. SetBool(string.Concat(type), booltemp);
  47. return true;
  48. }
  49. else
  50. {
  51. return false;
  52. }
  53. case "Byte":
  54. SetByte(string.Concat(type), (byte)Convert.ChangeType(vlaue, typeof(byte)));
  55. return true;
  56. case "Int":
  57. int inttemp = 0;
  58. if (int.TryParse((string?)vlaue, out inttemp))
  59. {
  60. SetInt(string.Concat(type), inttemp);
  61. return true;
  62. }
  63. else
  64. {
  65. return false;
  66. }
  67. case "Float":
  68. float floattemp = 0;
  69. if (float.TryParse((string?)vlaue, out floattemp))
  70. {
  71. SetFloat(string.Concat(type), floattemp);
  72. return true;
  73. }
  74. else
  75. {
  76. return false;
  77. }
  78. case "String":
  79. SetString(string.Concat(type), (string)vlaue);
  80. return true;
  81. default:
  82. break;
  83. }
  84. return false;
  85. }
  86. public static object? GetValue(string key)
  87. {
  88. string[] type = key.Split(':');
  89. switch (type[0])
  90. {
  91. case "Bool":
  92. return GetBool(string.Concat(type));
  93. case "Byte":
  94. return GetByte(string.Concat(type));
  95. case "Int":
  96. return GetInt(string.Concat(type));
  97. case "Float":
  98. return GetFloat(string.Concat(type));
  99. case "String":
  100. return GetString(string.Concat(type));
  101. default:
  102. break;
  103. }
  104. return null;
  105. }
  106. public static void SetBool(string key, bool value)
  107. {
  108. boolStorage[key] = value;
  109. }
  110. public static bool GetBool(string key)
  111. {
  112. return boolStorage[key];
  113. }
  114. public static void SetByte(string key, byte value)
  115. {
  116. byteStorage[key] = value;
  117. }
  118. public static byte GetByte(string key)
  119. {
  120. return byteStorage[key];
  121. }
  122. public static void SetInt(string key, int value)
  123. {
  124. intStorage[key] = value;
  125. }
  126. public static int GetInt(string key)
  127. {
  128. return intStorage[key];
  129. }
  130. public static void SetFloat(string key, float value)
  131. {
  132. floatStorage[key] = value;
  133. }
  134. public static float GetFloat(string key)
  135. {
  136. return floatStorage[key];
  137. }
  138. public static void SetString(string key, string value)
  139. {
  140. stringStorage[key] = value;
  141. }
  142. public static string GetString(string key)
  143. {
  144. return stringStorage[key];
  145. }
  146. }
  147. }