合并
This commit is contained in:
@ -15,11 +15,6 @@ import { setSplitDirection, syncSplitData, setActiveId, getSdk } from '../../../
|
||||
|
||||
class TrajectoryMotion extends Base {
|
||||
#timeoutEventObject = null
|
||||
#lineEdit = false
|
||||
#_requestAnimationFrameEventId
|
||||
#_requestAnimationFrameEventId2
|
||||
#mouseRightevent
|
||||
#firstPersonViewEvent
|
||||
/**
|
||||
* @constructor
|
||||
* @description 轨迹运动
|
||||
@ -99,12 +94,13 @@ class TrajectoryMotion extends Base {
|
||||
this.options.line.smooth = options.line.smooth ? options.line.smooth : false
|
||||
this.options.line.noseToTail = options.line.noseToTail ? options.line.noseToTail : false
|
||||
this.positions_smooth = []
|
||||
this.options.unitFuelConsumption = options.unitFuelConsumption || 0
|
||||
this.options.ground = options.ground || false
|
||||
this.options.state = (options.state || options.state === false) ? options.state : true
|
||||
this.options.routeDirection = (options.routeDirection || options.routeDirection === false) ? options.routeDirection : true
|
||||
this.keyPoints = []
|
||||
this.realTimePositions = []
|
||||
this._lineEdit = false
|
||||
this._keyPoint = false
|
||||
this._elms = {};
|
||||
this.Dialog = _Dialog
|
||||
this.realTimeRouteArray = []
|
||||
@ -114,7 +110,6 @@ class TrajectoryMotion extends Base {
|
||||
|
||||
options.label = options.label || {}
|
||||
this.options.label = {
|
||||
text: this.options.name,
|
||||
show: options.label.show || false,
|
||||
fontSize: (options.label.fontSize || options.label.fontSize === 0) ? options.label.fontSize : 20,
|
||||
fontFamily: options.label.fontFamily ? options.label.fontFamily : 0,
|
||||
@ -203,7 +198,6 @@ class TrajectoryMotion extends Base {
|
||||
this.realTimeLine && (this.realTimeLine.show = (!this.showView || this.showView == 3 || !sdkD) ? true : false)
|
||||
}
|
||||
this.label && (this.label.show = (!this.showView || this.showView == 3) ? this.options.label.show : false)
|
||||
this.fuelLabel && (this.fuelLabel.show = (!this.showView || this.showView == 3) ? this.options.fuelShow : false)
|
||||
}
|
||||
else {
|
||||
this.model.show = (!this.showView || this.showView == 3 || !sdkD) ? this.options.show : false
|
||||
@ -226,7 +220,6 @@ class TrajectoryMotion extends Base {
|
||||
this.keyPoints[i].show = (!this.showView || this.showView == 3) ? show : false
|
||||
}
|
||||
this.label && (this.label.show = false)
|
||||
this.fuelLabel && (this.fuelLabel.show = false)
|
||||
this.viewFollow = false
|
||||
}
|
||||
|
||||
@ -281,17 +274,14 @@ class TrajectoryMotion extends Base {
|
||||
// Cesium.Matrix4.multiplyByTranslation(this.model.modelMatrix, new Cesium.Cartesian3(0, 0, -difference), this.model.modelMatrix)
|
||||
// Cesium.Matrix4.getTranslation(this.model.modelMatrix, this.model.position)
|
||||
this.label && (this.label.show = this.label.show)
|
||||
this.fuelLabel && (this.fuelLabel.show = this.fuelLabel.show)
|
||||
if (this.options.label.position) {
|
||||
setTimeout(() => {
|
||||
if (this.options.label.position.alt) {
|
||||
this.label && (this.label.position = [this.options.label.position.lng, this.options.label.position.lat, this.options.label.position.alt])
|
||||
this.fuelLabel && (this.fuelLabel.position = [this.options.label.position.lng, this.options.label.position.lat, this.options.label.position.alt])
|
||||
}
|
||||
else {
|
||||
this.getClampToHeight({ lng: this.options.label.position.lng, lat: this.options.label.position.lat }).then((height) => {
|
||||
this.label && (this.label.position = [this.options.label.position.lng, this.options.label.position.lat, height])
|
||||
this.fuelLabel && (this.fuelLabel.position = [this.options.label.position.lng, this.options.label.position.lat, height])
|
||||
})
|
||||
}
|
||||
}, 0)
|
||||
@ -640,7 +630,7 @@ class TrajectoryMotion extends Base {
|
||||
}
|
||||
set state(v) {
|
||||
this.options.state = v
|
||||
cancelAnimationFrame(this.#_requestAnimationFrameEventId)
|
||||
cancelAnimationFrame(this._requestAnimationFrameEventId)
|
||||
if (this.editObj) {
|
||||
this.editObj.destroy()
|
||||
this.editObj = null
|
||||
@ -667,7 +657,7 @@ class TrajectoryMotion extends Base {
|
||||
let positionCamera = { ...this.sdk.viewer.camera._position }
|
||||
|
||||
let _this = this
|
||||
this.#_requestAnimationFrameEventId = requestAnimationFrame(function fn() {
|
||||
this._requestAnimationFrameEventId = requestAnimationFrame(function fn() {
|
||||
if (_this.firstPersonView) {
|
||||
_this.sdk.viewer.camera.setView({
|
||||
destination: { ...positionCamera },
|
||||
@ -678,7 +668,7 @@ class TrajectoryMotion extends Base {
|
||||
}
|
||||
})
|
||||
}
|
||||
_this.#_requestAnimationFrameEventId = requestAnimationFrame(fn)
|
||||
_this._requestAnimationFrameEventId = requestAnimationFrame(fn)
|
||||
})
|
||||
this.TweenAnimate.pause()
|
||||
setTimeout(() => {
|
||||
@ -817,10 +807,10 @@ class TrajectoryMotion extends Base {
|
||||
}
|
||||
|
||||
get keyPointShow() {
|
||||
return this.options.line.keyPoint
|
||||
return this._keyPoint
|
||||
}
|
||||
set keyPointShow(v) {
|
||||
this.options.line.keyPoint = v
|
||||
this._keyPoint = v
|
||||
for (let i = 0; i < this.keyPoints.length; i++) {
|
||||
if (this.show) {
|
||||
this.keyPoints[i].show = v
|
||||
@ -831,7 +821,7 @@ class TrajectoryMotion extends Base {
|
||||
})
|
||||
if (!v && this.lineEdit) {
|
||||
// 关闭线编辑
|
||||
this.#lineEdit = v
|
||||
this._lineEdit = v
|
||||
YJ.Measure.SetMeasureStatus(false)
|
||||
this.event && this.event.destroy()
|
||||
this.ControllerObject && this.ControllerObject.destroy()
|
||||
@ -844,7 +834,7 @@ class TrajectoryMotion extends Base {
|
||||
}
|
||||
|
||||
get lineEdit() {
|
||||
return this.#lineEdit
|
||||
return this._lineEdit
|
||||
}
|
||||
|
||||
set lineEdit(v) {
|
||||
@ -963,7 +953,7 @@ class TrajectoryMotion extends Base {
|
||||
this.keyPointShow = v
|
||||
this.ControllerObject.destroy()
|
||||
}
|
||||
this.#lineEdit = v
|
||||
this._lineEdit = v
|
||||
this._elms.lineEdit && this._elms.lineEdit.forEach((item) => {
|
||||
item.checked = v
|
||||
})
|
||||
@ -1008,8 +998,8 @@ class TrajectoryMotion extends Base {
|
||||
if (get2DView() || splitSdk.sdkD || !this.show) {
|
||||
v = false
|
||||
}
|
||||
cancelAnimationFrame(this.#_requestAnimationFrameEventId)
|
||||
this.#firstPersonViewEvent && this.#firstPersonViewEvent.destroy()
|
||||
cancelAnimationFrame(this._requestAnimationFrameEventId)
|
||||
this._firstPersonViewEvent && this._firstPersonViewEvent.destroy()
|
||||
this.sdk.viewer._firstPersonView = v
|
||||
this.options.firstPersonView = v
|
||||
if (this.options.firstPersonView) {
|
||||
@ -1040,18 +1030,18 @@ class TrajectoryMotion extends Base {
|
||||
}
|
||||
let targetEntity = targetSdk ? targetSdk.entityMap.get(this.options.id) : undefined
|
||||
if (this.sdk)
|
||||
this.#firstPersonViewEvent = new MouseEvent(this.sdk)
|
||||
this.#firstPersonViewEvent.mouse_right_down((movement, cartesian) => {
|
||||
this._firstPersonViewEvent = new MouseEvent(this.sdk)
|
||||
this._firstPersonViewEvent.mouse_right_down((movement, cartesian) => {
|
||||
let startPosition = { ...movement.position }
|
||||
this.#firstPersonViewEvent.mouse_move((movement2, cartesian2) => {
|
||||
this._firstPersonViewEvent.mouse_move((movement2, cartesian2) => {
|
||||
this.firstPersonHeadingPitch.heading = this.firstPersonHeadingPitch.heading + ((movement2.endPosition.x - startPosition.x) / 20)
|
||||
this.firstPersonHeadingPitch.pitch = this.firstPersonHeadingPitch.pitch + ((startPosition.y - movement2.endPosition.y) / 10)
|
||||
targetEntity && (targetEntity.firstPersonHeadingPitch = { ...this.firstPersonHeadingPitch })
|
||||
startPosition = { ...movement2.endPosition }
|
||||
}, true)
|
||||
}, true)
|
||||
this.#firstPersonViewEvent.mouse_right_up((movement, cartesian) => {
|
||||
this.#firstPersonViewEvent.mouse_move(() => { })
|
||||
this._firstPersonViewEvent.mouse_right_up((movement, cartesian) => {
|
||||
this._firstPersonViewEvent.mouse_move(() => { })
|
||||
}, true)
|
||||
}
|
||||
else {
|
||||
@ -1197,7 +1187,7 @@ class TrajectoryMotion extends Base {
|
||||
if (this.show) {
|
||||
if (this.label) {
|
||||
this.label.show = show
|
||||
this.label.pixelOffset = this.options.label.pixelOffset + (this.fuelShow ? this.labelFontSize + 20 : 0)
|
||||
this.label.pixelOffset = this.options.label.pixelOffset
|
||||
if (this.options.label.position) {
|
||||
setTimeout(() => {
|
||||
if (this.options.label.position.alt) {
|
||||
@ -1227,7 +1217,6 @@ class TrajectoryMotion extends Base {
|
||||
set labelFontFamily(v) {
|
||||
this.options.label.fontFamily = v || 0
|
||||
this.label && (this.label.fontFamily = this.options.label.fontFamily)
|
||||
this.fuelLabel && (this.fuelLabel.fontFamily = this.options.label.fontFamily)
|
||||
|
||||
let name = getFontFamilyName(this.labelFontFamily) || ''
|
||||
this._elms.labelFontFamily &&
|
||||
@ -1242,7 +1231,6 @@ class TrajectoryMotion extends Base {
|
||||
set labelColor(v) {
|
||||
this.options.label.color = v
|
||||
this.label && (this.label.color = v)
|
||||
this.fuelLabel && (this.fuelLabel.color = v)
|
||||
if (this._elms.labelColor) {
|
||||
this._elms.labelColor.forEach((item, i) => {
|
||||
let labelColorPicker = new YJColorPicker({
|
||||
@ -1270,13 +1258,7 @@ class TrajectoryMotion extends Base {
|
||||
set labelFontSize(v) {
|
||||
this.options.label.fontSize = v
|
||||
this.label && (this.label.fontSize = v)
|
||||
if (this.fuelLabel) {
|
||||
this.fuelLabel.fontSize = v
|
||||
this.label.pixelOffset = this.options.label.pixelOffset + v + 20
|
||||
}
|
||||
else {
|
||||
this.label.pixelOffset = this.options.label.pixelOffset
|
||||
}
|
||||
this.label.pixelOffset = this.options.label.pixelOffset
|
||||
this._elms.labelFontSize && this._elms.labelFontSize.forEach((item) => {
|
||||
item.value = v
|
||||
})
|
||||
@ -1288,7 +1270,6 @@ class TrajectoryMotion extends Base {
|
||||
set labelScaleByDistance(v) {
|
||||
this.options.label.scaleByDistance = v
|
||||
this.label && (this.label.scaleByDistance = v)
|
||||
this.fuelLabel && (this.fuelLabel.scaleByDistance = v)
|
||||
this._elms.labelScaleByDistance && this._elms.labelScaleByDistance.forEach((item) => {
|
||||
item.checked = v
|
||||
})
|
||||
@ -1304,7 +1285,6 @@ class TrajectoryMotion extends Base {
|
||||
}
|
||||
this.options.label.near = near
|
||||
this.label && (this.label.near = near)
|
||||
this.fuelLabel && (this.fuelLabel.near = near)
|
||||
this._elms.labelNear && this._elms.labelNear.forEach((item) => {
|
||||
item.value = near
|
||||
})
|
||||
@ -1320,66 +1300,11 @@ class TrajectoryMotion extends Base {
|
||||
}
|
||||
this.options.label.far = far
|
||||
this.label && (this.label.far = far)
|
||||
this.fuelLabel && (this.fuelLabel.far = far)
|
||||
this._elms.labelFar && this._elms.labelFar.forEach((item) => {
|
||||
item.value = far
|
||||
})
|
||||
}
|
||||
|
||||
get unitFuelConsumption() {
|
||||
return this.options.unitFuelConsumption
|
||||
}
|
||||
|
||||
set unitFuelConsumption(v) {
|
||||
this.options.unitFuelConsumption = v
|
||||
this._elms.unitFuelConsumption && this._elms.unitFuelConsumption.forEach((item) => {
|
||||
item.value = v
|
||||
})
|
||||
}
|
||||
|
||||
get fuelShow() {
|
||||
return this.options.fuelShow
|
||||
}
|
||||
|
||||
set fuelShow(v) {
|
||||
this.options.fuelShow = v
|
||||
let show = v
|
||||
if (this.show && (!this.showView || this.showView == 3)) {
|
||||
show = v
|
||||
}
|
||||
else {
|
||||
show = false
|
||||
}
|
||||
if (this.show) {
|
||||
if (this.fuelLabel) {
|
||||
this.fuelLabel.show = show
|
||||
this.label.pixelOffset = this.options.label.pixelOffset + (show ? this.labelFontSize + 20 : 0)
|
||||
}
|
||||
else {
|
||||
this.label.pixelOffset = this.options.label.pixelOffset
|
||||
}
|
||||
if (this.options.label.position) {
|
||||
setTimeout(() => {
|
||||
if (this.options.label.position.alt) {
|
||||
this.fuelLabel && (this.fuelLabel.position = [this.options.label.position.lng, this.options.label.position.lat, this.options.label.position.alt])
|
||||
}
|
||||
else {
|
||||
this.getClampToHeight({ lng: this.options.label.position.lng, lat: this.options.label.position.lat }).then((height) => {
|
||||
this.fuelLabel && (this.fuelLabel.position = [this.options.label.position.lng, this.options.label.position.lat, height])
|
||||
})
|
||||
}
|
||||
}, 0);
|
||||
}
|
||||
}
|
||||
else {
|
||||
this.fuelLabel && (this.fuelLabel.show = false)
|
||||
this.label.pixelOffset = this.options.label.pixelOffset
|
||||
}
|
||||
this._elms.fuelShow && this._elms.fuelShow.forEach((item) => {
|
||||
item.checked = v
|
||||
})
|
||||
}
|
||||
|
||||
// 创建路径
|
||||
static addLine(that) {
|
||||
let positions_smooth = that.renewLinePositions(that.options.line.positions)
|
||||
@ -1422,11 +1347,11 @@ class TrajectoryMotion extends Base {
|
||||
},
|
||||
})
|
||||
that.sdk._entityZIndex++
|
||||
if (that.#mouseRightevent) {
|
||||
that.#mouseRightevent.destroy()
|
||||
if (that._mouseRightevent) {
|
||||
that._mouseRightevent.destroy()
|
||||
}
|
||||
that.#mouseRightevent = new MouseEvent(that.sdk)
|
||||
that.#mouseRightevent.mouse_right((movement, cartesian) => {
|
||||
that._mouseRightevent = new MouseEvent(that.sdk)
|
||||
that._mouseRightevent.mouse_right((movement, cartesian) => {
|
||||
let splitSdk = getSdk()
|
||||
let targetSdk
|
||||
if (that.sdk === splitSdk.sdkP) {
|
||||
@ -1498,7 +1423,6 @@ class TrajectoryMotion extends Base {
|
||||
}
|
||||
let pos = that.smooth ? that.positions_smooth : Cesium.Cartesian3.fromDegreesArrayHeights(fromDegreesArrayHeights)
|
||||
TrajectoryMotion.createLabel(that)
|
||||
TrajectoryMotion.createFuelLabel(that)
|
||||
that.modelMove(pos)
|
||||
|
||||
|
||||
@ -1514,7 +1438,7 @@ class TrajectoryMotion extends Base {
|
||||
fontSize: that.options.label.fontSize,
|
||||
fontFamily: that.options.label.fontFamily,
|
||||
color: that.options.label.color,
|
||||
pixelOffset: that.options.label.pixelOffset + (that.options.fuelShow ? that.options.label.fontSize + 20 : 0),
|
||||
pixelOffset: that.options.label.pixelOffset,
|
||||
backgroundColor: that.options.label.backgroundColor,
|
||||
lineColor: that.options.label.lineColor,
|
||||
lineWidth: that.options.label.lineWidth,
|
||||
@ -1524,26 +1448,6 @@ class TrajectoryMotion extends Base {
|
||||
}, that.model)
|
||||
}
|
||||
|
||||
static async createFuelLabel(that) {
|
||||
let labelPosition = that.cartesian3Towgs84(that.model.position, that.sdk.viewer)
|
||||
that.fuelLabel = new LabelObject(that.sdk, {
|
||||
show: that.options.show ? (that.options.fuelShow ? true : false) : false,
|
||||
// show: true,
|
||||
position: [labelPosition.lng, labelPosition.lat, labelPosition.alt],
|
||||
text: '总油耗:',
|
||||
fontSize: that.options.label.fontSize,
|
||||
fontFamily: that.options.label.fontFamily,
|
||||
color: that.options.label.color,
|
||||
pixelOffset: 0,
|
||||
backgroundColor: ['#6e6e6e', '#6e6e6e'],
|
||||
lineColor: '#00ffff00',
|
||||
lineWidth: 0,
|
||||
scaleByDistance: that.options.label.scaleByDistance,
|
||||
near: that.options.label.near,
|
||||
far: that.options.label.far
|
||||
}, that.model)
|
||||
}
|
||||
|
||||
// 创建关键点
|
||||
static async addKeyPoint(that) {
|
||||
for (let i = 0; i < that.options.line.positions.length; i++) {
|
||||
@ -1552,7 +1456,7 @@ class TrajectoryMotion extends Base {
|
||||
let entity = that.sdk.viewer.entities.add({
|
||||
name: 'node-secondary-edit-point',
|
||||
index: i,
|
||||
show: that.options.line.keyPoint || false,
|
||||
show: that._keyPoint || false,
|
||||
position: that.ground ? result : Cesium.Cartesian3.fromDegrees(that.options.line.positions[i].lng, that.options.line.positions[i].lat, that.options.line.positions[i].alt),
|
||||
billboard: {
|
||||
image: that.getSourceRootPath() + '/img/point.png',
|
||||
@ -1568,7 +1472,7 @@ class TrajectoryMotion extends Base {
|
||||
|
||||
// 模型移动
|
||||
async modelMove(positions, option = { time: 0 }) {
|
||||
cancelAnimationFrame(this.#_requestAnimationFrameEventId)
|
||||
cancelAnimationFrame(this._requestAnimationFrameEventId)
|
||||
let _this = this
|
||||
let time = option.time || 0
|
||||
let startDistance = option.distance
|
||||
@ -1654,7 +1558,7 @@ class TrajectoryMotion extends Base {
|
||||
|
||||
animateUpdate()
|
||||
function animateUpdate() {
|
||||
_this.#_requestAnimationFrameEventId2 = requestAnimationFrame(
|
||||
_this._requestAnimationFrameEventId2 = requestAnimationFrame(
|
||||
animateUpdate
|
||||
)
|
||||
if (_this.options.firstPersonView) {
|
||||
@ -1672,8 +1576,6 @@ class TrajectoryMotion extends Base {
|
||||
}
|
||||
|
||||
async function setPosition(distance) {
|
||||
_this.totalFuelConsumption = Number((distance / 100 * _this.unitFuelConsumption).toFixed(2))
|
||||
_this.fuelLabel.text = '总油耗:' + _this.totalFuelConsumption + ' L'
|
||||
_this.model.isMove = true
|
||||
let sdk2D = get2DView()
|
||||
let splitSdk = getSdk()
|
||||
@ -1886,7 +1788,6 @@ class TrajectoryMotion extends Base {
|
||||
}
|
||||
let labelPosition = _this.cartesian3Towgs84(position, _this.sdk.viewer)
|
||||
_this.label.position = [labelPosition.lng, labelPosition.lat, labelPosition.alt]
|
||||
_this.fuelLabel.position = [labelPosition.lng, labelPosition.lat, labelPosition.alt]
|
||||
lastDistance = distance
|
||||
// console.log(position)
|
||||
_this.realTimeRouteArray.push(position)
|
||||
@ -2010,6 +1911,7 @@ class TrajectoryMotion extends Base {
|
||||
|
||||
// 编辑框
|
||||
async edit(state) {
|
||||
return
|
||||
if (this._error) {
|
||||
return
|
||||
}
|
||||
@ -2259,7 +2161,7 @@ class TrajectoryMotion extends Base {
|
||||
setActiveViewer(0)
|
||||
closeRotateAround(this.sdk)
|
||||
|
||||
if (this.options.customView) {
|
||||
if (this.options.customView && this.options.customView.position && this.options.customView.orientation) {
|
||||
this.sdk.viewer.camera.flyTo({
|
||||
destination: this.options.customView.position,
|
||||
orientation: this.options.customView.orientation
|
||||
@ -2283,7 +2185,6 @@ class TrajectoryMotion extends Base {
|
||||
this.sdk.viewer.entities.remove(this.line)
|
||||
this.sdk.viewer.entities.remove(this.realTimeLine)
|
||||
this.label && this.label.remove()
|
||||
this.fuelLabel && this.fuelLabel.remove()
|
||||
for (let i = 0; i < this.keyPointShow.length; i++) {
|
||||
this.sdk.viewer.entities.remove(this.keyPointShow[i])
|
||||
}
|
||||
@ -2291,20 +2192,19 @@ class TrajectoryMotion extends Base {
|
||||
this.realTimeLine = null
|
||||
this.model = null
|
||||
this.label = null
|
||||
this.fuelLabel = null
|
||||
if (this._DialogObject && !this._DialogObject.isDestroy) {
|
||||
this._DialogObject.close()
|
||||
this._DialogObject = null
|
||||
}
|
||||
if (this.#mouseRightevent) {
|
||||
this.#mouseRightevent.destroy()
|
||||
if (this._mouseRightevent) {
|
||||
this._mouseRightevent.destroy()
|
||||
}
|
||||
this.removeModelAnimate()
|
||||
let sdk2D = get2DView()
|
||||
if (!sdk2D || sdk2D !== this.sdk) {
|
||||
this.viewFollow = false
|
||||
}
|
||||
cancelAnimationFrame(this.#_requestAnimationFrameEventId)
|
||||
cancelAnimationFrame(this._requestAnimationFrameEventId)
|
||||
await this.sdk.removeIncetance(this.options.id)
|
||||
await syncData(this.sdk, this.options.id)
|
||||
|
||||
@ -2326,7 +2226,7 @@ class TrajectoryMotion extends Base {
|
||||
(this.noseToTail !== this.originalOptions.line.noseToTail) && (this.noseToTail = this.originalOptions.line.noseToTail);
|
||||
(this.height !== this.originalOptions.height) && (this.height = this.originalOptions.height);
|
||||
(this.lineShow !== this.originalOptions.line.show) && (this.lineShow = this.originalOptions.line.show);
|
||||
this.keyPointShow = this.originalOptions.line.keyPoint;
|
||||
this.keyPointShow = false;
|
||||
this.routeDirection = this.originalOptions.routeDirection;
|
||||
this.scale = this.originalOptions.model.scale;
|
||||
(this.loop !== this.originalOptions.loop) && (this.loop = this.originalOptions.loop);
|
||||
@ -2345,7 +2245,6 @@ class TrajectoryMotion extends Base {
|
||||
this.model && (this.model.show = false)
|
||||
}
|
||||
this.labelShow = this.originalOptions.label.show
|
||||
this.fuelLabelShow = this.originalOptions.fuelShow
|
||||
this.labelColor = this.originalOptions.label.color
|
||||
this.labelFontSize = this.originalOptions.label.fontSize
|
||||
this.labelFontFamily = this.originalOptions.label.fontFamily
|
||||
|
||||
Reference in New Issue
Block a user