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