author | unc0rr |
Mon, 05 Jan 2009 19:51:24 +0000 | |
changeset 1582 | 262245ba6ea6 |
parent 1581 | 2dfa315b4bb2 |
child 1584 | 90f6a5abad17 |
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 |
890 | 9 |
import Miscutils |
1320 | 10 |
import Maybe |
1317 | 11 |
import qualified Data.Map as Map |
1384 | 12 |
import Opts |
890 | 13 |
|
1331
ae291cfd617a
Send teams info to newly connected client (has a bug with team sequence, need to discover)
unc0rr
parents:
1330
diff
changeset
|
14 |
teamToNet team = ["ADD_TEAM", teamname team, teamgrave team, teamfort team, show $ difficulty team] ++ hhsInfo |
ae291cfd617a
Send teams info to newly connected client (has a bug with team sequence, need to discover)
unc0rr
parents:
1330
diff
changeset
|
15 |
where |
ae291cfd617a
Send teams info to newly connected client (has a bug with team sequence, need to discover)
unc0rr
parents:
1330
diff
changeset
|
16 |
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
|
17 |
|
1491
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
18 |
makeAnswer :: HandlesSelector -> [String] -> [Answer] |
1492 | 19 |
makeAnswer func msg = [\_ -> (func, msg)] |
1491
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
20 |
answerClientOnly, answerOthersRoom, answerSameRoom :: [String] -> [Answer] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
21 |
answerClientOnly = makeAnswer clientOnly |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
22 |
answerOthersRoom = makeAnswer othersInRoom |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
23 |
answerSameRoom = makeAnswer sameRoom |
1567 | 24 |
answerAll = makeAnswer allClients |
1491
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
25 |
|
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
26 |
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
|
27 |
answerNotMaster = answerClientOnly ["ERROR", "You cannot configure room parameters"] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
28 |
answerBadParam = answerClientOnly ["ERROR", "Bad parameter"] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
29 |
answerErrorMsg msg = answerClientOnly ["ERROR", msg] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
30 |
answerQuit msg = answerClientOnly ["BYE", msg] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
31 |
answerNickChosen = answerClientOnly ["ERROR", "The nick already chosen"] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
32 |
answerNickChooseAnother = answerClientOnly ["WARNING", "Choose another nick"] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
33 |
answerNick nick = answerClientOnly ["NICK", nick] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
34 |
answerProtocolKnown = answerClientOnly ["ERROR", "Protocol number already known"] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
35 |
answerBadInput = answerClientOnly ["ERROR", "Bad input"] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
36 |
answerProto protoNum = answerClientOnly ["PROTO", show protoNum] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
37 |
answerRoomsList list = answerClientOnly $ "ROOMS" : list |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
38 |
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
|
39 |
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
|
40 |
answerWrongPassword = answerClientOnly ["WARNING", "Wrong password"] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
41 |
answerCantAdd reason = answerClientOnly ["WARNING", "Cannot add team: " ++ reason] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
42 |
answerTeamAccepted team = answerClientOnly ["TEAM_ACCEPTED", teamname team] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
43 |
answerTooFewClans = answerClientOnly ["ERROR", "Too few clans in game"] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
44 |
answerRestricted = answerClientOnly ["WARNING", "Room joining restricted"] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
45 |
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
|
46 |
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
|
47 |
answerCannotCreateRoom = answerClientOnly ["WARNING", "Cannot create more rooms"] |
1582 | 48 |
answerInfo client = answerClientOnly ["INFO", nick client, host client, proto2ver $ protocol client, roomInfo] |
49 |
where |
|
50 |
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
|
51 |
|
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
52 |
answerAbandoned = answerOthersRoom ["BYE", "Room abandoned"] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
53 |
answerChatString nick msg = answerOthersRoom ["CHAT_STRING", nick, msg] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
54 |
answerAddTeam team = answerOthersRoom $ teamToNet team |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
55 |
answerRemoveTeam teamName = answerOthersRoom ["REMOVE_TEAM", teamName] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
56 |
answerMap mapName = answerOthersRoom ["MAP", mapName] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
57 |
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
|
58 |
answerTeamColor teamName newColor = answerOthersRoom ["TEAM_COLOR", teamName, newColor] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
59 |
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
|
60 |
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
|
61 |
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
|
62 |
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
|
63 |
else |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1493
diff
changeset
|
64 |
answerOthersRoom ["LEFT", nick] |
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1561
diff
changeset
|
65 |
answerQuitLobby nick msg = |
1581 | 66 |
if not $ null nick then |
67 |
if not $ null msg then |
|
68 |
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
|
69 |
else |
1581 | 70 |
answerAll ["LOBBY:LEFT", nick] |
71 |
else |
|
72 |
[] |
|
1491
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
73 |
|
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
74 |
answerJoined nick = answerSameRoom ["JOINED", nick] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
75 |
answerRunGame = answerSameRoom ["RUN_GAME"] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
76 |
answerIsReady nick = answerSameRoom ["READY", nick] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
77 |
answerNotReady nick = answerSameRoom ["NOT_READY", nick] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
78 |
|
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
79 |
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
|
80 |
where |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
81 |
toAnswer (paramName, paramStrs) = |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
82 |
answerClientOnly $ "CONFIG_PARAM" : paramName : paramStrs |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
83 |
|
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
84 |
answerAllTeams room = concatMap toAnswer (teams room) |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
85 |
where |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
86 |
toAnswer team = |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
87 |
(answerClientOnly $ teamToNet team) ++ |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
88 |
(answerClientOnly ["TEAM_COLOR", teamname team, teamcolor team]) ++ |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
89 |
(answerClientOnly ["HH_NUM", teamname team, show $ hhnum team]) |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
90 |
|
1569 | 91 |
answerServerMessage client clients = [\serverInfo -> (clientOnly, "SERVER_MESSAGE" : |
1493 | 92 |
[(mainbody serverInfo) ++ clientsIn ++ (lastHour serverInfo)])] |
1384 | 93 |
where |
1492 | 94 |
mainbody serverInfo = serverMessage serverInfo ++ |
95 |
if isDedicated serverInfo then |
|
96 |
"<p align=center>Dedicated server</p>" |
|
97 |
else |
|
98 |
"<p align=center>Private server</p>" |
|
99 |
||
1569 | 100 |
clientsIn = if protocol client < 20 then "<p align=left>" ++ (show $ length nicks) ++ " clients in: " ++ clientslist ++ "</p>" else [] |
1452 | 101 |
clientslist = if not $ null nicks then foldr1 (\a b -> a ++ ", " ++ b) nicks else "" |
1493 | 102 |
lastHour serverInfo = |
103 |
if isDedicated serverInfo then |
|
104 |
"<p align=left>" ++ (show $ length $ lastHourUsers serverInfo) ++ " user logins in last hour</p>" |
|
105 |
else |
|
106 |
"" |
|
1452 | 107 |
nicks = filter (not . null) $ map nick clients |
1492 | 108 |
|
1491
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
109 |
answerPing = makeAnswer allClients ["PING"] |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
110 |
|
1082 | 111 |
-- Main state-independent cmd handler |
112 |
handleCmd :: CmdHandler |
|
1478 | 113 |
handleCmd client _ rooms ("QUIT" : xs) = |
1082 | 114 |
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
|
115 |
(noChangeClients, noChangeRooms, answerQuit msg ++ (answerQuitLobby (nick client) msg) ) |
1082 | 116 |
else if isMaster client then |
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1561
diff
changeset
|
117 |
(noChangeClients, removeRoom (room client), (answerQuit msg) ++ (answerQuitLobby (nick client) msg) ++ answerAbandoned) -- core disconnects clients on ROOMABANDONED answer |
1082 | 118 |
else |
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1561
diff
changeset
|
119 |
(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
|
120 |
where |
b58afaadf7ae
Send team removal message to others in room when client disconnects
unc0rr
parents:
1333
diff
changeset
|
121 |
clRoom = roomByName (room client) rooms |
1491
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
122 |
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
|
123 |
(clientTeams, othersTeams) = partition (\t -> teamowner t == nick client) $ teams clRoom |
1403 | 124 |
newReadyPlayers = if isReady client then (readyPlayers clRoom) - 1 else readyPlayers clRoom |
1478 | 125 |
msg = if not $ null xs then head xs else "" |
895 | 126 |
|
1461
87e5a6c3882c
Ping clients every 30 seconds, should help with ghosts on server
unc0rr
parents:
1452
diff
changeset
|
127 |
handleCmd _ _ _ ["PING"] = -- core requsted |
87e5a6c3882c
Ping clients every 30 seconds, should help with ghosts on server
unc0rr
parents:
1452
diff
changeset
|
128 |
(noChangeClients, noChangeRooms, answerPing) |
1307 | 129 |
|
1469 | 130 |
handleCmd _ _ _ ["ASKME"] = -- core requsted |
131 |
(noChangeClients, noChangeRooms, answerConnected) |
|
132 |
||
1462 | 133 |
handleCmd _ _ _ ["PONG"] = |
134 |
(noChangeClients, noChangeRooms, []) |
|
135 |
||
1483 | 136 |
handleCmd _ _ _ ["ERROR", msg] = |
137 |
(noChangeClients, noChangeRooms, answerErrorMsg msg) |
|
138 |
||
1577 | 139 |
handleCmd _ clients _ ["INFO", asknick] = |
140 |
if noSuchClient then |
|
141 |
(noChangeClients, noChangeRooms, []) |
|
142 |
else |
|
143 |
(noChangeClients, noChangeRooms, answerInfo client) |
|
144 |
where |
|
145 |
maybeClient = find (\cl -> asknick == nick cl) clients |
|
146 |
noSuchClient = isNothing maybeClient |
|
147 |
client = fromJust maybeClient |
|
148 |
||
149 |
||
1082 | 150 |
-- check state and call state-dependent commmand handlers |
151 |
handleCmd client clients rooms cmd = |
|
152 |
if null (nick client) || protocol client == 0 then |
|
153 |
handleCmd_noInfo client clients rooms cmd |
|
154 |
else if null (room client) then |
|
155 |
handleCmd_noRoom client clients rooms cmd |
|
156 |
else |
|
157 |
handleCmd_inRoom client clients rooms cmd |
|
158 |
||
1307 | 159 |
|
1082 | 160 |
-- '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
|
161 |
onLoginFinished client clients = |
1571 | 162 |
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
|
163 |
[] |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1561
diff
changeset
|
164 |
else |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1561
diff
changeset
|
165 |
(answerClientOnly $ ["LOBBY:JOINED"] ++ (map nick $ clients)) ++ |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1561
diff
changeset
|
166 |
(answerOthersRoom ["LOBBY:JOINED", nick client]) |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1561
diff
changeset
|
167 |
|
1082 | 168 |
handleCmd_noInfo :: CmdHandler |
169 |
handleCmd_noInfo client clients _ ["NICK", newNick] = |
|
894 | 170 |
if not . null $ nick client then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
171 |
(noChangeClients, noChangeRooms, answerNickChosen) |
894 | 172 |
else if haveSameNick then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
173 |
(noChangeClients, noChangeRooms, answerNickChooseAnother) |
894 | 174 |
else |
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1561
diff
changeset
|
175 |
(modifyClient client{nick = newNick}, noChangeRooms, answerNick newNick ++ (onLoginFinished client{nick = newNick} clients)) |
894 | 176 |
where |
1320 | 177 |
haveSameNick = isJust $ find (\cl -> newNick == nick cl) clients |
894 | 178 |
|
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1561
diff
changeset
|
179 |
handleCmd_noInfo client clients _ ["PROTO", protoNum] = |
894 | 180 |
if protocol client > 0 then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
181 |
(noChangeClients, noChangeRooms, answerProtocolKnown) |
894 | 182 |
else if parsedProto == 0 then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
183 |
(noChangeClients, noChangeRooms, answerBadInput) |
894 | 184 |
else |
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1561
diff
changeset
|
185 |
(modifyClient client{protocol = parsedProto}, noChangeRooms, answerProto parsedProto ++ (onLoginFinished client{protocol = parsedProto} clients)) |
894 | 186 |
where |
187 |
parsedProto = fromMaybe 0 (maybeRead protoNum :: Maybe Word16) |
|
188 |
||
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
189 |
handleCmd_noInfo _ _ _ _ = (noChangeClients, noChangeRooms, answerBadCmd) |
894 | 190 |
|
1307 | 191 |
|
894 | 192 |
-- 'noRoom' clients state command handlers |
1082 | 193 |
handleCmd_noRoom :: CmdHandler |
1452 | 194 |
handleCmd_noRoom client clients rooms ["LIST"] = |
1569 | 195 |
(noChangeClients, noChangeRooms, answerServerMessage client clients ++ (answerRoomsList $ concatMap roomInfo $ sameProtoRooms)) |
1396 | 196 |
where |
1402 | 197 |
roomInfo room = [ |
198 |
name room, |
|
199 |
(show $ playersIn room) ++ "(" ++ (show $ length $ teams room) ++ ")", |
|
200 |
show $ gameinprogress room |
|
201 |
] |
|
1412 | 202 |
sameProtoRooms = filter (\r -> (roomProto r == protocol client) && (not $ isRestrictedJoins r)) rooms |
903 | 203 |
|
1082 | 204 |
handleCmd_noRoom client _ rooms ["CREATE", newRoom, roomPassword] = |
1492 | 205 |
if haveSameRoom then |
206 |
(noChangeClients, noChangeRooms, answerRoomExists) |
|
895 | 207 |
else |
1492 | 208 |
(modifyClient client{room = newRoom, isMaster = True}, addRoom createRoom{name = newRoom, password = roomPassword, roomProto = (protocol client)}, (answerJoined $ nick client) ++ (answerNotReady $ nick client)) |
895 | 209 |
where |
1320 | 210 |
haveSameRoom = isJust $ find (\room -> newRoom == name room) rooms |
895 | 211 |
|
1082 | 212 |
handleCmd_noRoom client clients rooms ["CREATE", newRoom] = |
213 |
handleCmd_noRoom client clients rooms ["CREATE", newRoom, ""] |
|
214 |
||
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
215 |
handleCmd_noRoom client clients rooms ["JOIN", roomName, roomPassword] = |
902 | 216 |
if noSuchRoom then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
217 |
(noChangeClients, noChangeRooms, answerNoRoom) |
1321 | 218 |
else if roomPassword /= password clRoom then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
219 |
(noChangeClients, noChangeRooms, answerWrongPassword) |
1411 | 220 |
else if isRestrictedJoins clRoom then |
221 |
(noChangeClients, noChangeRooms, answerRestricted) |
|
895 | 222 |
else |
1558
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1512
diff
changeset
|
223 |
(modifyClient client{room = roomName}, modifyRoom clRoom{playersIn = 1 + playersIn clRoom}, answerNicks ++ answerReady ++ (answerJoined $ nick client) ++ (answerNotReady $ nick client) ++ answerFullConfig clRoom ++ answerAllTeams clRoom ++ watchRound) |
895 | 224 |
where |
1401 | 225 |
noSuchRoom = isNothing $ find (\room -> roomName == name room && roomProto room == protocol client) rooms |
1491
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
226 |
answerNicks = answerClientOnly $ ["JOINED"] ++ (map nick $ sameRoomClients) |
0b1f44751509
Make answers creation more abstract, in prepare for a conversion
unc0rr
parents:
1483
diff
changeset
|
227 |
answerReady = concatMap (\c -> answerClientOnly [if isReady c then "READY" else "NOT_READY", nick c]) sameRoomClients |
1406 | 228 |
sameRoomClients = filter (\ci -> room ci == roomName) clients |
1321 | 229 |
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
|
230 |
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
|
231 |
[] |
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1512
diff
changeset
|
232 |
else |
1560
e140bc57ff68
Quick replay round to spectators until current move
unc0rr
parents:
1559
diff
changeset
|
233 |
(answerClientOnly ["RUN_GAME"]) ++ |
e140bc57ff68
Quick replay round to spectators until current move
unc0rr
parents:
1559
diff
changeset
|
234 |
answerClientOnly ("GAMEMSG" : "DGUkc3BlY3RhdGUgMQ==" : roundMsgs clRoom) |
895 | 235 |
|
1082 | 236 |
handleCmd_noRoom client clients rooms ["JOIN", roomName] = |
237 |
handleCmd_noRoom client clients rooms ["JOIN", roomName, ""] |
|
894 | 238 |
|
1568 | 239 |
handleCmd_noRoom client _ _ ["CHAT_STRING", msg] = |
240 |
(noChangeClients, noChangeRooms, answerChatString (nick client) msg) |
|
241 |
||
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
242 |
handleCmd_noRoom _ _ _ _ = (noChangeClients, noChangeRooms, answerBadCmd) |
895 | 243 |
|
1307 | 244 |
|
897 | 245 |
-- 'inRoom' clients state command handlers |
1082 | 246 |
handleCmd_inRoom :: CmdHandler |
1322
c624b04699fb
Fix protocol implementation to conform documentation
unc0rr
parents:
1321
diff
changeset
|
247 |
handleCmd_inRoom client _ _ ["CHAT_STRING", msg] = |
1317 | 248 |
(noChangeClients, noChangeRooms, answerChatString (nick client) msg) |
897 | 249 |
|
1327 | 250 |
handleCmd_inRoom client _ rooms ("CONFIG_PARAM" : paramName : paramStrs) = |
1317 | 251 |
if isMaster client then |
1322
c624b04699fb
Fix protocol implementation to conform documentation
unc0rr
parents:
1321
diff
changeset
|
252 |
(noChangeClients, modifyRoom clRoom{params = Map.insert paramName paramStrs (params clRoom)}, answerConfigParam paramName paramStrs) |
1317 | 253 |
else |
254 |
(noChangeClients, noChangeRooms, answerNotMaster) |
|
1321 | 255 |
where |
256 |
clRoom = roomByName (room client) rooms |
|
257 |
||
1333
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
258 |
handleCmd_inRoom client _ rooms ["MAP", mapName] = |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
259 |
if isMaster client then |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
260 |
(noChangeClients, modifyRoom clRoom{gamemap = mapName}, answerMap mapName) |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
261 |
else |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
262 |
(noChangeClients, noChangeRooms, answerNotMaster) |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
263 |
where |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
264 |
clRoom = roomByName (room client) rooms |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
265 |
|
1327 | 266 |
handleCmd_inRoom client _ rooms ("ADD_TEAM" : name : color : grave : fort : 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
|
267 |
| length hhsInfo == 16 = |
1470
ebaca3b66d92
Give more specific explanation when deny to add team
unc0rr
parents:
1469
diff
changeset
|
268 |
if length (teams clRoom) == 6 then |
ebaca3b66d92
Give more specific explanation when deny to add team
unc0rr
parents:
1469
diff
changeset
|
269 |
(noChangeClients, noChangeRooms, answerCantAdd "too many teams") |
ebaca3b66d92
Give more specific explanation when deny to add team
unc0rr
parents:
1469
diff
changeset
|
270 |
else if canAddNumber <= 0 then |
ebaca3b66d92
Give more specific explanation when deny to add team
unc0rr
parents:
1469
diff
changeset
|
271 |
(noChangeClients, noChangeRooms, answerCantAdd "too many hedgehogs") |
ebaca3b66d92
Give more specific explanation when deny to add team
unc0rr
parents:
1469
diff
changeset
|
272 |
else if isJust findTeam then |
ebaca3b66d92
Give more specific explanation when deny to add team
unc0rr
parents:
1469
diff
changeset
|
273 |
(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
|
274 |
else if gameinprogress clRoom then |
ebaca3b66d92
Give more specific explanation when deny to add team
unc0rr
parents:
1469
diff
changeset
|
275 |
(noChangeClients, noChangeRooms, answerCantAdd "round in progress") |
ebaca3b66d92
Give more specific explanation when deny to add team
unc0rr
parents:
1469
diff
changeset
|
276 |
else if isRestrictedTeams clRoom then |
ebaca3b66d92
Give more specific explanation when deny to add team
unc0rr
parents:
1469
diff
changeset
|
277 |
(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
|
278 |
else |
1336
4e88eccbe7f6
Fix team colors mismatch on some conditions (just synchronize them when team is added)
unc0rr
parents:
1335
diff
changeset
|
279 |
(noChangeClients, modifyRoom clRoom{teams = teams clRoom ++ [newTeam]}, answerTeamAccepted newTeam ++ answerAddTeam 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
|
280 |
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
|
281 |
clRoom = roomByName (room client) rooms |
1329 | 282 |
newTeam = (TeamInfo (nick client) name color grave fort difficulty newTeamHHNum (hhsList hhsInfo)) |
1328 | 283 |
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
|
284 |
difficulty = fromMaybe 0 (maybeRead difStr :: Maybe Int) |
1325 | 285 |
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
|
286 |
hhsList (n:h:hhs) = HedgehogInfo n h : hhsList hhs |
1327 | 287 |
canAddNumber = 18 - (sum . map hhnum $ teams clRoom) |
288 |
newTeamHHNum = min 4 canAddNumber |
|
289 |
||
290 |
handleCmd_inRoom client _ rooms ["HH_NUM", teamName, numberStr] = |
|
291 |
if not $ isMaster client then |
|
292 |
(noChangeClients, noChangeRooms, answerNotMaster) |
|
293 |
else |
|
1329 | 294 |
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
|
295 |
(noChangeClients, noChangeRooms, []) |
1327 | 296 |
else |
297 |
(noChangeClients, modifyRoom $ modifyTeam clRoom team{hhnum = hhNumber}, answerHHNum teamName hhNumber) |
|
298 |
where |
|
299 |
hhNumber = fromMaybe 0 (maybeRead numberStr :: Maybe Int) |
|
300 |
noSuchTeam = isNothing findTeam |
|
301 |
team = fromJust findTeam |
|
302 |
findTeam = find (\t -> teamName == teamname t) $ teams clRoom |
|
303 |
clRoom = roomByName (room client) rooms |
|
304 |
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
|
305 |
|
1330 | 306 |
handleCmd_inRoom client _ rooms ["TEAM_COLOR", teamName, newColor] = |
307 |
if not $ isMaster client then |
|
308 |
(noChangeClients, noChangeRooms, answerNotMaster) |
|
309 |
else |
|
1442 | 310 |
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
|
311 |
(noChangeClients, noChangeRooms, []) |
1442 | 312 |
else |
313 |
(noChangeClients, modifyRoom $ modifyTeam clRoom team{teamcolor = newColor}, answerTeamColor teamName newColor) |
|
1330 | 314 |
where |
315 |
noSuchTeam = isNothing findTeam |
|
316 |
team = fromJust findTeam |
|
317 |
findTeam = find (\t -> teamName == teamname t) $ teams clRoom |
|
318 |
clRoom = roomByName (room client) rooms |
|
319 |
||
1328 | 320 |
handleCmd_inRoom client _ rooms ["REMOVE_TEAM", teamName] = |
1329 | 321 |
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
|
322 |
(noChangeClients, noChangeRooms, []) |
1328 | 323 |
else |
1329 | 324 |
if not $ nick client == teamowner team then |
325 |
(noChangeClients, noChangeRooms, answerNotOwner) |
|
1328 | 326 |
else |
327 |
(noChangeClients, modifyRoom clRoom{teams = filter (\t -> teamName /= teamname t) $ teams clRoom}, answerRemoveTeam teamName) |
|
328 |
where |
|
329 |
noSuchTeam = isNothing findTeam |
|
330 |
team = fromJust findTeam |
|
331 |
findTeam = find (\t -> teamName == teamname t) $ teams clRoom |
|
332 |
clRoom = roomByName (room client) rooms |
|
1083 | 333 |
|
1403 | 334 |
handleCmd_inRoom client _ rooms ["TOGGLE_READY"] = |
335 |
if isReady client then |
|
1411 | 336 |
(modifyClient client{isReady = False}, modifyRoom clRoom{readyPlayers = newReadyPlayers}, answerNotReady $ nick client) |
1338 | 337 |
else |
1411 | 338 |
(modifyClient client{isReady = True}, modifyRoom clRoom{readyPlayers = newReadyPlayers}, answerIsReady $ nick client) |
1350 | 339 |
where |
340 |
clRoom = roomByName (room client) rooms |
|
1404 | 341 |
newReadyPlayers = (readyPlayers clRoom) + if isReady client then -1 else 1 |
1338 | 342 |
|
1411 | 343 |
handleCmd_inRoom client _ rooms ["START_GAME"] = |
344 |
if isMaster client && (playersIn clRoom == readyPlayers clRoom) && (not $ gameinprogress clRoom) then |
|
345 |
if enoughClans then |
|
346 |
(noChangeClients, modifyRoom clRoom{gameinprogress = True}, answerRunGame) |
|
347 |
else |
|
348 |
(noChangeClients, noChangeRooms, answerTooFewClans) |
|
349 |
else |
|
350 |
(noChangeClients, noChangeRooms, []) |
|
351 |
where |
|
352 |
clRoom = roomByName (room client) rooms |
|
353 |
enoughClans = not $ null $ drop 1 $ group $ map teamcolor $ teams clRoom |
|
354 |
||
355 |
handleCmd_inRoom client _ rooms ["TOGGLE_RESTRICT_JOINS"] = |
|
356 |
if isMaster client then |
|
357 |
(noChangeClients, modifyRoom clRoom{isRestrictedJoins = newStatus}, []) |
|
358 |
else |
|
359 |
(noChangeClients, noChangeRooms, answerNotMaster) |
|
360 |
where |
|
361 |
clRoom = roomByName (room client) rooms |
|
362 |
newStatus = not $ isRestrictedJoins clRoom |
|
363 |
||
364 |
handleCmd_inRoom client _ rooms ["TOGGLE_RESTRICT_TEAMS"] = |
|
365 |
if isMaster client then |
|
366 |
(noChangeClients, modifyRoom clRoom{isRestrictedTeams = newStatus}, []) |
|
367 |
else |
|
368 |
(noChangeClients, noChangeRooms, answerNotMaster) |
|
369 |
where |
|
370 |
clRoom = roomByName (room client) rooms |
|
371 |
newStatus = not $ isRestrictedTeams clRoom |
|
372 |
||
1408 | 373 |
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
|
374 |
if isMaster client then |
1561
f0af4e5fe880
Clear round replay data on server side when round is finished
unc0rr
parents:
1560
diff
changeset
|
375 |
(modifyRoomClients clRoom (\cl -> cl{isReady = False}), modifyRoom clRoom{gameinprogress = False, readyPlayers = 0, roundMsgs =[]}, answerAllNotReady) |
1345
73119de7d3be
Server erases teams list after round finish, so everything should be okay now
unc0rr
parents:
1344
diff
changeset
|
376 |
else |
1344
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1338
diff
changeset
|
377 |
(noChangeClients, noChangeRooms, []) |
1345
73119de7d3be
Server erases teams list after round finish, so everything should be okay now
unc0rr
parents:
1344
diff
changeset
|
378 |
where |
73119de7d3be
Server erases teams list after round finish, so everything should be okay now
unc0rr
parents:
1344
diff
changeset
|
379 |
clRoom = roomByName (room client) rooms |
1408 | 380 |
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
|
381 |
answerAllNotReady = concatMap (\cl -> answerSameRoom ["NOT_READY", nick cl]) sameRoomClients |
1344
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1338
diff
changeset
|
382 |
|
1558
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1512
diff
changeset
|
383 |
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
|
384 |
(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
|
385 |
where |
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1512
diff
changeset
|
386 |
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
|
387 |
noChangeRooms |
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1512
diff
changeset
|
388 |
else |
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1512
diff
changeset
|
389 |
modifyRoom clRoom{roundMsgs = roundMsgs clRoom ++ [msg]} |
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1512
diff
changeset
|
390 |
clRoom = roomByName (room client) rooms |
1338 | 391 |
|
1391 | 392 |
handleCmd_inRoom client clients rooms ["KICK", kickNick] = |
393 |
if isMaster client then |
|
394 |
if noSuchClient || (kickClient == client) then |
|
395 |
(noChangeClients, noChangeRooms, []) |
|
396 |
else |
|
397 |
(modifyClient kickClient{forceQuit = True}, noChangeRooms, []) |
|
398 |
else |
|
399 |
(noChangeClients, noChangeRooms, []) |
|
400 |
where |
|
401 |
clRoom = roomByName (room client) rooms |
|
402 |
noSuchClient = isNothing findClient |
|
403 |
kickClient = fromJust findClient |
|
404 |
findClient = find (\t -> ((room t) == (room client)) && ((nick t) == kickNick)) $ clients |
|
405 |
||
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
406 |
handleCmd_inRoom _ _ _ _ = (noChangeClients, noChangeRooms, answerBadCmd) |