aboutsummaryrefslogtreecommitdiff
path: root/api/game/socket.py
blob: 55bff0f70c7e5b67a004f09cb93977cc5b0d6cdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from flask import Blueprint, request, make_response
from flask_socketio import SocketIO, emit, Namespace
from game.voerbak_connector import bord
from db import cursor
import time
import json

class game:
    def __init__(self, game_id):
        self.game_id = game_id
        self.board = bord(7, 6)

    def move(self, user_id, column):
        # player_1 = cursor.execute("select player_1_id from games where game_id = ?", [self.game_id]).fetchone()[0]
        # player_1_move = player_1 == user_id
        # if not self.board.player_1 == player_1_move: return
        self.board.drop_fisje(column)

def run(app):
    io = SocketIO(app, cors_allowed_origins="*")

    namespace = "/game/socket/"
    @io.on("connect", namespace)
    def connect():
        print("new connection", namespace)

    @io.on("new_move")
    def connect(data):
        print("new_move")
        print(data)

    io.run(app, host="127.0.0.1", port=5000, debug=True)