lawless/client/temp/programming/packer-driver/targets/preview/chunks/9c/9c8e4ae02cd522e18faba9e72e8803c8bdb97382.js
徐勤民 521603a899
一些检测仍在等待运行
Docs Build / build-and-deploy (push) Waiting to run
refactor(client): 删除游戏核心管理器和场景脚本
- 移除 ConfigManager 配置管理器类
- 移除 GameManager 全局单例管理器类
- 移除 NetworkManager 网络连接管理器类
- 移除 CharacterData 和 ItemData 数据模型类
- 移除 BagScene、BattleScene、LobbyScene 等场景脚本
- 移除 EncounterBubble 和 EventFeedPanel UI组件脚本
- 更新代理邀请文档中的服务器连接方式
- 更新同步状态表格中的代理任务分配信息
- 添加 MiMo 任务完成总结和审查修复记录
2026-07-03 21:34:51 +08:00

328 行
15 KiB
JavaScript

System.register(["cc"], function (_export, _context) {
"use strict";
var _cclegacy, __checkObsolete__, __checkObsoleteInNamespace__, Color, Canvas, UITransform, instantiate, Toggle, _decorator, Component, Button, director, Node, Label, RichText, _dec, _dec2, _dec3, _dec4, _class, _class2, _descriptor, _descriptor2, _descriptor3, _crd, ccclass, property, DebugViewRuntimeControl;
function _initializerDefineProperty(target, property, descriptor, context) { if (!descriptor) return; Object.defineProperty(target, property, { enumerable: descriptor.enumerable, configurable: descriptor.configurable, writable: descriptor.writable, value: descriptor.initializer ? descriptor.initializer.call(context) : void 0 }); }
function _applyDecoratedDescriptor(target, property, decorators, descriptor, context) { var desc = {}; Object.keys(descriptor).forEach(function (key) { desc[key] = descriptor[key]; }); desc.enumerable = !!desc.enumerable; desc.configurable = !!desc.configurable; if ('value' in desc || desc.initializer) { desc.writable = true; } desc = decorators.slice().reverse().reduce(function (desc, decorator) { return decorator(target, property, desc) || desc; }, desc); if (context && desc.initializer !== void 0) { desc.value = desc.initializer ? desc.initializer.call(context) : void 0; desc.initializer = undefined; } if (desc.initializer === void 0) { Object.defineProperty(target, property, desc); desc = null; } return desc; }
function _initializerWarningHelper(descriptor, context) { throw new Error('Decorating class property failed. Please ensure that ' + 'transform-class-properties is enabled and runs after the decorators transform.'); }
return {
setters: [function (_cc) {
_cclegacy = _cc.cclegacy;
__checkObsolete__ = _cc.__checkObsolete__;
__checkObsoleteInNamespace__ = _cc.__checkObsoleteInNamespace__;
Color = _cc.Color;
Canvas = _cc.Canvas;
UITransform = _cc.UITransform;
instantiate = _cc.instantiate;
Toggle = _cc.Toggle;
_decorator = _cc._decorator;
Component = _cc.Component;
Button = _cc.Button;
director = _cc.director;
Node = _cc.Node;
Label = _cc.Label;
RichText = _cc.RichText;
}],
execute: function () {
_crd = true;
_cclegacy._RF.push({}, "b2bd1+njXxJxaFY3ymm06WU", "debug-view-runtime-control", undefined);
__checkObsolete__(['Color', 'Canvas', 'UITransform', 'instantiate', 'math', 'Toggle', 'TextureCube', '_decorator', 'Component', 'Button', 'labelAssembler', 'game', 'director', 'Node', 'Scene', 'renderer', 'CameraComponent', 'Label', 'ForwardPipeline', 'RichText']);
({
ccclass,
property
} = _decorator);
_export("DebugViewRuntimeControl", DebugViewRuntimeControl = (_dec = ccclass('internal.DebugViewRuntimeControl'), _dec2 = property(Node), _dec3 = property(Node), _dec4 = property(Node), _dec(_class = (_class2 = class DebugViewRuntimeControl extends Component {
constructor() {
super(...arguments);
_initializerDefineProperty(this, "compositeModeToggle", _descriptor, this);
_initializerDefineProperty(this, "singleModeToggle", _descriptor2, this);
_initializerDefineProperty(this, "EnableAllCompositeModeButton", _descriptor3, this);
this._single = 0;
this.strSingle = ['No Single Debug', 'Vertex Color', 'Vertex Normal', 'Vertex Tangent', 'World Position', 'Vertex Mirror', 'Face Side', 'UV0', 'UV1', 'UV Lightmap', 'Project Depth', 'Linear Depth', 'Fragment Normal', 'Fragment Tangent', 'Fragment Binormal', 'Base Color', 'Diffuse Color', 'Specular Color', 'Transparency', 'Metallic', 'Roughness', 'Specular Intensity', 'IOR', 'Direct Diffuse', 'Direct Specular', 'Direct All', 'Env Diffuse', 'Env Specular', 'Env All', 'Emissive', 'Light Map', 'Shadow', 'AO', 'Fresnel', 'Direct Transmit Diffuse', 'Direct Transmit Specular', 'Env Transmit Diffuse', 'Env Transmit Specular', 'Transmit All', 'Direct Internal Specular', 'Env Internal Specular', 'Internal All', 'Fog'];
this.strComposite = ['Direct Diffuse', 'Direct Specular', 'Env Diffuse', 'Env Specular', 'Emissive', 'Light Map', 'Shadow', 'AO', 'Normal Map', 'Fog', 'Tone Mapping', 'Gamma Correction', 'Fresnel', 'Transmit Diffuse', 'Transmit Specular', 'Internal Specular', 'TT'];
this.strMisc = ['CSM Layer Coloration', 'Lighting With Albedo'];
this.compositeModeToggleList = [];
this.singleModeToggleList = [];
this.miscModeToggleList = [];
this.textComponentList = [];
this.labelComponentList = [];
this.textContentList = [];
this.hideButtonLabel = void 0;
this._currentColorIndex = 0;
this.strColor = ['<color=#ffffff>', '<color=#000000>', '<color=#ff0000>', '<color=#00ff00>', '<color=#0000ff>'];
this.color = [Color.WHITE, Color.BLACK, Color.RED, Color.GREEN, Color.BLUE];
}
start() {
// get canvas resolution
var canvas = this.node.parent.getComponent(Canvas);
if (!canvas) {
console.error('debug-view-runtime-control should be child of Canvas');
return;
}
var uiTransform = this.node.parent.getComponent(UITransform);
var halfScreenWidth = uiTransform.width * 0.5;
var halfScreenHeight = uiTransform.height * 0.5;
var x = -halfScreenWidth + halfScreenWidth * 0.1,
y = halfScreenHeight - halfScreenHeight * 0.1;
var width = 200,
height = 20; // new nodes
var miscNode = this.node.getChildByName('MiscMode');
var buttonNode = instantiate(miscNode);
buttonNode.parent = this.node;
buttonNode.name = 'Buttons';
var titleNode = instantiate(miscNode);
titleNode.parent = this.node;
titleNode.name = 'Titles'; // title
for (var i = 0; i < 2; i++) {
var newLabel = instantiate(this.EnableAllCompositeModeButton.getChildByName('Label'));
newLabel.setPosition(x + (i > 0 ? 50 + width * 2 : 150), y, 0.0);
newLabel.setScale(0.75, 0.75, 0.75);
newLabel.parent = titleNode;
var _labelComponent = newLabel.getComponent(Label);
_labelComponent.string = i ? '----------Composite Mode----------' : '----------Single Mode----------';
_labelComponent.color = Color.WHITE;
_labelComponent.overflow = 0;
this.labelComponentList[this.labelComponentList.length] = _labelComponent;
}
y -= height; // single
var currentRow = 0;
for (var _i = 0; _i < this.strSingle.length; _i++, currentRow++) {
if (_i === this.strSingle.length >> 1) {
x += width;
currentRow = 0;
}
var newNode = _i ? instantiate(this.singleModeToggle) : this.singleModeToggle;
newNode.setPosition(x, y - height * currentRow, 0.0);
newNode.setScale(0.5, 0.5, 0.5);
newNode.parent = this.singleModeToggle.parent;
var textComponent = newNode.getComponentInChildren(RichText);
textComponent.string = this.strSingle[_i];
this.textComponentList[this.textComponentList.length] = textComponent;
this.textContentList[this.textContentList.length] = textComponent.string;
newNode.on(Toggle.EventType.TOGGLE, this.toggleSingleMode, this);
this.singleModeToggleList[_i] = newNode;
}
x += width; // buttons
this.EnableAllCompositeModeButton.setPosition(x + 15, y, 0.0);
this.EnableAllCompositeModeButton.setScale(0.5, 0.5, 0.5);
this.EnableAllCompositeModeButton.on(Button.EventType.CLICK, this.enableAllCompositeMode, this);
this.EnableAllCompositeModeButton.parent = buttonNode;
var labelComponent = this.EnableAllCompositeModeButton.getComponentInChildren(Label);
this.labelComponentList[this.labelComponentList.length] = labelComponent;
var changeColorButton = instantiate(this.EnableAllCompositeModeButton);
changeColorButton.setPosition(x + 90, y, 0.0);
changeColorButton.setScale(0.5, 0.5, 0.5);
changeColorButton.on(Button.EventType.CLICK, this.changeTextColor, this);
changeColorButton.parent = buttonNode;
labelComponent = changeColorButton.getComponentInChildren(Label);
labelComponent.string = 'TextColor';
this.labelComponentList[this.labelComponentList.length] = labelComponent;
var HideButton = instantiate(this.EnableAllCompositeModeButton);
HideButton.setPosition(x + 200, y, 0.0);
HideButton.setScale(0.5, 0.5, 0.5);
HideButton.on(Button.EventType.CLICK, this.hideUI, this);
HideButton.parent = this.node.parent;
labelComponent = HideButton.getComponentInChildren(Label);
labelComponent.string = 'Hide UI';
this.labelComponentList[this.labelComponentList.length] = labelComponent;
this.hideButtonLabel = labelComponent; // misc
y -= 40;
for (var _i2 = 0; _i2 < this.strMisc.length; _i2++) {
var _newNode = instantiate(this.compositeModeToggle);
_newNode.setPosition(x, y - height * _i2, 0.0);
_newNode.setScale(0.5, 0.5, 0.5);
_newNode.parent = miscNode;
var _textComponent = _newNode.getComponentInChildren(RichText);
_textComponent.string = this.strMisc[_i2];
this.textComponentList[this.textComponentList.length] = _textComponent;
this.textContentList[this.textContentList.length] = _textComponent.string;
var toggleComponent = _newNode.getComponent(Toggle);
toggleComponent.isChecked = _i2 ? true : false;
_newNode.on(Toggle.EventType.TOGGLE, _i2 ? this.toggleLightingWithAlbedo : this.toggleCSMColoration, this);
this.miscModeToggleList[_i2] = _newNode;
} // composite
y -= 150;
for (var _i3 = 0; _i3 < this.strComposite.length; _i3++) {
var _newNode2 = _i3 ? instantiate(this.compositeModeToggle) : this.compositeModeToggle;
_newNode2.setPosition(x, y - height * _i3, 0.0);
_newNode2.setScale(0.5, 0.5, 0.5);
_newNode2.parent = this.compositeModeToggle.parent;
var _textComponent2 = _newNode2.getComponentInChildren(RichText);
_textComponent2.string = this.strComposite[_i3];
this.textComponentList[this.textComponentList.length] = _textComponent2;
this.textContentList[this.textContentList.length] = _textComponent2.string;
_newNode2.on(Toggle.EventType.TOGGLE, this.toggleCompositeMode, this);
this.compositeModeToggleList[_i3] = _newNode2;
}
}
isTextMatched(textUI, textDescription) {
var tempText = new String(textUI);
var findIndex = tempText.search('>');
if (findIndex === -1) {
return textUI === textDescription;
} else {
tempText = tempText.substr(findIndex + 1);
tempText = tempText.substr(0, tempText.search('<'));
return tempText === textDescription;
}
}
toggleSingleMode(toggle) {
var debugView = director.root.debugView;
var textComponent = toggle.getComponentInChildren(RichText);
for (var i = 0; i < this.strSingle.length; i++) {
if (this.isTextMatched(textComponent.string, this.strSingle[i])) {
debugView.singleMode = i;
}
}
}
toggleCompositeMode(toggle) {
var debugView = director.root.debugView;
var textComponent = toggle.getComponentInChildren(RichText);
for (var i = 0; i < this.strComposite.length; i++) {
if (this.isTextMatched(textComponent.string, this.strComposite[i])) {
debugView.enableCompositeMode(i, toggle.isChecked);
}
}
}
toggleLightingWithAlbedo(toggle) {
var debugView = director.root.debugView;
debugView.lightingWithAlbedo = toggle.isChecked;
}
toggleCSMColoration(toggle) {
var debugView = director.root.debugView;
debugView.csmLayerColoration = toggle.isChecked;
}
enableAllCompositeMode(button) {
var debugView = director.root.debugView;
debugView.enableAllCompositeMode(true);
for (var i = 0; i < this.compositeModeToggleList.length; i++) {
var _toggleComponent = this.compositeModeToggleList[i].getComponent(Toggle);
_toggleComponent.isChecked = true;
}
var toggleComponent = this.miscModeToggleList[0].getComponent(Toggle);
toggleComponent.isChecked = false;
debugView.csmLayerColoration = false;
toggleComponent = this.miscModeToggleList[1].getComponent(Toggle);
toggleComponent.isChecked = true;
debugView.lightingWithAlbedo = true;
}
hideUI(button) {
var titleNode = this.node.getChildByName('Titles');
var activeValue = !titleNode.active;
this.singleModeToggleList[0].parent.active = activeValue;
this.miscModeToggleList[0].parent.active = activeValue;
this.compositeModeToggleList[0].parent.active = activeValue;
this.EnableAllCompositeModeButton.parent.active = activeValue;
titleNode.active = activeValue;
this.hideButtonLabel.string = activeValue ? 'Hide UI' : 'Show UI';
}
changeTextColor(button) {
this._currentColorIndex++;
if (this._currentColorIndex >= this.strColor.length) {
this._currentColorIndex = 0;
}
for (var i = 0; i < this.textComponentList.length; i++) {
this.textComponentList[i].string = this.strColor[this._currentColorIndex] + this.textContentList[i] + '</color>';
}
for (var _i4 = 0; _i4 < this.labelComponentList.length; _i4++) {
this.labelComponentList[_i4].color = this.color[this._currentColorIndex];
}
}
onLoad() {}
update(deltaTime) {}
}, (_descriptor = _applyDecoratedDescriptor(_class2.prototype, "compositeModeToggle", [_dec2], {
configurable: true,
enumerable: true,
writable: true,
initializer: function initializer() {
return null;
}
}), _descriptor2 = _applyDecoratedDescriptor(_class2.prototype, "singleModeToggle", [_dec3], {
configurable: true,
enumerable: true,
writable: true,
initializer: function initializer() {
return null;
}
}), _descriptor3 = _applyDecoratedDescriptor(_class2.prototype, "EnableAllCompositeModeButton", [_dec4], {
configurable: true,
enumerable: true,
writable: true,
initializer: function initializer() {
return null;
}
})), _class2)) || _class));
_cclegacy._RF.pop();
_crd = false;
}
};
});
//# sourceMappingURL=9c8e4ae02cd522e18faba9e72e8803c8bdb97382.js.map