const express = require('express'); const cors = require('cors') var app = express() var http = require('http').Server(app); var io = require('socket.io')(http); app.use(express.static('public')) app.use(cors()) const rnd = max => Math.floor(Math.random() * max) class Card { constructor(health, hit, price){ this.health = health; this.hit = hit; this.price = price; this.hitHistory = [] } get alive(){ return this.health > 0 } hitBy(enemy){ //hit to THIS from ENEMY this.hitHistory.push({enemy, health: this.health}) this.health -= enemy.hit } static battle(card1, card2){ card2.hitBy(card1) //card1 -> card2 if (card2.alive) card1.hitBy(card2) } } class Deck { constructor(config={count: 100, maxHealth: 10, maxHit: 10, priceGet=(health, hit) => health + hit}){ const { count, maxHealth, maxHit, priceGet } = config; this.deck = [] for (let i=0;i 0.5 } } const gamers = new Proxy({}, { get(obj, id){ return obj[id] }, set(obj, id, value){ console.log('SET', id, value) if (!value) delete obj[id] else obj[id] = value console.log(obj) io.emit('gamers', obj) //broadcast } }) io.on('connection', socket => { const id = socket.id // gamers[id] = {}; socket.emit('id', id) socket.on('hi', data => gamers[id] = {...gamers[id], nick: data.nick, ready: data.ready}) socket.on('start', data => console.log('START', data)) socket.on('disconnect', () => { gamers[id] = null }) }) http.listen(4000, function(){ console.log(`listening`); });