X-Git-Url: http://git.megabrutal.com/?p=wgj58.git;a=blobdiff_plain;f=wgj58.js;h=8fe220f63a39ac710d93b8402fe35192e682dfe9;hp=e034b01a3eeb3155b41d0c874e1150c64147cc79;hb=d9b347a8804fedc728550ae5372306a670b5b6a8;hpb=a72760aadcd1a753f785ae0e7459b7a8c523e075

diff --git a/wgj58.js b/wgj58.js
index e034b01..8fe220f 100644
--- a/wgj58.js
+++ b/wgj58.js
@@ -40,10 +40,40 @@ class Dialogue {
 }
 
 class Door extends Phaser.TileSprite {
-	constructor(x, y, name, vector, longpanel) {
+	constructor(x, y, name, rotation, vector, longpanel) {
 		super(game, x, y, 64, 64, 'objects');
-		this.tilePosition = new Phaser.Point(-64, -64);
-		console.log("New door:", this);
+		this.name = name;
+		if (!longpanel) {
+			this.anchor = new Phaser.Point(0.5, 0.5);
+			this.tilePosition = new Phaser.Point(-64, -64);
+			this.openvector = Phaser.Point.multiply(vector, new Phaser.Point(56, 56));
+		}
+		else {
+			this.width *= 2;
+			this.anchor = new Phaser.Point(0.75, 0.5);
+			this.tilePosition = new Phaser.Point(0, -64);
+			this.openvector = Phaser.Point.multiply(vector, new Phaser.Point(116, 116));
+		}
+		this.rotation = rotation * (Math.PI / 180);
+		console.log("Calculated vector:", this.openvector);
+		this.closetween = game.add.tween(this).to({ x: this.position.x, y: this.position.y }, 1000, Phaser.Easing.Sinusoidal.InOut, false, 0, 0, false);
+		this.openposition = Phaser.Point.add(this.position, this.openvector);
+		this.opentween = game.add.tween(this).to({ x: this.openposition.x, y: this.openposition.y }, 1000, Phaser.Easing.Sinusoidal.InOut, false, 0, 0, false);
+		this.isOpen = false;
+	}
+
+	open() {
+		if (!this.isOpen) {
+			this.opentween.start();
+			this.isOpen = true;
+		}
+	}
+
+	close() {
+		if (this.isOpen) {
+			this.closetween.start();
+			this.isOpen = false;
+		}
 	}
 }
 
@@ -170,6 +200,7 @@ class NPC_Clara extends GameNPC {
 					{ actor: this, text: "Wish it worked like that... Is it some superstition like the belief that having an umbrella with you prevents rain?" },
 					{ actor: logic.player, text: "Nah, that actually works; it's not a superstition, but Murphy's Law!" },
 					{ actor: this, text: "If you say so..." } ] ));
+				logic.openDoor("cutedoor");
 				break;
 			case 1:
 				logic.gameinterface.talk(new Dialogue( [ { actor: this, text: "John, have you ever thought about losing your employee card?" },
@@ -181,6 +212,7 @@ class NPC_Clara extends GameNPC {
 					{ actor: this, text: "If I had no card, would I still exist?" },
 					{ actor: logic.player, text: "..." },
 					{ actor: logic.player, text: "You sound very philosophical today." } ] ));
+				logic.closeDoor("cutedoor");
 				break;
 			case 2:
 			case 3:
@@ -424,16 +456,17 @@ class GameLogic {
 	}
 
 	createDoor(object) {
+		/* Calculate movement vector and correct position (32 = half tile width/height). */
 		var vector;
 		switch (object.rotation) {
 			case undefined:
-			case 0:		vector = new Phaser.Point( -1,  0); break;
-			case 90:	vector = new Phaser.Point(  0, -1); break;
-			case 180:	vector = new Phaser.Point(  1,  0); break;
-			case 270:	vector = new Phaser.Point(  0,  1); break;
+			case 0:		vector = new Phaser.Point( -1,  0); object.x += 32; object.y -= 32; break;
+			case 90:	vector = new Phaser.Point(  0, -1); object.x += 32; object.y += 32; break;
+			case 180:	vector = new Phaser.Point(  1,  0); object.x -= 32; object.y += 32; break;
+			case 270:	vector = new Phaser.Point(  0,  1); object.x -= 32; object.y -= 32; break;
 			default:	console.error("Invalid rotation:", object.rotation);
 		}
-		this.doors.add(new Door(object.x, object.y, object.name, vector, object.properties.longpanel));
+		this.doors.add(new Door(object.x, object.y, object.name, object.rotation, vector, object.properties.longpanel));
 	}
 
 	callMenu(menuitem) {
@@ -467,6 +500,15 @@ class GameLogic {
 		}
 	}
 
+	openDoor(doorname) {
+		console.log("Opening doors.");
+		this.doors.children.forEach(function(o) { if (o.name == doorname) o.open(); });
+	}
+
+	closeDoor(doorname) {
+		this.doors.children.forEach(function(o) { if (o.name == doorname) o.close(); });
+	}
+
 	update() {
 		if ((game.input.keyboard.isDown(Phaser.Keyboard.ENTER)) && (hasTimePassed(this.last_menuselect, WAIT_MENUSTEP))) {
 			if ((this.player.interactablenpc) && (this.player.interactablenpc.interactable) && (!this.gameinterface.inMenu) && (!this.gameinterface.inTalk)) {