2 Commits 27191c78b3 ... 3542087f2a

Autor SHA1 Mensaje Fecha
  Dim Dim 3542087f2a gitignore hace 6 años
  Dim Dim 7efc76ca02 Small changes sockets hace 6 años
Se han modificado 3 ficheros con 9 adiciones y 0 borrados
  1. 1 0
      .gitignore
  2. 7 0
      src/Game/services/GameService.js
  3. 1 0
      src/Game/services/SocketService.js

+ 1 - 0
.gitignore

@@ -15,6 +15,7 @@
 .env.development.local
 .env.test.local
 .env.production.local
+.idea
 
 npm-debug.log*
 yarn-debug.log*

+ 7 - 0
src/Game/services/GameService.js

@@ -22,6 +22,7 @@ class GameService {
 
         if(this.onInit) this.onInit();
         SocketService.on('move', (data) => this.move(data));
+        SocketService.on('result', (data) => this.end(data));
     }
 
     move(data) {
@@ -41,6 +42,12 @@ class GameService {
         if(this.onUpdate) this.onUpdate(1);
     }
 
+    end(data) {
+
+
+
+        SocketService.close();
+    }
 
 }
 

+ 1 - 0
src/Game/services/SocketService.js

@@ -10,6 +10,7 @@ class SocketService {
         this.socket = openSocket('http://localhost:3555/' + channel);
         this.on = this.socket.on.bind(this.socket);
         this.emit = this.socket.emit.bind(this.socket);
+        this.close = this.socket.close.bind(this.socket);
     }