author | unc0rr |
Sat, 24 Jan 2009 12:48:32 +0000 | |
changeset 1744 | 19a0016af2a2 |
parent 1742 | cf97d1eecb12 |
child 1748 | 27dd2967fc65 |
permissions | -rw-r--r-- |
1473 | 1 |
module HWProto |
2 |
( |
|
3 |
handleCmd |
|
4 |
) where |
|
890 | 5 |
|
6 |
import IO |
|
896 | 7 |
import Data.List |
894 | 8 |
import Data.Word |
1646
19b3784ac9d2
Optimize net server perfomance by substituting List by Data.Sequence for storing spectators data
unc0rr
parents:
1632
diff
changeset
|
9 |
import Data.Sequence(Seq, (|>), empty) |
19b3784ac9d2
Optimize net server perfomance by substituting List by Data.Sequence for storing spectators data
unc0rr
parents:
1632
diff
changeset
|
10 |
import Data.Foldable(toList) |
890 | 11 |
import Miscutils |
1320 | 12 |
import Maybe |
1317 | 13 |
import qualified Data.Map as Map |
1384 | 14 |
import Opts |
890 | 15 |
|
1662 | 16 |
teamToNet protocol team = |
1673 | 17 |
if protocol <= 21 then |
1662 | 18 |
["ADD_TEAM", teamname team, teamgrave team, teamfort team, show $ difficulty team] ++ hhsInfo |
19 |
else |
|
1681 | 20 |
["ADD_TEAM", teamname team, teamgrave team, teamfort team, teamvoicepack team, teamowner team, show $ difficulty team] ++ hhsInfo |
1331
ae291cfd617a
Send teams info to newly connected client (has a bug with team sequence, need to discover)
unc0rr
parents:
1330
diff
changeset
|
21 |
where |
ae291cfd617a
Send teams info to newly connected client (has a bug with team sequence, need to discover)
unc0rr
parents:
1330
diff
changeset
|
22 |
hhsInfo = concatMap (\(HedgehogInfo name hat) -> [name, hat]) $ hedgehogs team |
ae291cfd617a
Send teams info to newly connected client (has a bug with team sequence, need to discover)
unc0rr
parents:
1330
diff
changeset
|
23 |
|
1491
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
24 |
makeAnswer :: HandlesSelector -> [String] -> [Answer] |
1492 | 25 |
makeAnswer func msg = [\_ -> (func, msg)] |
1491
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
26 |
answerClientOnly, answerOthersRoom, answerSameRoom :: [String] -> [Answer] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
27 |
answerClientOnly = makeAnswer clientOnly |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
28 |
answerOthersRoom = makeAnswer othersInRoom |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
29 |
answerSameRoom = makeAnswer sameRoom |
1591 | 30 |
answerSameProtoLobby = makeAnswer sameProtoLobbyClients |
1618 | 31 |
answerOtherLobby = makeAnswer otherLobbyClients |
1567 | 32 |
answerAll = makeAnswer allClients |
1491
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
33 |
|
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
34 |
answerBadCmd = answerClientOnly ["ERROR", "Bad command, state or incorrect parameter"] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
35 |
answerNotMaster = answerClientOnly ["ERROR", "You cannot configure room parameters"] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
36 |
answerBadParam = answerClientOnly ["ERROR", "Bad parameter"] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
37 |
answerErrorMsg msg = answerClientOnly ["ERROR", msg] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
38 |
answerQuit msg = answerClientOnly ["BYE", msg] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
39 |
answerNickChosen = answerClientOnly ["ERROR", "The nick already chosen"] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
40 |
answerNickChooseAnother = answerClientOnly ["WARNING", "Choose another nick"] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
41 |
answerNick nick = answerClientOnly ["NICK", nick] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
42 |
answerProtocolKnown = answerClientOnly ["ERROR", "Protocol number already known"] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
43 |
answerBadInput = answerClientOnly ["ERROR", "Bad input"] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
44 |
answerProto protoNum = answerClientOnly ["PROTO", show protoNum] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
45 |
answerRoomsList list = answerClientOnly $ "ROOMS" : list |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
46 |
answerRoomExists = answerClientOnly ["WARNING", "There's already a room with that name"] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
47 |
answerNoRoom = answerClientOnly ["WARNING", "There's no room with that name"] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
48 |
answerWrongPassword = answerClientOnly ["WARNING", "Wrong password"] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
49 |
answerCantAdd reason = answerClientOnly ["WARNING", "Cannot add team: " ++ reason] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
50 |
answerTeamAccepted team = answerClientOnly ["TEAM_ACCEPTED", teamname team] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
51 |
answerTooFewClans = answerClientOnly ["ERROR", "Too few clans in game"] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
52 |
answerRestricted = answerClientOnly ["WARNING", "Room joining restricted"] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
53 |
answerConnected = answerClientOnly ["CONNECTED", "Hedgewars server http://www.hedgewars.org/"] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
54 |
answerNotOwner = answerClientOnly ["ERROR", "You do not own this team"] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
55 |
answerCannotCreateRoom = answerClientOnly ["WARNING", "Cannot create more rooms"] |
1582 | 56 |
answerInfo client = answerClientOnly ["INFO", nick client, host client, proto2ver $ protocol client, roomInfo] |
57 |
where |
|
58 |
roomInfo = if not $ null $ room client then "room " ++ (room client) else "lobby" |
|
1491
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
59 |
|
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
60 |
answerAbandoned protocol = |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
61 |
if protocol < 20 then |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
62 |
answerOthersRoom ["BYE", "Room abandoned"] |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
63 |
else |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
64 |
answerOthersRoom ["ROOMABANDONED"] |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
65 |
|
1491
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
66 |
answerChatString nick msg = answerOthersRoom ["CHAT_STRING", nick, msg] |
1662 | 67 |
answerAddTeam protocol team = answerOthersRoom $ teamToNet protocol team |
1491
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
68 |
answerRemoveTeam teamName = answerOthersRoom ["REMOVE_TEAM", teamName] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
69 |
answerMap mapName = answerOthersRoom ["MAP", mapName] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
70 |
answerHHNum teamName hhNumber = answerOthersRoom ["HH_NUM", teamName, show hhNumber] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
71 |
answerTeamColor teamName newColor = answerOthersRoom ["TEAM_COLOR", teamName, newColor] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
72 |
answerConfigParam paramName paramStrs = answerOthersRoom $ "CONFIG_PARAM" : paramName : paramStrs |
1512
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1493
diff
changeset
|
73 |
answerQuitInform nick msg = |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1493
diff
changeset
|
74 |
if not $ null msg then |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1493
diff
changeset
|
75 |
answerOthersRoom ["LEFT", nick, msg] |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1493
diff
changeset
|
76 |
else |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1493
diff
changeset
|
77 |
answerOthersRoom ["LEFT", nick] |
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
78 |
|
1598 | 79 |
answerPartInform nick = answerOthersRoom ["LEFT", nick, "bye room"] |
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1561
diff
changeset
|
80 |
answerQuitLobby nick msg = |
1581 | 81 |
if not $ null nick then |
82 |
if not $ null msg then |
|
83 |
answerAll ["LOBBY:LEFT", nick, msg] |
|
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1561
diff
changeset
|
84 |
else |
1581 | 85 |
answerAll ["LOBBY:LEFT", nick] |
86 |
else |
|
87 |
[] |
|
1491
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
88 |
|
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
89 |
answerJoined nick = answerSameRoom ["JOINED", nick] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
90 |
answerRunGame = answerSameRoom ["RUN_GAME"] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
91 |
answerIsReady nick = answerSameRoom ["READY", nick] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
92 |
answerNotReady nick = answerSameRoom ["NOT_READY", nick] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
93 |
|
1591 | 94 |
answerRoomAdded name = answerSameProtoLobby ["ROOM", "ADD", name] |
95 |
answerRoomDeleted name = answerSameProtoLobby ["ROOM", "DEL", name] |
|
96 |
||
1491
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
97 |
answerFullConfig room = concatMap toAnswer (Map.toList $ params room) ++ (answerClientOnly ["MAP", gamemap room]) |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
98 |
where |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
99 |
toAnswer (paramName, paramStrs) = |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
100 |
answerClientOnly $ "CONFIG_PARAM" : paramName : paramStrs |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
101 |
|
1662 | 102 |
answerAllTeams protocol room = concatMap toAnswer (teams room) |
1491
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
103 |
where |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
104 |
toAnswer team = |
1662 | 105 |
(answerClientOnly $ teamToNet protocol team) ++ |
1491
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
106 |
(answerClientOnly ["TEAM_COLOR", teamname team, teamcolor team]) ++ |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
107 |
(answerClientOnly ["HH_NUM", teamname team, show $ hhnum team]) |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
108 |
|
1569 | 109 |
answerServerMessage client clients = [\serverInfo -> (clientOnly, "SERVER_MESSAGE" : |
1614 | 110 |
[(mainbody serverInfo) ++ updateInfo ++ clientsIn ++ (lastHour serverInfo)])] |
1384 | 111 |
where |
1492 | 112 |
mainbody serverInfo = serverMessage serverInfo ++ |
113 |
if isDedicated serverInfo then |
|
114 |
"<p align=center>Dedicated server</p>" |
|
115 |
else |
|
116 |
"<p align=center>Private server</p>" |
|
1614 | 117 |
|
1725 | 118 |
updateInfo = if protocol client < 23 then "<font color=yellow><h3>Hedgewars 0.9.9 is out!!! Please, update. Support for previous versions will be dropped soon</h3><p align=center><a href=http://hedgewars.org/download.html>Download page here</a></p><h4>New features are:</h4><ul><li>Voice packs</li><li>Precise aim</li><li>RC Plane weapon</li><li>...</li></ul></font>" else "" |
1569 | 119 |
clientsIn = if protocol client < 20 then "<p align=left>" ++ (show $ length nicks) ++ " clients in: " ++ clientslist ++ "</p>" else [] |
1452 | 120 |
clientslist = if not $ null nicks then foldr1 (\a b -> a ++ ", " ++ b) nicks else "" |
1493 | 121 |
lastHour serverInfo = |
122 |
if isDedicated serverInfo then |
|
123 |
"<p align=left>" ++ (show $ length $ lastHourUsers serverInfo) ++ " user logins in last hour</p>" |
|
124 |
else |
|
125 |
"" |
|
1452 | 126 |
nicks = filter (not . null) $ map nick clients |
1492 | 127 |
|
1491
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
128 |
answerPing = makeAnswer allClients ["PING"] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
129 |
|
1082 | 130 |
-- Main state-independent cmd handler |
131 |
handleCmd :: CmdHandler |
|
1478 | 132 |
handleCmd client _ rooms ("QUIT" : xs) = |
1082 | 133 |
if null (room client) then |
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1561
diff
changeset
|
134 |
(noChangeClients, noChangeRooms, answerQuit msg ++ (answerQuitLobby (nick client) msg) ) |
1082 | 135 |
else if isMaster client then |
1620 | 136 |
(modifyRoomClients clRoom (\cl -> cl{isReady = False, partRoom = True}), removeRoom (room client), (answerQuit msg) ++ (answerQuitLobby (nick client) msg) ++ (answerAbandoned $ protocol client) ++ (answerRoomDeleted $ room client)) -- core disconnects clients on ROOMABANDONED answer |
1082 | 137 |
else |
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1561
diff
changeset
|
138 |
(noChangeClients, modifyRoom clRoom{teams = othersTeams, playersIn = (playersIn clRoom) - 1, readyPlayers = newReadyPlayers}, (answerQuit msg) ++ (answerQuitInform (nick client) msg) ++ (answerQuitLobby (nick client) msg) ++ answerRemoveClientTeams) |
1334
b58afaadf7ae
Send team removal message to others in room when client disconnects
unc0rr
parents:
1333
diff
changeset
|
139 |
where |
b58afaadf7ae
Send team removal message to others in room when client disconnects
unc0rr
parents:
1333
diff
changeset
|
140 |
clRoom = roomByName (room client) rooms |
1491
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
141 |
answerRemoveClientTeams = concatMap (\tn -> answerOthersRoom ["REMOVE_TEAM", teamname tn]) clientTeams |
1335
c795cbc752c1
Small optimization (use partition instead of two filters with opposite predicates)
unc0rr
parents:
1334
diff
changeset
|
142 |
(clientTeams, othersTeams) = partition (\t -> teamowner t == nick client) $ teams clRoom |
1403 | 143 |
newReadyPlayers = if isReady client then (readyPlayers clRoom) - 1 else readyPlayers clRoom |
1478 | 144 |
msg = if not $ null xs then head xs else "" |
895 | 145 |
|
1461
87e5a6c3882c
Ping clients every 30 seconds, should help with ghosts on server
unc0rr
parents:
1452
diff
changeset
|
146 |
handleCmd _ _ _ ["PING"] = -- core requsted |
87e5a6c3882c
Ping clients every 30 seconds, should help with ghosts on server
unc0rr
parents:
1452
diff
changeset
|
147 |
(noChangeClients, noChangeRooms, answerPing) |
1307 | 148 |
|
1469 | 149 |
handleCmd _ _ _ ["ASKME"] = -- core requsted |
150 |
(noChangeClients, noChangeRooms, answerConnected) |
|
151 |
||
1462 | 152 |
handleCmd _ _ _ ["PONG"] = |
153 |
(noChangeClients, noChangeRooms, []) |
|
154 |
||
1483 | 155 |
handleCmd _ _ _ ["ERROR", msg] = |
156 |
(noChangeClients, noChangeRooms, answerErrorMsg msg) |
|
157 |
||
1577 | 158 |
handleCmd _ clients _ ["INFO", asknick] = |
159 |
if noSuchClient then |
|
160 |
(noChangeClients, noChangeRooms, []) |
|
161 |
else |
|
162 |
(noChangeClients, noChangeRooms, answerInfo client) |
|
163 |
where |
|
164 |
maybeClient = find (\cl -> asknick == nick cl) clients |
|
165 |
noSuchClient = isNothing maybeClient |
|
166 |
client = fromJust maybeClient |
|
167 |
||
168 |
||
1082 | 169 |
-- check state and call state-dependent commmand handlers |
170 |
handleCmd client clients rooms cmd = |
|
171 |
if null (nick client) || protocol client == 0 then |
|
172 |
handleCmd_noInfo client clients rooms cmd |
|
173 |
else if null (room client) then |
|
174 |
handleCmd_noRoom client clients rooms cmd |
|
175 |
else |
|
176 |
handleCmd_inRoom client clients rooms cmd |
|
177 |
||
1307 | 178 |
|
1082 | 179 |
-- 'no info' state - need to get protocol number and nickname |
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1561
diff
changeset
|
180 |
onLoginFinished client clients = |
1571 | 181 |
if (null $ nick client) || (protocol client == 0) then |
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1561
diff
changeset
|
182 |
[] |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1561
diff
changeset
|
183 |
else |
1676 | 184 |
answerLobbyNicks ++ |
1618 | 185 |
(answerAll ["LOBBY:JOINED", nick client]) ++ |
1584
90f6a5abad17
Save much space for chat widget on lobby page by removing server message widget (now this messages goes to chat)
unc0rr
parents:
1582
diff
changeset
|
186 |
(answerServerMessage client clients) |
1676 | 187 |
where |
188 |
lobbyNicks = filter (\n -> (not (null n)) && n /= nick client) $ map nick $ clients |
|
189 |
answerLobbyNicks = if not $ null lobbyNicks then |
|
190 |
answerClientOnly $ ["LOBBY:JOINED"] ++ lobbyNicks |
|
191 |
else |
|
192 |
[] |
|
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1561
diff
changeset
|
193 |
|
1082 | 194 |
handleCmd_noInfo :: CmdHandler |
195 |
handleCmd_noInfo client clients _ ["NICK", newNick] = |
|
894 | 196 |
if not . null $ nick client then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
197 |
(noChangeClients, noChangeRooms, answerNickChosen) |
894 | 198 |
else if haveSameNick then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
199 |
(noChangeClients, noChangeRooms, answerNickChooseAnother) |
894 | 200 |
else |
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1561
diff
changeset
|
201 |
(modifyClient client{nick = newNick}, noChangeRooms, answerNick newNick ++ (onLoginFinished client{nick = newNick} clients)) |
894 | 202 |
where |
1320 | 203 |
haveSameNick = isJust $ find (\cl -> newNick == nick cl) clients |
894 | 204 |
|
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1561
diff
changeset
|
205 |
handleCmd_noInfo client clients _ ["PROTO", protoNum] = |
894 | 206 |
if protocol client > 0 then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
207 |
(noChangeClients, noChangeRooms, answerProtocolKnown) |
894 | 208 |
else if parsedProto == 0 then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
209 |
(noChangeClients, noChangeRooms, answerBadInput) |
894 | 210 |
else |
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1561
diff
changeset
|
211 |
(modifyClient client{protocol = parsedProto}, noChangeRooms, answerProto parsedProto ++ (onLoginFinished client{protocol = parsedProto} clients)) |
894 | 212 |
where |
213 |
parsedProto = fromMaybe 0 (maybeRead protoNum :: Maybe Word16) |
|
214 |
||
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
215 |
handleCmd_noInfo _ _ _ _ = (noChangeClients, noChangeRooms, answerBadCmd) |
894 | 216 |
|
1307 | 217 |
|
894 | 218 |
-- 'noRoom' clients state command handlers |
1082 | 219 |
handleCmd_noRoom :: CmdHandler |
1452 | 220 |
handleCmd_noRoom client clients rooms ["LIST"] = |
1584
90f6a5abad17
Save much space for chat widget on lobby page by removing server message widget (now this messages goes to chat)
unc0rr
parents:
1582
diff
changeset
|
221 |
(noChangeClients, noChangeRooms, (answerRoomsList $ concatMap roomInfo $ sameProtoRooms)) |
1396 | 222 |
where |
1402 | 223 |
roomInfo room = [ |
224 |
name room, |
|
225 |
(show $ playersIn room) ++ "(" ++ (show $ length $ teams room) ++ ")", |
|
226 |
show $ gameinprogress room |
|
227 |
] |
|
1412 | 228 |
sameProtoRooms = filter (\r -> (roomProto r == protocol client) && (not $ isRestrictedJoins r)) rooms |
903 | 229 |
|
1082 | 230 |
handleCmd_noRoom client _ rooms ["CREATE", newRoom, roomPassword] = |
1492 | 231 |
if haveSameRoom then |
232 |
(noChangeClients, noChangeRooms, answerRoomExists) |
|
895 | 233 |
else |
1591 | 234 |
(modifyClient client{room = newRoom, isMaster = True}, addRoom createRoom{name = newRoom, password = roomPassword, roomProto = (protocol client)}, (answerJoined $ nick client) ++ (answerNotReady $ nick client) ++ (answerRoomAdded newRoom)) |
895 | 235 |
where |
1320 | 236 |
haveSameRoom = isJust $ find (\room -> newRoom == name room) rooms |
895 | 237 |
|
1082 | 238 |
handleCmd_noRoom client clients rooms ["CREATE", newRoom] = |
239 |
handleCmd_noRoom client clients rooms ["CREATE", newRoom, ""] |
|
240 |
||
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
241 |
handleCmd_noRoom client clients rooms ["JOIN", roomName, roomPassword] = |
902 | 242 |
if noSuchRoom then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
243 |
(noChangeClients, noChangeRooms, answerNoRoom) |
1321 | 244 |
else if roomPassword /= password clRoom then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
245 |
(noChangeClients, noChangeRooms, answerWrongPassword) |
1411 | 246 |
else if isRestrictedJoins clRoom then |
247 |
(noChangeClients, noChangeRooms, answerRestricted) |
|
895 | 248 |
else |
1662 | 249 |
(modifyClient client{room = roomName}, modifyRoom clRoom{playersIn = 1 + playersIn clRoom}, (answerJoined $ nick client) ++ answerNicks ++ answerReady ++ (answerNotReady $ nick client) ++ answerFullConfig clRoom ++ answerAllTeams (protocol client) clRoom ++ watchRound) |
895 | 250 |
where |
1401 | 251 |
noSuchRoom = isNothing $ find (\room -> roomName == name room && roomProto room == protocol client) rooms |
1675 | 252 |
answerNicks = if not $ null sameRoomClients then |
253 |
answerClientOnly $ ["JOINED"] ++ (map nick $ sameRoomClients) |
|
254 |
else |
|
255 |
[] |
|
1491
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
256 |
answerReady = concatMap (\c -> answerClientOnly [if isReady c then "READY" else "NOT_READY", nick c]) sameRoomClients |
1406 | 257 |
sameRoomClients = filter (\ci -> room ci == roomName) clients |
1321 | 258 |
clRoom = roomByName roomName rooms |
1558
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1512
diff
changeset
|
259 |
watchRound = if (roomProto clRoom < 20) || (not $ gameinprogress clRoom) then |
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1512
diff
changeset
|
260 |
[] |
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1512
diff
changeset
|
261 |
else |
1560
e140bc57ff68
Quick replay round to spectators until current move
unc0rr
parents:
1559
diff
changeset
|
262 |
(answerClientOnly ["RUN_GAME"]) ++ |
1742
cf97d1eecb12
Start fixing spectating bug (implement some routines)
unc0rr
parents:
1725
diff
changeset
|
263 |
answerClientOnly ("GAMEMSG" : toEngineMsg "e$spectate 1" : (toList $ roundMsgs clRoom)) |
895 | 264 |
|
1082 | 265 |
handleCmd_noRoom client clients rooms ["JOIN", roomName] = |
266 |
handleCmd_noRoom client clients rooms ["JOIN", roomName, ""] |
|
894 | 267 |
|
1568 | 268 |
handleCmd_noRoom client _ _ ["CHAT_STRING", msg] = |
269 |
(noChangeClients, noChangeRooms, answerChatString (nick client) msg) |
|
270 |
||
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
271 |
handleCmd_noRoom _ _ _ _ = (noChangeClients, noChangeRooms, answerBadCmd) |
895 | 272 |
|
1307 | 273 |
|
897 | 274 |
-- 'inRoom' clients state command handlers |
1082 | 275 |
handleCmd_inRoom :: CmdHandler |
1322
c624b04699fb
Fix protocol implementation to conform documentation
unc0rr
parents:
1321
diff
changeset
|
276 |
handleCmd_inRoom client _ _ ["CHAT_STRING", msg] = |
1317 | 277 |
(noChangeClients, noChangeRooms, answerChatString (nick client) msg) |
897 | 278 |
|
1327 | 279 |
handleCmd_inRoom client _ rooms ("CONFIG_PARAM" : paramName : paramStrs) = |
1317 | 280 |
if isMaster client then |
1322
c624b04699fb
Fix protocol implementation to conform documentation
unc0rr
parents:
1321
diff
changeset
|
281 |
(noChangeClients, modifyRoom clRoom{params = Map.insert paramName paramStrs (params clRoom)}, answerConfigParam paramName paramStrs) |
1317 | 282 |
else |
283 |
(noChangeClients, noChangeRooms, answerNotMaster) |
|
1321 | 284 |
where |
285 |
clRoom = roomByName (room client) rooms |
|
286 |
||
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
287 |
handleCmd_inRoom client _ rooms ["PART"] = |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
288 |
if isMaster client then |
1618 | 289 |
(modifyRoomClients clRoom (\cl -> cl{isReady = False, isMaster = False, partRoom = True}), removeRoom (room client), (answerAbandoned $ protocol client) ++ (answerRoomDeleted $ room client)) |
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
290 |
else |
1598 | 291 |
(modifyClient client{isReady = False, partRoom = True}, modifyRoom clRoom{teams = othersTeams, playersIn = (playersIn clRoom) - 1, readyPlayers = newReadyPlayers}, (answerPartInform (nick client)) ++ answerRemoveClientTeams) |
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
292 |
where |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
293 |
clRoom = roomByName (room client) rooms |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
294 |
answerRemoveClientTeams = concatMap (\tn -> answerOthersRoom ["REMOVE_TEAM", teamname tn]) clientTeams |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
295 |
(clientTeams, othersTeams) = partition (\t -> teamowner t == nick client) $ teams clRoom |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
296 |
newReadyPlayers = if isReady client then (readyPlayers clRoom) - 1 else readyPlayers clRoom |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
297 |
|
1333
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
298 |
handleCmd_inRoom client _ rooms ["MAP", mapName] = |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
299 |
if isMaster client then |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
300 |
(noChangeClients, modifyRoom clRoom{gamemap = mapName}, answerMap mapName) |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
301 |
else |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
302 |
(noChangeClients, noChangeRooms, answerNotMaster) |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
303 |
where |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
304 |
clRoom = roomByName (room client) rooms |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
305 |
|
1662 | 306 |
handleCmd_inRoom client _ rooms ("ADD_TEAM" : name : color : grave : fort : voicepack : difStr : hhsInfo) |
1323
d166f9069c2b
Build neccessary structures in memory on ADDTEAM message, but don't send answer yet (need to review team id concept)
unc0rr
parents:
1322
diff
changeset
|
307 |
| length hhsInfo == 16 = |
1470
ebaca3b66d92
Give more specific explanation when deny to add team
unc0rr
parents:
1469
diff
changeset
|
308 |
if length (teams clRoom) == 6 then |
ebaca3b66d92
Give more specific explanation when deny to add team
unc0rr
parents:
1469
diff
changeset
|
309 |
(noChangeClients, noChangeRooms, answerCantAdd "too many teams") |
ebaca3b66d92
Give more specific explanation when deny to add team
unc0rr
parents:
1469
diff
changeset
|
310 |
else if canAddNumber <= 0 then |
ebaca3b66d92
Give more specific explanation when deny to add team
unc0rr
parents:
1469
diff
changeset
|
311 |
(noChangeClients, noChangeRooms, answerCantAdd "too many hedgehogs") |
ebaca3b66d92
Give more specific explanation when deny to add team
unc0rr
parents:
1469
diff
changeset
|
312 |
else if isJust findTeam then |
ebaca3b66d92
Give more specific explanation when deny to add team
unc0rr
parents:
1469
diff
changeset
|
313 |
(noChangeClients, noChangeRooms, answerCantAdd "already has a team with same name") |
ebaca3b66d92
Give more specific explanation when deny to add team
unc0rr
parents:
1469
diff
changeset
|
314 |
else if gameinprogress clRoom then |
ebaca3b66d92
Give more specific explanation when deny to add team
unc0rr
parents:
1469
diff
changeset
|
315 |
(noChangeClients, noChangeRooms, answerCantAdd "round in progress") |
ebaca3b66d92
Give more specific explanation when deny to add team
unc0rr
parents:
1469
diff
changeset
|
316 |
else if isRestrictedTeams clRoom then |
ebaca3b66d92
Give more specific explanation when deny to add team
unc0rr
parents:
1469
diff
changeset
|
317 |
(noChangeClients, noChangeRooms, answerCantAdd "restricted") |
1323
d166f9069c2b
Build neccessary structures in memory on ADDTEAM message, but don't send answer yet (need to review team id concept)
unc0rr
parents:
1322
diff
changeset
|
318 |
else |
1662 | 319 |
(noChangeClients, modifyRoom clRoom{teams = teams clRoom ++ [newTeam]}, answerTeamAccepted newTeam ++ answerAddTeam (protocol client) newTeam ++ answerTeamColor name color) |
1323
d166f9069c2b
Build neccessary structures in memory on ADDTEAM message, but don't send answer yet (need to review team id concept)
unc0rr
parents:
1322
diff
changeset
|
320 |
where |
d166f9069c2b
Build neccessary structures in memory on ADDTEAM message, but don't send answer yet (need to review team id concept)
unc0rr
parents:
1322
diff
changeset
|
321 |
clRoom = roomByName (room client) rooms |
1662 | 322 |
newTeam = (TeamInfo (nick client) name color grave fort voicepack difficulty newTeamHHNum (hhsList hhsInfo)) |
1328 | 323 |
findTeam = find (\t -> name == teamname t) $ teams clRoom |
1323
d166f9069c2b
Build neccessary structures in memory on ADDTEAM message, but don't send answer yet (need to review team id concept)
unc0rr
parents:
1322
diff
changeset
|
324 |
difficulty = fromMaybe 0 (maybeRead difStr :: Maybe Int) |
1325 | 325 |
hhsList [] = [] |
1323
d166f9069c2b
Build neccessary structures in memory on ADDTEAM message, but don't send answer yet (need to review team id concept)
unc0rr
parents:
1322
diff
changeset
|
326 |
hhsList (n:h:hhs) = HedgehogInfo n h : hhsList hhs |
1327 | 327 |
canAddNumber = 18 - (sum . map hhnum $ teams clRoom) |
328 |
newTeamHHNum = min 4 canAddNumber |
|
329 |
||
1662 | 330 |
handleCmd_inRoom client clients rooms ("ADD_TEAM" : name : color : grave : fort : difStr : hhsInfo) = |
331 |
handleCmd_inRoom client clients rooms ("ADD_TEAM" : name : color : grave : fort : "Default" : difStr : hhsInfo) |
|
332 |
||
333 |
||
1327 | 334 |
handleCmd_inRoom client _ rooms ["HH_NUM", teamName, numberStr] = |
335 |
if not $ isMaster client then |
|
336 |
(noChangeClients, noChangeRooms, answerNotMaster) |
|
337 |
else |
|
1329 | 338 |
if hhNumber < 1 || hhNumber > 8 || noSuchTeam || hhNumber > (canAddNumber + (hhnum team)) then |
1512
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1493
diff
changeset
|
339 |
(noChangeClients, noChangeRooms, []) |
1327 | 340 |
else |
341 |
(noChangeClients, modifyRoom $ modifyTeam clRoom team{hhnum = hhNumber}, answerHHNum teamName hhNumber) |
|
342 |
where |
|
343 |
hhNumber = fromMaybe 0 (maybeRead numberStr :: Maybe Int) |
|
344 |
noSuchTeam = isNothing findTeam |
|
345 |
team = fromJust findTeam |
|
346 |
findTeam = find (\t -> teamName == teamname t) $ teams clRoom |
|
347 |
clRoom = roomByName (room client) rooms |
|
348 |
canAddNumber = 18 - (sum . map hhnum $ teams clRoom) |
|
1323
d166f9069c2b
Build neccessary structures in memory on ADDTEAM message, but don't send answer yet (need to review team id concept)
unc0rr
parents:
1322
diff
changeset
|
349 |
|
1330 | 350 |
handleCmd_inRoom client _ rooms ["TEAM_COLOR", teamName, newColor] = |
351 |
if not $ isMaster client then |
|
352 |
(noChangeClients, noChangeRooms, answerNotMaster) |
|
353 |
else |
|
1442 | 354 |
if noSuchTeam then |
1512
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1493
diff
changeset
|
355 |
(noChangeClients, noChangeRooms, []) |
1442 | 356 |
else |
357 |
(noChangeClients, modifyRoom $ modifyTeam clRoom team{teamcolor = newColor}, answerTeamColor teamName newColor) |
|
1330 | 358 |
where |
359 |
noSuchTeam = isNothing findTeam |
|
360 |
team = fromJust findTeam |
|
361 |
findTeam = find (\t -> teamName == teamname t) $ teams clRoom |
|
362 |
clRoom = roomByName (room client) rooms |
|
363 |
||
1328 | 364 |
handleCmd_inRoom client _ rooms ["REMOVE_TEAM", teamName] = |
1329 | 365 |
if noSuchTeam then |
1512
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1493
diff
changeset
|
366 |
(noChangeClients, noChangeRooms, []) |
1328 | 367 |
else |
1329 | 368 |
if not $ nick client == teamowner team then |
369 |
(noChangeClients, noChangeRooms, answerNotOwner) |
|
1328 | 370 |
else |
1742
cf97d1eecb12
Start fixing spectating bug (implement some routines)
unc0rr
parents:
1725
diff
changeset
|
371 |
if not $ gameinprogress clRoom then |
cf97d1eecb12
Start fixing spectating bug (implement some routines)
unc0rr
parents:
1725
diff
changeset
|
372 |
(noChangeClients, modifyRoom clRoom{teams = filter (\t -> teamName /= teamname t) $ teams clRoom}, answerRemoveTeam teamName) |
cf97d1eecb12
Start fixing spectating bug (implement some routines)
unc0rr
parents:
1725
diff
changeset
|
373 |
else |
cf97d1eecb12
Start fixing spectating bug (implement some routines)
unc0rr
parents:
1725
diff
changeset
|
374 |
(noChangeClients, modifyRoom clRoom{leftTeams = teamName : leftTeams clRoom, roundMsgs = roundMsgs clRoom |> rmTeamMsg}, answerOthersRoom ["GAMEMSG", rmTeamMsg]) |
1328 | 375 |
where |
376 |
noSuchTeam = isNothing findTeam |
|
377 |
team = fromJust findTeam |
|
378 |
findTeam = find (\t -> teamName == teamname t) $ teams clRoom |
|
379 |
clRoom = roomByName (room client) rooms |
|
1742
cf97d1eecb12
Start fixing spectating bug (implement some routines)
unc0rr
parents:
1725
diff
changeset
|
380 |
rmTeamMsg = toEngineMsg $ 'F' : teamName |
1083 | 381 |
|
1403 | 382 |
handleCmd_inRoom client _ rooms ["TOGGLE_READY"] = |
383 |
if isReady client then |
|
1411 | 384 |
(modifyClient client{isReady = False}, modifyRoom clRoom{readyPlayers = newReadyPlayers}, answerNotReady $ nick client) |
1338 | 385 |
else |
1411 | 386 |
(modifyClient client{isReady = True}, modifyRoom clRoom{readyPlayers = newReadyPlayers}, answerIsReady $ nick client) |
1350 | 387 |
where |
388 |
clRoom = roomByName (room client) rooms |
|
1404 | 389 |
newReadyPlayers = (readyPlayers clRoom) + if isReady client then -1 else 1 |
1338 | 390 |
|
1411 | 391 |
handleCmd_inRoom client _ rooms ["START_GAME"] = |
392 |
if isMaster client && (playersIn clRoom == readyPlayers clRoom) && (not $ gameinprogress clRoom) then |
|
393 |
if enoughClans then |
|
1742
cf97d1eecb12
Start fixing spectating bug (implement some routines)
unc0rr
parents:
1725
diff
changeset
|
394 |
(noChangeClients, modifyRoom clRoom{gameinprogress = True, roundMsgs = empty, leftTeams = []}, answerRunGame) |
1411 | 395 |
else |
396 |
(noChangeClients, noChangeRooms, answerTooFewClans) |
|
397 |
else |
|
398 |
(noChangeClients, noChangeRooms, []) |
|
399 |
where |
|
400 |
clRoom = roomByName (room client) rooms |
|
401 |
enoughClans = not $ null $ drop 1 $ group $ map teamcolor $ teams clRoom |
|
402 |
||
403 |
handleCmd_inRoom client _ rooms ["TOGGLE_RESTRICT_JOINS"] = |
|
404 |
if isMaster client then |
|
405 |
(noChangeClients, modifyRoom clRoom{isRestrictedJoins = newStatus}, []) |
|
406 |
else |
|
407 |
(noChangeClients, noChangeRooms, answerNotMaster) |
|
408 |
where |
|
409 |
clRoom = roomByName (room client) rooms |
|
410 |
newStatus = not $ isRestrictedJoins clRoom |
|
411 |
||
412 |
handleCmd_inRoom client _ rooms ["TOGGLE_RESTRICT_TEAMS"] = |
|
413 |
if isMaster client then |
|
414 |
(noChangeClients, modifyRoom clRoom{isRestrictedTeams = newStatus}, []) |
|
415 |
else |
|
416 |
(noChangeClients, noChangeRooms, answerNotMaster) |
|
417 |
where |
|
418 |
clRoom = roomByName (room client) rooms |
|
419 |
newStatus = not $ isRestrictedTeams clRoom |
|
420 |
||
1408 | 421 |
handleCmd_inRoom client clients rooms ["ROUNDFINISHED"] = |
1345
73119de7d3be
Server erases teams list after round finish, so everything should be okay now
unc0rr
parents:
1344
diff
changeset
|
422 |
if isMaster client then |
1742
cf97d1eecb12
Start fixing spectating bug (implement some routines)
unc0rr
parents:
1725
diff
changeset
|
423 |
(modifyRoomClients clRoom (\cl -> cl{isReady = False}), modifyRoom clRoom{gameinprogress = False, readyPlayers = 0, roundMsgs = empty, leftTeams = []}, answerAllNotReady ++ answerRemovedTeams) |
1345
73119de7d3be
Server erases teams list after round finish, so everything should be okay now
unc0rr
parents:
1344
diff
changeset
|
424 |
else |
1344
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1338
diff
changeset
|
425 |
(noChangeClients, noChangeRooms, []) |
1345
73119de7d3be
Server erases teams list after round finish, so everything should be okay now
unc0rr
parents:
1344
diff
changeset
|
426 |
where |
73119de7d3be
Server erases teams list after round finish, so everything should be okay now
unc0rr
parents:
1344
diff
changeset
|
427 |
clRoom = roomByName (room client) rooms |
1408 | 428 |
sameRoomClients = filter (\ci -> room ci == name clRoom) clients |
1491
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
429 |
answerAllNotReady = concatMap (\cl -> answerSameRoom ["NOT_READY", nick cl]) sameRoomClients |
1742
cf97d1eecb12
Start fixing spectating bug (implement some routines)
unc0rr
parents:
1725
diff
changeset
|
430 |
answerRemovedTeams = concatMap answerRemoveTeam $ leftTeams clRoom |
1344
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1338
diff
changeset
|
431 |
|
1558
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1512
diff
changeset
|
432 |
handleCmd_inRoom client _ rooms ["GAMEMSG", msg] = |
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1512
diff
changeset
|
433 |
(noChangeClients, addMsg, answerOthersRoom ["GAMEMSG", msg]) |
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1512
diff
changeset
|
434 |
where |
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1512
diff
changeset
|
435 |
addMsg = if roomProto clRoom < 20 then |
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1512
diff
changeset
|
436 |
noChangeRooms |
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1512
diff
changeset
|
437 |
else |
1646
19b3784ac9d2
Optimize net server perfomance by substituting List by Data.Sequence for storing spectators data
unc0rr
parents:
1632
diff
changeset
|
438 |
modifyRoom clRoom{roundMsgs = roundMsgs clRoom |> msg} |
1558
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1512
diff
changeset
|
439 |
clRoom = roomByName (room client) rooms |
1338 | 440 |
|
1391 | 441 |
handleCmd_inRoom client clients rooms ["KICK", kickNick] = |
442 |
if isMaster client then |
|
443 |
if noSuchClient || (kickClient == client) then |
|
444 |
(noChangeClients, noChangeRooms, []) |
|
445 |
else |
|
446 |
(modifyClient kickClient{forceQuit = True}, noChangeRooms, []) |
|
447 |
else |
|
448 |
(noChangeClients, noChangeRooms, []) |
|
449 |
where |
|
450 |
clRoom = roomByName (room client) rooms |
|
451 |
noSuchClient = isNothing findClient |
|
452 |
kickClient = fromJust findClient |
|
453 |
findClient = find (\t -> ((room t) == (room client)) && ((nick t) == kickNick)) $ clients |
|
454 |
||
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
455 |
handleCmd_inRoom _ _ _ _ = (noChangeClients, noChangeRooms, answerBadCmd) |