123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- using System;
- using System.Collections.Generic;
- using System.Globalization;
- using UnityEngine;
-
- namespace XCharts.Runtime
- {
- public static class ChartCached
- {
- private const string NUMERIC_FORMATTER_D = "D";
- private const string NUMERIC_FORMATTER_d = "d";
- private const string NUMERIC_FORMATTER_X = "X";
- private const string NUMERIC_FORMATTER_x = "x";
- private static readonly string s_DefaultAxis = "axis_";
- private static CultureInfo ci = new CultureInfo("en-us"); // "en-us", "zh-cn", "ar-iq", "de-de"
- private static Dictionary<Color, string> s_ColorToStr = new Dictionary<Color, string>(100);
- private static Dictionary<int, string> s_SerieLabelName = new Dictionary<int, string>(1000);
- private static Dictionary<Color, string> s_ColorDotStr = new Dictionary<Color, string>(100);
- private static Dictionary<Type, Dictionary<int, string>> s_ComponentObjectName = new Dictionary<Type, Dictionary<int, string>>();
- private static Dictionary<int, string> s_AxisLabelName = new Dictionary<int, string>();
- private static Dictionary<Type, string> s_TypeName = new Dictionary<Type, string>();
-
- private static Dictionary<double, Dictionary<string, string>> s_NumberToStr = new Dictionary<double, Dictionary<string, string>>();
- private static Dictionary<int, Dictionary<string, string>> s_PrecisionToStr = new Dictionary<int, Dictionary<string, string>>();
-
- public static string FloatToStr(double value, string numericFormatter = "F", int precision = 0)
- {
- if (precision > 0 && numericFormatter.Length == 1)
- {
- if (!s_PrecisionToStr.ContainsKey(precision))
- {
- s_PrecisionToStr[precision] = new Dictionary<string, string>();
- }
- if (!s_PrecisionToStr[precision].ContainsKey(numericFormatter))
- {
- s_PrecisionToStr[precision][numericFormatter] = numericFormatter + precision;
- }
- return NumberToStr(value, s_PrecisionToStr[precision][numericFormatter]);
- }
- else
- {
- return NumberToStr(value, numericFormatter);
- }
- }
-
- public static string NumberToStr(double value, string formatter)
- {
- if (!s_NumberToStr.ContainsKey(value))
- {
- s_NumberToStr[value] = new Dictionary<string, string>();
- }
- if (!s_NumberToStr[value].ContainsKey(formatter))
- {
- if (string.IsNullOrEmpty(formatter))
- {
- if (value - (int) value == 0)
- s_NumberToStr[value][formatter] = ((int) value).ToString();
- else
- s_NumberToStr[value][formatter] = value.ToString();
- }
- else if (formatter.StartsWith(NUMERIC_FORMATTER_D) ||
- formatter.StartsWith(NUMERIC_FORMATTER_d) ||
- formatter.StartsWith(NUMERIC_FORMATTER_X) ||
- formatter.StartsWith(NUMERIC_FORMATTER_x)
- )
- {
- s_NumberToStr[value][formatter] = ((int) value).ToString(formatter, ci);
- }
- else
- {
- s_NumberToStr[value][formatter] = value.ToString(formatter, ci);
- }
- }
- return s_NumberToStr[value][formatter];
- }
-
- public static string IntToStr(int value, string numericFormatter = "")
- {
- return NumberToStr(value, numericFormatter);
- }
-
- public static string ColorToStr(Color color)
- {
- if (s_ColorToStr.ContainsKey(color))
- {
- return s_ColorToStr[color];
- }
- else
- {
- s_ColorToStr[color] = ColorUtility.ToHtmlStringRGBA(color);
- return s_ColorToStr[color];
- }
- }
-
- public static string ColorToDotStr(Color color)
- {
- if (!s_ColorDotStr.ContainsKey(color))
- {
- s_ColorDotStr[color] = "<color=#" + ColorToStr(color) + ">● </color>";
- }
- return s_ColorDotStr[color];
- }
-
- public static string GetSerieLabelName(string prefix, int i, int j)
- {
- int key = i * 10000000 + j;
- if (s_SerieLabelName.ContainsKey(key))
- {
- return s_SerieLabelName[key];
- }
- else
- {
- string name = prefix + "_" + i + "_" + j;
- s_SerieLabelName[key] = name;
- return name;
- }
- }
-
- internal static string GetComponentObjectName(MainComponent component)
- {
- Dictionary<int, string> dict;
- var type = component.GetType();
- if (s_ComponentObjectName.TryGetValue(type, out dict))
- {
- string name;
- if (!dict.TryGetValue(component.index, out name))
- {
- name = GetTypeName(type) + component.index;
- dict[component.index] = name;
- }
- return name;
- }
- else
- {
- var name = GetTypeName(type) + component.index;
- dict = new Dictionary<int, string>();
- dict.Add(component.index, name);
- s_ComponentObjectName[type] = dict;
- return name;
- }
- }
-
- internal static string GetAxisLabelName(int index)
- {
- string name;
- if (!s_AxisLabelName.TryGetValue(index, out name))
- {
- name = s_DefaultAxis + index;
- s_AxisLabelName[index] = name;
- return name;
- }
- else
- {
- return name;
- }
- }
-
- internal static string GetTypeName<T>()
- {
- return GetTypeName(typeof(T));
- }
-
- internal static string GetTypeName(Type type)
- {
- if (s_TypeName.ContainsKey(type)) return s_TypeName[type];
- else
- {
- var name = type.Name;
- s_TypeName[type] = name;
- return name;
- }
- }
- }
- }
|