少年修仙传客户端代码仓库
client_Wu Xijin
2019-04-16 fc714208ff3a320c3bb52bddd5ea3d91f647a206
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using System.Collections;
using System.Collections.Generic;
using System.Text;
using UnityEngine;
 
public abstract class TRichAnalysis<T> where T:class,new()
{
    private static T _inst = null;
 
    public static T Inst {
        get {
            if (_inst == null) {
                _inst = new T();
            }
            return _inst;
        }
    }
 
    protected static StringBuilder m_StringBuilder = new StringBuilder();
 
    protected static Dictionary<string, string> displayDic = new Dictionary<string, string>();
 
    public abstract string Analysis(string val,bool IsRich);
 
    public abstract string CalculateTextIndex(string val,int index);
 
    protected static readonly char SPLITEVENT = '|';
    protected static readonly char SPLITDATA = ' ';
    protected static readonly char SPLITVALUE = '=';
 
    private static string[] poolStrs=new string[1];
 
    protected string[] GetSplitEvent(string val)
    {
        return val.Split(SPLITEVENT);
    }
 
    protected string[] GetSplitData(string val)
    {
        return val.Split(SPLITDATA);
    }
 
    protected string[] GetSplitValue(string val)
    {
        if (WordAnalysis.Color_Start_Regex.IsMatch(val)) {
            poolStrs[0] = val;
            return poolStrs;
        }
        return val.Split(SPLITVALUE);
    }
}