author | unc0rr |
Fri, 13 Dec 2013 00:00:49 +0400 | |
changeset 9786 | e33ee5ef5d9d |
parent 9753 | 9579596cf471 |
child 9868 | 53d1b92db6ce |
permissions | -rw-r--r-- |
8403
fbc6e7602e05
- Allow server admins to use DELEGATE even when not room owner
unc0rr
parents:
8401
diff
changeset
|
1 |
{-# LANGUAGE CPP, OverloadedStrings, ScopedTypeVariables #-} |
7766 | 2 |
{-# OPTIONS_GHC -fno-warn-orphans #-} |
5184 | 3 |
module Actions where |
4 |
||
5 |
import Control.Concurrent |
|
6 |
import qualified Data.Set as Set |
|
8403
fbc6e7602e05
- Allow server admins to use DELEGATE even when not room owner
unc0rr
parents:
8401
diff
changeset
|
7 |
import qualified Data.Map as Map |
5184 | 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 |
|
9448 | 20 |
import Control.Exception as E |
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 |
9035
e84d42a4311c
'/rnd' command. Pass it a (possibly empty) list of items.
unc0rr
parents:
9032
diff
changeset
|
23 |
import System.Random |
9753
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
24 |
import qualified Data.Traversable as DT |
5184 | 25 |
----------------------------- |
7766 | 26 |
#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
|
27 |
import OfficialServer.GameReplayStore |
7766 | 28 |
#endif |
5184 | 29 |
import CoreTypes |
30 |
import Utils |
|
31 |
import ClientIO |
|
32 |
import ServerState |
|
33 |
import Consts |
|
34 |
import ConfigFile |
|
6068 | 35 |
import EngineInteraction |
5184 | 36 |
|
37 |
||
38 |
type CmdHandler = [B.ByteString] -> Reader (ClientIndex, IRnC) [Action] |
|
39 |
||
40 |
||
41 |
othersChans :: StateT ServerState IO [ClientChan] |
|
42 |
othersChans = do |
|
43 |
cl <- client's id |
|
44 |
ri <- clientRoomA |
|
45 |
liftM (map sendChan . filter (/= cl)) $ roomClientsS ri |
|
46 |
||
47 |
processAction :: Action -> StateT ServerState IO () |
|
48 |
||
49 |
||
50 |
processAction (AnswerClients chans msg) = |
|
51 |
io $ mapM_ (`writeChan` (msg `deepseq` msg)) (chans `deepseq` chans) |
|
52 |
||
53 |
||
54 |
processAction SendServerMessage = do |
|
55 |
chan <- client's sendChan |
|
56 |
protonum <- client's clientProto |
|
57 |
si <- liftM serverInfo get |
|
58 |
let message = if protonum < latestReleaseVersion si then |
|
59 |
serverMessageForOldVersions si |
|
60 |
else |
|
61 |
serverMessage si |
|
62 |
processAction $ AnswerClients [chan] ["SERVER_MESSAGE", message] |
|
63 |
||
64 |
||
65 |
processAction SendServerVars = do |
|
66 |
chan <- client's sendChan |
|
67 |
si <- gets serverInfo |
|
68 |
io $ writeChan chan ("SERVER_VARS" : vars si) |
|
69 |
where |
|
70 |
vars si = [ |
|
71 |
"MOTD_NEW", serverMessage si, |
|
72 |
"MOTD_OLD", serverMessageForOldVersions si, |
|
73 |
"LATEST_PROTO", showB $ latestReleaseVersion si |
|
74 |
] |
|
75 |
||
76 |
||
77 |
processAction (ProtocolError msg) = do |
|
78 |
chan <- client's sendChan |
|
79 |
processAction $ AnswerClients [chan] ["ERROR", msg] |
|
80 |
||
81 |
||
82 |
processAction (Warning msg) = do |
|
83 |
chan <- client's sendChan |
|
84 |
processAction $ AnswerClients [chan] ["WARNING", msg] |
|
85 |
||
86 |
processAction (NoticeMessage n) = do |
|
87 |
chan <- client's sendChan |
|
88 |
processAction $ AnswerClients [chan] ["NOTICE", showB . fromEnum $ n] |
|
89 |
||
90 |
processAction (ByeClient msg) = do |
|
91 |
(Just ci) <- gets clientIndex |
|
92 |
ri <- clientRoomA |
|
93 |
||
94 |
chan <- client's sendChan |
|
95 |
clNick <- client's nick |
|
8372
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
96 |
loggedIn <- client's isVisible |
5184 | 97 |
|
98 |
when (ri /= lobbyId) $ do |
|
99 |
processAction $ MoveToLobby ("quit: " `B.append` msg) |
|
100 |
return () |
|
101 |
||
8372
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
102 |
clientsChans <- liftM (Prelude.map sendChan . Prelude.filter isVisible) $! allClientsS |
5184 | 103 |
io $ |
104 |
infoM "Clients" (show ci ++ " quits: " ++ B.unpack msg) |
|
105 |
||
106 |
when loggedIn $ processAction $ AnswerClients clientsChans ["LOBBY:LEFT", clNick, msg] |
|
107 |
||
8158 | 108 |
mapM_ processAction |
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
|
109 |
[ |
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
|
110 |
AnswerClients [chan] ["BYE", msg] |
8372
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
111 |
, ModifyClient (\c -> c{nick = "", isVisible = 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
|
112 |
] |
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
|
113 |
|
5184 | 114 |
s <- get |
115 |
put $! s{removedClients = ci `Set.insert` removedClients s} |
|
116 |
||
117 |
processAction (DeleteClient ci) = do |
|
118 |
io $ debugM "Clients" $ "DeleteClient: " ++ show ci |
|
119 |
||
120 |
rnc <- gets roomsClients |
|
121 |
io $ removeClient rnc ci |
|
122 |
||
123 |
s <- get |
|
124 |
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
|
125 |
|
5209
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5184
diff
changeset
|
126 |
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
|
127 |
cls <- allClientsS |
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5184
diff
changeset
|
128 |
io $ when (sp && null cls) $ throwIO ShutdownException |
5184 | 129 |
|
130 |
processAction (ModifyClient f) = do |
|
131 |
(Just ci) <- gets clientIndex |
|
132 |
rnc <- gets roomsClients |
|
133 |
io $ modifyClient rnc f ci |
|
134 |
return () |
|
135 |
||
136 |
processAction (ModifyClient2 ci f) = do |
|
137 |
rnc <- gets roomsClients |
|
138 |
io $ modifyClient rnc f ci |
|
139 |
return () |
|
140 |
||
7757
c20e6c80e249
Don't accept ROUNDFINISHED message twice. Fixes game hangs when half of teams quit game.
unc0rr
parents:
7748
diff
changeset
|
141 |
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
|
142 |
rnc <- gets roomsClients |
c20e6c80e249
Don't accept ROUNDFINISHED message twice. Fixes game hangs when half of teams quit game.
unc0rr
parents:
7748
diff
changeset
|
143 |
ri <- clientRoomA |
c20e6c80e249
Don't accept ROUNDFINISHED message twice. Fixes game hangs when half of teams quit game.
unc0rr
parents:
7748
diff
changeset
|
144 |
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
|
145 |
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
|
146 |
|
5184 | 147 |
|
148 |
processAction (ModifyRoom f) = do |
|
149 |
rnc <- gets roomsClients |
|
150 |
ri <- clientRoomA |
|
151 |
io $ modifyRoom rnc f ri |
|
152 |
return () |
|
153 |
||
154 |
||
155 |
processAction (ModifyServerInfo f) = do |
|
156 |
modify (\s -> s{serverInfo = f $ serverInfo s}) |
|
157 |
si <- gets serverInfo |
|
158 |
io $ writeServerConfig si |
|
159 |
||
160 |
||
161 |
processAction (MoveToRoom ri) = do |
|
162 |
(Just ci) <- gets clientIndex |
|
163 |
rnc <- gets roomsClients |
|
164 |
||
165 |
io $ do |
|
9109
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
166 |
modifyClient rnc ( |
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
167 |
\cl -> cl{teamsInGame = 0 |
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
168 |
, isReady = False |
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
169 |
, isMaster = False |
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
170 |
, isInGame = False |
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
171 |
, isJoinedMidGame = False |
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
172 |
, clientClan = Nothing}) ci |
5184 | 173 |
modifyRoom rnc (\r -> r{playersIn = playersIn r + 1}) ri |
174 |
moveClientToRoom rnc ri ci |
|
175 |
||
176 |
chans <- liftM (map sendChan) $ roomClientsS ri |
|
177 |
clNick <- client's nick |
|
9193 | 178 |
allClientsChans <- liftM (Prelude.map sendChan . Prelude.filter isVisible) $! allClientsS |
5184 | 179 |
|
9193 | 180 |
mapM_ processAction [ |
181 |
AnswerClients chans ["JOINED", clNick] |
|
182 |
, AnswerClients allClientsChans ["CLIENT_FLAGS", "+i", clNick] |
|
183 |
] |
|
5184 | 184 |
|
185 |
||
186 |
processAction (MoveToLobby msg) = do |
|
187 |
(Just ci) <- gets clientIndex |
|
188 |
ri <- clientRoomA |
|
189 |
rnc <- gets roomsClients |
|
7766 | 190 |
playersNum <- io $ room'sM rnc playersIn ri |
9753
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
191 |
specialRoom <- io $ room'sM rnc isSpecial ri |
5184 | 192 |
master <- client's isMaster |
193 |
-- client <- client's id |
|
194 |
clNick <- client's nick |
|
195 |
chans <- othersChans |
|
196 |
||
197 |
if master then |
|
9753
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
198 |
if (playersNum > 1) || specialRoom then |
8438
64ac58abd02a
Don't resend "team quit" message when client closes engine, then quits room:
unc0rr
parents:
8422
diff
changeset
|
199 |
mapM_ processAction [ChangeMaster Nothing, NoticeMessage AdminLeft, RemoveClientTeams, AnswerClients chans ["LEFT", clNick, msg]] |
5184 | 200 |
else |
201 |
processAction RemoveRoom |
|
202 |
else |
|
8438
64ac58abd02a
Don't resend "team quit" message when client closes engine, then quits room:
unc0rr
parents:
8422
diff
changeset
|
203 |
mapM_ processAction [RemoveClientTeams, AnswerClients chans ["LEFT", clNick, msg]] |
5184 | 204 |
|
9193 | 205 |
allClientsChans <- liftM (Prelude.map sendChan . Prelude.filter isVisible) $! allClientsS |
206 |
processAction $ AnswerClients allClientsChans ["CLIENT_FLAGS", "-i", clNick] |
|
207 |
||
5184 | 208 |
-- 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
|
209 |
ready <- client's isReady |
9753
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
210 |
when (not master || playersNum > 1 || specialRoom) . io $ do |
5184 | 211 |
modifyRoom rnc (\r -> r{ |
212 |
playersIn = playersIn r - 1, |
|
213 |
readyPlayers = if ready then readyPlayers r - 1 else readyPlayers r |
|
214 |
}) ri |
|
215 |
moveClientToLobby rnc ci |
|
216 |
||
7710
fd5bcbd698a5
- Keep track of room name so correct name is displayed when you become room admin
unc0rr
parents:
7682
diff
changeset
|
217 |
|
8247 | 218 |
processAction (ChangeMaster delegateId)= do |
5184 | 219 |
(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
|
220 |
proto <- client's clientProto |
5184 | 221 |
ri <- clientRoomA |
222 |
rnc <- gets roomsClients |
|
9753
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
223 |
specialRoom <- io $ room'sM rnc isSpecial ri |
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
224 |
newMasterId <- liftM (\ids -> fromMaybe (listToMaybe . reverse . filter (/= ci) $ ids) $ liftM Just delegateId) . io $ roomClientsIndicesM rnc ri |
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
225 |
newMaster <- io $ client'sM rnc id `DT.mapM` newMasterId |
9062
a65492ca1587
Fix room admin rights delegation by server admin when he isn't room admin
unc0rr
parents:
9060
diff
changeset
|
226 |
oldMasterId <- io $ room'sM rnc masterID ri |
6733 | 227 |
oldRoomName <- io $ room'sM rnc name ri |
8245 | 228 |
kicked <- client's isKickedFromServer |
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
|
229 |
thisRoomChans <- liftM (map sendChan) $ roomClientsS ri |
9753
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
230 |
let newRoomName = if ((proto < 42) || kicked) && (not specialRoom) then maybeNick newMaster else oldRoomName |
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
231 |
|
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
232 |
when (isJust oldMasterId) $ do |
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
233 |
oldMasterNick <- io $ client'sM rnc nick (fromJust oldMasterId) |
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
234 |
mapM_ processAction [ |
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
235 |
ModifyClient2 (fromJust oldMasterId) (\c -> c{isMaster = False}) |
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
236 |
, AnswerClients thisRoomChans ["CLIENT_FLAGS", "-h", oldMasterNick] |
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
237 |
] |
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
238 |
|
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
239 |
when (isJust newMasterId) $ |
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
240 |
mapM_ processAction [ |
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
241 |
ModifyClient2 (fromJust newMasterId) (\c -> c{isMaster = True}) |
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
242 |
, AnswerClients [sendChan $ fromJust newMaster] ["ROOM_CONTROL_ACCESS", "1"] |
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
243 |
, AnswerClients thisRoomChans ["CLIENT_FLAGS", "+h", nick $ fromJust newMaster] |
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
244 |
] |
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
245 |
|
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
246 |
processAction $ |
7775 | 247 |
ModifyRoom (\r -> r{masterID = newMasterId |
248 |
, name = newRoomName |
|
249 |
, isRestrictedJoins = False |
|
250 |
, isRestrictedTeams = False |
|
9753
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
251 |
, isRegisteredOnly = isSpecial r} |
8983 | 252 |
) |
5184 | 253 |
|
7766 | 254 |
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
|
255 |
chans <- liftM (map sendChan) $! sameProtoClientsS proto |
9753
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
256 |
processAction $ AnswerClients chans ("ROOM" : "UPD" : oldRoomName : roomInfo proto (maybeNick newMaster) 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
|
257 |
|
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
258 |
|
5184 | 259 |
processAction (AddRoom roomName roomPassword) = do |
260 |
Just clId <- gets clientIndex |
|
261 |
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
|
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 |
n <- client's nick |
5184 | 264 |
|
265 |
let rm = newRoom{ |
|
9753
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
266 |
masterID = Just clId, |
5184 | 267 |
name = roomName, |
268 |
password = roomPassword, |
|
269 |
roomProto = proto |
|
270 |
} |
|
271 |
||
272 |
rId <- io $ addRoom rnc rm |
|
273 |
||
274 |
processAction $ MoveToRoom rId |
|
275 |
||
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
|
276 |
chans <- liftM (map sendChan) $! sameProtoClientsS proto |
5184 | 277 |
|
278 |
mapM_ processAction [ |
|
9702 | 279 |
AnswerClients chans ("ROOM" : "ADD" : roomInfo proto n rm{playersIn = 1}) |
5184 | 280 |
] |
281 |
||
282 |
||
283 |
processAction RemoveRoom = do |
|
284 |
Just clId <- gets clientIndex |
|
285 |
rnc <- gets roomsClients |
|
286 |
ri <- io $ clientRoomM rnc clId |
|
287 |
roomName <- io $ room'sM rnc name ri |
|
288 |
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
|
289 |
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
|
290 |
chans <- liftM (map sendChan) $! sameProtoClientsS proto |
5184 | 291 |
|
292 |
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
|
293 |
AnswerClients chans ["ROOM", "DEL", roomName], |
5184 | 294 |
AnswerClients others ["ROOMABANDONED", roomName] |
295 |
] |
|
296 |
||
297 |
io $ removeRoom rnc ri |
|
298 |
||
299 |
||
7921
6b074de32bea
Send ROOM UPD message when team is added/deleted from room, and when game starts or finishes
unc0rr
parents:
7898
diff
changeset
|
300 |
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
|
301 |
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
|
302 |
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
|
303 |
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
|
304 |
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
|
305 |
rm <- io $ room'sM rnc id ri |
9753
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
306 |
masterCl <- io $ client'sM rnc id `DT.mapM` (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
|
307 |
chans <- liftM (map sendChan) $! sameProtoClientsS proto |
9753
9579596cf471
- Special rooms which stay even when last player quits. Not useful for now, and can't be removed at all.
unc0rr
parents:
9702
diff
changeset
|
308 |
processAction $ AnswerClients chans ("ROOM" : "UPD" : name rm : roomInfo proto (maybeNick masterCl) 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
|
309 |
|
6b074de32bea
Send ROOM UPD message when team is added/deleted from room, and when game starts or finishes
unc0rr
parents:
7898
diff
changeset
|
310 |
|
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
|
311 |
processAction UnreadyRoomClients = do |
5184 | 312 |
ri <- clientRoomA |
313 |
roomPlayers <- roomClientsS ri |
|
314 |
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
|
315 |
mapM_ processAction [ |
7775 | 316 |
AnswerClients (map sendChan roomPlayers) $ notReadyMessage pr . map nick . filter (not . isMaster) $ roomPlayers |
9109
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
317 |
, ModifyRoomClients (\cl -> cl{isReady = isMaster cl, isJoinedMidGame = False}) |
7775 | 318 |
, 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
|
319 |
] |
5184 | 320 |
where |
321 |
notReadyMessage p nicks = if p < 38 then "NOT_READY" : nicks else "CLIENT_FLAGS" : "-r" : nicks |
|
322 |
||
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
323 |
|
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
|
324 |
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
|
325 |
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
|
326 |
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
|
327 |
thisRoomChans <- liftM (map sendChan) $ roomClientsS ri |
9109
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
328 |
joinedMidGame <- liftM (filter isJoinedMidGame) $ roomClientsS ri |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
329 |
answerRemovedTeams <- io $ |
9109
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
330 |
room'sM rnc (\r -> let gi = fromJust $ gameInfo r in |
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
331 |
concatMap (\c -> |
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
332 |
(answerFullConfigParams c (mapParams r) (params r)) |
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
333 |
++ |
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
334 |
(map (\t -> AnswerClients [sendChan c] ["REMOVE_TEAM", t]) $ leftTeams gi) |
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
335 |
) joinedMidGame |
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
336 |
) ri |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
337 |
|
9109
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
338 |
mapM_ processAction $ ( |
7124 | 339 |
SaveReplay |
7126
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
340 |
: 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
|
341 |
(\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
|
342 |
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
|
343 |
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
|
344 |
} |
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
|
345 |
) |
7921
6b074de32bea
Send ROOM UPD message when team is added/deleted from room, and when game starts or finishes
unc0rr
parents:
7898
diff
changeset
|
346 |
: SendUpdateOnThisRoom |
8241
b15f165c080c
Send "ROUND_FINISHED" to room clients when server thinks so
unc0rr
parents:
8239
diff
changeset
|
347 |
: AnswerClients thisRoomChans ["ROUND_FINISHED"] |
7126
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
348 |
: answerRemovedTeams |
9109
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
349 |
) |
878f06e9c484
- Fix issue 521 by resending FULLMAPCONFIG on game finish to those who joined mid-game. Semitested.
unc0rr
parents:
9062
diff
changeset
|
350 |
++ [UnreadyRoomClients] |
5184 | 351 |
|
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
352 |
|
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 |
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
|
354 |
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
|
355 |
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
|
356 |
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
|
357 |
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
|
358 |
gameInfo = liftM (\g -> g{ |
7124 | 359 |
teamsInGameNumber = teamsInGameNumber g - 1 |
9381 | 360 |
, roundMsgs = (if isJust $ lastFilteredTimedMsg g then (:) (fromJust $ lastFilteredTimedMsg g) else id) |
361 |
$ rmTeamMsg : roundMsgs g |
|
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 |
}) $ 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
|
363 |
}) |
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
|
364 |
] |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
365 |
|
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
|
366 |
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
|
367 |
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
|
368 |
gi <- io $ room'sM rnc gameInfo ri |
8422 | 369 |
when (0 == teamsInGameNumber (fromJust gi)) $ |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
370 |
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
|
371 |
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
|
372 |
rmTeamMsg = toEngineMsg $ 'F' `B.cons` teamName |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
373 |
|
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
374 |
|
5184 | 375 |
processAction (RemoveTeam teamName) = do |
8438
64ac58abd02a
Don't resend "team quit" message when client closes engine, then quits room:
unc0rr
parents:
8422
diff
changeset
|
376 |
(Just ci) <- gets clientIndex |
5184 | 377 |
rnc <- gets roomsClients |
378 |
ri <- clientRoomA |
|
8438
64ac58abd02a
Don't resend "team quit" message when client closes engine, then quits room:
unc0rr
parents:
8422
diff
changeset
|
379 |
inGame <- io $ do |
64ac58abd02a
Don't resend "team quit" message when client closes engine, then quits room:
unc0rr
parents:
8422
diff
changeset
|
380 |
r <- room'sM rnc (isJust . gameInfo) ri |
64ac58abd02a
Don't resend "team quit" message when client closes engine, then quits room:
unc0rr
parents:
8422
diff
changeset
|
381 |
c <- client'sM rnc isInGame ci |
64ac58abd02a
Don't resend "team quit" message when client closes engine, then quits room:
unc0rr
parents:
8422
diff
changeset
|
382 |
return $ r && c |
5184 | 383 |
chans <- othersChans |
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
384 |
mapM_ processAction $ |
7126
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
385 |
ModifyRoom (\r -> r{ |
8daa5c8e84c0
Bring leftTeams back (with a fix) as it is apparently needed for spectators.
unc0rr
parents:
7124
diff
changeset
|
386 |
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
|
387 |
, 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
|
388 |
}) |
7947 | 389 |
: SendUpdateOnThisRoom |
7124 | 390 |
: AnswerClients chans ["REMOVE_TEAM", teamName] |
391 |
: [SendTeamRemovalMessage teamName | inGame] |
|
5184 | 392 |
|
393 |
||
8438
64ac58abd02a
Don't resend "team quit" message when client closes engine, then quits room:
unc0rr
parents:
8422
diff
changeset
|
394 |
processAction RemoveClientTeams = do |
64ac58abd02a
Don't resend "team quit" message when client closes engine, then quits room:
unc0rr
parents:
8422
diff
changeset
|
395 |
(Just ci) <- gets clientIndex |
5184 | 396 |
rnc <- gets roomsClients |
397 |
||
398 |
removeTeamActions <- io $ do |
|
8438
64ac58abd02a
Don't resend "team quit" message when client closes engine, then quits room:
unc0rr
parents:
8422
diff
changeset
|
399 |
rId <- clientRoomM rnc ci |
5184 | 400 |
roomTeams <- room'sM rnc teams rId |
8438
64ac58abd02a
Don't resend "team quit" message when client closes engine, then quits room:
unc0rr
parents:
8422
diff
changeset
|
401 |
return . Prelude.map (RemoveTeam . teamname) . Prelude.filter (\t -> teamownerId t == ci) $ roomTeams |
5184 | 402 |
|
403 |
mapM_ processAction removeTeamActions |
|
404 |
||
405 |
||
406 |
||
407 |
processAction CheckRegistered = do |
|
408 |
(Just ci) <- gets clientIndex |
|
409 |
n <- client's nick |
|
410 |
h <- client's host |
|
411 |
p <- client's clientProto |
|
8371 | 412 |
checker <- client's isChecker |
5184 | 413 |
uid <- client's clUID |
8371 | 414 |
-- allow multiple checker logins |
415 |
haveSameNick <- liftM (not . null . tail . filter (\c -> (not $ isChecker c) && caseInsensitiveCompare (nick c) n)) allClientsS |
|
8476 | 416 |
if (not checker) && haveSameNick then |
5184 | 417 |
if p < 38 then |
8401
87410ae372f6
Server messages localization using Qt's l10n subsystem:
unc0rr
parents:
8396
diff
changeset
|
418 |
processAction $ ByeClient $ loc "Nickname is already in use" |
5184 | 419 |
else |
9032
2345f5f96a29
Clear nickname in case of collision so client could try again. Should help with issue 550 if not fix it.
unc0rr
parents:
8983
diff
changeset
|
420 |
mapM_ processAction [NoticeMessage NickAlreadyInUse, ModifyClient $ \c -> c{nick = B.empty}] |
5184 | 421 |
else |
422 |
do |
|
423 |
db <- gets (dbQueries . serverInfo) |
|
424 |
io $ writeChan db $ CheckAccount ci (hashUnique uid) n h |
|
425 |
return () |
|
426 |
||
427 |
processAction ClearAccountsCache = do |
|
428 |
dbq <- gets (dbQueries . serverInfo) |
|
429 |
io $ writeChan dbq ClearCache |
|
430 |
return () |
|
431 |
||
432 |
||
8189 | 433 |
processAction (ProcessAccountInfo info) = do |
5184 | 434 |
case info of |
9435 | 435 |
HasAccount passwd isAdmin isContr -> do |
8189 | 436 |
b <- isBanned |
8372
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
437 |
c <- client's isChecker |
9435 | 438 |
when (not b) $ (if c then checkerLogin else playerLogin) passwd isAdmin isContr |
8189 | 439 |
Guest -> do |
440 |
b <- isBanned |
|
8523 | 441 |
c <- client's isChecker |
8189 | 442 |
when (not b) $ |
8523 | 443 |
if c then |
9435 | 444 |
checkerLogin "" False False |
8523 | 445 |
else |
446 |
processAction JoinLobby |
|
9786 | 447 |
Admin -> |
5184 | 448 |
mapM_ processAction [ModifyClient (\cl -> cl{isAdministrator = True}), JoinLobby] |
9446 | 449 |
ReplayName fn -> processAction $ ShowReplay fn |
8189 | 450 |
where |
451 |
isBanned = do |
|
8239 | 452 |
processAction $ CheckBanned False |
8189 | 453 |
liftM B.null $ client's nick |
9435 | 454 |
checkerLogin _ False _ = processAction $ ByeClient $ loc "No checker rights" |
455 |
checkerLogin p True _ = do |
|
8372
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
456 |
wp <- client's webPassword |
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
457 |
processAction $ |
8401
87410ae372f6
Server messages localization using Qt's l10n subsystem:
unc0rr
parents:
8396
diff
changeset
|
458 |
if wp == p then ModifyClient $ \c -> c{logonPassed = True} else ByeClient $ loc "Authentication failed" |
9435 | 459 |
playerLogin p a contr = do |
8372
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
460 |
chan <- client's sendChan |
9435 | 461 |
mapM_ processAction [ |
462 |
AnswerClients [chan] ["ASKPASSWORD"] |
|
463 |
, ModifyClient (\c -> c{webPassword = p, isAdministrator = a, isContributor = contr}) |
|
464 |
] |
|
5184 | 465 |
|
466 |
processAction JoinLobby = do |
|
467 |
chan <- client's sendChan |
|
9528 | 468 |
rnc <- gets roomsClients |
5184 | 469 |
clientNick <- client's nick |
7498
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
470 |
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
|
471 |
isAdmin <- client's isAdministrator |
9435 | 472 |
isContr <- client's isContributor |
8372
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
473 |
loggedInClients <- liftM (Prelude.filter isVisible) $! allClientsS |
7498
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
474 |
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
|
475 |
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
|
476 |
let adminsNicks = L.map nick . L.filter isAdministrator $ loggedInClients |
9435 | 477 |
let contrNicks = L.map nick . L.filter isContributor $ loggedInClients |
9528 | 478 |
inRoomNicks <- io $ |
479 |
allClientsM rnc |
|
480 |
>>= filterM (liftM ((/=) lobbyId) . clientRoomM rnc) |
|
481 |
>>= mapM (client'sM rnc nick) |
|
9435 | 482 |
let clFlags = B.concat . L.concat $ [["u" | isAuthenticated], ["a" | isAdmin], ["c" | isContr]] |
7498
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
483 |
mapM_ processAction . concat $ [ |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
484 |
[AnswerClients clientsChans ["LOBBY:JOINED", clientNick]] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
485 |
, [AnswerClients [chan] ("LOBBY:JOINED" : clientNick : lobbyNicks)] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
486 |
, [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
|
487 |
, [AnswerClients [chan] ("CLIENT_FLAGS" : "+a" : adminsNicks) | not $ null adminsNicks] |
9435 | 488 |
, [AnswerClients [chan] ("CLIENT_FLAGS" : "+c" : contrNicks) | not $ null contrNicks] |
9528 | 489 |
, [AnswerClients [chan] ("CLIENT_FLAGS" : "+i" : inRoomNicks) | not $ null inRoomNicks] |
7498
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
490 |
, [AnswerClients (chan : clientsChans) ["CLIENT_FLAGS", B.concat["+" , clFlags], clientNick] | not $ B.null clFlags] |
8372
3c193ec03e09
Logon procedure for checkers, introduce invisible clients
unc0rr
parents:
8371
diff
changeset
|
491 |
, [ModifyClient (\cl -> cl{logonPassed = True, isVisible = True})] |
7498
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
492 |
, [SendServerMessage] |
86984f6fa1b9
Introduce 'a' and 'u' client flags to mark admins and authenticated users
unc0rr
parents:
7465
diff
changeset
|
493 |
] |
5184 | 494 |
|
495 |
||
496 |
processAction (KickClient kickId) = do |
|
497 |
modify (\s -> s{clientIndex = Just kickId}) |
|
5214 | 498 |
clHost <- client's host |
499 |
currentTime <- io getCurrentTime |
|
500 |
mapM_ processAction [ |
|
8401
87410ae372f6
Server messages localization using Qt's l10n subsystem:
unc0rr
parents:
8396
diff
changeset
|
501 |
AddIP2Bans clHost (loc "60 seconds cooldown after kick") (addUTCTime 60 currentTime) |
8245 | 502 |
, ModifyClient (\c -> c{isKickedFromServer = True}) |
503 |
, ByeClient "Kicked" |
|
5214 | 504 |
] |
5184 | 505 |
|
506 |
||
507 |
processAction (BanClient seconds reason banId) = do |
|
508 |
modify (\s -> s{clientIndex = Just banId}) |
|
509 |
clHost <- client's host |
|
510 |
currentTime <- io getCurrentTime |
|
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
511 |
let msg = B.concat ["Ban for ", B.pack . show $ seconds, " (", reason, ")"] |
5184 | 512 |
mapM_ processAction [ |
513 |
AddIP2Bans clHost msg (addUTCTime seconds currentTime) |
|
514 |
, KickClient banId |
|
515 |
] |
|
516 |
||
8245 | 517 |
|
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
518 |
processAction (BanIP ip seconds reason) = do |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
519 |
currentTime <- io getCurrentTime |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
520 |
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
|
521 |
processAction $ |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
522 |
AddIP2Bans ip msg (addUTCTime seconds currentTime) |
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
523 |
|
8245 | 524 |
|
8154 | 525 |
processAction (BanNick n seconds reason) = do |
526 |
currentTime <- io getCurrentTime |
|
527 |
let msg = |
|
528 |
if seconds > 60 * 60 * 24 * 365 then |
|
529 |
B.concat ["Permanent ban (", reason, ")"] |
|
530 |
else |
|
531 |
B.concat ["Ban for ", B.pack . show $ seconds, " (", reason, ")"] |
|
532 |
processAction $ |
|
533 |
AddNick2Bans n msg (addUTCTime seconds currentTime) |
|
534 |
||
8245 | 535 |
|
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
536 |
processAction BanList = do |
8156 | 537 |
time <- io $ getCurrentTime |
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
538 |
ch <- client's sendChan |
8156 | 539 |
b <- gets (B.intercalate "\n" . concatMap (ban2Str time) . bans . serverInfo) |
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
540 |
processAction $ |
7766 | 541 |
AnswerClients [ch] ["BANLIST", b] |
8156 | 542 |
where |
543 |
ban2Str time (BanByIP b r t) = ["I", b, r, B.pack . show $ t `diffUTCTime` time] |
|
544 |
ban2Str time (BanByNick b r t) = ["N", b, r, B.pack . show $ t `diffUTCTime` time] |
|
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
545 |
|
8245 | 546 |
|
7748 | 547 |
processAction (Unban entry) = do |
8156 | 548 |
processAction $ ModifyServerInfo (\s -> s{bans = filter (not . f) $ bans s}) |
7748 | 549 |
where |
550 |
f (BanByIP bip _ _) = bip == entry |
|
551 |
f (BanByNick bn _ _) = bn == entry |
|
5184 | 552 |
|
8245 | 553 |
|
5184 | 554 |
processAction (KickRoomClient kickId) = do |
555 |
modify (\s -> s{clientIndex = Just kickId}) |
|
556 |
ch <- client's sendChan |
|
8401
87410ae372f6
Server messages localization using Qt's l10n subsystem:
unc0rr
parents:
8396
diff
changeset
|
557 |
mapM_ processAction [AnswerClients [ch] ["KICKED"], MoveToLobby $ loc "kicked"] |
5184 | 558 |
|
559 |
||
560 |
processAction (AddClient cl) = do |
|
561 |
rnc <- gets roomsClients |
|
562 |
si <- gets serverInfo |
|
563 |
newClId <- io $ do |
|
564 |
ci <- addClient rnc cl |
|
565 |
_ <- Exception.mask (forkIO . clientRecvLoop (clientSocket cl) (coreChan si) (sendChan cl) ci) |
|
566 |
||
567 |
infoM "Clients" (show ci ++ ": New client. Time: " ++ show (connectTime cl)) |
|
568 |
||
569 |
return ci |
|
570 |
||
571 |
modify (\s -> s{clientIndex = Just newClId}) |
|
572 |
mapM_ processAction |
|
573 |
[ |
|
574 |
AnswerClients [sendChan cl] ["CONNECTED", "Hedgewars server http://www.hedgewars.org/", serverVersion] |
|
8239 | 575 |
, CheckBanned True |
6809 | 576 |
, AddIP2Bans (host cl) "Reconnected too fast" (addUTCTime 10 $ connectTime cl) |
5184 | 577 |
] |
578 |
||
579 |
||
580 |
processAction (AddNick2Bans n reason expiring) = do |
|
581 |
processAction $ ModifyServerInfo (\s -> s{bans = BanByNick n reason expiring : bans s}) |
|
582 |
||
583 |
processAction (AddIP2Bans ip reason expiring) = do |
|
584 |
(Just ci) <- gets clientIndex |
|
585 |
rc <- gets removedClients |
|
586 |
when (not $ ci `Set.member` rc) |
|
587 |
$ processAction $ ModifyServerInfo (\s -> s{bans = BanByIP ip reason expiring : bans s}) |
|
588 |
||
8519
98e2dbdda8c0
Workaround desync issue if I correctly understand its roots (barely tested)
unc0rr
parents:
8514
diff
changeset
|
589 |
|
8239 | 590 |
processAction (CheckBanned byIP) = do |
5184 | 591 |
clTime <- client's connectTime |
592 |
clNick <- client's nick |
|
593 |
clHost <- client's host |
|
594 |
si <- gets serverInfo |
|
595 |
let validBans = filter (checkNotExpired clTime) $ bans si |
|
8239 | 596 |
let ban = L.find (checkBan byIP clHost clNick) $ validBans |
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
597 |
mapM_ processAction $ |
5184 | 598 |
ModifyServerInfo (\s -> s{bans = validBans}) |
5426
109e9b5761c2
Implement command for banning by ip and a command for bans list
unc0rr
parents:
5214
diff
changeset
|
599 |
: [ByeClient (getBanReason $ fromJust ban) | isJust ban] |
5184 | 600 |
where |
601 |
checkNotExpired testTime (BanByIP _ _ time) = testTime `diffUTCTime` time <= 0 |
|
602 |
checkNotExpired testTime (BanByNick _ _ time) = testTime `diffUTCTime` time <= 0 |
|
8239 | 603 |
checkBan True ip _ (BanByIP bip _ _) = bip `B.isPrefixOf` ip |
604 |
checkBan False _ n (BanByNick bn _ _) = caseInsensitiveCompare bn n |
|
605 |
checkBan _ _ _ _ = False |
|
5184 | 606 |
getBanReason (BanByIP _ msg _) = msg |
607 |
getBanReason (BanByNick _ msg _) = msg |
|
608 |
||
8519
98e2dbdda8c0
Workaround desync issue if I correctly understand its roots (barely tested)
unc0rr
parents:
8514
diff
changeset
|
609 |
|
5184 | 610 |
processAction PingAll = do |
611 |
rnc <- gets roomsClients |
|
612 |
io (allClientsM rnc) >>= mapM_ (kickTimeouted rnc) |
|
613 |
cis <- io $ allClientsM rnc |
|
614 |
chans <- io $ mapM (client'sM rnc sendChan) cis |
|
615 |
io $ mapM_ (modifyClient rnc (\cl -> cl{pingsQueue = pingsQueue cl + 1})) cis |
|
616 |
processAction $ AnswerClients chans ["PING"] |
|
617 |
where |
|
618 |
kickTimeouted rnc ci = do |
|
619 |
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
|
620 |
when (pq > 0) $ do |
5184 | 621 |
withStateT (\as -> as{clientIndex = Just ci}) $ |
8401
87410ae372f6
Server messages localization using Qt's l10n subsystem:
unc0rr
parents:
8396
diff
changeset
|
622 |
processAction (ByeClient $ loc "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
|
623 |
-- 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
|
624 |
-- processAction $ DeleteClient ci -- smth went wrong with client io threads, issue DeleteClient here |
5184 | 625 |
|
626 |
||
627 |
processAction StatsAction = do |
|
5211 | 628 |
si <- gets serverInfo |
629 |
when (not $ shutdownPending si) $ do |
|
5212
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
630 |
rnc <- gets roomsClients |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
631 |
(roomsNum, clientsNum) <- io $ withRoomsAndClients rnc st |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
632 |
io $ writeChan (dbQueries si) $ SendStats clientsNum (roomsNum - 1) |
5184 | 633 |
where |
634 |
st irnc = (length $ allRooms irnc, length $ allClients irnc) |
|
635 |
||
9435 | 636 |
|
7321
57bd4f201401
- Try sending remove message in 'finally' as a last resort
unc0rr
parents:
7126
diff
changeset
|
637 |
processAction RestartServer = do |
5212
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
638 |
sp <- gets (shutdownPending . serverInfo) |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
639 |
when (not sp) $ do |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
640 |
sock <- gets (fromJust . serverSocket . serverInfo) |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
641 |
args <- gets (runArgs . serverInfo) |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
642 |
io $ do |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
643 |
noticeM "Core" "Closing listening socket" |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
644 |
sClose sock |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
645 |
noticeM "Core" "Spawning new server" |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
646 |
_ <- createProcess (proc "./hedgewars-server" args) |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
647 |
return () |
eaffb02f0053
Don't perform RestartServer action when already did it once
unc0rr
parents:
5211
diff
changeset
|
648 |
processAction $ ModifyServerInfo (\s -> s{shutdownPending = True}) |
5184 | 649 |
|
9435 | 650 |
|
8403
fbc6e7602e05
- Allow server admins to use DELEGATE even when not room owner
unc0rr
parents:
8401
diff
changeset
|
651 |
processAction Stats = do |
fbc6e7602e05
- Allow server admins to use DELEGATE even when not room owner
unc0rr
parents:
8401
diff
changeset
|
652 |
cls <- allClientsS |
8452 | 653 |
rms <- allRoomsS |
654 |
let clientsMap = Map.fromListWith (+) . map (\c -> (clientProto c, 1 :: Int)) $ cls |
|
655 |
let roomsMap = Map.fromListWith (+) . map (\c -> (roomProto c, 1 :: Int)) . filter ((/=) 0 . roomProto) $ rms |
|
656 |
let keys = Map.keysSet clientsMap `Set.union` Map.keysSet roomsMap |
|
657 |
let versionsStats = B.concat . ((:) "<table border=1>") . (flip (++) ["</table>"]) |
|
658 |
. concatMap (\p -> [ |
|
659 |
"<tr><td>", protoNumber2ver p |
|
660 |
, "</td><td>", showB $ Map.findWithDefault 0 p clientsMap |
|
661 |
, "</td><td>", showB $ Map.findWithDefault 0 p roomsMap |
|
662 |
, "</td></tr>"]) |
|
663 |
. Set.toList $ keys |
|
664 |
processAction $ Warning versionsStats |
|
665 |
||
8403
fbc6e7602e05
- Allow server admins to use DELEGATE even when not room owner
unc0rr
parents:
8401
diff
changeset
|
666 |
|
9035
e84d42a4311c
'/rnd' command. Pass it a (possibly empty) list of items.
unc0rr
parents:
9032
diff
changeset
|
667 |
processAction (Random chans items) = do |
e84d42a4311c
'/rnd' command. Pass it a (possibly empty) list of items.
unc0rr
parents:
9032
diff
changeset
|
668 |
let i = if null items then ["heads", "tails"] else items |
e84d42a4311c
'/rnd' command. Pass it a (possibly empty) list of items.
unc0rr
parents:
9032
diff
changeset
|
669 |
n <- io $ randomRIO (0, length i - 1) |
e84d42a4311c
'/rnd' command. Pass it a (possibly empty) list of items.
unc0rr
parents:
9032
diff
changeset
|
670 |
processAction $ AnswerClients chans ["CHAT", "[random]", i !! n] |
e84d42a4311c
'/rnd' command. Pass it a (possibly empty) list of items.
unc0rr
parents:
9032
diff
changeset
|
671 |
|
e84d42a4311c
'/rnd' command. Pass it a (possibly empty) list of items.
unc0rr
parents:
9032
diff
changeset
|
672 |
|
6012 | 673 |
#if defined(OFFICIAL_SERVER) |
5184 | 674 |
processAction SaveReplay = do |
675 |
ri <- clientRoomA |
|
676 |
rnc <- gets roomsClients |
|
8371 | 677 |
|
9437 | 678 |
readyCheckersIds <- io $ do |
5184 | 679 |
r <- room'sM rnc id ri |
680 |
saveReplay r |
|
9437 | 681 |
allci <- allClientsM rnc |
682 |
filterM (client'sM rnc isReadyChecker) allci |
|
9433 | 683 |
|
684 |
when (not $ null readyCheckersIds) $ do |
|
9439 | 685 |
oldci <- gets clientIndex |
686 |
withStateT (\s -> s{clientIndex = Just $ head readyCheckersIds}) |
|
687 |
$ processAction CheckRecord |
|
688 |
modify (\s -> s{clientIndex = oldci}) |
|
9433 | 689 |
where |
690 |
isReadyChecker cl = isChecker cl && isReady cl |
|
8479
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8476
diff
changeset
|
691 |
|
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8476
diff
changeset
|
692 |
|
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8476
diff
changeset
|
693 |
processAction CheckRecord = do |
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8476
diff
changeset
|
694 |
p <- client's clientProto |
8482 | 695 |
c <- client's sendChan |
9662
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
9528
diff
changeset
|
696 |
ri <- clientRoomA |
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
9528
diff
changeset
|
697 |
rnc <- gets roomsClients |
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
9528
diff
changeset
|
698 |
|
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
9528
diff
changeset
|
699 |
blackList <- liftM (map (recordFileName . fromJust . checkInfo) . filter (isJust . checkInfo)) allClientsS |
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
9528
diff
changeset
|
700 |
|
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
9528
diff
changeset
|
701 |
readyCheckersIds <- io $ do |
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
9528
diff
changeset
|
702 |
allci <- allClientsM rnc |
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
9528
diff
changeset
|
703 |
filterM (client'sM rnc (isJust . checkInfo)) allci |
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
9528
diff
changeset
|
704 |
|
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
9528
diff
changeset
|
705 |
(cinfo, l) <- io $ loadReplay (fromIntegral p) blackList |
8509 | 706 |
when (not . null $ l) $ |
707 |
mapM_ processAction [ |
|
708 |
AnswerClients [c] ("REPLAY" : l) |
|
9444 | 709 |
, ModifyClient $ \c -> c{checkInfo = cinfo, isReady = False} |
8509 | 710 |
] |
8479
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8476
diff
changeset
|
711 |
|
9433 | 712 |
|
8509 | 713 |
processAction (CheckFailed msg) = do |
714 |
Just (CheckInfo fileName _) <- client's checkInfo |
|
715 |
io $ moveFailedRecord fileName |
|
8507 | 716 |
|
9433 | 717 |
|
8509 | 718 |
processAction (CheckSuccess info) = do |
9399 | 719 |
Just (CheckInfo fileName teams) <- client's checkInfo |
9401 | 720 |
si <- gets serverInfo |
721 |
io $ writeChan (dbQueries si) $ StoreAchievements (B.pack fileName) (map toPair teams) info |
|
8509 | 722 |
io $ moveCheckedRecord fileName |
9399 | 723 |
where |
724 |
toPair t = (teamname t, teamowner t) |
|
8507 | 725 |
|
9786 | 726 |
processAction (QueryReplay rname) = do |
9446 | 727 |
(Just ci) <- gets clientIndex |
728 |
si <- gets serverInfo |
|
729 |
uid <- client's clUID |
|
9786 | 730 |
io $ writeChan (dbQueries si) $ GetReplayName ci (hashUnique uid) rname |
9446 | 731 |
|
6012 | 732 |
#else |
733 |
processAction SaveReplay = return () |
|
8479
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8476
diff
changeset
|
734 |
processAction CheckRecord = return () |
8507 | 735 |
processAction (CheckFailed _) = return () |
736 |
processAction (CheckSuccess _) = return () |
|
9446 | 737 |
processAction (QueryReplay _) = return () |
6012 | 738 |
#endif |
9446 | 739 |
|
9786 | 740 |
processAction (ShowReplay rname) = do |
9448 | 741 |
c <- client's sendChan |
742 |
cl <- client's id |
|
743 |
||
9786 | 744 |
let fileName = B.concat ["checked/", if B.isPrefixOf "replays/" rname then B.drop 8 rname else rname] |
9448 | 745 |
|
9786 | 746 |
cInfo <- liftIO $ E.handle (\(e :: SomeException) -> |
9448 | 747 |
warningM "REPLAYS" (B.unpack $ B.concat ["Problems reading ", fileName, ": ", B.pack $ show e]) >> return Nothing) $ do |
748 |
(t, p1, p2, msgs) <- liftM read $ readFile (B.unpack fileName) |
|
749 |
return $ Just (t, Map.fromList p1, Map.fromList p2, reverse msgs) |
|
9446 | 750 |
|
9786 | 751 |
let (teams', params1, params2, roundMsgs') = fromJust cInfo |
9448 | 752 |
|
9786 | 753 |
when (isJust cInfo) $ do |
9448 | 754 |
mapM_ processAction $ concat [ |
755 |
[AnswerClients [c] ["JOINED", nick cl]] |
|
756 |
, answerFullConfigParams cl params1 params2 |
|
9786 | 757 |
, answerAllTeams cl teams' |
9448 | 758 |
, [AnswerClients [c] ["RUN_GAME"]] |
9786 | 759 |
, [AnswerClients [c] $ "EM" : roundMsgs'] |
9448 | 760 |
, [AnswerClients [c] ["KICKED"]] |
761 |
] |