Files
SVSimServer/SVSim.BattleEngine/Engine/UIScrollBar.cs
gamer147 0d9d8acae0 feat(battle-engine): M1 auto-copy closure (782 battle-logic files)
Compile-driven bulk-copy loop (tools/engine-port/m1_copy_loop.py) pulled the precise reference closure of the battle-core roots, stopping at the classify god-object/View-VFX-UI boundary. 782 files; no re-explosion (M0 had estimated ~order 1000). Residual frontier = 52 shim-classified + 80 external (Unity/BCL) types to author next.
2026-06-05 16:57:20 -04:00

166 lines
3.9 KiB
C#

using System;
using UnityEngine;
[ExecuteInEditMode]
[AddComponentMenu("NGUI/Interaction/NGUI Scroll Bar")]
public class UIScrollBar : UISlider
{
private enum Direction
{
Horizontal,
Vertical,
Upgraded
}
[HideInInspector]
[SerializeField]
protected float mSize = 1f;
[HideInInspector]
[SerializeField]
private float mScroll;
[HideInInspector]
[SerializeField]
private Direction mDir = Direction.Upgraded;
[Obsolete("Use 'value' instead")]
public float scrollValue
{
get
{
return base.value;
}
set
{
base.value = value;
}
}
public float barSize
{
get
{
return mSize;
}
set
{
float num = Mathf.Clamp01(value);
if (mSize == num)
{
return;
}
mSize = num;
mIsDirty = true;
if (NGUITools.GetActive(this))
{
if (UIProgressBar.current == null && onChange != null)
{
UIProgressBar.current = this;
EventDelegate.Execute(onChange);
UIProgressBar.current = null;
}
ForceUpdate();
}
}
}
protected override void Upgrade()
{
if (mDir != Direction.Upgraded)
{
mValue = mScroll;
if (mDir == Direction.Horizontal)
{
mFill = (mInverted ? FillDirection.RightToLeft : FillDirection.LeftToRight);
}
else
{
mFill = (mInverted ? FillDirection.BottomToTop : FillDirection.TopToBottom);
}
mDir = Direction.Upgraded;
}
}
protected override void OnStart()
{
base.OnStart();
if (mFG != null && mFG.gameObject != base.gameObject && (mFG.GetComponent<Collider>() != null || mFG.GetComponent<Collider2D>() != null))
{
UIEventListener uIEventListener = UIEventListener.Get(mFG.gameObject);
uIEventListener.onPress = (UIEventListener.BoolDelegate)Delegate.Combine(uIEventListener.onPress, new UIEventListener.BoolDelegate(OnPressForeground));
uIEventListener.onDrag = (UIEventListener.VectorDelegate)Delegate.Combine(uIEventListener.onDrag, new UIEventListener.VectorDelegate(base.OnDragForeground));
mFG.autoResizeBoxCollider = true;
}
}
protected override float LocalToValue(Vector2 localPos)
{
if (mFG != null)
{
float num = Mathf.Clamp01(mSize) * 0.5f;
float t = num;
float t2 = 1f - num;
Vector3[] localCorners = mFG.localCorners;
if (base.isHorizontal)
{
t = Mathf.Lerp(localCorners[0].x, localCorners[2].x, t);
t2 = Mathf.Lerp(localCorners[0].x, localCorners[2].x, t2);
float num2 = t2 - t;
if (num2 == 0f)
{
return base.value;
}
if (!base.isInverted)
{
return (localPos.x - t) / num2;
}
return (t2 - localPos.x) / num2;
}
t = Mathf.Lerp(localCorners[0].y, localCorners[1].y, t);
t2 = Mathf.Lerp(localCorners[3].y, localCorners[2].y, t2);
float num3 = t2 - t;
if (num3 == 0f)
{
return base.value;
}
if (!base.isInverted)
{
return (localPos.y - t) / num3;
}
return (t2 - localPos.y) / num3;
}
return base.LocalToValue(localPos);
}
public override void ForceUpdate()
{
if (mFG != null)
{
mIsDirty = false;
float num = Mathf.Clamp01(mSize) * 0.5f;
float num2 = Mathf.Lerp(num, 1f - num, base.value);
float num3 = num2 - num;
float num4 = num2 + num;
if (base.isHorizontal)
{
mFG.drawRegion = (base.isInverted ? new Vector4(1f - num4, 0f, 1f - num3, 1f) : new Vector4(num3, 0f, num4, 1f));
}
else
{
mFG.drawRegion = (base.isInverted ? new Vector4(0f, 1f - num4, 1f, 1f - num3) : new Vector4(0f, num3, 1f, num4));
}
if (thumb != null)
{
Vector4 drawingDimensions = mFG.drawingDimensions;
Vector3 position = new Vector3(Mathf.Lerp(drawingDimensions.x, drawingDimensions.z, 0.5f), Mathf.Lerp(drawingDimensions.y, drawingDimensions.w, 0.5f));
SetThumbPosition(mFG.cachedTransform.TransformPoint(position));
}
}
else
{
base.ForceUpdate();
}
}
}