You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

168 lines
5.0 KiB

class RectangleNode {
constructor(x, y, scene, type, ...option) {
switch (type.toString().toLowerCase()) {
case 'attack':
this.rect = new Phaser.GameObjects.Image(scene, x, y, 'attackNode');
this.node = new Attack(option[0]);
this.canAddNode = false;
this.line = scene.add.graphics();
break;
case 'move' :
this.rect = new Phaser.GameObjects.Image(scene, x, y, 'moveNode');
this.node = new Move(option[0], option[1]);
this.canAddNode = false;
this.line = scene.add.graphics();
break;
case 'condition':
this.rect = new Phaser.GameObjects.Image(scene, x, y, 'conditionNode');
this.node = new Condition(option[0], option[1], option[2], option[3], option[4]);
this.canAddNode = true;
this.lRect = [];
this.scene = scene;
this.line = scene.add.graphics();
break;
case 'waria':
this.rect = new Phaser.GameObjects.Image(scene, x, y, 'logoWaria').setInteractive();
this.canAddNode = true;
this.lRect = [];
this.scene = scene;
this.scene.add.existing(this.rect);
this.scene.input.setDraggable(this.rect);
break;
default:
console.log("Création d'un node echoué");
return;
}
if (type.toString().toLowerCase() !== 'waria') {
this.rect.setFrame(this.node.getFrame());
}
this.rect.on('pointerdown', () => this.click());
this.rect.setOrigin(0.5, 0);
this.rect.displayHeight = HEIGHT_WINDOW / 6;
this.rect.scaleX = this.rect.scaleY;
}
getSelected() {
if (this.rect.isTinted) {
return this;
}
if (this.canAddNode) {
for (let i = 0; i < this.lRect.length; i++) {
let rep = this.lRect[i].getSelected();
if (rep != null) {
return rep;
}
}
}
return null;
}
click() {
if (this.rect.isTinted) {
this.deselect();
} else {
this.rect.tint = 0xEFD807;
}
if (this.canAddNode === true) {
console.log("THIS CAN ADD NODE");
}
}
deselect() {
this.rect.clearTint();
}
getX() {
return this.rect.x;
}
getY() {
return this.rect.y;
}
addRect(node) {
if (this.canAddNode === true) {
this.lRect.push(node);
this.addLine(node);
let rect = this.scene.add.existing(node.rect);
rect.setInteractive();
this.scene.input.setDraggable(rect);
if (this.node !== undefined) {
this.node.addNode(node.node);
}
}
}
setLine(x, y) {
this.xOrigin = x;
this.yOrigin = y;
this.updateLine(true);
}
updateLine(force = false) {
if ((force === true || this.xLine !== this.rect.x || this.yLine !== this.rect.y) && this.line !== undefined) {
this.xLine = this.rect.x;
this.yLine = this.rect.y;
this.line.clear();
this.line.lineStyle(10, 0xffffff, 1);
this.line.lineBetween(this.xOrigin, this.yOrigin, this.rect.x, this.rect.y + this.rect.displayHeight / 10);
}
if (this.canAddNode === true) {
this.lRect.forEach(node => this.addLine(node));
}
}
addLine(node) {
node.setLine(this.rect.x, this.rect.y + this.rect.displayHeight * 0.9);
}
getNode() {
if (this.node === undefined) {
let lNodes = [];
this.lRect.forEach(function (element) {
lNodes.push(element.getNode());
});
return lNodes;
} else if (this.canAddNode) {
this.node.clearNodes();
this.lRect.forEach(rect => this.node.addNode(rect.getNode()));
}
return this.node;
}
sort(sortDesc) {
if (this.canAddNode) {
this.lRect.sort(sortDesc);
this.lRect.forEach(function (element) {
if (element.canAddNode) {
element.sort(sortDesc);
}
})
}
}
destroy() {
this.line.destroy();
this.rect.destroy();
if (this.lRect !== undefined) {
this.lRect.forEach(rect => rect.destroy());
}
}
delete(rect) {
let id = this.lRect.indexOf(rect);
if (id === -1) {
for (let i = 0; i < this.lRect.length; i++) {
if (this.lRect[i].canAddNode)
if (this.lRect[i].delete(rect))
return true;
}
} else {
this.lRect.splice(id, 1);
rect.destroy();
return true;
}
return false;
}
}