summaryrefslogtreecommitdiff
path: root/scripts/gui/table.js
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2021-10-16 17:12:32 -0400
committerKyle Gunger <kgunger12@gmail.com>2021-10-16 17:12:32 -0400
commitb8c91f08adc7bdb0095fb61a59bc03f0d568f478 (patch)
tree1c9f39c2d2c2279593d2117ef64274b561981db6 /scripts/gui/table.js
parent8f71df8341224a0898984a9bc67005fdbea9ee30 (diff)
[Formatting] Tabs instead of spaces
Diffstat (limited to 'scripts/gui/table.js')
-rw-r--r--scripts/gui/table.js278
1 files changed, 139 insertions, 139 deletions
diff --git a/scripts/gui/table.js b/scripts/gui/table.js
index 9aac2ae..e242ac6 100644
--- a/scripts/gui/table.js
+++ b/scripts/gui/table.js
@@ -1,143 +1,143 @@
'use strict';
// Table represents and manages the actual game. It accepts inputs from the server and tries to query the server when the player makes a move.
class Table{
- constructor(e, drag, socket) {
- this.root = e;
- this.drag = drag;
-
- drag.addEventListener("dragstart", (e) => {console.log(e)});
- drag.addEventListener("dragstop", this.dragMsg.bind(this));
-
- this.socket = socket;
-
- this.decks = [];
- }
-
- openTable ()
- {
- let state = this.root.getAttribute("state")
- if((state == "close" || state == "closed") && state != "") {
- this.root.setAttribute("state", "closed");
- setTimeout(this.root.setAttribute.bind(this.root), 50, "state", "open");
- }
- }
-
- closeTable ()
- {
- let state = this.root.getAttribute("state")
- if(state != "close" && state != "closed") {
- this.root.setAttribute("state", "");
- setTimeout(this.root.setAttribute.bind(this.root), 50, "state", "close");
- }
- }
-
- handleClose ()
- {
- this.reset();
- }
-
- reset ()
- {
- while(this.root.firstElementChild != null)
- this.root.firstElementChild.remove();
-
- this.decks = [];
-
- this.closeTable();
- this.drag.stopDraggingAll();
- }
-
- /* Deck and card functions */
- newDeck(id, options)
- {
- var d = new Deck(id, options);
- this.decks.push(d);
- this.root.appendChild(d.e);
- }
-
- newCard(id, data, deck = 0)
- {
- var c = new Card(id, data);
- this.decks[deck].appendCard(c);
- this.drag.addTarget(c.e);
- }
-
- checkDeck(x, y)
- {
- for(let d of this.decks)
- {
- if(d.isInside(x, y))
- return d;
- }
- return null;
- }
-
- checkCard (el)
- {
- for(let d of this.decks)
- {
- let c = d.checkCard(el);
- if(c !== null)
- return c;
- }
- return null;
- }
-
- moveCard(card, newDeck, index = -1)
- {
- for(let d of this.decks)
- {
- if (d.removeCardByID(card.getID()) !== null)
- break;
- }
- card.resetPos();
-
- if(index < 0)
- newDeck.appendCard(card);
- else
- newDeck.addCardAt(card, index);
- }
-
- moveByID(cardID, deckID, index = -1)
- {
- let card, deck;
- for(let d of this.decks)
- {
- let c = d.hasCard(cardID)
- if(c !== null)
- card = c;
-
- if(d.getID() == deckID)
- deck = d;
- }
-
- this.moveCard(card, deck, index);
- }
-
- checkMove(cardID, deckID, index = -1)
- {
- this.socket.send("game", {type: "move", card: cardID, deck: deckID, pos: index});
- }
-
- dragCheck(cap)
- {
- console.log(cap);
- }
-
- dragMsg (event)
- {
- if(event.drag.length < 1)
- return;
-
- var c = this.checkCard(event.drag[0].e);
- var d = this.checkDeck(event.x, event.y);
-
- if(c !== null)
- {
- if(d !== null)
- this.checkMove(c.getID(), d.getID());
- else
- c.resetPos();
- }
- }
+ constructor(e, drag, socket) {
+ this.root = e;
+ this.drag = drag;
+
+ drag.addEventListener("dragstart", (e) => {console.log(e)});
+ drag.addEventListener("dragstop", this.dragMsg.bind(this));
+
+ this.socket = socket;
+
+ this.decks = [];
+ }
+
+ openTable ()
+ {
+ let state = this.root.getAttribute("state")
+ if((state == "close" || state == "closed") && state != "") {
+ this.root.setAttribute("state", "closed");
+ setTimeout(this.root.setAttribute.bind(this.root), 50, "state", "open");
+ }
+ }
+
+ closeTable ()
+ {
+ let state = this.root.getAttribute("state")
+ if(state != "close" && state != "closed") {
+ this.root.setAttribute("state", "");
+ setTimeout(this.root.setAttribute.bind(this.root), 50, "state", "close");
+ }
+ }
+
+ handleClose ()
+ {
+ this.reset();
+ }
+
+ reset ()
+ {
+ while(this.root.firstElementChild != null)
+ this.root.firstElementChild.remove();
+
+ this.decks = [];
+
+ this.closeTable();
+ this.drag.stopDraggingAll();
+ }
+
+ /* Deck and card functions */
+ newDeck(id, options)
+ {
+ var d = new Deck(id, options);
+ this.decks.push(d);
+ this.root.appendChild(d.e);
+ }
+
+ newCard(id, data, deck = 0)
+ {
+ var c = new Card(id, data);
+ this.decks[deck].appendCard(c);
+ this.drag.addTarget(c.e);
+ }
+
+ checkDeck(x, y)
+ {
+ for(let d of this.decks)
+ {
+ if(d.isInside(x, y))
+ return d;
+ }
+ return null;
+ }
+
+ checkCard (el)
+ {
+ for(let d of this.decks)
+ {
+ let c = d.checkCard(el);
+ if(c !== null)
+ return c;
+ }
+ return null;
+ }
+
+ moveCard(card, newDeck, index = -1)
+ {
+ for(let d of this.decks)
+ {
+ if (d.removeCardByID(card.getID()) !== null)
+ break;
+ }
+ card.resetPos();
+
+ if(index < 0)
+ newDeck.appendCard(card);
+ else
+ newDeck.addCardAt(card, index);
+ }
+
+ moveByID(cardID, deckID, index = -1)
+ {
+ let card, deck;
+ for(let d of this.decks)
+ {
+ let c = d.hasCard(cardID)
+ if(c !== null)
+ card = c;
+
+ if(d.getID() == deckID)
+ deck = d;
+ }
+
+ this.moveCard(card, deck, index);
+ }
+
+ checkMove(cardID, deckID, index = -1)
+ {
+ this.socket.send("game", {type: "move", card: cardID, deck: deckID, pos: index});
+ }
+
+ dragCheck(cap)
+ {
+ console.log(cap);
+ }
+
+ dragMsg (event)
+ {
+ if(event.drag.length < 1)
+ return;
+
+ var c = this.checkCard(event.drag[0].e);
+ var d = this.checkDeck(event.x, event.y);
+
+ if(c !== null)
+ {
+ if(d !== null)
+ this.checkMove(c.getID(), d.getID());
+ else
+ c.resetPos();
+ }
+ }
}