author | unc0rr |
Sun, 14 Oct 2012 00:22:33 +0400 | |
changeset 7753 | dda33caa609d |
parent 7748 | f160fbc139b1 |
child 7757 | c20e6c80e249 |
permissions | -rw-r--r-- |
6012 | 1 |
{-# LANGUAGE CPP, OverloadedStrings #-} |
5184 | 2 |
module Actions where |
3 |
||
4 |
import Control.Concurrent |
|
5 |
import qualified Data.Set as Set |
|
6 |
import qualified Data.Sequence as Seq |
|
7 |
import qualified Data.List as L |
|
8 |
import qualified Control.Exception as Exception |
|
9 |
import System.Log.Logger |
|
10 |
import Control.Monad |
|
11 |
import Data.Time |
|
12 |
import Data.Maybe |
|
13 |
import Control.Monad.Reader |
|
14 |
import Control.Monad.State.Strict |
|
15 |
import qualified Data.ByteString.Char8 as B |
|
16 |
import Control.DeepSeq |
|
17 |
import Data.Unique |
|
18 |
import Control.Arrow |
|
19 |
import Control.Exception |
|
5209
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5184
diff
changeset
|
20 |
import System.Process |
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5184
diff
changeset
|
21 |
import Network.Socket |
5184 | 22 |
----------------------------- |
5996
2c72fe81dd37
Convert boolean variable + a bunch of fields which make sense only while game is going on into Maybe + structure
unc0rr
parents:
5426
diff
changeset
|
23 |
import OfficialServer.GameReplayStore |
5184 | 24 |
import CoreTypes |
25 |
import Utils |
|
26 |
import ClientIO |
|
27 |
import ServerState |
|
28 |
import Consts |
|
29 |
import ConfigFile |
|
6068 | 30 |
import EngineInteraction |
5184 | 31 |
|
32 |
data Action = |
|
33 |
AnswerClients ![ClientChan] ![B.ByteString] |
|
34 |
| SendServerMessage |
|
35 |
| SendServerVars |
|
36 |
| MoveToRoom RoomIndex |
|
37 |
| MoveToLobby B.ByteString |
|
38 |
| RemoveTeam B.ByteString |
|
6753
e95b1f62d0de
Don't remove client's teams from teams list on "ROUNDFINISHED 0", just send team removal message to others.
unc0rr
parents:
6733
diff
changeset
|
39 |
| SendTeamRemovalMessage B.ByteString |
5184 | 40 |
| RemoveRoom |
6758
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
41 |
| FinishGame |
5184 | 42 |
| UnreadyRoomClients |
43 |
| JoinLobby |
|
44 |
| ProtocolError B.ByteString |
|
45 |
| Warning B.ByteString |
|
46 |
| NoticeMessage Notice |
|
47 |
| ByeClient B.ByteString |
|
48 |
| KickClient ClientIndex |
|
49 |
| KickRoomClient ClientIndex |
|
50 |
| BanClient NominalDiffTime B.ByteString ClientIndex |
|
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
51 |
| BanIP B.ByteString NominalDiffTime B.ByteString |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
52 |
| BanList |
7748 | 53 |
| Unban B.ByteString |
5184 | 54 |
| ChangeMaster |
55 |
| RemoveClientTeams ClientIndex |
|
56 |
| ModifyClient (ClientInfo -> ClientInfo) |
|
57 |
| ModifyClient2 ClientIndex (ClientInfo -> ClientInfo) |
|
58 |
| ModifyRoom (RoomInfo -> RoomInfo) |
|
59 |
| ModifyServerInfo (ServerInfo -> ServerInfo) |
|
60 |
| AddRoom B.ByteString B.ByteString |
|
61 |
| CheckRegistered |
|
62 |
| ClearAccountsCache |
|
63 |
| ProcessAccountInfo AccountInfo |
|
64 |
| AddClient ClientInfo |
|
65 |
| DeleteClient ClientIndex |
|
66 |
| PingAll |
|
67 |
| StatsAction |
|
5209
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5184
diff
changeset
|
68 |
| RestartServer |
5184 | 69 |
| AddNick2Bans B.ByteString B.ByteString UTCTime |
70 |
| AddIP2Bans B.ByteString B.ByteString UTCTime |
|
71 |
| CheckBanned |
|
72 |
| SaveReplay |
|
73 |
||
74 |
||
75 |
type CmdHandler = [B.ByteString] -> Reader (ClientIndex, IRnC) [Action] |
|
76 |
||
77 |
instance NFData Action where |
|
78 |
rnf (AnswerClients chans msg) = chans `deepseq` msg `deepseq` () |
|
79 |
rnf a = a `seq` () |
|
80 |
||
81 |
instance NFData B.ByteString |
|
82 |
instance NFData (Chan a) |
|
83 |
||
84 |
||
85 |
othersChans :: StateT ServerState IO [ClientChan] |
|
86 |
othersChans = do |
|
87 |
cl <- client's id |
|
88 |
ri <- clientRoomA |
|
89 |
liftM (map sendChan . filter (/= cl)) $ roomClientsS ri |
|
90 |
||
91 |
processAction :: Action -> StateT ServerState IO () |
|
92 |
||
93 |
||
94 |
processAction (AnswerClients chans msg) = |
|
95 |
io $ mapM_ (`writeChan` (msg `deepseq` msg)) (chans `deepseq` chans) |
|
96 |
||
97 |
||
98 |
processAction SendServerMessage = do |
|
99 |
chan <- client's sendChan |
|
100 |
protonum <- client's clientProto |
|
101 |
si <- liftM serverInfo get |
|
102 |
let message = if protonum < latestReleaseVersion si then |
|
103 |
serverMessageForOldVersions si |
|
104 |
else |
|
105 |
serverMessage si |
|
106 |
processAction $ AnswerClients [chan] ["SERVER_MESSAGE", message] |
|
107 |
||
108 |
||
109 |
processAction SendServerVars = do |
|
110 |
chan <- client's sendChan |
|
111 |
si <- gets serverInfo |
|
112 |
io $ writeChan chan ("SERVER_VARS" : vars si) |
|
113 |
where |
|
114 |
vars si = [ |
|
115 |
"MOTD_NEW", serverMessage si, |
|
116 |
"MOTD_OLD", serverMessageForOldVersions si, |
|
117 |
"LATEST_PROTO", showB $ latestReleaseVersion si |
|
118 |
] |
|
119 |
||
120 |
||
121 |
processAction (ProtocolError msg) = do |
|
122 |
chan <- client's sendChan |
|
123 |
processAction $ AnswerClients [chan] ["ERROR", msg] |
|
124 |
||
125 |
||
126 |
processAction (Warning msg) = do |
|
127 |
chan <- client's sendChan |
|
128 |
processAction $ AnswerClients [chan] ["WARNING", msg] |
|
129 |
||
130 |
processAction (NoticeMessage n) = do |
|
131 |
chan <- client's sendChan |
|
132 |
processAction $ AnswerClients [chan] ["NOTICE", showB . fromEnum $ n] |
|
133 |
||
134 |
processAction (ByeClient msg) = do |
|
135 |
(Just ci) <- gets clientIndex |
|
136 |
ri <- clientRoomA |
|
137 |
||
138 |
chan <- client's sendChan |
|
139 |
clNick <- client's nick |
|
140 |
loggedIn <- client's logonPassed |
|
141 |
||
142 |
when (ri /= lobbyId) $ do |
|
143 |
processAction $ MoveToLobby ("quit: " `B.append` msg) |
|
144 |
return () |
|
145 |
||
146 |
clientsChans <- liftM (Prelude.map sendChan . Prelude.filter logonPassed) $! allClientsS |
|
147 |
io $ |
|
148 |
infoM "Clients" (show ci ++ " quits: " ++ B.unpack msg) |
|
149 |
||
150 |
when loggedIn $ processAction $ AnswerClients clientsChans ["LOBBY:LEFT", clNick, msg] |
|
151 |
||
7465
c2dcf97ca664
Okay, this is workaround over ping timeouts problem on the server. Could make server crash if recieve thread wakes up after second ping timeout event.
unc0rr
parents:
7351
diff
changeset
|
152 |
mapM processAction |
c2dcf97ca664
Okay, this is workaround over ping timeouts problem on the server. Could make server crash if recieve thread wakes up after second ping timeout event.
unc0rr
parents:
7351
diff
changeset
|
153 |
[ |
c2dcf97ca664
Okay, this is workaround over ping timeouts problem on the server. Could make server crash if recieve thread wakes up after second ping timeout event.
unc0rr
parents:
7351
diff
changeset
|
154 |
AnswerClients [chan] ["BYE", msg] |
7735
4c7e282b5732
Reset nickname so it may be reused while old connection is still hanging
unc0rr
parents:
7710
diff
changeset
|
155 |
, ModifyClient (\c -> c{nick = "", logonPassed = False}) -- this will effectively hide client from others while he isn't deleted from list |
7465
c2dcf97ca664
Okay, this is workaround over ping timeouts problem on the server. Could make server crash if recieve thread wakes up after second ping timeout event.
unc0rr
parents:
7351
diff
changeset
|
156 |
] |
c2dcf97ca664
Okay, this is workaround over ping timeouts problem on the server. Could make server crash if recieve thread wakes up after second ping timeout event.
unc0rr
parents:
7351
diff
changeset
|
157 |
|
5184 | 158 |
s <- get |
159 |
put $! s{removedClients = ci `Set.insert` removedClients s} |
|
160 |
||
161 |
processAction (DeleteClient ci) = do |
|
162 |
io $ debugM "Clients" $ "DeleteClient: " ++ show ci |
|
163 |
||
164 |
rnc <- gets roomsClients |
|
165 |
io $ removeClient rnc ci |
|
166 |
||
167 |
s <- get |
|
168 |
put $! s{removedClients = ci `Set.delete` removedClients s} |
|
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
169 |
|
5209
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5184
diff
changeset
|
170 |
sp <- gets (shutdownPending . serverInfo) |
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5184
diff
changeset
|
171 |
cls <- allClientsS |
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5184
diff
changeset
|
172 |
io $ when (sp && null cls) $ throwIO ShutdownException |
5184 | 173 |
|
174 |
processAction (ModifyClient f) = do |
|
175 |
(Just ci) <- gets clientIndex |
|
176 |
rnc <- gets roomsClients |
|
177 |
io $ modifyClient rnc f ci |
|
178 |
return () |
|
179 |
||
180 |
processAction (ModifyClient2 ci f) = do |
|
181 |
rnc <- gets roomsClients |
|
182 |
io $ modifyClient rnc f ci |
|
183 |
return () |
|
184 |
||
185 |
||
186 |
processAction (ModifyRoom f) = do |
|
187 |
rnc <- gets roomsClients |
|
188 |
ri <- clientRoomA |
|
189 |
io $ modifyRoom rnc f ri |
|
190 |
return () |
|
191 |
||
192 |
||
193 |
processAction (ModifyServerInfo f) = do |
|
194 |
modify (\s -> s{serverInfo = f $ serverInfo s}) |
|
195 |
si <- gets serverInfo |
|
196 |
io $ writeServerConfig si |
|
197 |
||
198 |
||
199 |
processAction (MoveToRoom ri) = do |
|
200 |
(Just ci) <- gets clientIndex |
|
201 |
rnc <- gets roomsClients |
|
202 |
||
203 |
io $ do |
|
204 |
modifyClient rnc (\cl -> cl{teamsInGame = 0, isReady = False, isMaster = False}) ci |
|
205 |
modifyRoom rnc (\r -> r{playersIn = playersIn r + 1}) ri |
|
206 |
moveClientToRoom rnc ri ci |
|
207 |
||
208 |
chans <- liftM (map sendChan) $ roomClientsS ri |
|
209 |
clNick <- client's nick |
|
210 |
||
211 |
processAction $ AnswerClients chans ["JOINED", clNick] |
|
212 |
||
213 |
||
214 |
processAction (MoveToLobby msg) = do |
|
215 |
(Just ci) <- gets clientIndex |
|
216 |
ri <- clientRoomA |
|
217 |
rnc <- gets roomsClients |
|
5996
2c72fe81dd37
Convert boolean variable + a bunch of fields which make sense only while game is going on into Maybe + structure
unc0rr
parents:
5426
diff
changeset
|
218 |
(gameProgress, playersNum) <- io $ room'sM rnc ((isJust . gameInfo) &&& playersIn) ri |
5184 | 219 |
master <- client's isMaster |
220 |
-- client <- client's id |
|
221 |
clNick <- client's nick |
|
222 |
chans <- othersChans |
|
223 |
||
224 |
if master then |
|
7521 | 225 |
if playersNum > 1 then |
7351
34efdd1f230f
- Check ready status only after deleting player's teams (should fix the bug when you're unable to start game)
unc0rr
parents:
7321
diff
changeset
|
226 |
mapM_ processAction [ChangeMaster, NoticeMessage AdminLeft, RemoveClientTeams ci, AnswerClients chans ["LEFT", clNick, msg]] |
5184 | 227 |
else |
228 |
processAction RemoveRoom |
|
229 |
else |
|
7351
34efdd1f230f
- Check ready status only after deleting player's teams (should fix the bug when you're unable to start game)
unc0rr
parents:
7321
diff
changeset
|
230 |
mapM_ processAction [RemoveClientTeams ci, AnswerClients chans ["LEFT", clNick, msg]] |
5184 | 231 |
|
232 |
-- when not removing room |
|
7351
34efdd1f230f
- Check ready status only after deleting player's teams (should fix the bug when you're unable to start game)
unc0rr
parents:
7321
diff
changeset
|
233 |
ready <- client's isReady |
7521 | 234 |
when (not master || playersNum > 1) . io $ do |
5184 | 235 |
modifyRoom rnc (\r -> r{ |
236 |
playersIn = playersIn r - 1, |
|
237 |
readyPlayers = if ready then readyPlayers r - 1 else readyPlayers r |
|
238 |
}) ri |
|
239 |
moveClientToLobby rnc ci |
|
240 |
||
7710
fd5bcbd698a5
- Keep track of room name so correct name is displayed when you become room admin
unc0rr
parents:
7682
diff
changeset
|
241 |
|
5184 | 242 |
processAction ChangeMaster = do |
243 |
(Just ci) <- gets clientIndex |
|
7710
fd5bcbd698a5
- Keep track of room name so correct name is displayed when you become room admin
unc0rr
parents:
7682
diff
changeset
|
244 |
proto <- client's clientProto |
5184 | 245 |
ri <- clientRoomA |
246 |
rnc <- gets roomsClients |
|
247 |
newMasterId <- liftM (head . filter (/= ci)) . io $ roomClientsIndicesM rnc ri |
|
248 |
newMaster <- io $ client'sM rnc id newMasterId |
|
6733 | 249 |
oldRoomName <- io $ room'sM rnc name ri |
7682 | 250 |
oldMaster <- client's nick |
7668
4cb423f42105
Show who is the room admin on join (no tested, also I don't like how it is done via server warnings, but it seems there's no other solution compatible with .17)
unc0rr
parents:
7664
diff
changeset
|
251 |
thisRoomChans <- liftM (map sendChan) $ roomClientsS ri |
7710
fd5bcbd698a5
- Keep track of room name so correct name is displayed when you become room admin
unc0rr
parents:
7682
diff
changeset
|
252 |
let newRoomName = if proto < 42 then nick newMaster else oldRoomName |
5184 | 253 |
mapM_ processAction [ |
7682 | 254 |
ModifyRoom (\r -> r{masterID = newMasterId, name = newRoomName, isRestrictedJoins = False, isRestrictedTeams = False}) |
255 |
, ModifyClient2 newMasterId (\c -> c{isMaster = True}) |
|
256 |
, AnswerClients [sendChan newMaster] ["ROOM_CONTROL_ACCESS", "1"] |
|
257 |
, AnswerClients thisRoomChans ["WARNING", "New room admin is " `B.append` nick newMaster] |
|
258 |
, AnswerClients thisRoomChans ["CLIENT_FLAGS", "-h", oldMaster] |
|
259 |
, AnswerClients thisRoomChans ["CLIENT_FLAGS", "+h", nick newMaster] |
|
5184 | 260 |
] |
261 |
||
6541
08ed346ed341
Send full room info on room add and update events. Less(?) traffic, but current frontend doesn't behave good with this change to server.
unc0rr
parents:
6191
diff
changeset
|
262 |
proto <- client's clientProto |
08ed346ed341
Send full room info on room add and update events. Less(?) traffic, but current frontend doesn't behave good with this change to server.
unc0rr
parents:
6191
diff
changeset
|
263 |
newRoom <- io $ room'sM rnc id ri |
08ed346ed341
Send full room info on room add and update events. Less(?) traffic, but current frontend doesn't behave good with this change to server.
unc0rr
parents:
6191
diff
changeset
|
264 |
chans <- liftM (map sendChan) $! sameProtoClientsS proto |
7710
fd5bcbd698a5
- Keep track of room name so correct name is displayed when you become room admin
unc0rr
parents:
7682
diff
changeset
|
265 |
processAction $ AnswerClients chans ("ROOM" : "UPD" : oldRoomName : roomInfo newRoomName newRoom) |
6541
08ed346ed341
Send full room info on room add and update events. Less(?) traffic, but current frontend doesn't behave good with this change to server.
unc0rr
parents:
6191
diff
changeset
|
266 |
|
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
267 |
|
5184 | 268 |
processAction (AddRoom roomName roomPassword) = do |
269 |
Just clId <- gets clientIndex |
|
270 |
rnc <- gets roomsClients |
|
6541
08ed346ed341
Send full room info on room add and update events. Less(?) traffic, but current frontend doesn't behave good with this change to server.
unc0rr
parents:
6191
diff
changeset
|
271 |
proto <- client's clientProto |
08ed346ed341
Send full room info on room add and update events. Less(?) traffic, but current frontend doesn't behave good with this change to server.
unc0rr
parents:
6191
diff
changeset
|
272 |
n <- client's nick |
7682 | 273 |
chan <- client's sendChan |
5184 | 274 |
|
275 |
let rm = newRoom{ |
|
276 |
masterID = clId, |
|
277 |
name = roomName, |
|
278 |
password = roomPassword, |
|
279 |
roomProto = proto |
|
280 |
} |
|
281 |
||
282 |
rId <- io $ addRoom rnc rm |
|
283 |
||
284 |
processAction $ MoveToRoom rId |
|
285 |
||
6541
08ed346ed341
Send full room info on room add and update events. Less(?) traffic, but current frontend doesn't behave good with this change to server.
unc0rr
parents:
6191
diff
changeset
|
286 |
chans <- liftM (map sendChan) $! sameProtoClientsS proto |
5184 | 287 |
|
288 |
mapM_ processAction [ |
|
6541
08ed346ed341
Send full room info on room add and update events. Less(?) traffic, but current frontend doesn't behave good with this change to server.
unc0rr
parents:
6191
diff
changeset
|
289 |
AnswerClients chans ("ROOM" : "ADD" : roomInfo n rm) |
7682 | 290 |
, AnswerClients [chan] ["CLIENT_FLAGS", "+h", n] |
5184 | 291 |
, ModifyClient (\cl -> cl{isMaster = True}) |
292 |
] |
|
293 |
||
294 |
||
295 |
processAction RemoveRoom = do |
|
296 |
Just clId <- gets clientIndex |
|
297 |
rnc <- gets roomsClients |
|
298 |
ri <- io $ clientRoomM rnc clId |
|
299 |
roomName <- io $ room'sM rnc name ri |
|
300 |
others <- othersChans |
|
6541
08ed346ed341
Send full room info on room add and update events. Less(?) traffic, but current frontend doesn't behave good with this change to server.
unc0rr
parents:
6191
diff
changeset
|
301 |
proto <- client's clientProto |
08ed346ed341
Send full room info on room add and update events. Less(?) traffic, but current frontend doesn't behave good with this change to server.
unc0rr
parents:
6191
diff
changeset
|
302 |
chans <- liftM (map sendChan) $! sameProtoClientsS proto |
5184 | 303 |
|
304 |
mapM_ processAction [ |
|
6541
08ed346ed341
Send full room info on room add and update events. Less(?) traffic, but current frontend doesn't behave good with this change to server.
unc0rr
parents:
6191
diff
changeset
|
305 |
AnswerClients chans ["ROOM", "DEL", roomName], |
5184 | 306 |
AnswerClients others ["ROOMABANDONED", roomName] |
307 |
] |
|
308 |
||
309 |
io $ removeRoom rnc ri |
|
310 |
||
311 |
||
6758
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
312 |
processAction UnreadyRoomClients = do |
5184 | 313 |
rnc <- gets roomsClients |
314 |
ri <- clientRoomA |
|
315 |
roomPlayers <- roomClientsS ri |
|
316 |
roomClIDs <- io $ roomClientsIndicesM rnc ri |
|
317 |
pr <- client's clientProto |
|
318 |
processAction $ AnswerClients (map sendChan roomPlayers) $ notReadyMessage pr (map nick roomPlayers) |
|
319 |
io $ mapM_ (modifyClient rnc (\cl -> cl{isReady = False})) roomClIDs |
|
320 |
processAction $ ModifyRoom (\r -> r{readyPlayers = 0}) |
|
321 |
where |
|
322 |
notReadyMessage p nicks = if p < 38 then "NOT_READY" : nicks else "CLIENT_FLAGS" : "-r" : nicks |
|
323 |
||
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
324 |
|
6758
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
325 |
processAction FinishGame = do |
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
326 |
rnc <- gets roomsClients |
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
327 |
ri <- clientRoomA |
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
328 |
thisRoomChans <- liftM (map sendChan) $ roomClientsS ri |
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
329 |
clNick <- client's nick |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
330 |
answerRemovedTeams <- io $ |
7126
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
331 |
room'sM rnc (map (\t -> AnswerClients thisRoomChans ["REMOVE_TEAM", t]) . leftTeams . fromJust . gameInfo) ri |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
332 |
|
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
333 |
mapM_ processAction $ |
7124 | 334 |
SaveReplay |
7126
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
335 |
: ModifyRoom |
6758
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
336 |
(\r -> r{ |
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
337 |
gameInfo = Nothing, |
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
338 |
readyPlayers = 0 |
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
339 |
} |
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
340 |
) |
7126
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
341 |
: UnreadyRoomClients |
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
342 |
: answerRemovedTeams |
5184 | 343 |
|
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
344 |
|
6753
e95b1f62d0de
Don't remove client's teams from teams list on "ROUNDFINISHED 0", just send team removal message to others.
unc0rr
parents:
6733
diff
changeset
|
345 |
processAction (SendTeamRemovalMessage teamName) = do |
e95b1f62d0de
Don't remove client's teams from teams list on "ROUNDFINISHED 0", just send team removal message to others.
unc0rr
parents:
6733
diff
changeset
|
346 |
chans <- othersChans |
e95b1f62d0de
Don't remove client's teams from teams list on "ROUNDFINISHED 0", just send team removal message to others.
unc0rr
parents:
6733
diff
changeset
|
347 |
mapM_ processAction [ |
e95b1f62d0de
Don't remove client's teams from teams list on "ROUNDFINISHED 0", just send team removal message to others.
unc0rr
parents:
6733
diff
changeset
|
348 |
AnswerClients chans ["EM", rmTeamMsg], |
e95b1f62d0de
Don't remove client's teams from teams list on "ROUNDFINISHED 0", just send team removal message to others.
unc0rr
parents:
6733
diff
changeset
|
349 |
ModifyRoom (\r -> r{ |
e95b1f62d0de
Don't remove client's teams from teams list on "ROUNDFINISHED 0", just send team removal message to others.
unc0rr
parents:
6733
diff
changeset
|
350 |
gameInfo = liftM (\g -> g{ |
7124 | 351 |
teamsInGameNumber = teamsInGameNumber g - 1 |
352 |
, roundMsgs = roundMsgs g Seq.|> rmTeamMsg |
|
6753
e95b1f62d0de
Don't remove client's teams from teams list on "ROUNDFINISHED 0", just send team removal message to others.
unc0rr
parents:
6733
diff
changeset
|
353 |
}) $ gameInfo r |
e95b1f62d0de
Don't remove client's teams from teams list on "ROUNDFINISHED 0", just send team removal message to others.
unc0rr
parents:
6733
diff
changeset
|
354 |
}) |
e95b1f62d0de
Don't remove client's teams from teams list on "ROUNDFINISHED 0", just send team removal message to others.
unc0rr
parents:
6733
diff
changeset
|
355 |
] |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
356 |
|
6758
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
357 |
rnc <- gets roomsClients |
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
358 |
ri <- clientRoomA |
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
359 |
gi <- io $ room'sM rnc gameInfo ri |
26bf919aeb57
Oh, should also check for game finish when player quits without ROUNDFINISHED message: small refactoring, not tested at all
unc0rr
parents:
6756
diff
changeset
|
360 |
when (isJust gi && 0 == teamsInGameNumber (fromJust gi)) $ |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
361 |
processAction FinishGame |
6753
e95b1f62d0de
Don't remove client's teams from teams list on "ROUNDFINISHED 0", just send team removal message to others.
unc0rr
parents:
6733
diff
changeset
|
362 |
where |
e95b1f62d0de
Don't remove client's teams from teams list on "ROUNDFINISHED 0", just send team removal message to others.
unc0rr
parents:
6733
diff
changeset
|
363 |
rmTeamMsg = toEngineMsg $ 'F' `B.cons` teamName |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
364 |
|
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
365 |
|
5184 | 366 |
processAction (RemoveTeam teamName) = do |
367 |
rnc <- gets roomsClients |
|
368 |
ri <- clientRoomA |
|
5996
2c72fe81dd37
Convert boolean variable + a bunch of fields which make sense only while game is going on into Maybe + structure
unc0rr
parents:
5426
diff
changeset
|
369 |
inGame <- io $ room'sM rnc (isJust . gameInfo) ri |
5184 | 370 |
chans <- othersChans |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
371 |
mapM_ processAction $ |
7126
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
372 |
ModifyRoom (\r -> r{ |
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
373 |
teams = Prelude.filter (\t -> teamName /= teamname t) $ teams r |
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
374 |
, gameInfo = liftM (\g -> g{leftTeams = teamName : leftTeams g}) $ gameInfo r |
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
375 |
}) |
7124 | 376 |
: AnswerClients chans ["REMOVE_TEAM", teamName] |
377 |
: [SendTeamRemovalMessage teamName | inGame] |
|
5184 | 378 |
|
379 |
||
380 |
processAction (RemoveClientTeams clId) = do |
|
381 |
rnc <- gets roomsClients |
|
382 |
||
383 |
removeTeamActions <- io $ do |
|
384 |
clNick <- client'sM rnc nick clId |
|
385 |
rId <- clientRoomM rnc clId |
|
386 |
roomTeams <- room'sM rnc teams rId |
|
387 |
return . Prelude.map (RemoveTeam . teamname) . Prelude.filter (\t -> teamowner t == clNick) $ roomTeams |
|
388 |
||
389 |
mapM_ processAction removeTeamActions |
|
390 |
||
391 |
||
392 |
||
393 |
processAction CheckRegistered = do |
|
394 |
(Just ci) <- gets clientIndex |
|
395 |
n <- client's nick |
|
396 |
h <- client's host |
|
397 |
p <- client's clientProto |
|
398 |
uid <- client's clUID |
|
6191 | 399 |
haveSameNick <- liftM (not . null . tail . filter (\c -> caseInsensitiveCompare (nick c) n)) allClientsS |
5184 | 400 |
if haveSameNick then |
401 |
if p < 38 then |
|
402 |
mapM_ processAction [ByeClient "Nickname is already in use", removeNick] |
|
403 |
else |
|
404 |
mapM_ processAction [NoticeMessage NickAlreadyInUse, removeNick] |
|
405 |
else |
|
406 |
do |
|
407 |
db <- gets (dbQueries . serverInfo) |
|
408 |
io $ writeChan db $ CheckAccount ci (hashUnique uid) n h |
|
409 |
return () |
|
410 |
where |
|
411 |
removeNick = ModifyClient (\c -> c{nick = ""}) |
|
412 |
||
413 |
||
414 |
processAction ClearAccountsCache = do |
|
415 |
dbq <- gets (dbQueries . serverInfo) |
|
416 |
io $ writeChan dbq ClearCache |
|
417 |
return () |
|
418 |
||
419 |
||
420 |
processAction (ProcessAccountInfo info) = |
|
421 |
case info of |
|
422 |
HasAccount passwd isAdmin -> do |
|
423 |
chan <- client's sendChan |
|
424 |
mapM_ processAction [AnswerClients [chan] ["ASKPASSWORD"], ModifyClient (\c -> c{webPassword = passwd, isAdministrator = isAdmin})] |
|
425 |
Guest -> |
|
426 |
processAction JoinLobby |
|
427 |
Admin -> do |
|
428 |
mapM_ processAction [ModifyClient (\cl -> cl{isAdministrator = True}), JoinLobby] |
|
429 |
chan <- client's sendChan |
|
430 |
processAction $ AnswerClients [chan] ["ADMIN_ACCESS"] |
|
431 |
||
432 |
||
433 |
processAction JoinLobby = do |
|
434 |
chan <- client's sendChan |
|
435 |
clientNick <- client's nick |
|
7498
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
436 |
isAuthenticated <- liftM (not . B.null) $ client's webPassword |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
437 |
isAdmin <- client's isAdministrator |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
438 |
loggedInClients <- liftM (Prelude.filter logonPassed) $! allClientsS |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
439 |
let (lobbyNicks, clientsChans) = unzip . L.map (nick &&& sendChan) $ loggedInClients |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
440 |
let authenticatedNicks = L.map nick . L.filter (not . B.null . webPassword) $ loggedInClients |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
441 |
let adminsNicks = L.map nick . L.filter isAdministrator $ loggedInClients |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
442 |
let clFlags = B.concat . L.concat $ [["u" | isAuthenticated], ["a" | isAdmin]] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
443 |
mapM_ processAction . concat $ [ |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
444 |
[AnswerClients clientsChans ["LOBBY:JOINED", clientNick]] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
445 |
, [AnswerClients [chan] ("LOBBY:JOINED" : clientNick : lobbyNicks)] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
446 |
, [AnswerClients [chan] ("CLIENT_FLAGS" : "+u" : authenticatedNicks) | not $ null authenticatedNicks] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
447 |
, [AnswerClients [chan] ("CLIENT_FLAGS" : "+a" : adminsNicks) | not $ null adminsNicks] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
448 |
, [AnswerClients (chan : clientsChans) ["CLIENT_FLAGS", B.concat["+" , clFlags], clientNick] | not $ B.null clFlags] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
449 |
, [ModifyClient (\cl -> cl{logonPassed = True})] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
450 |
, [SendServerMessage] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
451 |
] |
5184 | 452 |
|
453 |
||
454 |
processAction (KickClient kickId) = do |
|
455 |
modify (\s -> s{clientIndex = Just kickId}) |
|
5214 | 456 |
clHost <- client's host |
457 |
currentTime <- io getCurrentTime |
|
458 |
mapM_ processAction [ |
|
459 |
AddIP2Bans clHost "60 seconds cooldown after kick" (addUTCTime 60 currentTime), |
|
460 |
ByeClient "Kicked" |
|
461 |
] |
|
5184 | 462 |
|
463 |
||
464 |
processAction (BanClient seconds reason banId) = do |
|
465 |
modify (\s -> s{clientIndex = Just banId}) |
|
466 |
clHost <- client's host |
|
467 |
currentTime <- io getCurrentTime |
|
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
468 |
let msg = B.concat ["Ban for ", B.pack . show $ seconds, " (", reason, ")"] |
5184 | 469 |
mapM_ processAction [ |
470 |
AddIP2Bans clHost msg (addUTCTime seconds currentTime) |
|
471 |
, KickClient banId |
|
472 |
] |
|
473 |
||
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
474 |
processAction (BanIP ip seconds reason) = do |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
475 |
currentTime <- io getCurrentTime |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
476 |
let msg = B.concat ["Ban for ", B.pack . show $ seconds, " (", reason, ")"] |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
477 |
processAction $ |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
478 |
AddIP2Bans ip msg (addUTCTime seconds currentTime) |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
479 |
|
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
480 |
processAction BanList = do |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
481 |
ch <- client's sendChan |
7537
833a0c34fafc
Room bans. They're more simple, than the global ones: if you ban someone, he is banned by ip in this room for the rest of the room lifetime. Not tested.
unc0rr
parents:
7521
diff
changeset
|
482 |
bans <- gets (B.pack . unlines . map show . bans . serverInfo) |
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
483 |
processAction $ |
7537
833a0c34fafc
Room bans. They're more simple, than the global ones: if you ban someone, he is banned by ip in this room for the rest of the room lifetime. Not tested.
unc0rr
parents:
7521
diff
changeset
|
484 |
AnswerClients [ch] ["BANLIST", bans] |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
485 |
|
7748 | 486 |
processAction (Unban entry) = do |
487 |
processAction $ ModifyServerInfo (\s -> s{bans = filter f $ bans s}) |
|
488 |
where |
|
489 |
f (BanByIP bip _ _) = bip == entry |
|
490 |
f (BanByNick bn _ _) = bn == entry |
|
5184 | 491 |
|
492 |
processAction (KickRoomClient kickId) = do |
|
493 |
modify (\s -> s{clientIndex = Just kickId}) |
|
494 |
ch <- client's sendChan |
|
495 |
mapM_ processAction [AnswerClients [ch] ["KICKED"], MoveToLobby "kicked"] |
|
496 |
||
497 |
||
498 |
processAction (AddClient cl) = do |
|
499 |
rnc <- gets roomsClients |
|
500 |
si <- gets serverInfo |
|
501 |
newClId <- io $ do |
|
502 |
ci <- addClient rnc cl |
|
503 |
_ <- Exception.mask (forkIO . clientRecvLoop (clientSocket cl) (coreChan si) (sendChan cl) ci) |
|
504 |
||
505 |
infoM "Clients" (show ci ++ ": New client. Time: " ++ show (connectTime cl)) |
|
506 |
||
507 |
return ci |
|
508 |
||
509 |
modify (\s -> s{clientIndex = Just newClId}) |
|
510 |
mapM_ processAction |
|
511 |
[ |
|
512 |
AnswerClients [sendChan cl] ["CONNECTED", "Hedgewars server http://www.hedgewars.org/", serverVersion] |
|
513 |
, CheckBanned |
|
6809 | 514 |
, AddIP2Bans (host cl) "Reconnected too fast" (addUTCTime 10 $ connectTime cl) |
5184 | 515 |
] |
516 |
||
517 |
||
518 |
processAction (AddNick2Bans n reason expiring) = do |
|
519 |
processAction $ ModifyServerInfo (\s -> s{bans = BanByNick n reason expiring : bans s}) |
|
520 |
||
521 |
processAction (AddIP2Bans ip reason expiring) = do |
|
522 |
(Just ci) <- gets clientIndex |
|
523 |
rc <- gets removedClients |
|
524 |
when (not $ ci `Set.member` rc) |
|
525 |
$ processAction $ ModifyServerInfo (\s -> s{bans = BanByIP ip reason expiring : bans s}) |
|
526 |
||
527 |
processAction CheckBanned = do |
|
528 |
clTime <- client's connectTime |
|
529 |
clNick <- client's nick |
|
530 |
clHost <- client's host |
|
531 |
si <- gets serverInfo |
|
532 |
let validBans = filter (checkNotExpired clTime) $ bans si |
|
533 |
let ban = L.find (checkBan clHost clNick) $ validBans |
|
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
534 |
mapM_ processAction $ |
5184 | 535 |
ModifyServerInfo (\s -> s{bans = validBans}) |
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
536 |
: [ByeClient (getBanReason $ fromJust ban) | isJust ban] |
5184 | 537 |
where |
538 |
checkNotExpired testTime (BanByIP _ _ time) = testTime `diffUTCTime` time <= 0 |
|
539 |
checkNotExpired testTime (BanByNick _ _ time) = testTime `diffUTCTime` time <= 0 |
|
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
540 |
checkBan ip _ (BanByIP bip _ _) = bip `B.isPrefixOf` ip |
5184 | 541 |
checkBan _ n (BanByNick bn _ _) = bn == n |
542 |
getBanReason (BanByIP _ msg _) = msg |
|
543 |
getBanReason (BanByNick _ msg _) = msg |
|
544 |
||
545 |
processAction PingAll = do |
|
546 |
rnc <- gets roomsClients |
|
547 |
io (allClientsM rnc) >>= mapM_ (kickTimeouted rnc) |
|
548 |
cis <- io $ allClientsM rnc |
|
549 |
chans <- io $ mapM (client'sM rnc sendChan) cis |
|
550 |
io $ mapM_ (modifyClient rnc (\cl -> cl{pingsQueue = pingsQueue cl + 1})) cis |
|
551 |
processAction $ AnswerClients chans ["PING"] |
|
552 |
where |
|
553 |
kickTimeouted rnc ci = do |
|
554 |
pq <- io $ client'sM rnc pingsQueue ci |
|
7465
c2dcf97ca664
Okay, this is workaround over ping timeouts problem on the server. Could make server crash if recieve thread wakes up after second ping timeout event.
unc0rr
parents:
7351
diff
changeset
|
555 |
when (pq > 0) $ do |
5184 | 556 |
withStateT (\as -> as{clientIndex = Just ci}) $ |
557 |
processAction (ByeClient "Ping timeout") |
|
7600
31a177d2856c
Disable workaround, as it still makes server crash and hung clients are hidden from players anyway
unc0rr
parents:
7537
diff
changeset
|
558 |
-- when (pq > 1) $ |
31a177d2856c
Disable workaround, as it still makes server crash and hung clients are hidden from players anyway
unc0rr
parents:
7537
diff
changeset
|
559 |
-- processAction $ DeleteClient ci -- smth went wrong with client io threads, issue DeleteClient here |
5184 | 560 |
|
561 |
||
562 |
processAction StatsAction = do |
|
5211 | 563 |
si <- gets serverInfo |
564 |
when (not $ shutdownPending si) $ do |
|
5212
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
565 |
rnc <- gets roomsClients |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
566 |
(roomsNum, clientsNum) <- io $ withRoomsAndClients rnc st |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
567 |
io $ writeChan (dbQueries si) $ SendStats clientsNum (roomsNum - 1) |
5184 | 568 |
where |
569 |
st irnc = (length $ allRooms irnc, length $ allClients irnc) |
|
570 |
||
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
571 |
processAction RestartServer = do |
5212
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
572 |
sp <- gets (shutdownPending . serverInfo) |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
573 |
when (not sp) $ do |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
574 |
sock <- gets (fromJust . serverSocket . serverInfo) |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
575 |
args <- gets (runArgs . serverInfo) |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
576 |
io $ do |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
577 |
noticeM "Core" "Closing listening socket" |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
578 |
sClose sock |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
579 |
noticeM "Core" "Spawning new server" |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
580 |
_ <- createProcess (proc "./hedgewars-server" args) |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
581 |
return () |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
582 |
processAction $ ModifyServerInfo (\s -> s{shutdownPending = True}) |
5184 | 583 |
|
6012 | 584 |
#if defined(OFFICIAL_SERVER) |
5184 | 585 |
processAction SaveReplay = do |
586 |
ri <- clientRoomA |
|
587 |
rnc <- gets roomsClients |
|
588 |
io $ do |
|
589 |
r <- room'sM rnc id ri |
|
590 |
saveReplay r |
|
6012 | 591 |
#else |
592 |
processAction SaveReplay = return () |
|
593 |
#endif |