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