@galacean/effects-plugin-rich-text 2.8.7 → 2.8.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -3,7 +3,7 @@
3
3
  * Description: Galacean Effects player rich text plugin
4
4
  * Author: Ant Group CO., Ltd.
5
5
  * Contributors: 云垣
6
- * Version: v2.8.7
6
+ * Version: v2.8.9
7
7
  */
8
8
 
9
9
  'use strict';
@@ -426,7 +426,7 @@ var RichTextLayout = /*#__PURE__*/ function() {
426
426
  // TODO: width 和 height 新版富文本计算没有地方用到
427
427
  this.width = 0;
428
428
  this.height = 0;
429
- var size = options.size, _options_textOverflow = options.textOverflow, textOverflow = _options_textOverflow === void 0 ? EFFECTS.spec.TextOverflow.clip : _options_textOverflow, _options_textVerticalAlign = options.textVerticalAlign, textVerticalAlign = _options_textVerticalAlign === void 0 ? EFFECTS.spec.TextVerticalAlign.middle : _options_textVerticalAlign, _options_textAlign = options.textAlign, textAlign = _options_textAlign === void 0 ? EFFECTS.spec.TextAlignment.left : _options_textAlign, _options_letterSpace = options.letterSpace, letterSpace = _options_letterSpace === void 0 ? 0 : _options_letterSpace, _options_lineHeight = options.lineHeight, lineHeight = _options_lineHeight === void 0 ? 0.571 : _options_lineHeight, _options_wrapEnabled = options.wrapEnabled, wrapEnabled = _options_wrapEnabled === void 0 ? false : _options_wrapEnabled, _options_maxTextWidth = options.maxTextWidth, maxTextWidth = _options_maxTextWidth === void 0 ? 350 : _options_maxTextWidth, _options_maxTextHeight = options.maxTextHeight, maxTextHeight = _options_maxTextHeight === void 0 ? 1000 : _options_maxTextHeight, _options_sizeMode = options.sizeMode, sizeMode = _options_sizeMode === void 0 ? EFFECTS.spec.TextSizeMode.autoWidth : _options_sizeMode, _options_useLegacyRichText = options.// @ts-expect-error 兼容旧版
429
+ var size = options.size, _options_textOverflow = options.textOverflow, textOverflow = _options_textOverflow === void 0 ? EFFECTS.spec.TextOverflow.clip : _options_textOverflow, _options_textVerticalAlign = options.textVerticalAlign, textVerticalAlign = _options_textVerticalAlign === void 0 ? EFFECTS.spec.TextVerticalAlign.middle : _options_textVerticalAlign, _options_textAlign = options.textAlign, textAlign = _options_textAlign === void 0 ? EFFECTS.spec.TextAlignment.left : _options_textAlign, _options_letterSpace = options.letterSpace, letterSpace = _options_letterSpace === void 0 ? 0 : _options_letterSpace, _options_lineHeight = options.lineHeight, lineHeight = _options_lineHeight === void 0 ? 0.571 : _options_lineHeight, _options_wrapEnabled = options.wrapEnabled, wrapEnabled = _options_wrapEnabled === void 0 ? false : _options_wrapEnabled, _options_maxTextWidth = options.maxTextWidth, maxTextWidth = _options_maxTextWidth === void 0 ? 350 : _options_maxTextWidth, _options_maxTextHeight = options.maxTextHeight, maxTextHeight = _options_maxTextHeight === void 0 ? 1000 : _options_maxTextHeight, _options_autoResize = options.autoResize, autoResize = _options_autoResize === void 0 ? EFFECTS.spec.TextSizeMode.autoWidth : _options_autoResize, _options_useLegacyRichText = options.// @ts-expect-error 兼容旧版
430
430
  useLegacyRichText, useLegacyRichText = _options_useLegacyRichText === void 0 ? false : _options_useLegacyRichText;
431
431
  this.letterSpace = letterSpace;
432
432
  this.lineHeight = lineHeight;
@@ -439,7 +439,7 @@ var RichTextLayout = /*#__PURE__*/ function() {
439
439
  this.wrapEnabled = wrapEnabled;
440
440
  this.maxTextWidth = maxTextWidth;
441
441
  this.maxTextHeight = maxTextHeight;
442
- this.sizeMode = sizeMode;
442
+ this.autoResize = autoResize;
443
443
  }
444
444
  var _proto = RichTextLayout.prototype;
445
445
  _proto.getOffsetY = function getOffsetY(style, lineCount, lineHeight, fontSize, totalLineHeight) {
@@ -520,7 +520,7 @@ var RichTextLayout = /*#__PURE__*/ function() {
520
520
  */ _proto.getOffsetXRich = function getOffsetXRich(style, maxWidth, contentW) {
521
521
  switch(this.textAlign){
522
522
  case EFFECTS.spec.TextAlignment.left:
523
- return style.outlineWidth * style.fontScale;
523
+ return style.outlineWidth;
524
524
  case EFFECTS.spec.TextAlignment.middle:
525
525
  return (maxWidth - contentW) / 2;
526
526
  case EFFECTS.spec.TextAlignment.right:
@@ -532,6 +532,7 @@ var RichTextLayout = /*#__PURE__*/ function() {
532
532
  /**
533
533
  * 设置文本框尺寸
534
534
  * - 不包含 fontScale 缩放
535
+ * @deprecated use maxTextWidth / maxTextHeight instead
535
536
  */ _proto.setSize = function setSize(width, height) {
536
537
  this.width = width;
537
538
  this.height = height;
@@ -618,11 +619,12 @@ var RichTextLayout = /*#__PURE__*/ function() {
618
619
  */ var RichWrapDisabledStrategy = /*#__PURE__*/ function() {
619
620
  function RichWrapDisabledStrategy() {}
620
621
  var _proto = RichWrapDisabledStrategy.prototype;
621
- _proto.computeLines = function computeLines(processedOptions, context, style, layout, singleLineHeight, fontScale, letterSpace, scaleFactor) {
622
+ _proto.computeLines = function computeLines(processedOptions, context, style, layout, letterSpace) {
622
623
  var _this = this;
623
624
  var lines = [];
624
625
  var baselines = [];
625
- var gapPx = (layout.lineHeight || 0) * fontScale;
626
+ var gapPx = layout.lineHeight || 0;
627
+ var scaleFactor = 1 / 10; // 1/10px, 后面 context.font 设置的字号为10px
626
628
  var currentLine = this.createNewLine();
627
629
  var maxLineWidth = 0;
628
630
  var totalHeight = 0;
@@ -630,8 +632,8 @@ var RichTextLayout = /*#__PURE__*/ function() {
630
632
  if (currentLine.chars.length === 0) {
631
633
  return;
632
634
  }
633
- // 第1行用真实首行高度,其余行用 gapPx
634
- currentLine.lineHeight = lines.length === 0 ? (currentLine.lineAscent || 0) + (currentLine.lineDescent || 0) : gapPx;
635
+ // 所有行都使用配置的行高(gapPx
636
+ currentLine.lineHeight = gapPx;
635
637
  // 记录本行基线
636
638
  var baseline = lines.length === 0 ? 0 : baselines[baselines.length - 1] + gapPx;
637
639
  baselines.push(baseline);
@@ -651,22 +653,20 @@ var RichTextLayout = /*#__PURE__*/ function() {
651
653
  context.font = fontStyle + " " + (options.fontWeight || style.textWeight) + " 10px " + (options.fontFamily || style.fontFamily);
652
654
  // 记录段起始 x
653
655
  currentLine.offsetX.push(currentLine.width);
654
- // 逐字宽度和高度测量(asc/desc 测量)
656
+ // 预计算缩放因子:measureText 基于 10px,乘 fontSize/10 得到逻辑像素
657
+ var glyphScale = fontSize * scaleFactor;
658
+ // 使用字体级别度量(不随具体字符变化),保证基线位置稳定
659
+ var refMetrics = context.measureText("x");
660
+ var fontAsc = refMetrics.fontBoundingBoxAscent * glyphScale;
661
+ var fontDesc = refMetrics.fontBoundingBoxDescent * glyphScale;
662
+ // 逐字宽度测量
655
663
  var segmentInnerX = 0;
656
664
  var charArr = [];
657
- var lineAscent = 0;
658
- var lineDescent = 0;
659
665
  for(var i = 0; i < text.length; i++){
660
666
  var ch = text[i];
661
667
  var m = context.measureText(ch);
662
668
  var w = m.width;
663
- var charWidth = (w <= 0 ? 0 : w) * fontSize * scaleFactor * fontScale;
664
- // 测量 asc/desc 并按目标字号缩放
665
- var scale = fontSize * fontScale * scaleFactor;
666
- var asc = m.actualBoundingBoxAscent * scale;
667
- var desc = m.actualBoundingBoxDescent * scale;
668
- lineAscent = Math.max(lineAscent, asc);
669
- lineDescent = Math.max(lineDescent, desc);
669
+ var charWidth = (w <= 0 ? 0 : w) * glyphScale;
670
670
  if (i > 0) {
671
671
  segmentInnerX += letterSpace; // 先加"前一个字符与当前字符之间"的间距
672
672
  }
@@ -679,13 +679,13 @@ var RichTextLayout = /*#__PURE__*/ function() {
679
679
  currentLine.chars.push(charArr);
680
680
  currentLine.width += segmentInnerX;
681
681
  currentLine.richOptions.push(options);
682
- // 累计行级 asc/desc
683
- currentLine.lineAscent = Math.max(currentLine.lineAscent || 0, lineAscent);
684
- currentLine.lineDescent = Math.max(currentLine.lineDescent || 0, lineDescent);
682
+ // 累计行级 asc/desc(字体级别,不因字符形状改变)
683
+ currentLine.lineAscent = Math.max(currentLine.lineAscent || 0, fontAsc);
684
+ currentLine.lineDescent = Math.max(currentLine.lineDescent || 0, fontDesc);
685
685
  });
686
686
  // 结束最后一行
687
687
  finishCurrentLine();
688
- // 计算 bbox
688
+ // 计算 bbox(包含行高带来的上下边距)
689
689
  var bboxTop = Infinity;
690
690
  var bboxBottom = -Infinity;
691
691
  if (lines.length === 0) {
@@ -699,8 +699,12 @@ var RichTextLayout = /*#__PURE__*/ function() {
699
699
  };
700
700
  }
701
701
  for(var i = 0; i < lines.length; i++){
702
- bboxTop = Math.min(bboxTop, baselines[i] - (lines[i].lineAscent || 0));
703
- bboxBottom = Math.max(bboxBottom, baselines[i] + (lines[i].lineDescent || 0));
702
+ var asc = lines[i].lineAscent || 0;
703
+ var desc = lines[i].lineDescent || 0;
704
+ var textHeight = asc + desc;
705
+ var margin = (gapPx - textHeight) / 2;
706
+ bboxTop = Math.min(bboxTop, baselines[i] - asc - margin);
707
+ bboxBottom = Math.max(bboxBottom, baselines[i] + desc + margin);
704
708
  }
705
709
  var bboxHeight = bboxBottom - bboxTop;
706
710
  return {
@@ -735,11 +739,14 @@ var RichTextLayout = /*#__PURE__*/ function() {
735
739
  */ var RichWrapEnabledStrategy = /*#__PURE__*/ function() {
736
740
  function RichWrapEnabledStrategy() {}
737
741
  var _proto = RichWrapEnabledStrategy.prototype;
738
- _proto.computeLines = function computeLines(processedOptions, context, style, layout, singleLineHeight, fontScale, letterSpace, scaleFactor) {
742
+ _proto.computeLines = function computeLines(processedOptions, context, style, layout, letterSpace) {
739
743
  var _this = this;
740
744
  var lines = [];
741
745
  var baselines = [];
742
- var gapPx = (layout.lineHeight || 0) * fontScale;
746
+ var gapPx = layout.lineHeight || 0;
747
+ var scaleFactor = 1 / 10; // 1/10px, 后面 context.font 设置的字号为10px
748
+ // 换行阈值,预计算避免每字符重复读取
749
+ var wrapWidth = layout.maxTextWidth || Infinity;
743
750
  var currentLine = this.createNewLine();
744
751
  var maxLineWidth = 0;
745
752
  var totalHeight = 0;
@@ -754,8 +761,8 @@ var RichTextLayout = /*#__PURE__*/ function() {
754
761
  if (currentLine.chars.length === 0) {
755
762
  return;
756
763
  }
757
- // 第1行用真实首行高度,其余行用 gapPx
758
- currentLine.lineHeight = lines.length === 0 ? (currentLine.lineAscent || 0) + (currentLine.lineDescent || 0) : gapPx;
764
+ // 所有行都使用配置的行高(gapPx
765
+ currentLine.lineHeight = gapPx;
759
766
  // 记录本行基线
760
767
  var baseline = lines.length === 0 ? 0 : baselines[baselines.length - 1] + gapPx;
761
768
  baselines.push(baseline);
@@ -797,22 +804,24 @@ var RichTextLayout = /*#__PURE__*/ function() {
797
804
  flushChunk();
798
805
  finishCurrentLine();
799
806
  }
807
+ // 预计算缩放因子:measureText 基于 10px,乘 fontSize/10 得到逻辑像素
808
+ var glyphScale = fontSize * scaleFactor;
809
+ // 使用字体级别度量(不随具体字符变化),保证基线位置稳定
810
+ var refMetrics = context.measureText("x");
811
+ var fontAsc = refMetrics.fontBoundingBoxAscent * glyphScale;
812
+ var fontDesc = refMetrics.fontBoundingBoxDescent * glyphScale;
800
813
  // 逐字符处理
801
814
  for(var i = 0; i < text.length; i++){
802
815
  var ch = text[i];
803
816
  // 获取基础宽度并计算实际宽度(动态缩放)
804
817
  var m = context.measureText(ch);
805
818
  var baseW = m.width;
806
- var charWidth = (baseW <= 0 ? 0 : baseW) * fontSize * scaleFactor * fontScale;
807
- // 测量 asc/desc 并按目标字号缩放
808
- var scale = fontSize * fontScale * scaleFactor;
809
- var asc = m.actualBoundingBoxAscent * scale;
810
- var desc = m.actualBoundingBoxDescent * scale;
819
+ var charWidth = (baseW <= 0 ? 0 : baseW) * glyphScale;
811
820
  // 计算预期宽度(包含字符间距)
812
821
  var spacing = chunkChars.length > 0 ? letterSpace : 0;
813
822
  var willWidth = currentLine.width + spacing + charWidth;
814
823
  // 自动换行判断
815
- if (willWidth > (layout.maxTextWidth * fontScale || Infinity)) {
824
+ if (willWidth > wrapWidth) {
816
825
  flushChunk();
817
826
  finishCurrentLine();
818
827
  }
@@ -831,9 +840,9 @@ var RichTextLayout = /*#__PURE__*/ function() {
831
840
  char: ch,
832
841
  x: segmentInnerX
833
842
  });
834
- // 累计行级 asc/desc
835
- currentLine.lineAscent = Math.max(currentLine.lineAscent || 0, asc);
836
- currentLine.lineDescent = Math.max(currentLine.lineDescent || 0, desc);
843
+ // 累计行级 asc/desc(字体级别,不因字符形状改变)
844
+ currentLine.lineAscent = Math.max(currentLine.lineAscent || 0, fontAsc);
845
+ currentLine.lineDescent = Math.max(currentLine.lineDescent || 0, fontDesc);
837
846
  // 更新位置和宽度
838
847
  segmentInnerX += charWidth;
839
848
  currentLine.width += charWidth;
@@ -843,12 +852,26 @@ var RichTextLayout = /*#__PURE__*/ function() {
843
852
  });
844
853
  // 结束最后一行
845
854
  finishCurrentLine();
846
- // 计算 bbox
855
+ // 计算 bbox(包含行高带来的上下边距)
847
856
  var bboxTop = Infinity;
848
857
  var bboxBottom = -Infinity;
858
+ if (lines.length === 0) {
859
+ return {
860
+ lines: lines,
861
+ maxLineWidth: maxLineWidth,
862
+ totalHeight: totalHeight,
863
+ bboxTop: 0,
864
+ bboxBottom: 0,
865
+ bboxHeight: 0
866
+ };
867
+ }
849
868
  for(var i = 0; i < lines.length; i++){
850
- bboxTop = Math.min(bboxTop, baselines[i] - (lines[i].lineAscent || 0));
851
- bboxBottom = Math.max(bboxBottom, baselines[i] + (lines[i].lineDescent || 0));
869
+ var asc = lines[i].lineAscent || 0;
870
+ var desc = lines[i].lineDescent || 0;
871
+ var textHeight = asc + desc;
872
+ var margin = (gapPx - textHeight) / 2;
873
+ bboxTop = Math.min(bboxTop, baselines[i] - asc - margin);
874
+ bboxBottom = Math.max(bboxBottom, baselines[i] + desc + margin);
852
875
  }
853
876
  var bboxHeight = bboxBottom - bboxTop;
854
877
  return {
@@ -877,117 +900,117 @@ var RichTextLayout = /*#__PURE__*/ function() {
877
900
  return RichWrapEnabledStrategy;
878
901
  }();
879
902
 
880
- /**
881
- * 富文本 Display 溢出策略
882
- * 在溢出策略中对所有几何量进行一次性缩放
883
- */ var RichDisplayOverflowStrategy = /*#__PURE__*/ function() {
884
- function RichDisplayOverflowStrategy() {}
885
- var _proto = RichDisplayOverflowStrategy.prototype;
886
- _proto.apply = function apply(lines, sizeResult, layout, style) {
887
- // 安全处理除零情况
888
- var safeDiv = function(a, b) {
889
- return Math.abs(b) > 1e-5 ? a / b : 1;
890
- };
891
- // 用像素空间计算
892
- var frameWpx = layout.maxTextWidth * style.fontScale;
893
- var frameHpx = layout.maxTextHeight * style.fontScale;
894
- var _sizeResult_contentWidth;
895
- var contentWpx = Math.max(1, (_sizeResult_contentWidth = sizeResult.contentWidth) != null ? _sizeResult_contentWidth : sizeResult.canvasWidth);
896
- var _sizeResult_bboxHeight;
897
- var contentHpx = Math.max(1, (_sizeResult_bboxHeight = sizeResult.bboxHeight) != null ? _sizeResult_bboxHeight : sizeResult.canvasHeight);
898
- // 只缩小不放大(基于像素空间计算)
899
- var s = Math.min(1, safeDiv(frameWpx, contentWpx), safeDiv(frameHpx, contentHpx));
900
- // 浮点精度处理
901
- if (s > 0.9999) {
902
- return {
903
- globalScale: 1
904
- };
905
- }
906
- // 统一缩放所有几何量
907
- for(var _iterator = _create_for_of_iterator_helper_loose(lines), _step; !(_step = _iterator()).done;){
908
- var line = _step.value;
909
- line.width *= s;
910
- line.lineHeight *= s; // 缩小行距(你的 gap-only 模式行高=gapPx)
911
- if (line.offsetX) {
912
- for(var i = 0; i < line.offsetX.length; i++){
913
- line.offsetX[i] *= s;
914
- }
915
- }
916
- for(var _iterator1 = _create_for_of_iterator_helper_loose(line.chars || []), _step1; !(_step1 = _iterator1()).done;){
917
- var seg = _step1.value;
918
- for(var _iterator2 = _create_for_of_iterator_helper_loose(seg), _step2; !(_step2 = _iterator2()).done;){
919
- var ch = _step2.value;
920
- ch.x *= s;
921
- }
922
- }
923
- for(var _iterator3 = _create_for_of_iterator_helper_loose(line.richOptions || []), _step3; !(_step3 = _iterator3()).done;){
924
- var opt = _step3.value;
925
- opt.fontSize *= s; // 缩小字形
926
- }
927
- // 同步缩放 asc/desc
928
- if (line.lineAscent != null) {
929
- line.lineAscent *= s;
930
- }
931
- if (line.lineDescent != null) {
932
- line.lineDescent *= s;
933
- }
934
- }
935
- return {
936
- globalScale: s
937
- };
938
- };
939
- return RichDisplayOverflowStrategy;
940
- }();
941
-
942
903
  /**
943
904
  * Clip 溢出策略
944
- * 超出画布部分自然裁切
905
+ * 画布尺寸固定为帧尺寸,超出部分自然裁切
906
+ * 不依赖对齐模式
945
907
  */ var RichClippedOverflowStrategy = /*#__PURE__*/ function() {
946
908
  function RichClippedOverflowStrategy() {}
947
909
  var _proto = RichClippedOverflowStrategy.prototype;
948
- _proto.apply = function apply(lines, sizeResult, layout, style) {
949
- // 不进行任何缩放,直接返回单位缩放系数
910
+ _proto.resolveCanvas = function resolveCanvas(lines, frameWidth, frameHeight, horizontalResult, verticalResult) {
950
911
  return {
951
- globalScale: 1
912
+ canvasWidth: Math.max(1, Math.ceil(frameWidth)),
913
+ canvasHeight: Math.max(1, Math.ceil(frameHeight)),
914
+ renderOffsetX: 0,
915
+ renderOffsetY: 0
952
916
  };
953
917
  };
954
918
  return RichClippedOverflowStrategy;
955
919
  }();
956
920
 
957
921
  /**
958
- * Visible 溢出策略
959
- * 允许内容超出画布可见
960
- */ var RichVisibleOverflowStrategy = /*#__PURE__*/ function() {
961
- function RichVisibleOverflowStrategy() {}
962
- var _proto = RichVisibleOverflowStrategy.prototype;
963
- _proto.apply = function apply(lines, sizeResult, layout, style) {
964
- // 不进行任何缩放或裁剪
922
+ * 扩展画布溢出策略(visible / display 模式共用)
923
+ *
924
+ * 根据对齐后的内容位置检测溢出,对称扩展画布以容纳所有内容。
925
+ * 不依赖对齐模式(textAlign / textVerticalAlign)的枚举值,
926
+ * 仅使用对齐策略输出的位置和行的度量数据。
927
+ *
928
+ * 对称扩展的原因:元素定位以中心点为锚点,
929
+ * 单侧扩展会导致视觉偏移。使用 max(溢出左, 溢出右) 作为双侧扩展量
930
+ * 可以保持中心点稳定并兼容所有对齐模式。
931
+ */ var RichExpandingOverflowStrategy = /*#__PURE__*/ function() {
932
+ function RichExpandingOverflowStrategy() {}
933
+ var _proto = RichExpandingOverflowStrategy.prototype;
934
+ _proto.resolveCanvas = function resolveCanvas(lines, frameWidth, frameHeight, horizontalResult, verticalResult) {
935
+ if (lines.length === 0) {
936
+ return {
937
+ canvasWidth: Math.max(1, frameWidth),
938
+ canvasHeight: Math.max(1, frameHeight),
939
+ renderOffsetX: 0,
940
+ renderOffsetY: 0
941
+ };
942
+ }
943
+ // ── 垂直溢出检测 ──
944
+ // 遍历每行基线,结合 ascent/descent 找出实际渲染范围
945
+ var contentTop = Infinity;
946
+ var contentBottom = -Infinity;
947
+ var currentY = verticalResult.baselineY;
948
+ for(var i = 0; i < lines.length; i++){
949
+ var _lines_i_lineAscent;
950
+ var asc = (_lines_i_lineAscent = lines[i].lineAscent) != null ? _lines_i_lineAscent : 0;
951
+ var _lines_i_lineDescent;
952
+ var desc = (_lines_i_lineDescent = lines[i].lineDescent) != null ? _lines_i_lineDescent : 0;
953
+ // 当 lineHeight >= textHeight 时,margin 为正,需要把行高边距纳入内容范围;
954
+ // 当 lineHeight < textHeight 时,margin 为负,此时字形超出行高框,
955
+ // 必须用原始字形边界(margin=0),否则负 margin 会把边界向内收缩,
956
+ // 导致检测不到溢出,最终首行顶部/末行底部被裁切。
957
+ var textHeight = asc + desc;
958
+ var margin = Math.max(0, (lines[i].lineHeight - textHeight) / 2);
959
+ contentTop = Math.min(contentTop, currentY - asc - margin);
960
+ contentBottom = Math.max(contentBottom, currentY + desc + margin);
961
+ if (i < lines.length - 1) {
962
+ currentY += lines[i + 1].lineHeight;
963
+ }
964
+ }
965
+ var overflowTop = Math.max(0, -contentTop);
966
+ var overflowBottom = Math.max(0, contentBottom - frameHeight);
967
+ // 对称扩展(保持中心点稳定)
968
+ var expandV = Math.max(overflowTop, overflowBottom);
969
+ // ── 水平溢出检测 ──
970
+ var contentLeft = Infinity;
971
+ var contentRight = -Infinity;
972
+ for(var i1 = 0; i1 < lines.length; i1++){
973
+ var _horizontalResult_lineOffsets_i;
974
+ var xOff = (_horizontalResult_lineOffsets_i = horizontalResult.lineOffsets[i1]) != null ? _horizontalResult_lineOffsets_i : 0;
975
+ var _lines_i_width;
976
+ var w = (_lines_i_width = lines[i1].width) != null ? _lines_i_width : 0;
977
+ contentLeft = Math.min(contentLeft, xOff);
978
+ contentRight = Math.max(contentRight, xOff + w);
979
+ }
980
+ if (!isFinite(contentLeft)) {
981
+ contentLeft = 0;
982
+ }
983
+ if (!isFinite(contentRight)) {
984
+ contentRight = 0;
985
+ }
986
+ var overflowLeft = Math.max(0, -contentLeft);
987
+ var overflowRight = Math.max(0, contentRight - frameWidth);
988
+ // 对称扩展
989
+ var expandH = Math.max(overflowLeft, overflowRight);
990
+ // ── 最终画布尺寸 ──
991
+ var canvasWidth = Math.ceil(frameWidth + expandH * 2);
992
+ var canvasHeight = Math.ceil(frameHeight + expandV * 2);
965
993
  return {
966
- globalScale: 1
994
+ canvasWidth: Math.max(1, canvasWidth),
995
+ canvasHeight: Math.max(1, canvasHeight),
996
+ renderOffsetX: expandH,
997
+ renderOffsetY: expandV
967
998
  };
968
999
  };
969
- return RichVisibleOverflowStrategy;
1000
+ return RichExpandingOverflowStrategy;
970
1001
  }();
971
1002
 
972
1003
  /**
973
1004
  * 富文本水平对齐策略
974
- * 直接使用已缩放的行宽计算偏移量
1005
+ * 在帧坐标系中计算每行的水平偏移,不依赖溢出模式
975
1006
  */ var RichHorizontalAlignStrategyImpl = /*#__PURE__*/ function() {
976
1007
  function RichHorizontalAlignStrategyImpl() {}
977
1008
  var _proto = RichHorizontalAlignStrategyImpl.prototype;
978
- _proto.getHorizontalOffsets = function getHorizontalOffsets(lines, sizeResult, overflowResult, layout, style) {
979
- var _sizeResult_containerWidth;
980
- var containerWidthPx = (_sizeResult_containerWidth = sizeResult.containerWidth) != null ? _sizeResult_containerWidth : layout.maxTextWidth * style.fontScale;
981
- var _sizeResult_baselineCompensationX;
982
- var compX = (_sizeResult_baselineCompensationX = sizeResult.baselineCompensationX) != null ? _sizeResult_baselineCompensationX : 0;
983
- // 使用像素单位的容器宽度
984
- var baseOffsets = lines.map(function(line) {
985
- return layout.getOffsetXRich(style, containerWidthPx, line.width);
1009
+ _proto.getHorizontalOffsets = function getHorizontalOffsets(lines, frameWidth, layout, style) {
1010
+ // 在帧坐标系 [0, frameWidth] 中计算对齐偏移
1011
+ var lineOffsets = lines.map(function(line) {
1012
+ return layout.getOffsetXRich(style, frameWidth, line.width);
986
1013
  });
987
- // visible 模式下使用 baseOffset + baselineCompensationX
988
- var lineOffsets = layout.overflow === EFFECTS.spec.TextOverflow.visible ? baseOffsets.map(function(x) {
989
- return x + compX;
990
- }) : baseOffsets;
991
1014
  return {
992
1015
  lineOffsets: lineOffsets
993
1016
  };
@@ -997,147 +1020,63 @@ var RichTextLayout = /*#__PURE__*/ function() {
997
1020
 
998
1021
  /**
999
1022
  * 富文本垂直对齐策略
1000
- * 直接使用已缩放的行高
1023
+ * 在帧坐标系中计算基线位置,不依赖溢出模式
1024
+ *
1025
+ * 算法:
1026
+ * 1. 从行数据重建各行基线(baseline[0]=0, baseline[i]=baseline[i-1]+lineHeight[i])
1027
+ * 2. 计算 bbox(包含行高边距)
1028
+ * 3. 根据 textVerticalAlign 将内容定位到帧中
1001
1029
  */ var RichVerticalAlignStrategyImpl = /*#__PURE__*/ function() {
1002
1030
  function RichVerticalAlignStrategyImpl() {}
1003
1031
  var _proto = RichVerticalAlignStrategyImpl.prototype;
1004
- _proto.getVerticalOffsets = function getVerticalOffsets(lines, sizeResult, overflowResult, layout, style, singleLineHeight) {
1005
- var _sizeResult_baselineCompensationY;
1006
- var compY = (_sizeResult_baselineCompensationY = sizeResult.baselineCompensationY) != null ? _sizeResult_baselineCompensationY : 0;
1007
- var baselineY = 0;
1032
+ _proto.getVerticalOffsets = function getVerticalOffsets(lines, frameHeight, layout) {
1008
1033
  if (lines.length === 0) {
1009
1034
  return {
1010
1035
  baselineY: 0,
1011
1036
  lineYOffsets: []
1012
1037
  };
1013
1038
  }
1014
- switch(layout.overflow){
1015
- case EFFECTS.spec.TextOverflow.visible:
1016
- {
1017
- // frame-based 计算
1018
- var frameHpx = layout.maxTextHeight * style.fontScale;
1019
- var _sizeResult_bboxTop;
1020
- var bboxTop = (_sizeResult_bboxTop = sizeResult.bboxTop) != null ? _sizeResult_bboxTop : 0;
1021
- var _sizeResult_bboxHeight, _sizeResult_bboxBottom;
1022
- var bboxBottom = (_sizeResult_bboxBottom = sizeResult.bboxBottom) != null ? _sizeResult_bboxBottom : bboxTop + ((_sizeResult_bboxHeight = sizeResult.bboxHeight) != null ? _sizeResult_bboxHeight : 0);
1023
- var _sizeResult_bboxHeight1;
1024
- var bboxHeight = (_sizeResult_bboxHeight1 = sizeResult.bboxHeight) != null ? _sizeResult_bboxHeight1 : bboxBottom - bboxTop;
1025
- // 计算 frame 基线
1026
- var baselineYFrame = 0;
1027
- switch(layout.textVerticalAlign){
1028
- case EFFECTS.spec.TextVerticalAlign.top:
1029
- baselineYFrame = -bboxTop;
1030
- break;
1031
- case EFFECTS.spec.TextVerticalAlign.middle:
1032
- baselineYFrame = (frameHpx - bboxHeight) / 2 - bboxTop;
1033
- break;
1034
- case EFFECTS.spec.TextVerticalAlign.bottom:
1035
- baselineYFrame = frameHpx - bboxHeight - bboxTop;
1036
- break;
1037
- }
1038
- baselineY = baselineYFrame + compY; // 关键:叠加"向下移动 E"
1039
- break;
1040
- }
1041
- case EFFECTS.spec.TextOverflow.clip:
1042
- {
1043
- // 让 clip 垂直对齐逻辑与 display 保持一致(基于 bbox 的几何模型)
1044
- var frameHpx1 = layout.maxTextHeight * style.fontScale;
1045
- // 用缩放后的行数据重建 baselines 和 bbox
1046
- var baselines = [
1047
- 0
1048
- ];
1049
- for(var i = 1; i < lines.length; i++){
1050
- baselines[i] = baselines[i - 1] + lines[i].lineHeight;
1051
- }
1052
- var bboxTop1 = Infinity;
1053
- var bboxBottom1 = -Infinity;
1054
- for(var i1 = 0; i1 < lines.length; i1++){
1055
- var _lines_i_lineAscent;
1056
- var asc = (_lines_i_lineAscent = lines[i1].lineAscent) != null ? _lines_i_lineAscent : 0;
1057
- var _lines_i_lineDescent;
1058
- var desc = (_lines_i_lineDescent = lines[i1].lineDescent) != null ? _lines_i_lineDescent : 0;
1059
- bboxTop1 = Math.min(bboxTop1, baselines[i1] - asc);
1060
- bboxBottom1 = Math.max(bboxBottom1, baselines[i1] + desc);
1061
- }
1062
- var bboxHeight1 = bboxBottom1 - bboxTop1;
1063
- var baselineClipY = 0;
1064
- switch(layout.textVerticalAlign){
1065
- case EFFECTS.spec.TextVerticalAlign.top:
1066
- baselineClipY = -bboxTop1;
1067
- break;
1068
- case EFFECTS.spec.TextVerticalAlign.middle:
1069
- baselineClipY = (frameHpx1 - bboxHeight1) / 2 - bboxTop1;
1070
- break;
1071
- case EFFECTS.spec.TextVerticalAlign.bottom:
1072
- baselineClipY = frameHpx1 - bboxHeight1 - bboxTop1;
1073
- break;
1074
- }
1075
- baselineY = baselineClipY + compY;
1076
- break;
1077
- }
1078
- case EFFECTS.spec.TextOverflow.display:
1079
- {
1080
- // display 垂直对齐改为基于 bbox,而不是 getOffsetYRich
1081
- var frameHpx2 = layout.maxTextHeight * style.fontScale;
1082
- // 用缩放后的行数据重建 baselines 和 bbox
1083
- var baselines1 = [
1084
- 0
1085
- ];
1086
- for(var i2 = 1; i2 < lines.length; i2++){
1087
- baselines1[i2] = baselines1[i2 - 1] + lines[i2].lineHeight;
1088
- }
1089
- // 计算 bboxTop / bboxBottom(使用行的测量值 lineAscent/lineDescent)
1090
- var bboxTop2 = Infinity;
1091
- var bboxBottom2 = -Infinity;
1092
- for(var i3 = 0; i3 < lines.length; i3++){
1093
- var _lines_i_lineAscent1;
1094
- var asc1 = (_lines_i_lineAscent1 = lines[i3].lineAscent) != null ? _lines_i_lineAscent1 : 0;
1095
- var _lines_i_lineDescent1;
1096
- var desc1 = (_lines_i_lineDescent1 = lines[i3].lineDescent) != null ? _lines_i_lineDescent1 : 0;
1097
- bboxTop2 = Math.min(bboxTop2, baselines1[i3] - asc1);
1098
- bboxBottom2 = Math.max(bboxBottom2, baselines1[i3] + desc1);
1099
- }
1100
- var bboxHeight2 = bboxBottom2 - bboxTop2;
1101
- // 计算 display 模式的基线
1102
- var baselineDisplayY = 0;
1103
- switch(layout.textVerticalAlign){
1104
- case EFFECTS.spec.TextVerticalAlign.top:
1105
- baselineDisplayY = -bboxTop2;
1106
- break;
1107
- case EFFECTS.spec.TextVerticalAlign.middle:
1108
- baselineDisplayY = (frameHpx2 - bboxHeight2) / 2 - bboxTop2;
1109
- break;
1110
- case EFFECTS.spec.TextVerticalAlign.bottom:
1111
- baselineDisplayY = frameHpx2 - bboxHeight2 - bboxTop2;
1112
- break;
1113
- }
1114
- // 后续 lineYOffsets 保持按行高累计
1115
- var lineYOffsets = [];
1116
- var currentY = baselineDisplayY;
1117
- for(var i4 = 0; i4 < lines.length; i4++){
1118
- lineYOffsets.push(currentY);
1119
- if (i4 < lines.length - 1) {
1120
- currentY += lines[i4 + 1].lineHeight;
1121
- }
1122
- }
1123
- return {
1124
- baselineY: baselineDisplayY,
1125
- lineYOffsets: lineYOffsets
1126
- };
1127
- }
1039
+ // 1. 重建各行基线(相对于第一行基线=0)
1040
+ var baselines = [
1041
+ 0
1042
+ ];
1043
+ for(var i = 1; i < lines.length; i++){
1044
+ baselines[i] = baselines[i - 1] + lines[i].lineHeight;
1128
1045
  }
1129
- // 下面行偏移保持不变
1130
- var lineYOffsets1 = [];
1131
- var currentY1 = baselineY;
1132
- lines.forEach(function(line, index) {
1133
- lineYOffsets1.push(currentY1);
1134
- if (index < lines.length - 1) {
1135
- currentY1 += lines[index + 1].lineHeight;
1136
- }
1046
+ // 2. 计算内容 bbox(含行高边距)
1047
+ var bboxTop = Infinity;
1048
+ var bboxBottom = -Infinity;
1049
+ for(var i1 = 0; i1 < lines.length; i1++){
1050
+ var _lines_i_lineAscent;
1051
+ var asc = (_lines_i_lineAscent = lines[i1].lineAscent) != null ? _lines_i_lineAscent : 0;
1052
+ var _lines_i_lineDescent;
1053
+ var desc = (_lines_i_lineDescent = lines[i1].lineDescent) != null ? _lines_i_lineDescent : 0;
1054
+ var textHeight = asc + desc;
1055
+ var margin = (lines[i1].lineHeight - textHeight) / 2;
1056
+ bboxTop = Math.min(bboxTop, baselines[i1] - asc - margin);
1057
+ bboxBottom = Math.max(bboxBottom, baselines[i1] + desc + margin);
1058
+ }
1059
+ var bboxHeight = bboxBottom - bboxTop;
1060
+ // 3. 在帧坐标系 [0, frameHeight] 中定位第一行基线
1061
+ var baselineY = 0;
1062
+ switch(layout.textVerticalAlign){
1063
+ case EFFECTS.spec.TextVerticalAlign.top:
1064
+ baselineY = -bboxTop;
1065
+ break;
1066
+ case EFFECTS.spec.TextVerticalAlign.middle:
1067
+ baselineY = (frameHeight - bboxHeight) / 2 - bboxTop;
1068
+ break;
1069
+ case EFFECTS.spec.TextVerticalAlign.bottom:
1070
+ baselineY = frameHeight - bboxHeight - bboxTop;
1071
+ break;
1072
+ }
1073
+ // 4. 各行 Y 坐标
1074
+ var lineYOffsets = baselines.map(function(b) {
1075
+ return baselineY + b;
1137
1076
  });
1138
1077
  return {
1139
1078
  baselineY: baselineY,
1140
- lineYOffsets: lineYOffsets1
1079
+ lineYOffsets: lineYOffsets
1141
1080
  };
1142
1081
  };
1143
1082
  return RichVerticalAlignStrategyImpl;
@@ -1146,11 +1085,12 @@ var RichTextLayout = /*#__PURE__*/ function() {
1146
1085
  /**
1147
1086
  * 富文本策略工厂
1148
1087
  * 负责创建各种策略实例
1088
+ *
1089
+ * 管线顺序:Wrap → scaleLinesToFit(display)→ Align → Overflow.resolveCanvas
1149
1090
  */ var RichTextStrategyFactory = /*#__PURE__*/ function() {
1150
1091
  function RichTextStrategyFactory() {}
1151
1092
  /**
1152
1093
  * 创建换行策略
1153
- * 根据wrapEnabled参数决定使用哪种策略
1154
1094
  */ RichTextStrategyFactory.createWrapStrategy = function createWrapStrategy(wrapEnabled) {
1155
1095
  if (wrapEnabled) {
1156
1096
  return new RichWrapEnabledStrategy();
@@ -1159,17 +1099,17 @@ var RichTextLayout = /*#__PURE__*/ function() {
1159
1099
  }
1160
1100
  };
1161
1101
  /**
1162
- * 创建溢出策略
1163
- * 支持三种模式:clip(裁切)、display(行级缩放)、visible(不缩放不裁剪)
1102
+ * 创建溢出策略(画布解析)
1103
+ * clip:画布=帧,超出裁切
1104
+ * display/visible:检测溢出并对称扩展画布
1164
1105
  */ RichTextStrategyFactory.createOverflowStrategy = function createOverflowStrategy(mode) {
1165
1106
  switch(mode){
1166
1107
  case EFFECTS.spec.TextOverflow.clip:
1167
1108
  return new RichClippedOverflowStrategy();
1168
1109
  case EFFECTS.spec.TextOverflow.display:
1169
- return new RichDisplayOverflowStrategy();
1170
1110
  case EFFECTS.spec.TextOverflow.visible:
1171
1111
  default:
1172
- return new RichVisibleOverflowStrategy();
1112
+ return new RichExpandingOverflowStrategy();
1173
1113
  }
1174
1114
  };
1175
1115
  /**
@@ -1185,6 +1125,66 @@ var RichTextLayout = /*#__PURE__*/ function() {
1185
1125
  return RichTextStrategyFactory;
1186
1126
  }();
1187
1127
 
1128
+ function _extends() {
1129
+ _extends = Object.assign || function assign(target) {
1130
+ for(var i = 1; i < arguments.length; i++){
1131
+ var source = arguments[i];
1132
+ for(var key in source)if (Object.prototype.hasOwnProperty.call(source, key)) target[key] = source[key];
1133
+ }
1134
+ return target;
1135
+ };
1136
+ return _extends.apply(this, arguments);
1137
+ }
1138
+
1139
+ /**
1140
+ * 将行数据等比缩小以适配帧尺寸(display 模式使用)
1141
+ * 只缩小不放大,就地修改行数据
1142
+ */ function scaleLinesToFit(lines, contentWidth, contentHeight, frameWidth, frameHeight) {
1143
+ var safeDiv = function(a, b) {
1144
+ return Math.abs(b) > 1e-5 ? a / b : 1;
1145
+ };
1146
+ var safeContentW = Math.max(1, contentWidth);
1147
+ var safeContentH = Math.max(1, contentHeight);
1148
+ // 只缩小不放大
1149
+ var s = Math.min(1, safeDiv(frameWidth, safeContentW), safeDiv(frameHeight, safeContentH));
1150
+ // 浮点精度处理
1151
+ if (s > 0.9999) {
1152
+ return;
1153
+ }
1154
+ for(var _iterator = _create_for_of_iterator_helper_loose(lines), _step; !(_step = _iterator()).done;){
1155
+ var line = _step.value;
1156
+ line.width *= s;
1157
+ line.lineHeight *= s;
1158
+ if (line.offsetX) {
1159
+ for(var i = 0; i < line.offsetX.length; i++){
1160
+ line.offsetX[i] *= s;
1161
+ }
1162
+ }
1163
+ for(var _iterator1 = _create_for_of_iterator_helper_loose(line.chars || []), _step1; !(_step1 = _iterator1()).done;){
1164
+ var seg = _step1.value;
1165
+ for(var _iterator2 = _create_for_of_iterator_helper_loose(seg), _step2; !(_step2 = _iterator2()).done;){
1166
+ var ch = _step2.value;
1167
+ ch.x *= s;
1168
+ }
1169
+ }
1170
+ // 创建新的 richOptions 数组,避免修改原始对象
1171
+ var originalOptions = line.richOptions || [];
1172
+ var newOptions = [];
1173
+ for(var i1 = 0; i1 < originalOptions.length; i1++){
1174
+ newOptions.push(_extends({}, originalOptions[i1], {
1175
+ fontSize: originalOptions[i1].fontSize * s
1176
+ }));
1177
+ }
1178
+ line.richOptions = newOptions;
1179
+ if (line.lineAscent != null) {
1180
+ line.lineAscent *= s;
1181
+ }
1182
+ if (line.lineDescent != null) {
1183
+ line.lineDescent *= s;
1184
+ }
1185
+ }
1186
+ }
1187
+
1188
1188
  var seed = 0;
1189
1189
  exports.RichTextComponent = /*#__PURE__*/ function(MaskableGraphic) {
1190
1190
  _inherits(RichTextComponent, MaskableGraphic);
@@ -1194,10 +1194,10 @@ exports.RichTextComponent = /*#__PURE__*/ function(MaskableGraphic) {
1194
1194
  _this.isDirty = true;
1195
1195
  _this.text = "";
1196
1196
  _this.processedTextOptions = [];
1197
- _this.singleLineHeight = 1.571;
1198
- _this.size = null;
1199
- _this.initialized = false;
1200
- _this.canvasSize = null;
1197
+ /** @deprecated Use for legacy mode*/ _this.singleLineHeight = 1.571;
1198
+ /** @deprecated Use for legacy mode*/ _this.size = null;
1199
+ /** @deprecated Use for legacy mode*/ _this.initialized = false;
1200
+ /** @deprecated Use for legacy mode*/ _this.canvasSize = null;
1201
1201
  _this.SCALE_FACTOR = 0.11092565;
1202
1202
  _this.ALPHA_FIX_VALUE = 1 / 255;
1203
1203
  _this.name = "MRichText" + seed++;
@@ -1229,12 +1229,12 @@ exports.RichTextComponent = /*#__PURE__*/ function(MaskableGraphic) {
1229
1229
  this.textLayout.textVerticalAlign = EFFECTS.spec.TextVerticalAlign.middle;
1230
1230
  }
1231
1231
  this.updateStrategies();
1232
- this.renderText(options);
1232
+ this.updateTexture();
1233
1233
  // 设置默认颜色(math.Color)
1234
1234
  this.material.setColor("_Color", new EFFECTS.math.Color(1, 1, 1, 1));
1235
1235
  };
1236
1236
  /**
1237
- * 使用策略结果绘制文本
1237
+ * 根据布局配置更新策略实例
1238
1238
  */ _proto.updateStrategies = function updateStrategies() {
1239
1239
  var layout = this.textLayout;
1240
1240
  if (layout) {
@@ -1289,13 +1289,6 @@ exports.RichTextComponent = /*#__PURE__*/ function(MaskableGraphic) {
1289
1289
  this.updateStrategies();
1290
1290
  this.isDirty = true;
1291
1291
  };
1292
- _proto.renderText = function renderText(options) {
1293
- var size = options.size;
1294
- if (size) {
1295
- this.canvasSize = new EFFECTS.math.Vector2(size[0], size[1]);
1296
- }
1297
- this.updateTexture();
1298
- };
1299
1292
  /**
1300
1293
  * 更新文本
1301
1294
  * @returns
@@ -1441,6 +1434,14 @@ exports.RichTextComponent = /*#__PURE__*/ function(MaskableGraphic) {
1441
1434
  };
1442
1435
  /**
1443
1436
  * 使用策略管线路径的渲染方法
1437
+ *
1438
+ * 管线顺序:
1439
+ * 1. Wrap → 换行与度量
1440
+ * 2. SizeMode → 根据 autoResize 回写帧尺寸
1441
+ * 3. ContentScale → 内容缩放(仅 display 模式)
1442
+ * 4. Alignment → 在帧坐标系中对齐(不依赖 overflow)
1443
+ * 5. Overflow → 画布解析:确定最终画布尺寸与渲染偏移(不依赖对齐模式)
1444
+ * 6. Render → 绘制
1444
1445
  */ _proto.updateTextureWithStrategies = function updateTextureWithStrategies(flipY) {
1445
1446
  var _this = this;
1446
1447
  if (!this.isDirty || !this.context || !this.canvas) {
@@ -1454,227 +1455,84 @@ exports.RichTextComponent = /*#__PURE__*/ function(MaskableGraphic) {
1454
1455
  if (!context) {
1455
1456
  return;
1456
1457
  }
1457
- // 步骤1: 换行策略计算行信息
1458
- var wrapResult = this.richWrapStrategy.computeLines(this.processedTextOptions, context, this.textStyle, layout, this.singleLineHeight, this.textStyle.fontScale, letterSpace, this.SCALE_FACTOR);
1459
- if (wrapResult.lines.length === 0 || wrapResult.maxLineWidth === 0 || wrapResult.totalHeight === 0) {
1460
- this.isDirty = false;
1461
- return;
1458
+ var fontScale = this.textStyle.fontScale;
1459
+ // autoWidth 模式下先去掉宽度约束,避免内容被提前换行
1460
+ if (layout.autoResize === EFFECTS.spec.TextSizeMode.autoWidth) {
1461
+ layout.maxTextWidth = Number.MAX_SAFE_INTEGER;
1462
1462
  }
1463
- // 步骤2: 尺寸处理
1464
- var sizeResult = this.resolveCanvasSize(wrapResult, layout, this.textStyle, this.singleLineHeight);
1465
- // 首次渲染时初始化 canvas 尺寸和组件变换
1466
- this.setCanvasSize(sizeResult);
1467
- // 步骤3: 溢出策略处理
1468
- var overflowResult = this.richOverflowStrategy.apply(wrapResult.lines, sizeResult, layout, this.textStyle);
1469
- // 步骤4: 水平对齐策略
1470
- var horizontalAlignResult = this.richHorizontalAlignStrategy.getHorizontalOffsets(wrapResult.lines, sizeResult, overflowResult, layout, this.textStyle);
1471
- // 步骤5: 垂直对齐策略
1472
- var TextVerticalAlignResult = this.richVerticalAlignStrategy.getVerticalOffsets(wrapResult.lines, sizeResult, overflowResult, layout, this.textStyle, this.singleLineHeight);
1473
- // 使用 this.canvasSize 统一设置画布尺寸
1474
- EFFECTS.assertExist(this.canvasSize);
1475
- var _this_canvasSize = this.canvasSize, canvasWidth = _this_canvasSize.x, canvasHeight = _this_canvasSize.y;
1476
- // 确保canvas宽高至少为1
1477
- var safeW = Math.max(1, Math.ceil(canvasWidth));
1478
- var safeH = Math.max(1, Math.ceil(canvasHeight));
1479
- layout.width = safeW / this.textStyle.fontScale;
1480
- layout.height = safeH / this.textStyle.fontScale;
1481
- this.renderToTexture(safeW, safeH, flipY, function(context) {
1482
- // 步骤6: 绘制文本
1483
- _this.drawTextWithStrategies(context, wrapResult.lines, horizontalAlignResult, TextVerticalAlignResult, overflowResult, _this.textStyle);
1463
+ // ── 步骤 1: 换行策略(逻辑坐标系,fontScale 不参与排版)──
1464
+ var wrapResult = this.richWrapStrategy.computeLines(this.processedTextOptions, context, this.textStyle, layout, letterSpace);
1465
+ // ── 步骤 2: SizeMode → 帧尺寸(逻辑单位)──
1466
+ // fontScale 不参与排版,全部在逻辑坐标系中完成。
1467
+ var frameW;
1468
+ var frameH;
1469
+ switch(layout.autoResize){
1470
+ case EFFECTS.spec.TextSizeMode.autoWidth:
1471
+ frameW = Math.max(1, wrapResult.maxLineWidth || 0);
1472
+ frameH = Math.max(1, wrapResult.totalHeight || 0);
1473
+ break;
1474
+ case EFFECTS.spec.TextSizeMode.autoHeight:
1475
+ frameW = layout.maxTextWidth;
1476
+ frameH = Math.max(1, wrapResult.totalHeight || 0);
1477
+ break;
1478
+ case EFFECTS.spec.TextSizeMode.fixed:
1479
+ default:
1480
+ frameW = layout.maxTextWidth;
1481
+ frameH = layout.maxTextHeight;
1482
+ break;
1483
+ }
1484
+ // ── 步骤 3: 内容缩放(display 模式缩小以适配帧,其他模式跳过)──
1485
+ if (layout.overflow === EFFECTS.spec.TextOverflow.display) {
1486
+ var contentW = Math.max(1, wrapResult.maxLineWidth || 0);
1487
+ var contentH = Math.max(1, wrapResult.totalHeight || 0);
1488
+ scaleLinesToFit(wrapResult.lines, contentW, contentH, frameW, frameH);
1489
+ }
1490
+ // ── 步骤 4: 对齐(在帧坐标系中,不依赖 overflow 模式)──
1491
+ var horizontalAlignResult = this.richHorizontalAlignStrategy.getHorizontalOffsets(wrapResult.lines, frameW, layout, this.textStyle);
1492
+ var verticalAlignResult = this.richVerticalAlignStrategy.getVerticalOffsets(wrapResult.lines, frameH, layout);
1493
+ // ── 步骤 5: 溢出 / 画布解析(不依赖对齐模式枚举)──
1494
+ var overflowResult = this.richOverflowStrategy.resolveCanvas(wrapResult.lines, frameW, frameH, horizontalAlignResult, verticalAlignResult);
1495
+ // 排版结果(逻辑单位)→ 物理像素画布
1496
+ var physicalW = Math.max(1, Math.ceil(overflowResult.canvasWidth * fontScale));
1497
+ var physicalH = Math.max(1, Math.ceil(overflowResult.canvasHeight * fontScale));
1498
+ // 渲染尺寸不随 fontScale 改变
1499
+ this.item.transform.size.set(overflowResult.canvasWidth * this.SCALE_FACTOR * this.SCALE_FACTOR, overflowResult.canvasHeight * this.SCALE_FACTOR * this.SCALE_FACTOR);
1500
+ // 统一回写布局属性(逻辑单位)
1501
+ layout.maxTextWidth = frameW;
1502
+ layout.maxTextHeight = frameH;
1503
+ layout.width = overflowResult.canvasWidth;
1504
+ layout.height = overflowResult.canvasHeight;
1505
+ this.renderToTexture(physicalW, physicalH, flipY, function(context) {
1506
+ // fontScale 仅作为渲染分辨率倍率,排版坐标全部为逻辑单位
1507
+ context.scale(fontScale, fontScale);
1508
+ // ── 步骤 6: 绘制 ──
1509
+ _this.drawTextWithStrategies(context, wrapResult.lines, horizontalAlignResult, verticalAlignResult, overflowResult, _this.textStyle);
1484
1510
  }, {
1485
1511
  disposeOld: false
1486
1512
  });
1487
1513
  this.isDirty = false;
1488
1514
  };
1489
- _proto.setCanvasSize = function setCanvasSize(sizeResult) {
1490
- var _this = this;
1491
- if (this.size === undefined || this.size === null) {
1492
- this.size = this.item.transform.size.clone();
1493
- }
1494
- var _this_size = this.size, _this_size_x = _this_size.x, x = _this_size_x === void 0 ? 1 : _this_size_x, _this_size_y = _this_size.y, y = _this_size_y === void 0 ? 1 : _this_size_y;
1495
- var layout = this.textLayout;
1496
- var fontScale = this.textStyle.fontScale || 1;
1497
- // 防止 frameW / frameH 为 0
1498
- var frameW = Math.max(1, layout.maxTextWidth || 0);
1499
- var frameH = Math.max(1, layout.maxTextHeight || 0);
1500
- switch(layout.overflow){
1501
- case EFFECTS.spec.TextOverflow.visible:
1502
- {
1503
- var frameWpx = frameW * fontScale;
1504
- var frameHpx = frameH * fontScale;
1505
- var _sizeResult_bboxTop;
1506
- var bboxTop = (_sizeResult_bboxTop = sizeResult.bboxTop) != null ? _sizeResult_bboxTop : 0;
1507
- var _sizeResult_bboxHeight, _sizeResult_bboxBottom;
1508
- var bboxBottom = (_sizeResult_bboxBottom = sizeResult.bboxBottom) != null ? _sizeResult_bboxBottom : bboxTop + ((_sizeResult_bboxHeight = sizeResult.bboxHeight) != null ? _sizeResult_bboxHeight : 0);
1509
- var _sizeResult_bboxHeight1;
1510
- var bboxHeight = (_sizeResult_bboxHeight1 = sizeResult.bboxHeight) != null ? _sizeResult_bboxHeight1 : bboxBottom - bboxTop;
1511
- // 计算 frame 基线
1512
- var baselineYFrame = 0;
1513
- switch(layout.textVerticalAlign){
1514
- case EFFECTS.spec.TextVerticalAlign.top:
1515
- baselineYFrame = -bboxTop;
1516
- break;
1517
- case EFFECTS.spec.TextVerticalAlign.middle:
1518
- baselineYFrame = (frameHpx - bboxHeight) / 2 - bboxTop;
1519
- break;
1520
- case EFFECTS.spec.TextVerticalAlign.bottom:
1521
- baselineYFrame = frameHpx - bboxHeight - bboxTop;
1522
- break;
1523
- }
1524
- // 上下溢出检测
1525
- var contentTopInFrame = baselineYFrame + bboxTop;
1526
- var contentBottomInFrame = baselineYFrame + bboxBottom;
1527
- var overflowTop = Math.max(0, -contentTopInFrame);
1528
- var overflowBottom = Math.max(0, contentBottomInFrame - frameHpx);
1529
- // 垂直扩张
1530
- var expandTop = overflowTop;
1531
- var expandBottom = overflowBottom;
1532
- switch(layout.textVerticalAlign){
1533
- case EFFECTS.spec.TextVerticalAlign.top:
1534
- {
1535
- var E = overflowBottom;
1536
- expandTop = E;
1537
- expandBottom = E;
1538
- break;
1539
- }
1540
- case EFFECTS.spec.TextVerticalAlign.bottom:
1541
- {
1542
- var E1 = overflowTop;
1543
- expandTop = E1;
1544
- expandBottom = E1;
1545
- break;
1546
- }
1547
- case EFFECTS.spec.TextVerticalAlign.middle:
1548
- {
1549
- // 保持非对称:上扩 overflowTop,下扩 overflowBottom
1550
- expandTop = overflowTop;
1551
- expandBottom = overflowBottom;
1552
- break;
1553
- }
1554
- }
1555
- // 位移补偿:始终使用 expandTop
1556
- var compY = expandTop;
1557
- // 水平扩张
1558
- var lines = sizeResult.lines || [];
1559
- // 1. 先按 frameWpx 计算每行的对齐起点(逻辑对齐)
1560
- var xOffsetsFrame = lines.map(function(line) {
1561
- return layout.getOffsetXRich(_this.textStyle, frameWpx, line.width);
1562
- });
1563
- // 2. 用对齐后的偏移 + 行宽算出内容的左右边界
1564
- var contentMinX = Infinity;
1565
- var contentMaxX = -Infinity;
1566
- for(var i = 0; i < lines.length; i++){
1567
- var _xOffsetsFrame_i;
1568
- var off = (_xOffsetsFrame_i = xOffsetsFrame[i]) != null ? _xOffsetsFrame_i : 0;
1569
- var _lines_i_width;
1570
- var w = (_lines_i_width = lines[i].width) != null ? _lines_i_width : 0; // 像素宽
1571
- contentMinX = Math.min(contentMinX, off);
1572
- contentMaxX = Math.max(contentMaxX, off + w);
1573
- }
1574
- if (!isFinite(contentMinX)) {
1575
- contentMinX = 0;
1576
- }
1577
- if (!isFinite(contentMaxX)) {
1578
- contentMaxX = 0;
1579
- }
1580
- // 3. 计算内容相对于 frame 的越界量
1581
- var overflowLeft = Math.max(0, -contentMinX); // 内容左边 < 0
1582
- var overflowRight = Math.max(0, contentMaxX - frameWpx); // 内容右边 > frameWpx?
1583
- // 4. 让 canvas 左右都扩张到能容下整个内容 bbox
1584
- var expandLeft = overflowLeft;
1585
- var expandRight = overflowRight;
1586
- // 5. 最终 canvas 宽高
1587
- var finalWpx = Math.ceil(frameWpx + expandLeft + expandRight);
1588
- var finalHpx = Math.ceil(frameHpx + expandTop + expandBottom);
1589
- // 记录补偿,供垂直对齐策略叠加
1590
- sizeResult.baselineCompensationX = expandLeft;
1591
- sizeResult.baselineCompensationY = compY;
1592
- // containerWidth 用 frameWpx,而不是 finalWpx
1593
- sizeResult.containerWidth = frameWpx;
1594
- sizeResult.canvasWidth = finalWpx;
1595
- sizeResult.canvasHeight = finalHpx;
1596
- this.canvasSize = new EFFECTS.math.Vector2(finalWpx, finalHpx);
1597
- var _this_size1;
1598
- var _ref = (_this_size1 = this.size) != null ? _this_size1 : this.item.transform.size, _ref_x = _ref.x, x1 = _ref_x === void 0 ? 1 : _ref_x, _ref_y = _ref.y, y1 = _ref_y === void 0 ? 1 : _ref_y;
1599
- // 实际元素渲染尺寸不随着 fontScale 改变
1600
- this.item.transform.size.set(x1 * finalWpx / fontScale * this.SCALE_FACTOR * this.SCALE_FACTOR, y1 * finalHpx / fontScale * this.SCALE_FACTOR * this.SCALE_FACTOR);
1601
- this.initialized = true;
1602
- break;
1603
- }
1604
- case EFFECTS.spec.TextOverflow.clip:
1605
- {
1606
- var frameWpx1 = frameW * fontScale;
1607
- var frameHpx1 = frameH * fontScale;
1608
- // 直接使用 frame 尺寸作为画布尺寸
1609
- sizeResult.canvasWidth = frameWpx1;
1610
- sizeResult.canvasHeight = frameHpx1;
1611
- // clip 模式不需要任何补偿
1612
- sizeResult.baselineCompensationX = 0;
1613
- sizeResult.baselineCompensationY = 0;
1614
- // 设置 canvas 和节点变换
1615
- this.canvasSize = new EFFECTS.math.Vector2(frameWpx1, frameHpx1);
1616
- // 把 layout 的尺寸更新为 frame 尺寸
1617
- layout.width = frameW;
1618
- layout.height = frameH;
1619
- var _this_size2;
1620
- var _ref1 = (_this_size2 = this.size) != null ? _this_size2 : this.item.transform.size, _ref_x1 = _ref1.x, x2 = _ref_x1 === void 0 ? 1 : _ref_x1, _ref_y1 = _ref1.y, y2 = _ref_y1 === void 0 ? 1 : _ref_y1;
1621
- this.item.transform.size.set(x2 * frameWpx1 / fontScale * this.SCALE_FACTOR * this.SCALE_FACTOR, y2 * frameHpx1 / fontScale * this.SCALE_FACTOR * this.SCALE_FACTOR);
1622
- this.initialized = true;
1623
- break;
1624
- }
1625
- case EFFECTS.spec.TextOverflow.display:
1626
- {
1627
- if (!this.initialized) {
1628
- var frameWpx2 = frameW * fontScale;
1629
- var frameHpx2 = frameH * fontScale;
1630
- this.canvasSize = new EFFECTS.math.Vector2(frameWpx2, frameHpx2);
1631
- this.item.transform.size.set(x * frameWpx2 / fontScale * this.SCALE_FACTOR * this.SCALE_FACTOR, y * frameHpx2 / fontScale * this.SCALE_FACTOR * this.SCALE_FACTOR);
1632
- this.initialized = true;
1633
- }
1634
- break;
1635
- }
1636
- }
1637
- };
1638
- /**
1639
- * 尺寸处理
1640
- */ _proto.resolveCanvasSize = function resolveCanvasSize(wrapResult, layout, style, singleLineHeight) {
1641
- var canvasWidth = Math.max(1, wrapResult.maxLineWidth || 0);
1642
- var canvasHeight = Math.max(1, wrapResult.totalHeight || 0); // stepTotalHeight
1643
- layout.width = canvasWidth / style.fontScale;
1644
- layout.height = canvasHeight / style.fontScale;
1645
- return {
1646
- canvasWidth: canvasWidth,
1647
- canvasHeight: canvasHeight,
1648
- contentWidth: wrapResult.maxLineWidth,
1649
- bboxTop: wrapResult.bboxTop,
1650
- bboxBottom: wrapResult.bboxBottom,
1651
- bboxHeight: wrapResult.bboxHeight,
1652
- // 为 visible 模式的画布尺寸计算保留行信息
1653
- lines: wrapResult.lines
1654
- };
1655
- };
1656
1515
  /**
1657
1516
  * 使用策略结果绘制文本
1658
- */ _proto.drawTextWithStrategies = function drawTextWithStrategies(context, lines, horizontalAlignResult, TextVerticalAlignResult, overflowResult, textStyle) {
1659
- var currentBaselineY = TextVerticalAlignResult.baselineY;
1517
+ * 坐标 = 帧坐标(对齐结果) + 渲染偏移(溢出结果)
1518
+ */ _proto.drawTextWithStrategies = function drawTextWithStrategies(context, lines, horizontalAlignResult, verticalAlignResult, overflowResult, textStyle) {
1519
+ var renderOffsetX = overflowResult.renderOffsetX, renderOffsetY = overflowResult.renderOffsetY;
1520
+ var currentBaselineY = verticalAlignResult.baselineY + renderOffsetY;
1660
1521
  var lineOffsets = horizontalAlignResult.lineOffsets;
1661
1522
  lines.forEach(function(line, index) {
1662
1523
  var richOptions = line.richOptions, chars = line.chars;
1663
- var xOffset = lineOffsets[index];
1524
+ var xOffset = lineOffsets[index] + renderOffsetX;
1664
1525
  var yOffset = currentBaselineY;
1665
1526
  richOptions.forEach(function(options, segIndex) {
1666
- var fontScale = textStyle.fontScale, textColor = textStyle.textColor, textFamily = textStyle.fontFamily, textWeight = textStyle.textWeight, richStyle = textStyle.fontStyle;
1527
+ var textColor = textStyle.textColor, textFamily = textStyle.fontFamily, textWeight = textStyle.textWeight, richStyle = textStyle.fontStyle;
1667
1528
  var fontSize = options.fontSize, _options_fontColor = options.fontColor, fontColor = _options_fontColor === void 0 ? textColor : _options_fontColor, _options_fontFamily = options.fontFamily, fontFamily = _options_fontFamily === void 0 ? textFamily : _options_fontFamily, _options_fontWeight = options.fontWeight, fontWeight = _options_fontWeight === void 0 ? textWeight : _options_fontWeight, _options_fontStyle = options.fontStyle, fontStyle = _options_fontStyle === void 0 ? richStyle : _options_fontStyle;
1668
- // 直接使用原始字体大小(已在行数据中预缩放)
1669
1529
  var textSize = fontSize;
1670
- context.font = fontStyle + " " + fontWeight + " " + textSize * fontScale + "px " + fontFamily;
1530
+ context.font = fontStyle + " " + fontWeight + " " + textSize + "px " + fontFamily;
1671
1531
  var r = fontColor[0], g = fontColor[1], b = fontColor[2], a = fontColor[3];
1672
1532
  context.fillStyle = "rgba(" + r + ", " + g + ", " + b + ", " + a + ")";
1673
- // 逐字绘制
1674
1533
  var segStartX = line.offsetX && line.offsetX[segIndex] ? line.offsetX[segIndex] : 0;
1675
1534
  var charArr = chars[segIndex];
1676
1535
  charArr.forEach(function(charDetail) {
1677
- // 直接使用缩放后的字符位置
1678
1536
  context.fillText(charDetail.char, xOffset + segStartX + charDetail.x, yOffset);
1679
1537
  });
1680
1538
  });
@@ -1747,7 +1605,7 @@ EFFECTS.applyMixins(exports.RichTextComponent, [
1747
1605
 
1748
1606
  /**
1749
1607
  * 插件版本号
1750
- */ var version = "2.8.7";
1608
+ */ var version = "2.8.9";
1751
1609
  EFFECTS.registerPlugin("rich-text", RichTextLoader);
1752
1610
  EFFECTS.logger.info("Plugin rich text version: " + version + ".");
1753
1611
  if (version !== EFFECTS__namespace.version) {