-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathonlineserver.py
175 lines (145 loc) · 5.28 KB
/
onlineserver.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
from tornado.httpserver import HTTPServer
from tornado.ioloop import IOLoop
from tornado.websocket import *
import tornado.web
import os
import sys
import math
import random
import json
import uuid
import requests
import asyncio
clients = []
print("\033[94mLOCAL GAME SERVER MODE\033[0m" if "local" in sys.argv else "\033[93mPRODUCTION GAME SERVER MODE\033[0m")
myserver = {
# server name just to display."super nice server, donate only for 0.1$, etc"
"name": "Official server #1",
# your global server IP address or domain, you must change it
# also wss means secured server. If you dont have cert files - use letsencrypt to create it. not secured websockets won't work!
"ip": "wss://site9373r.dns-cloud.net:25555",
# your server port to bind
"srvport": 25555,
# player limit
"maxplayers": 10
}
if "local" in sys.argv:
myserver = {
"name": "Debug server #1",
"ip": "ws://127.0.0.1:25555",
"srvport": 25555,
"maxplayers": 2
}
async def addMyServer():
await asyncio.sleep(2)
requests.post(
"http://127.0.0.1/newserver" if "local" in sys.argv
else "https://site9373r.dns-cloud.net/newserver", data=myserver)
class GameHandler():
def __init__(self):
self.world = self.genWorld()
print("game started")
self.genWorld()
def genWorld(self):
world = []
for xxx in range(0, 500):
box = {"x": 0, "y": 0, "z": 0, "mat": 0}
box["x"] = math.floor(random.random() * 20 - 10) * 20
box["y"] = math.floor(random.random() * 20) * 20 + 10
box["z"] = math.floor(random.random() * 20 - 10) * 20
box["mat"] = 0
world.append(box)
return world
def getWorld(self):
return ["world"]+self.world
def removeXYZ(self, x, y, z):
iErrorCheck = 0
for index in range(0, 5):
try:
mygame.world.remove({'x': x, 'y': y, 'z': z, 'mat': index})
except ValueError:
iErrorCheck += 1
return True if iErrorCheck == 4 else False
def addXYZM(self, x, y, z, m):
mygame.world.append({'x': x, 'y': y, 'z': z, 'mat': m})
return True
mygame = GameHandler()
class MainHandler(tornado.websocket.WebSocketHandler):
def open(self):
clients.append(self)
self.set_nodelay(True)
print("WebSocket opened")
self.write_message(str(len(clients)).encode())
self.nick = str(uuid.uuid4())
for clientt in clients:
if not clientt == self:
clientt.write_message(b"move %b 0 20 0" % self.nick.encode())
def on_message(self, message):
msg = message.split()
if not msg[0] == "move":
print(message)
if msg[0] == "close":
IOLoop.current().stop()
if msg[0] == "world":
self.write_message(json.dumps(mygame.getWorld()).encode())
elif msg[0] == "delete":
self.write_message(u"success" if mygame.removeXYZ(
int(msg[1]), int(msg[2]), int(msg[3])) else b"fail")
for clientt in clients:
if not clientt == self:
clientt.write_message(message)
elif msg[0] == "move":
for clientt in clients:
if not clientt == self:
clientt.write_message(message)
elif msg[0] == "mynick":
self.write_message(b"nick %b" % self.nick.encode())
elif msg[0] == "append":
self.write_message(u"success" if mygame.addXYZM(
int(msg[1]), int(msg[2]), int(msg[3]), int(msg[4])) else b"fail")
for clientt in clients:
if not clientt == self:
clientt.write_message(message)
def on_close(self):
clients.remove(self)
for clientt in clients:
clientt.write_message("kick %s" % self.nick)
print("WebSocket closed")
def check_origin(self, origin):
return True
class PingHandler(tornado.websocket.WebSocketHandler):
def open(self):
self.write_message(str(len(clients)).encode())
def check_origin(self, origin):
return True
def on_message(self, message):
print(message)
if message == "ok":
print("success!")
def make_app():
return tornado.web.Application([
(r"/", MainHandler),
(r"/ping", PingHandler)
], websocket_ping_interval=5)
if "local" in sys.argv:
http_server = HTTPServer(make_app())
os.system('color 0')
http_server.listen(myserver["srvport"])
else:
if sys.platform == 'win32':
http_server = HTTPServer(make_app(), ssl_options={
"certfile": os.path.join("d:/PEM/certificate.crt"),
"keyfile": os.path.join("d:/PEM/private.key"),
})
os.system('color 0')
http_server.listen(myserver["srvport"])
elif sys.platform == 'linux':
http_server = HTTPServer(make_app(), ssl_options={
# path to your SSL files
"certfile": os.path.join("/home/pi/Документы/PEM/certificate.crt"),
"keyfile": os.path.join("/home/pi/Документы/PEM/private.key"),
})
http_server.bind(myserver["srvport"])
http_server.start(0)
IOLoop.current().add_callback(addMyServer)
IOLoop.current().start()