-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclient.py
98 lines (77 loc) · 2.89 KB
/
client.py
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
import socket
import sys
import select
import os
sys.path.append(os.path.normpath("../ui/"))
from question import *
from home import *
HEADER = 64
PORT = 9001
SERVER = "127.0.0.1"
ADDR = (SERVER,PORT)
FORMAT = 'utf-8'
DISCONNECT_MSG = "Game Over"
def closeConn(client):
# Now let us print the leaderboard before closing connection
print("**********************************LEADERBOARD******************************")
print("---------------------------------------------------------------------------")
number_players = client.recv(4096).decode(FORMAT)
number_players = int(number_players)
print("%-10s %-15s %-10s %-10s %-10s" %("Player No","Name","Rank","Points","Total Time"))
for i in range(number_players):
rank_msg = client.recv(4096).decode(FORMAT).split("-")
print("%-10s %-15s %-10s %-10s %-10s" %(rank_msg[0],rank_msg[1],rank_msg[2],rank_msg[3],rank_msg[4]))
final_msg = client.recv(4096).decode(FORMAT)
print("---------------------------------------------------------------------------")
print(final_msg)
print("---------------------------------------------------------------------------")
client.close()
sys.exit()
def recvMessage(client):
# Receive the question from the
q_msg = client.recv(4096).decode(FORMAT)
print(q_msg)
# If the received message is "Game Over" then exit
if(q_msg == DISCONNECT_MSG):
closeConn(client)
# Extract question and options from the message.
q_msg = q_msg.split("\n")
question = q_msg[0]
options = q_msg[1:]
# Create the Application
app = QtWidgets.QApplication(sys.argv)
MainWindow = QtWidgets.QMainWindow()
ui = Ui_MainWindow1()
# set the UI according to the new question receieved.
ui.setupUi_1(MainWindow,question,options,client,ui)
MainWindow.setWindowTitle("Quiz")
MainWindow.show()
sys.exit(app.exec_())
def recvMessageF(client,ui,MainWindow):
# Receive the question from the
q_msg = client.recv(4096).decode(FORMAT)
print(q_msg)
# If the received message is "Game Over" then exit
if(q_msg == DISCONNECT_MSG):
MainWindow.close()
closeConn(client)
# Extract question and options from the message.
q_msg = q_msg.split("\n")
question = q_msg[0]
options = q_msg[1:]
# set the UI according to the new question receieved.
ui.setupUi_1(MainWindow,question,options,client,ui)
ui.updateQuestionIndex()
if __name__ == "__main__":
# get username input
print("Enter a username.")
username = input().strip()
clientS = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
clientS.connect(ADDR)
# receive the welcome and rules message
wlcm_msg = clientS.recv(4096).decode(FORMAT)
print(wlcm_msg)
# send the username to the server for the leaderboard
clientS.send(username.encode(FORMAT))
# close this application
recvMessage(clientS)