Unity 避免Text组件每行开头不是字符和空格,适配不同分辨率

using System.Collections;

using System.Collections.Generic;

using System.Text.RegularExpressions;

using UnityEngine;

using UnityEngine.UI;

/// <summary>

/// Text组件首行标点符号优化排版工具

/// 自动检测并处理行首标点符号,避免出现句首标点的尴尬排版

/// </summary>

public class TextSymbolWrap : MonoBehaviour

{

public Text textCom;

private string origStr;

private string replaceStr;

private string finalReplaceStr;

/// 标记不换行的空格(换行空格Unicode编码为/u0020,不换行的/u00A0)

public static readonly string Non_breaking_space = "\u00A0";

/// 用于匹配标点符号,为了不破坏富文本标签,所以只匹配指定的符号

private readonly string strPunctuation = @",。??!!...";

/// 用于存储text组件中的内容

private System.Text.StringBuilder TempText = null;

/// 用于存储text生成器中的内容

private IList<UILineInfo> TextLine;

private int screenWidth = 0;

private int screenHeight = 0;

//在替换后的文本最后面添加一个看不到的字符,以用于辨别当前输入的文本是不是原始文本

private string endString = " ";

private bool isReplacing = false;

private void OnEnable()

{

isReplacing = false;

CheckTextComponent();

CheckScreenSizeChange();

ReplaceTextFun();

}

void Update()

{

// 当屏幕分辨率发生变化时,恢复原文本并重新计算,防止排版错乱

if (CheckScreenSizeChange())

{

if (textCom != null && !string.IsNullOrEmpty(origStr))

{

textCom.text = origStr;

replaceStr = "";

finalReplaceStr = "";

}

}

CheckReplaceText();

}

private bool CheckScreenSizeChange()

{

if (Screen.width != screenWidth || Screen.height != screenHeight)

{

screenWidth = Screen.width;

screenHeight = Screen.height;

return true;

}

return false;

}

private void CheckTextComponent()

{

if (textCom == null)

{

textCom = this.gameObject.GetComponent<Text>();

}

}

private void CheckReplaceText()

{

if (textCom == null || !CheckTextIsChange()) return;

ReplaceTextFun();

}

private void ReplaceTextFun()

{

if (isReplacing) return;

replaceStr = "";

finalReplaceStr = "";

StartCoroutine("ClearUpPunctuationMode", textCom);

}

private bool CheckTextIsChange()

{

if (textCom == null) return false;

return !string.Equals(textCom.text, finalReplaceStr);

}

IEnumerator ClearUpPunctuationMode(Text _component)

{

isReplacing = true;

// 不能立刻进行计算,要等渲染完上一帧才计算,故延迟60毫秒(约两帧多)

yield return new WaitForSeconds(0.06f);

if (string.IsNullOrEmpty(_component.text))

{

isReplacing = false;

}

else

{

string tempTxt = _component.text;

bool isOrigStr = false;

// 如果结尾没有特指标记字符,就认为是业务刚赋的值(即原始字符串)

if (tempTxttempTxt.Length - 1.ToString() != endString)

{

origStr = tempTxt;

isOrigStr = true;

}

TextLine = _component.cachedTextGenerator.lines;

int ChangeIndex = -1;

TempText = new System.Text.StringBuilder(_component.text);

// 从1开始遍历,只看第二行及以后的首字符

for (int i = 1; i < TextLine.Count; i++)

{

UILineInfo lineInfo = TextLinei;

int startCharIdx = lineInfo.startCharIdx;

if (TempText.Length <= startCharIdx) continue;

bool IsPunctuation = Regex.IsMatch(TempTextstartCharIdx.ToString(), strPunctuation);

// 将换行空格改成不换行空格后,如果首字符是不换行空格同样需要调整

if (TempTextstartCharIdx.ToString() == Non_breaking_space)

{

IsPunctuation = true;

}

if (IsPunctuation)

{

ChangeIndex = startCharIdx;

// 回退操作:判断提前一个字符后当前首字符是否仍是标点

while (IsPunctuation)

{

ChangeIndex -= 1;

if (ChangeIndex < 0) break;

IsPunctuation = Regex.IsMatch(TempTextChangeIndex.ToString(), strPunctuation);

if (TempTextChangeIndex.ToString() == Non_breaking_space)

{

IsPunctuation = true;

}

}

if (ChangeIndex < 0) continue;

// 在合适的位置手动插入换行符

if (TempTextChangeIndex - 1 != '\n')

TempText.Insert(ChangeIndex, "\n");

}

}

replaceStr = TempText.ToString();

// 如果最终排版有改动

if (!string.Equals(tempTxt, replaceStr))

{

if (isOrigStr)

{

replaceStr += endString;

}

_component.text = replaceStr;

}

else

{

// 计算后结果一致,证明当前文本排版已合法,记录状态防止死循环重复验证

finalReplaceStr = replaceStr;

}

isReplacing = false;

}

}

}

相关推荐
林川~0124 分钟前
Unity新输入系统使用笔记
unity·input system
小贺儿开发8 小时前
Unity 结合百度AI开放平台 手写文字识别
人工智能·科技·学习·unity·云服务·文字识别·手写文字
goujunwe12 小时前
GEO 评估方法:如何自测你的内容,会不会被 AI 引用
搜索引擎·网络安全·游戏引擎·全文检索·中文分词
林川~0121 小时前
Unity 万能物理检测工具:射线检测 / 范围检测 / 层级过滤 / 编辑器可视化(可直接拿去用)
游戏·unity·c#·射线检测·通用工具
yi碗汤园1 天前
MQTT消息队列遥测传输协议
网络·网络协议·unity
林川~011 天前
Unity 常用 API 与核心类全解:从生命周期到协程,附性能避坑清单(Unity 6 适配)
unity·游戏引擎·常用api
sensen_kiss1 天前
CPT306 Coursework 1 个人游戏作业——坦克大战
unity·游戏程序·游戏策划
蒸鱼Yuzheng1 天前
Unity 与 Unreal 测试工具怎么回答:Profiler、日志、自动化与证据链
测试工具·unity·性能分析·游戏测试·unrealengine
野区捕龙为宠1 天前
Unity WebGL平台 通过 URL 加载图片(UGUI RawImage / 模型材质)
unity·团结引擎
阿松爱学习2 天前
【Unity开发】FileStream 详解及用法指南
unity·c#·unity开发