cocos-enhance-kit/jsb-adapter/engine/jsb-editbox.js

201 lines
6.8 KiB
JavaScript
Raw Normal View History

2022-06-24 16:23:03 +00:00
/****************************************************************************
Copyright (c) 2018 Xiamen Yaji Software Co., Ltd.
http://www.cocos.com
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated engine source code (the "Software"), a limited,
worldwide, royalty-free, non-assignable, revocable and non-exclusive license
to use Cocos Creator solely to develop games on your target platforms. You shall
not use Cocos Creator software for developing other software or tools that's
used for developing games. You are not granted to publish, distribute,
sublicense, and/or sell copies of Cocos Creator.
The software or tools in this License Agreement are licensed, not sold.
Xiamen Yaji Software Co., Ltd. reserves all rights not expressly granted to you.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************/
(function () {
if (!(cc && cc.EditBox)) {
return;
}
const EditBox = cc.EditBox;
const js = cc.js;
const KeyboardReturnType = EditBox.KeyboardReturnType;
const InputMode = EditBox.InputMode;
const InputFlag = EditBox.InputFlag;
const MAX_VALUE = 65535;
let worldMat = new cc.Mat4(),
cameraMat = new cc.Mat4();
function getInputType (type) {
switch (type) {
case InputMode.EMAIL_ADDR:
return 'email';
case InputMode.NUMERIC:
case InputMode.DECIMAL:
return 'number';
case InputMode.PHONE_NUMBER:
return 'phone';
case InputMode.URL:
return 'url';
case InputMode.SINGLE_LINE:
case InputMode.ANY:
default:
return 'text';
}
}
function getKeyboardReturnType (type) {
switch (type) {
case KeyboardReturnType.DEFAULT:
case KeyboardReturnType.DONE:
return 'done';
case KeyboardReturnType.SEND:
return 'send';
case KeyboardReturnType.SEARCH:
return 'search';
case KeyboardReturnType.GO:
return 'go';
case KeyboardReturnType.NEXT:
return 'next';
}
return 'done';
}
const BaseClass = EditBox._ImplClass;
function JsbEditBoxImpl () {
BaseClass.call(this);
}
js.extend(JsbEditBoxImpl, BaseClass);
EditBox._ImplClass = JsbEditBoxImpl;
Object.assign(JsbEditBoxImpl.prototype, {
init (delegate) {
if (!delegate) {
cc.error('EditBox init failed');
return;
}
this._delegate = delegate;
},
_onResize () {
let { x, y, width, height } = this._getRect();
jsb.inputBox.updateRect(x, y, width, height);
},
beginEditing () {
let self = this;
let delegate = this._delegate;
let multiline = (delegate.inputMode === InputMode.ANY);
let rect = this._getRect();
let maxLength = (delegate.maxLength < 0 ? MAX_VALUE : delegate.maxLength)
let inputTypeString = getInputType(delegate.inputMode);
if (delegate.inputFlag === InputFlag.PASSWORD) {
inputTypeString = 'password';
}
function onConfirm (res) {
delegate.editBoxEditingReturn();
}
function onInput (res) {
if (delegate._string !== res.value) {
delegate.editBoxTextChanged(res.value);
}
}
function onComplete (res) {
self.endEditing();
}
jsb.inputBox.onInput(onInput);
jsb.inputBox.onConfirm(onConfirm);
jsb.inputBox.onComplete(onComplete);
if (!cc.sys.isMobile) {
this._delegate._hideLabels();
}
jsb.inputBox.show({
defaultValue: delegate._string,
maxLength: maxLength,
multiple: multiline,
confirmHold: false,
confirmType: getKeyboardReturnType(delegate.returnType),
inputType: inputTypeString,
originX: rect.x,
originY: rect.y,
width: rect.width,
height: rect.height
});
this._editing = true;
delegate.editBoxEditingDidBegan();
if (!cc.sys.isMobile) {
cc.view.on('canvas-resize', this._onResize, this);
}
},
endEditing () {
jsb.inputBox.offConfirm();
jsb.inputBox.offInput();
jsb.inputBox.offComplete();
this._editing = false;
if (!cc.sys.isMobile) {
this._delegate._showLabels();
}
jsb.inputBox.hide();
this._delegate.editBoxEditingDidEnded();
if (!cc.sys.isMobile) {
cc.view.off('canvas-resize', this._onResize, this);
}
},
_getRect () {
let node = this._delegate.node,
viewScaleX = cc.view._scaleX, viewScaleY = cc.view._scaleY;
let dpr = cc.view._devicePixelRatio;
node.getWorldMatrix(worldMat);
let camera = cc.Camera.findCamera(node);
if (!camera) {
return new cc.Rect();
}
camera.getWorldToScreenMatrix2D(cameraMat);
cc.Mat4.multiply(cameraMat, cameraMat, worldMat);
let contentSize = node._contentSize;
let vec3 = cc.v3();
vec3.x = -node._anchorPoint.x * contentSize.width;
vec3.y = -node._anchorPoint.y * contentSize.height;
cc.Mat4.translate(cameraMat, cameraMat, vec3);
viewScaleX /= dpr;
viewScaleY /= dpr;
let finalScaleX = cameraMat.m[0] * viewScaleX;
let finaleScaleY = cameraMat.m[5] * viewScaleY;
let viewportRect = cc.view._viewportRect;
let offsetX = viewportRect.x / dpr,
offsetY = viewportRect.y / dpr;
return {
x: cameraMat.m[12] * viewScaleX + offsetX,
y: cameraMat.m[13] * viewScaleY + offsetY,
width: contentSize.width * finalScaleX,
height: contentSize.height * finaleScaleY
};
},
});
}());