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