123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145 |
- const { ccclass, property, disallowMultiple, menu, executionOrder, requireComponent } = _decorator;
- import { Node, Component, Enum, tween, _decorator, EventHandler, Tween, ScrollView, Prefab, Layout, Vec2, Size, NodePool, isValid, instantiate, Vec3, Widget, UITransform, CCFloat, CCBoolean, CCInteger } from 'cc';
- import { DEV } from 'cc/env';
- import ListItem from './ListItem';
- enum TemplateType {
- NODE = 1,
- PREFAB = 2,
- }
- enum SlideType {
- NORMAL = 1,//普通
- ADHERING = 2,//粘附模式,将强制关闭滚动惯性
- PAGE = 3,//页面模式,将强制关闭滚动惯性
- }
- enum SelectedType {
- NONE = 0,
- SINGLE = 1,//单选
- MULT = 2,//多选
- }
- @ccclass
- @disallowMultiple()
- @menu('List')
- @requireComponent(ScrollView)
- //脚本生命周期回调的执行优先级。小于 0 的脚本将优先执行,大于 0 的脚本将最后执行。该优先级只对 onLoad, onEnable, start, update 和 lateUpdate 有效,对 onDisable 和 onDestroy 无效。
- @executionOrder(-5000)
- export default class List extends Component {
- //模板类型
- @property({ type: Enum(TemplateType), tooltip: DEV && '模板类型', })
- private templateType: TemplateType = TemplateType.NODE;
- //模板Item(Node)
- @property({
- type: Node,
- tooltip: DEV && '模板Item',
- visible() { return this.templateType == TemplateType.NODE; }
- })
- tmpNode: Node = null;
- //模板Item(Prefab)
- @property({
- type: Prefab,
- tooltip: DEV && '模板Item',
- visible() { return this.templateType == TemplateType.PREFAB; }
- })
- tmpPrefab: Prefab = null;
- //滑动模式
- @property({})
- private _slideMode: SlideType = SlideType.NORMAL;
- @property({
- type: Enum(SlideType),
- tooltip: DEV && '滑动模式'
- })
- set slideMode(val: SlideType) {
- this._slideMode = val;
- }
- get slideMode() {
- return this._slideMode;
- }
- //翻页作用距离
- @property({
- type: CCFloat,
- range: [0, 1, .1],
- tooltip: DEV && '翻页作用距离',
- slide: true,
- visible() { return this._slideMode == SlideType.PAGE; }
- })
- public pageDistance: number = .3;
- //页面改变事件
- @property({
- type: EventHandler,
- tooltip: DEV && '页面改变事件',
- visible() { return this._slideMode == SlideType.PAGE; }
- })
- private pageChangeEvent: EventHandler = new EventHandler();
- //是否为虚拟列表(动态列表)
- @property({})
- private _virtual: boolean = true;
- @property({
- type: CCBoolean,
- tooltip: DEV && '是否为虚拟列表(动态列表)'
- })
- set virtual(val: boolean) {
- if (val != null)
- this._virtual = val;
- if (!DEV && this._numItems != 0) {
- this._onScrolling();
- }
- }
- get virtual() {
- return this._virtual;
- }
- //是否为循环列表
- @property({
- tooltip: DEV && '是否为循环列表',
- visible() {
- let val: boolean = /*this.virtual &&*/ this.slideMode == SlideType.NORMAL;
- if (!val)
- this.cyclic = false;
- return val;
- }
- })
- public cyclic: boolean = false;
- //缺省居中
- @property({
- tooltip: DEV && 'Item数量不足以填满Content时,是否居中显示Item(不支持Grid布局)',
- visible() { return this.virtual; }
- })
- public lackCenter: boolean = false;
- //缺省可滑动
- @property({
- tooltip: DEV && 'Item数量不足以填满Content时,是否可滑动',
- visible() {
- let val: boolean = this.virtual && !this.lackCenter;
- if (!val)
- this.lackSlide = false;
- return val;
- }
- })
- public lackSlide: boolean = false;
- //刷新频率
- @property({ type: CCInteger })
- private _updateRate: number = 0;
- @property({
- type: CCInteger,
- range: [0, 6, 1],
- tooltip: DEV && '刷新频率(值越大刷新频率越低、性能越高)',
- slide: true,
- })
- set updateRate(val: number) {
- if (val >= 0 && val <= 6) {
- this._updateRate = val;
- }
- }
- get updateRate() {
- return this._updateRate;
- }
- //分帧渲染(每帧渲染的Item数量(<=0时关闭分帧渲染))
- @property({
- type: CCInteger,
- range: [0, 12, 1],
- tooltip: DEV && '逐帧渲染时,每帧渲染的Item数量(<=0时关闭分帧渲染)',
- slide: true,
- })
- public frameByFrameRenderNum: number = 0;
- //渲染事件(渲染器)
- @property({
- type: EventHandler,
- tooltip: DEV && '渲染事件(渲染器)',
- })
- public renderEvent: EventHandler = new EventHandler();
- //选择模式
- @property({
- type: Enum(SelectedType),
- tooltip: DEV && '选择模式'
- })
- public selectedMode: SelectedType = SelectedType.NONE;
- //触发选择事件
- @property({
- type: EventHandler,
- tooltip: DEV && '触发选择事件',
- visible() { return this.selectedMode > SelectedType.NONE; }
- })
- public selectedEvent: EventHandler = new EventHandler();
- @property({
- tooltip: DEV && '是否重复响应单选事件',
- visible() { return this.selectedMode == SelectedType.SINGLE; }
- })
- public repeatEventSingle: boolean = false;
- //当前选择id
- private _selectedId: number = -1;
- private _lastSelectedId: number;
- private multSelected: number[];
- set selectedId(val: number) {
- let t: any = this;
- let item: any;
- switch (t.selectedMode) {
- case SelectedType.SINGLE: {
- if (!t.repeatEventSingle && val == t._selectedId)
- return;
- item = t.getItemByListId(val);
- // if (!item && val >= 0)
- // return;
- let listItem: ListItem;
- if (t._selectedId >= 0)
- t._lastSelectedId = t._selectedId;
- else //如果<0则取消选择,把_lastSelectedId也置空吧,如果以后有特殊需求再改吧。
- t._lastSelectedId = null;
- t._selectedId = val;
- if (item) {
- listItem = item.getComponent(ListItem);
- listItem.selected = true;
- }
- if (t._lastSelectedId >= 0 && t._lastSelectedId != t._selectedId) {
- let lastItem: any = t.getItemByListId(t._lastSelectedId);
- if (lastItem) {
- lastItem.getComponent(ListItem).selected = false;
- }
- }
- if (t.selectedEvent) {
- EventHandler.emitEvents([t.selectedEvent], item, val % this._actualNumItems, t._lastSelectedId == null ? null : (t._lastSelectedId % this._actualNumItems));
- }
- break;
- }
- case SelectedType.MULT: {
- item = t.getItemByListId(val);
- if (!item)
- return;
- let listItem = item.getComponent(ListItem);
- if (t._selectedId >= 0)
- t._lastSelectedId = t._selectedId;
- t._selectedId = val;
- let bool: boolean = !listItem.selected;
- listItem.selected = bool;
- let sub: number = t.multSelected.indexOf(val);
- if (bool && sub < 0) {
- t.multSelected.push(val);
- } else if (!bool && sub >= 0) {
- t.multSelected.splice(sub, 1);
- }
- if (t.selectedEvent) {
- EventHandler.emitEvents([t.selectedEvent], item, val % this._actualNumItems, t._lastSelectedId == null ? null : (t._lastSelectedId % this._actualNumItems), bool);
- }
- break;
- }
- }
- }
- get selectedId() {
- return this._selectedId;
- }
- private _forceUpdate: boolean = false;
- private _align: number;
- private _horizontalDir: number;
- private _verticalDir: number;
- private _startAxis: number;
- private _alignCalcType: number;
- public content: Node;
- private _contentUt: UITransform;
- private firstListId: number;
- public displayItemNum: number;
- private _updateDone: boolean = true;
- private _updateCounter: number;
- public _actualNumItems: number;
- private _cyclicNum: number;
- private _cyclicPos1: number;
- private _cyclicPos2: number;
- //列表数量
- @property({
- serializable: false
- })
- private _numItems: number = 0;
- set numItems(val: number) {
- console.log("---------------------------------set numItems:",val)
- let t = this;
- if (!t.checkInited(false))
- return;
- if (val == null || val < 0) {
- console.error('numItems set the wrong::', val);
- return;
- }
- t._actualNumItems = t._numItems = val;
- t._forceUpdate = true;
- if (t._virtual) {
- t._resizeContent();
- if (t.cyclic) {
- t._numItems = t._cyclicNum * t._numItems;
- }
- t._onScrolling();
- if (!t.frameByFrameRenderNum && t.slideMode == SlideType.PAGE)
- t.curPageNum = t.nearestListId;
- } else {
- if (t.cyclic) {
- t._resizeContent();
- t._numItems = t._cyclicNum * t._numItems;
- }
- let layout: Layout = t.content.getComponent(Layout);
- if (layout) {
- layout.enabled = true;
- }
- t._delRedundantItem();
- t.firstListId = 0;
- if (t.frameByFrameRenderNum > 0) {
- //先渲染几个出来
- let len: number = t.frameByFrameRenderNum > t._numItems ? t._numItems : t.frameByFrameRenderNum;
- for (let n: number = 0; n < len; n++) {
- t._createOrUpdateItem2(n);
- }
- if (t.frameByFrameRenderNum < t._numItems) {
- t._updateCounter = t.frameByFrameRenderNum;
- t._updateDone = false;
- }
- } else {
- for (let n: number = 0; n < t._numItems; n++) {
- t._createOrUpdateItem2(n);
- }
- t.displayItemNum = t._numItems;
- }
- }
- }
- get numItems() {
- return this._actualNumItems;
- }
- private _inited: boolean = false;
- private _scrollView: ScrollView;
- get scrollView() {
- return this._scrollView;
- }
- private _layout: Layout;
- private _resizeMode: number;
- private _topGap: number;
- private _rightGap: number;
- private _bottomGap: number;
- private _leftGap: number;
- private _columnGap: number;
- private _lineGap: number;
- private _colLineNum: number;
- private _lastDisplayData: number[];
- public displayData: any[];
- private _pool: NodePool;
- private _itemTmp: any;
- private _itemTmpUt: UITransform;
- private _needUpdateWidget: boolean = false;
- private _itemSize: Size;
- private _sizeType: boolean;
- public _customSize: any;
- private frameCount: number;
- private _aniDelRuning: boolean = false;
- private _aniDelCB: Function;
- private _aniDelItem: any;
- private _aniDelBeforePos: Vec2;
- private _aniDelBeforeScale: number;
- private viewTop: number;
- private viewRight: number;
- private viewBottom: number;
- private viewLeft: number;
- private _doneAfterUpdate: boolean = false;
- private elasticTop: number;
- private elasticRight: number;
- private elasticBottom: number;
- private elasticLeft: number;
- private scrollToListId: number;
- private adhering: boolean = false;
- private _adheringBarrier: boolean = false;
- private nearestListId: number;
- public curPageNum: number = 0;
- private _beganPos: number;
- private _scrollPos: number;
- private _curScrollIsTouch: boolean;//当前滑动是否为手动
- private _scrollToListId: number;
- private _scrollToEndTime: number;
- private _scrollToSo: any;
- private _lack: boolean;
- private _allItemSize: number;
- private _allItemSizeNoEdge: number;
- private _scrollItem: any;//当前控制 ScrollView 滚动的 Item
- private _thisNodeUt: UITransform;
- //----------------------------------------------------------------------------
- onLoad() {
- this._init();
- }
- onDestroy() {
- let t: any = this;
- if (isValid(t._itemTmp))
- t._itemTmp.destroy();
- if (isValid(t.tmpNode))
- t.tmpNode.destroy();
- t._pool && t._pool.clear();
- }
- onEnable() {
- // if (!EDITOR)
- this._registerEvent();
- this._init();
- // 处理重新显示后,有可能上一次的动画移除还未播放完毕,导致动画卡住的问题
- if (this._aniDelRuning) {
- this._aniDelRuning = false;
- if (this._aniDelItem) {
- if (this._aniDelBeforePos) {
- this._aniDelItem.position = this._aniDelBeforePos;
- delete this._aniDelBeforePos;
- }
- if (this._aniDelBeforeScale) {
- this._aniDelItem.scale = this._aniDelBeforeScale;
- delete this._aniDelBeforeScale;
- }
- delete this._aniDelItem;
- }
- if (this._aniDelCB) {
- this._aniDelCB();
- delete this._aniDelCB;
- }
- }
- }
- onDisable() {
- // if (!EDITOR)
- this._unregisterEvent();
- }
- //注册事件
- _registerEvent() {
- let t: any = this;
- t.node.on(Node.EventType.TOUCH_START, t._onTouchStart, t);
- t.node.on('touch-up', t._onTouchUp, t);
- t.node.on(Node.EventType.TOUCH_CANCEL, t._onTouchCancelled, t);
- t.node.on('scroll-began', t._onScrollBegan, t);
- t.node.on('scroll-ended', t._onScrollEnded, t);
- t.node.on('scrolling', t._onScrolling, t);
- t.node.on(Node.EventType.SIZE_CHANGED, t._onSizeChanged, t);
- }
- //卸载事件
- _unregisterEvent() {
- let t: any = this;
- t.node.off(Node.EventType.TOUCH_START, t._onTouchStart, t);
- t.node.off('touch-up', t._onTouchUp, t);
- t.node.off(Node.EventType.TOUCH_CANCEL, t._onTouchCancelled, t);
- t.node.off('scroll-began', t._onScrollBegan, t);
- t.node.off('scroll-ended', t._onScrollEnded, t);
- t.node.off('scrolling', t._onScrolling, t);
- t.node.off(Node.EventType.SIZE_CHANGED, t._onSizeChanged, t);
- }
- //初始化各种..
- _init() {
- let t: any = this;
- if (t._inited)
- return;
- t._thisNodeUt = t.node.getComponent(UITransform);
- t._scrollView = t.node.getComponent(ScrollView);
- t.content = t._scrollView.content;
- t._contentUt = t.content.getComponent(UITransform);
- if (!t.content) {
- console.error(t.node.name + "'s ScrollView unset content!");
- return;
- }
- t._layout = t.content.getComponent(Layout);
- t._align = t._layout.type; //排列模式
- t._resizeMode = t._layout.resizeMode; //自适应模式
- t._startAxis = t._layout.startAxis;
- t._topGap = t._layout.paddingTop; //顶边距
- t._rightGap = t._layout.paddingRight; //右边距
- t._bottomGap = t._layout.paddingBottom; //底边距
- t._leftGap = t._layout.paddingLeft; //左边距
- t._columnGap = t._layout.spacingX; //列距
- t._lineGap = t._layout.spacingY; //行距
- t._colLineNum; //列数或行数(非GRID模式则=1,表示单列或单行);
- t._verticalDir = t._layout.verticalDirection; //垂直排列子节点的方向
- t._horizontalDir = t._layout.horizontalDirection; //水平排列子节点的方向
- t.setTemplateItem(instantiate(t.templateType == TemplateType.PREFAB ? t.tmpPrefab : t.tmpNode));
- // 特定的滑动模式处理
- if (t._slideMode == SlideType.ADHERING || t._slideMode == SlideType.PAGE) {
- t._scrollView.inertia = false;
- t._scrollView._onMouseWheel = function () {
- return;
- };
- }
- if (!t.virtual) // lackCenter 仅支持 Virtual 模式
- t.lackCenter = false;
- t._lastDisplayData = []; //最后一次刷新的数据
- t.displayData = []; //当前数据
- t._pool = new NodePool(); //这是个池子..
- t._forceUpdate = false; //是否强制更新
- t._updateCounter = 0; //当前分帧渲染帧数
- t._updateDone = true; //分帧渲染是否完成
- t.curPageNum = 0; //当前页数
- if (t.cyclic || 0) {
- t._scrollView._processAutoScrolling = this._processAutoScrolling.bind(t);
- t._scrollView._startBounceBackIfNeeded = function () {
- return false;
- }
- }
- switch (t._align) {
- case Layout.Type.HORIZONTAL: {
- switch (t._horizontalDir) {
- case Layout.HorizontalDirection.LEFT_TO_RIGHT:
- t._alignCalcType = 1;
- break;
- case Layout.HorizontalDirection.RIGHT_TO_LEFT:
- t._alignCalcType = 2;
- break;
- }
- break;
- }
- case Layout.Type.VERTICAL: {
- switch (t._verticalDir) {
- case Layout.VerticalDirection.TOP_TO_BOTTOM:
- t._alignCalcType = 3;
- break;
- case Layout.VerticalDirection.BOTTOM_TO_TOP:
- t._alignCalcType = 4;
- break;
- }
- break;
- }
- case Layout.Type.GRID: {
- switch (t._startAxis) {
- case Layout.AxisDirection.HORIZONTAL:
- switch (t._verticalDir) {
- case Layout.VerticalDirection.TOP_TO_BOTTOM:
- t._alignCalcType = 3;
- break;
- case Layout.VerticalDirection.BOTTOM_TO_TOP:
- t._alignCalcType = 4;
- break;
- }
- break;
- case Layout.AxisDirection.VERTICAL:
- switch (t._horizontalDir) {
- case Layout.HorizontalDirection.LEFT_TO_RIGHT:
- t._alignCalcType = 1;
- break;
- case Layout.HorizontalDirection.RIGHT_TO_LEFT:
- t._alignCalcType = 2;
- break;
- }
- break;
- }
- break;
- }
- }
- // 清空 content
- // t.content.children.forEach((child: Node) => {
- // child.removeFromParent();
- // if (child != t.tmpNode && child.isValid)
- // child.destroy();
- // });
- t.content.removeAllChildren();
- t._inited = true;
- }
- /**
- * 为了实现循环列表,必须覆写cc.ScrollView的某些函数
- * @param {Number} dt
- */
- _processAutoScrolling(dt: number) {
- // ------------- scroll-view 里定义的一些常量 -------------
- const OUT_OF_BOUNDARY_BREAKING_FACTOR = 0.05;
- const EPSILON = 1e-4;
- const ZERO = new Vec3();
- const quintEaseOut = (time: number) => {
- time -= 1;
- return (time * time * time * time * time + 1);
- };
- // ------------- scroll-view 里定义的一些常量 -------------
- let sv: ScrollView = this._scrollView;
- const isAutoScrollBrake = sv['_isNecessaryAutoScrollBrake']();
- const brakingFactor = isAutoScrollBrake ? OUT_OF_BOUNDARY_BREAKING_FACTOR : 1;
- sv['_autoScrollAccumulatedTime'] += dt * (1 / brakingFactor);
- let percentage = Math.min(1, sv['_autoScrollAccumulatedTime'] / sv['_autoScrollTotalTime']);
- if (sv['_autoScrollAttenuate']) {
- percentage = quintEaseOut(percentage);
- }
- const clonedAutoScrollTargetDelta = sv['_autoScrollTargetDelta'].clone();
- clonedAutoScrollTargetDelta.multiplyScalar(percentage);
- const clonedAutoScrollStartPosition = sv['_autoScrollStartPosition'].clone();
- clonedAutoScrollStartPosition.add(clonedAutoScrollTargetDelta);
- let reachedEnd = Math.abs(percentage - 1) <= EPSILON;
- const fireEvent = Math.abs(percentage - 1) <= sv['getScrollEndedEventTiming']();
- if (fireEvent && !sv['_isScrollEndedWithThresholdEventFired']) {
- sv['_dispatchEvent'](ScrollView.EventType.SCROLL_ENG_WITH_THRESHOLD);
- sv['_isScrollEndedWithThresholdEventFired'] = true;
- }
- if (sv['elastic']) {
- const brakeOffsetPosition = clonedAutoScrollStartPosition.clone();
- brakeOffsetPosition.subtract(sv['_autoScrollBrakingStartPosition']);
- if (isAutoScrollBrake) {
- brakeOffsetPosition.multiplyScalar(brakingFactor);
- }
- clonedAutoScrollStartPosition.set(sv['_autoScrollBrakingStartPosition']);
- clonedAutoScrollStartPosition.add(brakeOffsetPosition);
- } else {
- const moveDelta = clonedAutoScrollStartPosition.clone();
- moveDelta.subtract(sv['_getContentPosition']());
- const outOfBoundary = sv['_getHowMuchOutOfBoundary'](moveDelta);
- if (!outOfBoundary.equals(ZERO, EPSILON)) {
- clonedAutoScrollStartPosition.add(outOfBoundary);
- reachedEnd = true;
- }
- }
- if (reachedEnd) {
- sv['_autoScrolling'] = false;
- }
- const deltaMove = new Vec3(clonedAutoScrollStartPosition);
- deltaMove.subtract(sv['_getContentPosition']());
- sv['_clampDelta'](deltaMove);
- sv['_moveContent'](deltaMove, reachedEnd);
- sv['_dispatchEvent'](ScrollView.EventType.SCROLLING);
- if (!sv['_autoScrolling']) {
- sv['_isBouncing'] = false;
- sv['_scrolling'] = false;
- sv['_dispatchEvent'](ScrollView.EventType.SCROLL_ENDED);
- }
- }
- //设置模板Item
- setTemplateItem(item: any) {
- if (!item)
- return;
- let t: any = this;
- t._itemTmp = item;
- t._itemTmpUt = item.getComponent(UITransform);
- if (t._resizeMode == Layout.ResizeMode.CHILDREN)
- t._itemSize = t._layout.cellSize;
- else {
- let itemUt: UITransform = item.getComponent(UITransform);
- t._itemSize = new Size(itemUt.width, itemUt.height);
- }
- //获取ListItem,如果没有就取消选择模式
- let com: any = item.getComponent(ListItem);
- let remove = false;
- if (!com)
- remove = true;
- // if (com) {
- // if (!com._btnCom && !item.getComponent(cc.Button)) {
- // remove = true;
- // }
- // }
- if (remove) {
- t.selectedMode = SelectedType.NONE;
- }
- com = item.getComponent(Widget);
- if (com && com.enabled) {
- t._needUpdateWidget = true;
- }
- if (t.selectedMode == SelectedType.MULT)
- t.multSelected = [];
- switch (t._align) {
- case Layout.Type.HORIZONTAL:
- t._colLineNum = 1;
- t._sizeType = false;
- break;
- case Layout.Type.VERTICAL:
- t._colLineNum = 1;
- t._sizeType = true;
- break;
- case Layout.Type.GRID:
- switch (t._startAxis) {
- case Layout.AxisDirection.HORIZONTAL:
- //计算列数
- let trimW: number = t._contentUt.width - t._leftGap - t._rightGap;
- t._colLineNum = Math.floor((trimW + t._columnGap) / (t._itemSize.width + t._columnGap));
- t._sizeType = true;
- break;
- case Layout.AxisDirection.VERTICAL:
- //计算行数
- let trimH: number = t._contentUt.height - t._topGap - t._bottomGap;
- t._colLineNum = Math.floor((trimH + t._lineGap) / (t._itemSize.height + t._lineGap));
- t._sizeType = false;
- break;
- }
- break;
- }
- }
- /**
- * 检查是否初始化
- * @param {Boolean} printLog 是否打印错误信息
- * @returns
- */
- checkInited(printLog: boolean = true) {
- if (!this._inited) {
- if (printLog)
- console.error('List initialization not completed!');
- return false;
- }
- return true;
- }
- //禁用 Layout 组件,自行计算 Content Size
- _resizeContent() {
- let t: any = this;
- let result: number;
- switch (t._align) {
- case Layout.Type.HORIZONTAL: {
- if (t._customSize) {
- let fixed: any = t._getFixedSize(null);
- result = t._leftGap + fixed.val + (t._itemSize.width * (t._numItems - fixed.count)) + (t._columnGap * (t._numItems - 1)) + t._rightGap;
- } else {
- result = t._leftGap + (t._itemSize.width * t._numItems) + (t._columnGap * (t._numItems - 1)) + t._rightGap;
- }
- break;
- }
- case Layout.Type.VERTICAL: {
- if (t._customSize) {
- let fixed: any = t._getFixedSize(null);
- result = t._topGap + fixed.val + (t._itemSize.height * (t._numItems - fixed.count)) + (t._lineGap * (t._numItems - 1)) + t._bottomGap;
- } else {
- result = t._topGap + (t._itemSize.height * t._numItems) + (t._lineGap * (t._numItems - 1)) + t._bottomGap;
- }
- break;
- }
- case Layout.Type.GRID: {
- //网格模式不支持居中
- if (t.lackCenter)
- t.lackCenter = false;
- switch (t._startAxis) {
- case Layout.AxisDirection.HORIZONTAL:
- let lineNum: number = Math.ceil(t._numItems / t._colLineNum);
- result = t._topGap + (t._itemSize.height * lineNum) + (t._lineGap * (lineNum - 1)) + t._bottomGap;
- break;
- case Layout.AxisDirection.VERTICAL:
- let colNum: number = Math.ceil(t._numItems / t._colLineNum);
- result = t._leftGap + (t._itemSize.width * colNum) + (t._columnGap * (colNum - 1)) + t._rightGap;
- break;
- }
- break;
- }
- }
- let layout: Layout = t.content.getComponent(Layout);
- if (layout)
- layout.enabled = false;
- t._allItemSize = result;
- t._allItemSizeNoEdge = t._allItemSize - (t._sizeType ? (t._topGap + t._bottomGap) : (t._leftGap + t._rightGap));
- if (t.cyclic) {
- let totalSize: number = (t._sizeType ? t._thisNodeUt.height : t._thisNodeUt.width);
- t._cyclicPos1 = 0;
- totalSize -= t._cyclicPos1;
- t._cyclicNum = Math.ceil(totalSize / t._allItemSizeNoEdge) + 1;
- let spacing: number = t._sizeType ? t._lineGap : t._columnGap;
- t._cyclicPos2 = t._cyclicPos1 + t._allItemSizeNoEdge + spacing;
- t._cyclicAllItemSize = t._allItemSize + (t._allItemSizeNoEdge * (t._cyclicNum - 1)) + (spacing * (t._cyclicNum - 1));
- t._cycilcAllItemSizeNoEdge = t._allItemSizeNoEdge * t._cyclicNum;
- t._cycilcAllItemSizeNoEdge += spacing * (t._cyclicNum - 1);
- // cc.log('_cyclicNum ->', t._cyclicNum, t._allItemSizeNoEdge, t._allItemSize, t._cyclicPos1, t._cyclicPos2);
- }
- t._lack = !t.cyclic && t._allItemSize < (t._sizeType ? t._thisNodeUt.height : t._thisNodeUt.width);
- let slideOffset: number = ((!t._lack || !t.lackCenter) && t.lackSlide) ? 0 : .1;
- let targetWH: number = t._lack ? ((t._sizeType ? t._thisNodeUt.height : t._thisNodeUt.width) - slideOffset) : (t.cyclic ? t._cyclicAllItemSize : t._allItemSize);
- if (targetWH < 0)
- targetWH = 0;
- if (t._sizeType) {
- t._contentUt.height = targetWH;
- } else {
- t._contentUt.width = targetWH;
- }
- // cc.log('_resizeContent() numItems =', t._numItems, ',content =', t.content);
- }
- //滚动进行时...
- _onScrolling(ev: Event = null) {
- if (this.frameCount == null)
- this.frameCount = this._updateRate;
- if (!this._forceUpdate && (ev && ev.type != 'scroll-ended') && this.frameCount > 0) {
- this.frameCount--;
- return;
- } else
- this.frameCount = this._updateRate;
- if (this._aniDelRuning)
- return;
- //循环列表处理
- if (this.cyclic) {
- let scrollPos: any = this.content.getPosition();
- scrollPos = this._sizeType ? scrollPos.y : scrollPos.x;
- let addVal = this._allItemSizeNoEdge + (this._sizeType ? this._lineGap : this._columnGap);
- let add: any = this._sizeType ? new Vec3(0, addVal, 0) : new Vec3(addVal, 0, 0);
- let contentPos = this.content.getPosition();
- switch (this._alignCalcType) {
- case 1://单行HORIZONTAL(LEFT_TO_RIGHT)、网格VERTICAL(LEFT_TO_RIGHT)
- if (scrollPos > -this._cyclicPos1) {
- contentPos.set(-this._cyclicPos2, contentPos.y, contentPos.z);
- this.content.setPosition(contentPos);
- if (this._scrollView.isAutoScrolling()) {
- this._scrollView['_autoScrollStartPosition'] = this._scrollView['_autoScrollStartPosition'].subtract(add);
- }
- // if (this._beganPos) {
- // this._beganPos += add;
- // }
- } else if (scrollPos < -this._cyclicPos2) {
- contentPos.set(-this._cyclicPos1, contentPos.y, contentPos.z);
- this.content.setPosition(contentPos);
- if (this._scrollView.isAutoScrolling()) {
- this._scrollView['_autoScrollStartPosition'] = this._scrollView['_autoScrollStartPosition'].add(add);
- }
- // if (this._beganPos) {
- // this._beganPos -= add;
- // }
- }
- break;
- case 2://单行HORIZONTAL(RIGHT_TO_LEFT)、网格VERTICAL(RIGHT_TO_LEFT)
- if (scrollPos < this._cyclicPos1) {
- contentPos.set(this._cyclicPos2, contentPos.y, contentPos.z);
- this.content.setPosition(contentPos);
- if (this._scrollView.isAutoScrolling()) {
- this._scrollView['_autoScrollStartPosition'] = this._scrollView['_autoScrollStartPosition'].add(add);
- }
- } else if (scrollPos > this._cyclicPos2) {
- contentPos.set(this._cyclicPos1, contentPos.y, contentPos.z);
- this.content.setPosition(contentPos);
- if (this._scrollView.isAutoScrolling()) {
- this._scrollView['_autoScrollStartPosition'] = this._scrollView['_autoScrollStartPosition'].subtract(add);
- }
- }
- break;
- case 3://单列VERTICAL(TOP_TO_BOTTOM)、网格HORIZONTAL(TOP_TO_BOTTOM)
- if (scrollPos < this._cyclicPos1) {
- contentPos.set(contentPos.x, this._cyclicPos2, contentPos.z);
- this.content.setPosition(contentPos);
- if (this._scrollView.isAutoScrolling()) {
- this._scrollView['_autoScrollStartPosition'] = this._scrollView['_autoScrollStartPosition'].add(add);
- }
- } else if (scrollPos > this._cyclicPos2) {
- contentPos.set(contentPos.x, this._cyclicPos1, contentPos.z);
- this.content.setPosition(contentPos);
- if (this._scrollView.isAutoScrolling()) {
- this._scrollView['_autoScrollStartPosition'] = this._scrollView['_autoScrollStartPosition'].subtract(add);
- }
- }
- break;
- case 4://单列VERTICAL(BOTTOM_TO_TOP)、网格HORIZONTAL(BOTTOM_TO_TOP)
- if (scrollPos > -this._cyclicPos1) {
- contentPos.set(contentPos.x, -this._cyclicPos2, contentPos.z);
- this.content.setPosition(contentPos);
- if (this._scrollView.isAutoScrolling()) {
- this._scrollView['_autoScrollStartPosition'] = this._scrollView['_autoScrollStartPosition'].subtract(add);
- }
- } else if (scrollPos < -this._cyclicPos2) {
- contentPos.set(contentPos.x, -this._cyclicPos1, contentPos.z);
- this.content.setPosition(contentPos);
- if (this._scrollView.isAutoScrolling()) {
- this._scrollView['_autoScrollStartPosition'] = this._scrollView['_autoScrollStartPosition'].add(add);
- }
- }
- break;
- }
- }
- this._calcViewPos();
- let vTop: number, vRight: number, vBottom: number, vLeft: number;
- if (this._sizeType) {
- vTop = this.viewTop;
- vBottom = this.viewBottom;
- } else {
- vRight = this.viewRight;
- vLeft = this.viewLeft;
- }
- if (this._virtual) {
- this.displayData = [];
- let itemPos: any;
- let curId: number = 0;
- let endId: number = this._numItems - 1;
- if (this._customSize) {
- let breakFor: boolean = false;
- //如果该item的位置在可视区域内,就推入displayData
- for (; curId <= endId && !breakFor; curId++) {
- itemPos = this._calcItemPos(curId);
- switch (this._align) {
- case Layout.Type.HORIZONTAL:
- if (itemPos.right >= vLeft && itemPos.left <= vRight) {
- this.displayData.push(itemPos);
- } else if (curId != 0 && this.displayData.length > 0) {
- breakFor = true;
- }
- break;
- case Layout.Type.VERTICAL:
- if (itemPos.bottom <= vTop && itemPos.top >= vBottom) {
- this.displayData.push(itemPos);
- } else if (curId != 0 && this.displayData.length > 0) {
- breakFor = true;
- }
- break;
- case Layout.Type.GRID:
- switch (this._startAxis) {
- case Layout.AxisDirection.HORIZONTAL:
- if (itemPos.bottom <= vTop && itemPos.top >= vBottom) {
- this.displayData.push(itemPos);
- } else if (curId != 0 && this.displayData.length > 0) {
- breakFor = true;
- }
- break;
- case Layout.AxisDirection.VERTICAL:
- if (itemPos.right >= vLeft && itemPos.left <= vRight) {
- this.displayData.push(itemPos);
- } else if (curId != 0 && this.displayData.length > 0) {
- breakFor = true;
- }
- break;
- }
- break;
- }
- }
- } else {
- let ww: number = this._itemSize.width + this._columnGap;
- let hh: number = this._itemSize.height + this._lineGap;
- switch (this._alignCalcType) {
- case 1://单行HORIZONTAL(LEFT_TO_RIGHT)、网格VERTICAL(LEFT_TO_RIGHT)
- curId = (vLeft - this._leftGap) / ww;
- endId = (vRight - this._leftGap) / ww;
- break;
- case 2://单行HORIZONTAL(RIGHT_TO_LEFT)、网格VERTICAL(RIGHT_TO_LEFT)
- curId = (-vRight - this._rightGap) / ww;
- endId = (-vLeft - this._rightGap) / ww;
- break;
- case 3://单列VERTICAL(TOP_TO_BOTTOM)、网格HORIZONTAL(TOP_TO_BOTTOM)
- curId = (-vTop - this._topGap) / hh;
- endId = (-vBottom - this._topGap) / hh;
- break;
- case 4://单列VERTICAL(BOTTOM_TO_TOP)、网格HORIZONTAL(BOTTOM_TO_TOP)
- curId = (vBottom - this._bottomGap) / hh;
- endId = (vTop - this._bottomGap) / hh;
- break;
- }
- curId = Math.floor(curId) * this._colLineNum;
- endId = Math.ceil(endId) * this._colLineNum;
- endId--;
- if (curId < 0)
- curId = 0;
- if (endId >= this._numItems)
- endId = this._numItems - 1;
- for (; curId <= endId; curId++) {
- this.displayData.push(this._calcItemPos(curId));
- }
- }
- this._delRedundantItem();
- if (this.displayData.length <= 0 || !this._numItems) { //if none, delete all.
- this._lastDisplayData = [];
- return;
- }
- this.firstListId = this.displayData[0].id;
- this.displayItemNum = this.displayData.length;
- let len: number = this._lastDisplayData.length;
- let haveDataChange: boolean = this.displayItemNum != len;
- if (haveDataChange) {
- // 如果是逐帧渲染,需要排序
- if (this.frameByFrameRenderNum > 0) {
- this._lastDisplayData.sort((a, b) => { return a - b });
- }
- // 因List的显示数据是有序的,所以只需要判断数组长度是否相等,以及头、尾两个元素是否相等即可。
- haveDataChange = this.firstListId != this._lastDisplayData[0] || this.displayData[this.displayItemNum - 1].id != this._lastDisplayData[len - 1];
- }
- if (this._forceUpdate || haveDataChange) { //如果是强制更新
- if (this.frameByFrameRenderNum > 0) {
- // if (this._updateDone) {
- // this._lastDisplayData = [];
- //逐帧渲染
- if (this._numItems > 0) {
- if (!this._updateDone) {
- this._doneAfterUpdate = true;
- } else {
- this._updateCounter = 0;
- }
- this._updateDone = false;
- } else {
- this._updateCounter = 0;
- this._updateDone = true;
- }
- // }
- } else {
- //直接渲染
- this._lastDisplayData = [];
- // cc.log('List Display Data II::', this.displayData);
- for (let c = 0; c < this.displayItemNum; c++) {
- this._createOrUpdateItem(this.displayData[c]);
- }
- this._forceUpdate = false;
- }
- }
- this._calcNearestItem();
- }
- }
- //计算可视范围
- _calcViewPos() {
- let scrollPos: any = this.content.getPosition();
- switch (this._alignCalcType) {
- case 1://单行HORIZONTAL(LEFT_TO_RIGHT)、网格VERTICAL(LEFT_TO_RIGHT)
- this.elasticLeft = scrollPos.x > 0 ? scrollPos.x : 0;
- this.viewLeft = (scrollPos.x < 0 ? -scrollPos.x : 0) - this.elasticLeft;
- this.viewRight = this.viewLeft + this._thisNodeUt.width;
- this.elasticRight = this.viewRight > this._contentUt.width ? Math.abs(this.viewRight - this._contentUt.width) : 0;
- this.viewRight += this.elasticRight;
- // cc.log(this.elasticLeft, this.elasticRight, this.viewLeft, this.viewRight);
- break;
- case 2://单行HORIZONTAL(RIGHT_TO_LEFT)、网格VERTICAL(RIGHT_TO_LEFT)
- this.elasticRight = scrollPos.x < 0 ? -scrollPos.x : 0;
- this.viewRight = (scrollPos.x > 0 ? -scrollPos.x : 0) + this.elasticRight;
- this.viewLeft = this.viewRight - this._thisNodeUt.width;
- this.elasticLeft = this.viewLeft < -this._contentUt.width ? Math.abs(this.viewLeft + this._contentUt.width) : 0;
- this.viewLeft -= this.elasticLeft;
- // cc.log(this.elasticLeft, this.elasticRight, this.viewLeft, this.viewRight);
- break;
- case 3://单列VERTICAL(TOP_TO_BOTTOM)、网格HORIZONTAL(TOP_TO_BOTTOM)
- this.elasticTop = scrollPos.y < 0 ? Math.abs(scrollPos.y) : 0;
- this.viewTop = (scrollPos.y > 0 ? -scrollPos.y : 0) + this.elasticTop;
- this.viewBottom = this.viewTop - this._thisNodeUt.height;
- this.elasticBottom = this.viewBottom < -this._contentUt.height ? Math.abs(this.viewBottom + this._contentUt.height) : 0;
- this.viewBottom += this.elasticBottom;
- // cc.log(this.elasticTop, this.elasticBottom, this.viewTop, this.viewBottom);
- break;
- case 4://单列VERTICAL(BOTTOM_TO_TOP)、网格HORIZONTAL(BOTTOM_TO_TOP)
- this.elasticBottom = scrollPos.y > 0 ? Math.abs(scrollPos.y) : 0;
- this.viewBottom = (scrollPos.y < 0 ? -scrollPos.y : 0) - this.elasticBottom;
- this.viewTop = this.viewBottom + this._thisNodeUt.height;
- this.elasticTop = this.viewTop > this._contentUt.height ? Math.abs(this.viewTop - this._contentUt.height) : 0;
- this.viewTop -= this.elasticTop;
- // cc.log(this.elasticTop, this.elasticBottom, this.viewTop, this.viewBottom);
- break;
- }
- }
- //计算位置 根据id
- _calcItemPos(id: number) {
- let width: number, height: number, top: number, bottom: number, left: number, right: number, itemX: number, itemY: number;
- switch (this._align) {
- case Layout.Type.HORIZONTAL:
- switch (this._horizontalDir) {
- case Layout.HorizontalDirection.LEFT_TO_RIGHT: {
- if (this._customSize) {
- let fixed: any = this._getFixedSize(id);
- left = this._leftGap + ((this._itemSize.width + this._columnGap) * (id - fixed.count)) + (fixed.val + (this._columnGap * fixed.count));
- let cs: number = this._customSize[id];
- width = (cs > 0 ? cs : this._itemSize.width);
- } else {
- left = this._leftGap + ((this._itemSize.width + this._columnGap) * id);
- width = this._itemSize.width;
- }
- if (this.lackCenter) {
- left -= this._leftGap;
- let offset: number = (this._contentUt.width / 2) - (this._allItemSizeNoEdge / 2);
- left += offset;
- }
- right = left + width;
- return {
- id: id,
- left: left,
- right: right,
- x: left + (this._itemTmpUt.anchorX * width),
- y: this._itemTmp.y,
- };
- }
- case Layout.HorizontalDirection.RIGHT_TO_LEFT: {
- if (this._customSize) {
- let fixed: any = this._getFixedSize(id);
- right = -this._rightGap - ((this._itemSize.width + this._columnGap) * (id - fixed.count)) - (fixed.val + (this._columnGap * fixed.count));
- let cs: number = this._customSize[id];
- width = (cs > 0 ? cs : this._itemSize.width);
- } else {
- right = -this._rightGap - ((this._itemSize.width + this._columnGap) * id);
- width = this._itemSize.width;
- }
- if (this.lackCenter) {
- right += this._rightGap;
- let offset: number = (this._contentUt.width / 2) - (this._allItemSizeNoEdge / 2);
- right -= offset;
- }
- left = right - width;
- return {
- id: id,
- right: right,
- left: left,
- x: left + (this._itemTmpUt.anchorX * width),
- y: this._itemTmp.y,
- };
- }
- }
- break;
- case Layout.Type.VERTICAL: {
- switch (this._verticalDir) {
- case Layout.VerticalDirection.TOP_TO_BOTTOM: {
- if (this._customSize) {
- let fixed: any = this._getFixedSize(id);
- top = -this._topGap - ((this._itemSize.height + this._lineGap) * (id - fixed.count)) - (fixed.val + (this._lineGap * fixed.count));
- let cs: number = this._customSize[id];
- height = (cs > 0 ? cs : this._itemSize.height);
- } else {
- top = -this._topGap - ((this._itemSize.height + this._lineGap) * id);
- height = this._itemSize.height;
- }
- if (this.lackCenter) {
- top += this._topGap;
- let offset: number = (this._contentUt.height / 2) - (this._allItemSizeNoEdge / 2);
- top -= offset;
- }
- bottom = top - height;
- return {
- id: id,
- top: top,
- bottom: bottom,
- x: this._itemTmp.x,
- y: bottom + (this._itemTmpUt.anchorY * height),
- };
- }
- case Layout.VerticalDirection.BOTTOM_TO_TOP: {
- if (this._customSize) {
- let fixed: any = this._getFixedSize(id);
- bottom = this._bottomGap + ((this._itemSize.height + this._lineGap) * (id - fixed.count)) + (fixed.val + (this._lineGap * fixed.count));
- let cs: number = this._customSize[id];
- height = (cs > 0 ? cs : this._itemSize.height);
- } else {
- bottom = this._bottomGap + ((this._itemSize.height + this._lineGap) * id);
- height = this._itemSize.height;
- }
- if (this.lackCenter) {
- bottom -= this._bottomGap;
- let offset: number = (this._contentUt.height / 2) - (this._allItemSizeNoEdge / 2);
- bottom += offset;
- }
- top = bottom + height;
- return {
- id: id,
- top: top,
- bottom: bottom,
- x: this._itemTmp.x,
- y: bottom + (this._itemTmpUt.anchorY * height),
- };
- break;
- }
- }
- }
- case Layout.Type.GRID: {
- let colLine: number = Math.floor(id / this._colLineNum);
- switch (this._startAxis) {
- case Layout.AxisDirection.HORIZONTAL: {
- switch (this._verticalDir) {
- case Layout.VerticalDirection.TOP_TO_BOTTOM: {
- top = -this._topGap - ((this._itemSize.height + this._lineGap) * colLine);
- bottom = top - this._itemSize.height;
- itemY = bottom + (this._itemTmpUt.anchorY * this._itemSize.height);
- break;
- }
- case Layout.VerticalDirection.BOTTOM_TO_TOP: {
- bottom = this._bottomGap + ((this._itemSize.height + this._lineGap) * colLine);
- top = bottom + this._itemSize.height;
- itemY = bottom + (this._itemTmpUt.anchorY * this._itemSize.height);
- break;
- }
- }
- itemX = this._leftGap + ((id % this._colLineNum) * (this._itemSize.width + this._columnGap));
- switch (this._horizontalDir) {
- case Layout.HorizontalDirection.LEFT_TO_RIGHT: {
- itemX += (this._itemTmpUt.anchorX * this._itemSize.width);
- itemX -= (this._contentUt.anchorX * this._contentUt.width);
- break;
- }
- case Layout.HorizontalDirection.RIGHT_TO_LEFT: {
- itemX += ((1 - this._itemTmpUt.anchorX) * this._itemSize.width);
- itemX -= ((1 - this._contentUt.anchorX) * this._contentUt.width);
- itemX *= -1;
- break;
- }
- }
- return {
- id: id,
- top: top,
- bottom: bottom,
- x: itemX,
- y: itemY,
- };
- }
- case Layout.AxisDirection.VERTICAL: {
- switch (this._horizontalDir) {
- case Layout.HorizontalDirection.LEFT_TO_RIGHT: {
- left = this._leftGap + ((this._itemSize.width + this._columnGap) * colLine);
- right = left + this._itemSize.width;
- itemX = left + (this._itemTmpUt.anchorX * this._itemSize.width);
- itemX -= (this._contentUt.anchorX * this._contentUt.width);
- break;
- }
- case Layout.HorizontalDirection.RIGHT_TO_LEFT: {
- right = -this._rightGap - ((this._itemSize.width + this._columnGap) * colLine);
- left = right - this._itemSize.width;
- itemX = left + (this._itemTmpUt.anchorX * this._itemSize.width);
- itemX += ((1 - this._contentUt.anchorX) * this._contentUt.width);
- break;
- }
- }
- itemY = -this._topGap - ((id % this._colLineNum) * (this._itemSize.height + this._lineGap));
- switch (this._verticalDir) {
- case Layout.VerticalDirection.TOP_TO_BOTTOM: {
- itemY -= ((1 - this._itemTmpUt.anchorY) * this._itemSize.height);
- itemY += ((1 - this._contentUt.anchorY) * this._contentUt.height);
- break;
- }
- case Layout.VerticalDirection.BOTTOM_TO_TOP: {
- itemY -= ((this._itemTmpUt.anchorY) * this._itemSize.height);
- itemY += (this._contentUt.anchorY * this._contentUt.height);
- itemY *= -1;
- break;
- }
- }
- return {
- id: id,
- left: left,
- right: right,
- x: itemX,
- y: itemY,
- };
- }
- }
- break;
- }
- }
- }
- //计算已存在的Item的位置
- _calcExistItemPos(id: number) {
- let item: any = this.getItemByListId(id);
- if (!item)
- return null;
- let ut: UITransform = item.getComponent(UITransform);
- let pos: Vec3 = item.getPosition();
- let data: any = {
- id: id,
- x: pos.x,
- y: pos.y,
- }
- if (this._sizeType) {
- data.top = pos.y + (ut.height * (1 - ut.anchorY));
- data.bottom = pos.y - (ut.height * ut.anchorY);
- } else {
- data.left = pos.x - (ut.width * ut.anchorX);
- data.right = pos.x + (ut.width * (1 - ut.anchorX));
- }
- return data;
- }
- //获取Item位置
- getItemPos(id: number) {
- if (this._virtual)
- return this._calcItemPos(id);
- else {
- if (this.frameByFrameRenderNum)
- return this._calcItemPos(id);
- else
- return this._calcExistItemPos(id);
- }
- }
- //获取固定尺寸
- _getFixedSize(listId: number) {
- if (!this._customSize)
- return null;
- if (listId == null)
- listId = this._numItems;
- let fixed: number = 0;
- let count: number = 0;
- for (let id in this._customSize) {
- if (parseInt(id) < listId) {
- fixed += this._customSize[id];
- count++;
- }
- }
- return {
- val: fixed,
- count: count,
- }
- }
- //滚动结束时..
- _onScrollBegan() {
- this._beganPos = this._sizeType ? this.viewTop : this.viewLeft;
- }
- //滚动结束时..
- _onScrollEnded() {
- let t: any = this;
- t._curScrollIsTouch = false;
- if (t.scrollToListId != null) {
- let item: any = t.getItemByListId(t.scrollToListId);
- t.scrollToListId = null;
- if (item) {
- tween(item)
- .to(.1, { scale: 1.06 })
- .to(.1, { scale: 1 })
- .start();
- }
- }
- t._onScrolling();
- if (t._slideMode == SlideType.ADHERING &&
- !t.adhering
- ) {
- //cc.log(t.adhering, t._scrollView.isAutoScrolling(), t._scrollView.isScrolling());
- t.adhere();
- } else if (t._slideMode == SlideType.PAGE) {
- if (t._beganPos != null && t._curScrollIsTouch) {
- this._pageAdhere();
- } else {
- t.adhere();
- }
- }
- }
- // 触摸时
- _onTouchStart(ev, captureListeners) {
- if (this._scrollView['_hasNestedViewGroup'](ev, captureListeners))
- return;
- this._curScrollIsTouch = true;
- let isMe = ev.eventPhase === Event.AT_TARGET && ev.target === this.node;
- if (!isMe) {
- let itemNode: any = ev.target;
- while (itemNode._listId == null && itemNode.parent)
- itemNode = itemNode.parent;
- this._scrollItem = itemNode._listId != null ? itemNode : ev.target;
- }
- }
- //触摸抬起时..
- _onTouchUp() {
- let t: any = this;
- t._scrollPos = null;
- if (t._slideMode == SlideType.ADHERING) {
- if (this.adhering)
- this._adheringBarrier = true;
- t.adhere();
- } else if (t._slideMode == SlideType.PAGE) {
- if (t._beganPos != null) {
- this._pageAdhere();
- } else {
- t.adhere();
- }
- }
- this._scrollItem = null;
- }
- _onTouchCancelled(ev, captureListeners) {
- let t = this;
- if (t._scrollView['_hasNestedViewGroup'](ev, captureListeners) || ev.simulate)
- return;
- t._scrollPos = null;
- if (t._slideMode == SlideType.ADHERING) {
- if (t.adhering)
- t._adheringBarrier = true;
- t.adhere();
- } else if (t._slideMode == SlideType.PAGE) {
- if (t._beganPos != null) {
- t._pageAdhere();
- } else {
- t.adhere();
- }
- }
- this._scrollItem = null;
- }
- //当尺寸改变
- _onSizeChanged() {
- if (this.checkInited(false))
- this._onScrolling();
- }
- //当Item自适应
- _onItemAdaptive(item: any) {
- let ut: UITransform = item.getComponent(UITransform);
- // if (this.checkInited(false)) {
- if (
- (!this._sizeType && ut.width != this._itemSize.width)
- || (this._sizeType && ut.height != this._itemSize.height)
- ) {
- if (!this._customSize)
- this._customSize = {};
- let val = this._sizeType ? ut.height : ut.width;
- if (this._customSize[item._listId] != val) {
- this._customSize[item._listId] = val;
- this._resizeContent();
- // this.content.children.forEach((child: Node) => {
- // this._updateItemPos(child);
- // });
- this.updateAll();
- // 如果当前正在运行 scrollTo,肯定会不准确,在这里做修正
- if (this._scrollToListId != null) {
- this._scrollPos = null;
- this.unschedule(this._scrollToSo);
- this.scrollTo(this._scrollToListId, Math.max(0, this._scrollToEndTime - ((new Date()).getTime() / 1000)));
- }
- }
- }
- // }
- }
- //PAGE粘附
- _pageAdhere() {
- let t = this;
- if (!t.cyclic && (t.elasticTop > 0 || t.elasticRight > 0 || t.elasticBottom > 0 || t.elasticLeft > 0))
- return;
- let curPos = t._sizeType ? t.viewTop : t.viewLeft;
- let dis = (t._sizeType ? t._thisNodeUt.height : t._thisNodeUt.width) * t.pageDistance;
- let canSkip = Math.abs(t._beganPos - curPos) > dis;
- if (canSkip) {
- let timeInSecond = .5;
- switch (t._alignCalcType) {
- case 1://单行HORIZONTAL(LEFT_TO_RIGHT)、网格VERTICAL(LEFT_TO_RIGHT)
- case 4://单列VERTICAL(BOTTOM_TO_TOP)、网格HORIZONTAL(BOTTOM_TO_TOP)
- if (t._beganPos > curPos) {
- t.prePage(timeInSecond);
- // cc.log('_pageAdhere PPPPPPPPPPPPPPP');
- } else {
- t.nextPage(timeInSecond);
- // cc.log('_pageAdhere NNNNNNNNNNNNNNN');
- }
- break;
- case 2://单行HORIZONTAL(RIGHT_TO_LEFT)、网格VERTICAL(RIGHT_TO_LEFT)
- case 3://单列VERTICAL(TOP_TO_BOTTOM)、网格HORIZONTAL(TOP_TO_BOTTOM)
- if (t._beganPos < curPos) {
- t.prePage(timeInSecond);
- } else {
- t.nextPage(timeInSecond);
- }
- break;
- }
- } else if (t.elasticTop <= 0 && t.elasticRight <= 0 && t.elasticBottom <= 0 && t.elasticLeft <= 0) {
- t.adhere();
- }
- t._beganPos = null;
- }
- //粘附
- adhere() {
- let t: any = this;
- if (!t.checkInited())
- return;
- if (t.elasticTop > 0 || t.elasticRight > 0 || t.elasticBottom > 0 || t.elasticLeft > 0)
- return;
- t.adhering = true;
- t._calcNearestItem();
- let offset: number = (t._sizeType ? t._topGap : t._leftGap) / (t._sizeType ? t._thisNodeUt.height : t._thisNodeUt.width);
- let timeInSecond: number = .7;
- t.scrollTo(t.nearestListId, timeInSecond, offset);
- }
- //Update..
- update() {
- if (this.frameByFrameRenderNum <= 0 || this._updateDone)
- return;
- // cc.log(this.displayData.length, this._updateCounter, this.displayData[this._updateCounter]);
- if (this._virtual) {
- let len: number = (this._updateCounter + this.frameByFrameRenderNum) > this.displayItemNum ? this.displayItemNum : (this._updateCounter + this.frameByFrameRenderNum);
- for (let n: number = this._updateCounter; n < len; n++) {
- let data: any = this.displayData[n];
- if (data) {
- this._createOrUpdateItem(data);
- }
- }
- if (this._updateCounter >= this.displayItemNum - 1) { //最后一个
- if (this._doneAfterUpdate) {
- this._updateCounter = 0;
- this._updateDone = false;
- // if (!this._scrollView.isScrolling())
- this._doneAfterUpdate = false;
- } else {
- this._updateDone = true;
- this._delRedundantItem();
- this._forceUpdate = false;
- this._calcNearestItem();
- if (this.slideMode == SlideType.PAGE)
- this.curPageNum = this.nearestListId;
- }
- } else {
- this._updateCounter += this.frameByFrameRenderNum;
- }
- } else {
- if (this._updateCounter < this._numItems) {
- let len: number = (this._updateCounter + this.frameByFrameRenderNum) > this._numItems ? this._numItems : (this._updateCounter + this.frameByFrameRenderNum);
- for (let n: number = this._updateCounter; n < len; n++) {
- this._createOrUpdateItem2(n);
- }
- this._updateCounter += this.frameByFrameRenderNum;
- } else {
- this._updateDone = true;
- this._calcNearestItem();
- if (this.slideMode == SlideType.PAGE)
- this.curPageNum = this.nearestListId;
- }
- }
- }
- /**
- * 创建或更新Item(虚拟列表用)
- * @param {Object} data 数据
- */
- _createOrUpdateItem(data: any) {
- let item: any = this.getItemByListId(data.id);
- if (!item) { //如果不存在
- let canGet: boolean = this._pool.size() > 0;
- if (canGet) {
- item = this._pool.get();
- // cc.log('从池中取出:: 旧id =', item['_listId'], ',新id =', data.id, item);
- } else {
- item = instantiate(this._itemTmp);
- // cc.log('新建::', data.id, item);
- }
- if (!canGet || !isValid(item)) {
- item = instantiate(this._itemTmp);
- canGet = false;
- }
- if (item._listId != data.id) {
- item._listId = data.id;
- let ut: UITransform = item.getComponent(UITransform);
- ut.setContentSize(this._itemSize);
- }
- item.setPosition(new Vec3(data.x, data.y, 0));
- this._resetItemSize(item);
- this.content.addChild(item);
- if (canGet && this._needUpdateWidget) {
- let widget: Widget = item.getComponent(Widget);
- if (widget)
- widget.updateAlignment();
- }
- item.setSiblingIndex(this.content.children.length - 1);
- let listItem: ListItem = item.getComponent(ListItem);
- item['listItem'] = listItem;
- if (listItem) {
- listItem.listId = data.id;
- listItem.list = this;
- listItem._registerEvent();
- }
- if (this.renderEvent) {
- EventHandler.emitEvents([this.renderEvent], item, data.id % this._actualNumItems);
- }
- } else if (this._forceUpdate && this.renderEvent) { //强制更新
- item.setPosition(new Vec3(data.x, data.y, 0));
- this._resetItemSize(item);
- // cc.log('ADD::', data.id, item);
- if (this.renderEvent) {
- EventHandler.emitEvents([this.renderEvent], item, data.id % this._actualNumItems);
- }
- }
- this._resetItemSize(item);
- this._updateListItem(item['listItem']);
- if (this._lastDisplayData.indexOf(data.id) < 0) {
- this._lastDisplayData.push(data.id);
- }
- }
- //创建或更新Item(非虚拟列表用)
- _createOrUpdateItem2(listId: number) {
- let item: any = this.content.children[listId];
- let listItem: ListItem;
- if (!item) { //如果不存在
- item = instantiate(this._itemTmp);
- item._listId = listId;
- this.content.addChild(item);
- listItem = item.getComponent(ListItem);
- item['listItem'] = listItem;
- if (listItem) {
- listItem.listId = listId;
- listItem.list = this;
- listItem._registerEvent();
- }
- if (this.renderEvent) {
- EventHandler.emitEvents([this.renderEvent], item, listId % this._actualNumItems);
- }
- } else if (this._forceUpdate && this.renderEvent) { //强制更新
- item._listId = listId;
- if (listItem)
- listItem.listId = listId;
- if (this.renderEvent) {
- EventHandler.emitEvents([this.renderEvent], item, listId % this._actualNumItems);
- }
- }
- this._updateListItem(listItem);
- if (this._lastDisplayData.indexOf(listId) < 0) {
- this._lastDisplayData.push(listId);
- }
- }
- _updateListItem(listItem: ListItem) {
- if (!listItem)
- return;
- if (this.selectedMode > SelectedType.NONE) {
- let item: any = listItem.node;
- switch (this.selectedMode) {
- case SelectedType.SINGLE:
- listItem.selected = this.selectedId == item._listId;
- break;
- case SelectedType.MULT:
- listItem.selected = this.multSelected.indexOf(item._listId) >= 0;
- break;
- }
- }
- }
- //仅虚拟列表用
- _resetItemSize(item: any) {
- return;
- let size: number;
- let ut: UITransform = item.getComponent(UITransform);
- if (this._customSize && this._customSize[item._listId]) {
- size = this._customSize[item._listId];
- } else {
- if (this._colLineNum > 1)
- ut.setContentSize(this._itemSize);
- else
- size = this._sizeType ? this._itemSize.height : this._itemSize.width;
- }
- if (size) {
- if (this._sizeType)
- ut.height = size;
- else
- ut.width = size;
- }
- }
- /**
- * 更新Item位置
- * @param {Number||Node} listIdOrItem
- */
- _updateItemPos(listIdOrItem: any) {
- let item: any = isNaN(listIdOrItem) ? listIdOrItem : this.getItemByListId(listIdOrItem);
- let pos: any = this.getItemPos(item._listId);
- item.setPosition(pos.x, pos.y);
- }
- /**
- * 设置多选
- * @param {Array} args 可以是单个listId,也可是个listId数组
- * @param {Boolean} bool 值,如果为null的话,则直接用args覆盖
- */
- setMultSelected(args: any, bool: boolean) {
- let t: any = this;
- if (!t.checkInited())
- return;
- if (!Array.isArray(args)) {
- args = [args];
- }
- if (bool == null) {
- t.multSelected = args;
- } else {
- let listId: number, sub: number;
- if (bool) {
- for (let n: number = args.length - 1; n >= 0; n--) {
- listId = args[n];
- sub = t.multSelected.indexOf(listId);
- if (sub < 0) {
- t.multSelected.push(listId);
- }
- }
- } else {
- for (let n: number = args.length - 1; n >= 0; n--) {
- listId = args[n];
- sub = t.multSelected.indexOf(listId);
- if (sub >= 0) {
- t.multSelected.splice(sub, 1);
- }
- }
- }
- }
- t._forceUpdate = true;
- t._onScrolling();
- }
- /**
- * 获取多选数据
- * @returns
- */
- getMultSelected() {
- return this.multSelected;
- }
- /**
- * 多选是否有选择
- * @param {number} listId 索引
- * @returns
- */
- hasMultSelected(listId: number) {
- return this.multSelected && this.multSelected.indexOf(listId) >= 0;
- }
- /**
- * 更新指定的Item
- * @param {Array} args 单个listId,或者数组
- * @returns
- */
- updateItem(args: any) {
- if (!this.checkInited())
- return;
- if (!Array.isArray(args)) {
- args = [args];
- }
- for (let n: number = 0, len: number = args.length; n < len; n++) {
- let listId: number = args[n];
- let item: any = this.getItemByListId(listId);
- if (item)
- EventHandler.emitEvents([this.renderEvent], item, listId % this._actualNumItems);
- }
- }
- /**
- * 更新全部
- */
- updateAll() {
- if (!this.checkInited())
- return;
- this.numItems = this.numItems;
- }
- /**
- * 根据ListID获取Item
- * @param {Number} listId
- * @returns
- */
- getItemByListId(listId: number) {
- if (this.content) {
- for (let n: number = this.content.children.length - 1; n >= 0; n--) {
- let item: any = this.content.children[n];
- if (item._listId == listId)
- return item;
- }
- }
- }
- /**
- * 获取在显示区域外的Item
- * @returns
- */
- _getOutsideItem() {
- let item: any;
- let result: any[] = [];
- for (let n: number = this.content.children.length - 1; n >= 0; n--) {
- item = this.content.children[n];
- if (!this.displayData.find(d => d.id == item._listId)) {
- result.push(item);
- }
- }
- return result;
- }
- //删除显示区域以外的Item
- _delRedundantItem() {
- if (this._virtual) {
- let arr: any[] = this._getOutsideItem();
- for (let n: number = arr.length - 1; n >= 0; n--) {
- let item: any = arr[n];
- if (this._scrollItem && item._listId == this._scrollItem._listId)
- continue;
- item.isCached = true;
- this._pool.put(item);
- for (let m: number = this._lastDisplayData.length - 1; m >= 0; m--) {
- if (this._lastDisplayData[m] == item._listId) {
- this._lastDisplayData.splice(m, 1);
- break;
- }
- }
- }
- // cc.log('存入::', str, ' pool.length =', this._pool.length);
- } else {
- while (this.content.children.length > this._numItems) {
- this._delSingleItem(this.content.children[this.content.children.length - 1]);
- }
- }
- }
- //删除单个Item
- _delSingleItem(item: any) {
- // cc.log('DEL::', item['_listId'], item);
- item.removeFromParent();
- if (item.destroy)
- item.destroy();
- item = null;
- }
- /**
- * 动效删除Item(此方法只适用于虚拟列表,即_virtual=true)
- * 一定要在回调函数里重新设置新的numItems进行刷新,毕竟本List是靠数据驱动的。
- */
- aniDelItem(listId: number, callFunc: Function, aniType: number) {
- let t: any = this;
- if (!t.checkInited() || t.cyclic || !t._virtual)
- return console.error('This function is not allowed to be called!');
- if (!callFunc)
- return console.error('CallFunc are not allowed to be NULL, You need to delete the corresponding index in the data array in the CallFunc!');
- if (t._aniDelRuning)
- return console.warn('Please wait for the current deletion to finish!');
- let item: any = t.getItemByListId(listId);
- let listItem: ListItem;
- if (!item) {
- callFunc(listId);
- return;
- } else {
- listItem = item.getComponent(ListItem);
- }
- t._aniDelRuning = true;
- t._aniDelCB = callFunc;
- t._aniDelItem = item;
- t._aniDelBeforePos = item.position;
- t._aniDelBeforeScale = item.scale;
- let curLastId: number = t.displayData[t.displayData.length - 1].id;
- let resetSelectedId: boolean = listItem.selected;
- listItem.showAni(aniType, () => {
- //判断有没有下一个,如果有的话,创建粗来
- let newId: number;
- if (curLastId < t._numItems - 2) {
- newId = curLastId + 1;
- }
- if (newId != null) {
- let newData: any = t._calcItemPos(newId);
- t.displayData.push(newData);
- if (t._virtual)
- t._createOrUpdateItem(newData);
- else
- t._createOrUpdateItem2(newId);
- } else
- t._numItems--;
- if (t.selectedMode == SelectedType.SINGLE) {
- if (resetSelectedId) {
- t._selectedId = -1;
- } else if (t._selectedId - 1 >= 0) {
- t._selectedId--;
- }
- } else if (t.selectedMode == SelectedType.MULT && t.multSelected.length) {
- let sub: number = t.multSelected.indexOf(listId);
- if (sub >= 0) {
- t.multSelected.splice(sub, 1);
- }
- //多选的数据,在其后的全部减一
- for (let n: number = t.multSelected.length - 1; n >= 0; n--) {
- let id: number = t.multSelected[n];
- if (id >= listId)
- t.multSelected[n]--;
- }
- }
- if (t._customSize) {
- if (t._customSize[listId])
- delete t._customSize[listId];
- let newCustomSize: any = {};
- let size: number;
- for (let id in t._customSize) {
- size = t._customSize[id];
- let idNumber: number = parseInt(id);
- newCustomSize[idNumber - (idNumber >= listId ? 1 : 0)] = size;
- }
- t._customSize = newCustomSize;
- }
- //后面的Item向前怼的动效
- let sec: number = .2333;
- let twe: Tween<Node>, haveCB: boolean;
- for (let n: number = newId != null ? newId : curLastId; n >= listId + 1; n--) {
- item = t.getItemByListId(n);
- if (item) {
- let posData: any = t._calcItemPos(n - 1);
- twe = tween(item)
- .to(sec, { position: new Vec3(posData.x, posData.y, 0) });
- if (n <= listId + 1) {
- haveCB = true;
- twe.call(() => {
- t._aniDelRuning = false;
- callFunc(listId);
- delete t._aniDelCB;
- });
- }
- twe.start();
- }
- }
- if (!haveCB) {
- t._aniDelRuning = false;
- callFunc(listId);
- t._aniDelCB = null;
- }
- }, true);
- }
- /**
- * 滚动到..
- * @param {Number} listId 索引(如果<0,则滚到首个Item位置,如果>=_numItems,则滚到最末Item位置)
- * @param {Number} timeInSecond 时间
- * @param {Number} offset 索引目标位置偏移,0-1
- * @param {Boolean} overStress 滚动后是否强调该Item(这只是个实验功能)
- */
- scrollTo(listId: number, timeInSecond: number = .5, offset: number = null, overStress: boolean = false) {
- let t = this;
- if (!t.checkInited(false))
- return;
- // t._scrollView.stopAutoScroll();
- if (timeInSecond == null) //默认0.5
- timeInSecond = .5;
- else if (timeInSecond < 0)
- timeInSecond = 0;
- if (listId < 0)
- listId = 0;
- else if (listId >= t._numItems)
- listId = t._numItems - 1;
- // 以防设置了numItems之后layout的尺寸还未更新
- if (!t._virtual && t._layout && t._layout.enabled)
- t._layout.updateLayout();
- let pos = t.getItemPos(listId);
- if (!pos) {
- return DEV && console.error('pos is null', listId);
- }
- let targetX: number, targetY: number;
- switch (t._alignCalcType) {
- case 1://单行HORIZONTAL(LEFT_TO_RIGHT)、网格VERTICAL(LEFT_TO_RIGHT)
- targetX = pos.left;
- if (offset != null)
- targetX -= t._thisNodeUt.width * offset;
- else
- targetX -= t._leftGap;
- pos = new Vec3(targetX, 0, 0);
- break;
- case 2://单行HORIZONTAL(RIGHT_TO_LEFT)、网格VERTICAL(RIGHT_TO_LEFT)
- targetX = pos.right - t._thisNodeUt.width;
- if (offset != null)
- targetX += t._thisNodeUt.width * offset;
- else
- targetX += t._rightGap;
- pos = new Vec3(targetX + t._contentUt.width, 0, 0);
- break;
- case 3://单列VERTICAL(TOP_TO_BOTTOM)、网格HORIZONTAL(TOP_TO_BOTTOM)
- targetY = pos.top;
- if (offset != null)
- targetY += t._thisNodeUt.height * offset;
- else
- targetY += t._topGap;
- pos = new Vec3(0, -targetY, 0);
- break;
- case 4://单列VERTICAL(BOTTOM_TO_TOP)、网格HORIZONTAL(BOTTOM_TO_TOP)
- targetY = pos.bottom + t._thisNodeUt.height;
- if (offset != null)
- targetY -= t._thisNodeUt.height * offset;
- else
- targetY -= t._bottomGap;
- pos = new Vec3(0, -targetY + t._contentUt.height, 0);
- break;
- }
- let viewPos: any = t.content.getPosition();
- viewPos = Math.abs(t._sizeType ? viewPos.y : viewPos.x);
- let comparePos = t._sizeType ? pos.y : pos.x;
- let runScroll = Math.abs((t._scrollPos != null ? t._scrollPos : viewPos) - comparePos) > .5;
- // cc.log(runScroll, t._scrollPos, viewPos, comparePos)
- // t._scrollView.stopAutoScroll();
- if (runScroll) {
- t._scrollView.scrollToOffset(pos, timeInSecond);
- t._scrollToListId = listId;
- t._scrollToEndTime = ((new Date()).getTime() / 1000) + timeInSecond;
- // cc.log(listId, t.content.width, t.content.getPosition(), pos);
- t._scrollToSo = t.scheduleOnce(() => {
- if (!t._adheringBarrier) {
- t.adhering = t._adheringBarrier = false;
- }
- t._scrollPos =
- t._scrollToListId =
- t._scrollToEndTime =
- t._scrollToSo =
- null;
- //cc.log('2222222222', t._adheringBarrier)
- if (overStress) {
- // t.scrollToListId = listId;
- let item = t.getItemByListId(listId);
- if (item) {
- tween(item)
- .to(.1, { scale: 1.05 })
- .to(.1, { scale: 1 })
- .start();
- }
- }
- }, timeInSecond + .1);
- if (timeInSecond <= 0) {
- t._onScrolling();
- }
- }
- }
- /**
- * 计算当前滚动窗最近的Item
- */
- _calcNearestItem() {
- let t: any = this;
- t.nearestListId = null;
- let data: any, center: number;
- if (t._virtual)
- t._calcViewPos();
- let vTop: number, vRight: number, vBottom: number, vLeft: number;
- vTop = t.viewTop;
- vRight = t.viewRight;
- vBottom = t.viewBottom;
- vLeft = t.viewLeft;
- let breakFor: boolean = false;
- for (let n = 0; n < t.content.children.length && !breakFor; n += t._colLineNum) {
- data = t._virtual ? t.displayData[n] : t._calcExistItemPos(n);
- if (data) {
- center = t._sizeType ? ((data.top + data.bottom) / 2) : (center = (data.left + data.right) / 2);
- switch (t._alignCalcType) {
- case 1://单行HORIZONTAL(LEFT_TO_RIGHT)、网格VERTICAL(LEFT_TO_RIGHT)
- if (data.right >= vLeft) {
- t.nearestListId = data.id;
- if (vLeft > center)
- t.nearestListId += t._colLineNum;
- breakFor = true;
- }
- break;
- case 2://单行HORIZONTAL(RIGHT_TO_LEFT)、网格VERTICAL(RIGHT_TO_LEFT)
- if (data.left <= vRight) {
- t.nearestListId = data.id;
- if (vRight < center)
- t.nearestListId += t._colLineNum;
- breakFor = true;
- }
- break;
- case 3://单列VERTICAL(TOP_TO_BOTTOM)、网格HORIZONTAL(TOP_TO_BOTTOM)
- if (data.bottom <= vTop) {
- t.nearestListId = data.id;
- if (vTop < center)
- t.nearestListId += t._colLineNum;
- breakFor = true;
- }
- break;
- case 4://单列VERTICAL(BOTTOM_TO_TOP)、网格HORIZONTAL(BOTTOM_TO_TOP)
- if (data.top >= vBottom) {
- t.nearestListId = data.id;
- if (vBottom > center)
- t.nearestListId += t._colLineNum;
- breakFor = true;
- }
- break;
- }
- }
- }
- //判断最后一个Item。。。(哎,这些判断真心恶心,判断了前面的还要判断最后一个。。。一开始呢,就只有一个布局(单列布局),那时候代码才三百行,后来就想着完善啊,艹..这坑真深,现在这行数都一千五了= =||)
- data = t._virtual ? t.displayData[t.displayItemNum - 1] : t._calcExistItemPos(t._numItems - 1);
- if (data && data.id == t._numItems - 1) {
- center = t._sizeType ? ((data.top + data.bottom) / 2) : (center = (data.left + data.right) / 2);
- switch (t._alignCalcType) {
- case 1://单行HORIZONTAL(LEFT_TO_RIGHT)、网格VERTICAL(LEFT_TO_RIGHT)
- if (vRight > center)
- t.nearestListId = data.id;
- break;
- case 2://单行HORIZONTAL(RIGHT_TO_LEFT)、网格VERTICAL(RIGHT_TO_LEFT)
- if (vLeft < center)
- t.nearestListId = data.id;
- break;
- case 3://单列VERTICAL(TOP_TO_BOTTOM)、网格HORIZONTAL(TOP_TO_BOTTOM)
- if (vBottom < center)
- t.nearestListId = data.id;
- break;
- case 4://单列VERTICAL(BOTTOM_TO_TOP)、网格HORIZONTAL(BOTTOM_TO_TOP)
- if (vTop > center)
- t.nearestListId = data.id;
- break;
- }
- }
- // cc.log('t.nearestListId =', t.nearestListId);
- }
- //上一页
- prePage(timeInSecond: number = .5) {
- console.log('👈');
- if (!this.checkInited())
- return;
- console.log('LEFT', this.curPageNum);
- this.skipPage(this.curPageNum - 1, timeInSecond);
- }
- //下一页
- nextPage(timeInSecond: number = .5) {
- console.log('👉');
- if (!this.checkInited())
- return;
- console.log('RIGHT', this.curPageNum);
- this.skipPage(this.curPageNum + 1, timeInSecond);
- }
- //跳转到第几页
- skipPage(pageNum: number, timeInSecond: number) {
- let t: any = this;
- if (!t.checkInited())
- return;
- if (t._slideMode != SlideType.PAGE)
- return console.error('This function is not allowed to be called, Must SlideMode = PAGE!');
- if (pageNum < 0 || pageNum >= t._numItems)
- return;
- if (t.curPageNum == pageNum)
- return;
- console.log(pageNum);
- t.curPageNum = pageNum;
- if (t.pageChangeEvent) {
- EventHandler.emitEvents([t.pageChangeEvent], pageNum);
- }
- t.scrollTo(pageNum, timeInSecond);
- }
- //计算 CustomSize(这个函数还是保留吧,某些罕见的情况的确还是需要手动计算customSize的)
- calcCustomSize(numItems: number) {
- let t: any = this;
- if (!t.checkInited())
- return;
- if (!t._itemTmp)
- return console.error('Unset template item!');
- if (!t.renderEvent)
- return console.error('Unset Render-Event!');
- t._customSize = {};
- let temp: any = instantiate(t._itemTmp);
- let ut: UITransform = temp.getComponent(UITransform);
- t.content.addChild(temp);
- for (let n: number = 0; n < numItems; n++) {
- EventHandler.emitEvents([t.renderEvent], temp, n);
- if (ut.height != t._itemSize.height || ut.width != t._itemSize.width) {
- t._customSize[n] = t._sizeType ? ut.height : ut.width;
- }
- }
- if (!Object.keys(t._customSize).length)
- t._customSize = null;
- temp.removeFromParent();
- if (temp.destroy)
- temp.destroy();
- return t._customSize;
- }
- }
|