author | Periklis Ntanasis <pntanasis@gmail.com> |
Thu, 01 Aug 2013 23:43:43 +0300 | |
branch | spacecampaign |
changeset 9443 | 3fd77bcdd725 |
parent 9105 | 18ebb59c89fe |
child 9446 | 4fd5df03deb8 |
permissions | -rw-r--r-- |
4295
1f5604cd99be
This revision should, in theory, correctly merge 0.9.14 and tip, so that future merges of 0.9.14 should work properly
nemo
parents:
4242
diff
changeset
|
1 |
{-# LANGUAGE OverloadedStrings #-} |
1804 | 2 |
module HWProtoCore where |
3 |
||
4612 | 4 |
import Control.Monad.Reader |
4295
1f5604cd99be
This revision should, in theory, correctly merge 0.9.14 and tip, so that future merges of 0.9.14 should work properly
nemo
parents:
4242
diff
changeset
|
5 |
import Data.Maybe |
4612 | 6 |
import qualified Data.ByteString.Char8 as B |
1804 | 7 |
-------------------------------------- |
8 |
import CoreTypes |
|
9 |
import Actions |
|
10 |
import HWProtoNEState |
|
11 |
import HWProtoLobbyState |
|
12 |
import HWProtoInRoomState |
|
8479
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8478
diff
changeset
|
13 |
import HWProtoChecker |
4295
1f5604cd99be
This revision should, in theory, correctly merge 0.9.14 and tip, so that future merges of 0.9.14 should work properly
nemo
parents:
4242
diff
changeset
|
14 |
import HandlerUtils |
1f5604cd99be
This revision should, in theory, correctly merge 0.9.14 and tip, so that future merges of 0.9.14 should work properly
nemo
parents:
4242
diff
changeset
|
15 |
import RoomsAndClients |
4612 | 16 |
import Utils |
1804 | 17 |
|
4989 | 18 |
handleCmd, handleCmd_loggedin :: CmdHandler |
1804 | 19 |
|
4295
1f5604cd99be
This revision should, in theory, correctly merge 0.9.14 and tip, so that future merges of 0.9.14 should work properly
nemo
parents:
4242
diff
changeset
|
20 |
|
1f5604cd99be
This revision should, in theory, correctly merge 0.9.14 and tip, so that future merges of 0.9.14 should work properly
nemo
parents:
4242
diff
changeset
|
21 |
handleCmd ["PING"] = answerClient ["PONG"] |
1804 | 22 |
|
23 |
||
4295
1f5604cd99be
This revision should, in theory, correctly merge 0.9.14 and tip, so that future merges of 0.9.14 should work properly
nemo
parents:
4242
diff
changeset
|
24 |
handleCmd ("QUIT" : xs) = return [ByeClient msg] |
2867
9be6693c78cb
- Unbreak support for client versions prior to 0.9.13-dev
unc0rr
parents:
2706
diff
changeset
|
25 |
where |
8401
87410ae372f6
Server messages localization using Qt's l10n subsystem:
unc0rr
parents:
8396
diff
changeset
|
26 |
msg = if not $ null xs then head xs else loc "bye" |
1804 | 27 |
|
4568 | 28 |
|
4612 | 29 |
handleCmd ["PONG"] = do |
30 |
cl <- thisClient |
|
31 |
if pingsQueue cl == 0 then |
|
8897
d6c310c65c91
- Revert server workaround over desync from r98e2dbdda8c0
unc0rr
parents:
8547
diff
changeset
|
32 |
return [ProtocolError "Protocol violation"] |
4612 | 33 |
else |
34 |
return [ModifyClient (\c -> c{pingsQueue = pingsQueue c - 1})] |
|
4568 | 35 |
|
9105 | 36 |
handleCmd ["CMD", parameters] = do |
37 |
let (cmd, plist) = B.break (== ' ') parameters |
|
38 |
let param = B.dropWhile (== ' ') plist |
|
39 |
h (upperCase cmd) param |
|
8396 | 40 |
where |
9105 | 41 |
h "DELEGATE" n | not $ B.null n = handleCmd ["DELEGATE", n] |
42 |
h "STATS" _ = handleCmd ["STATS"] |
|
43 |
h "PART" m | not $ B.null m = handleCmd ["PART", m] |
|
44 |
| otherwise = handleCmd ["PART"] |
|
45 |
h "QUIT" m | not $ B.null m = handleCmd ["QUIT", m] |
|
46 |
| otherwise = handleCmd ["QUIT"] |
|
47 |
h "RND" p = handleCmd ("RND" : B.words p) |
|
48 |
h "GLOBAL" p = do |
|
9035
e84d42a4311c
'/rnd' command. Pass it a (possibly empty) list of items.
unc0rr
parents:
9034
diff
changeset
|
49 |
cl <- thisClient |
8547
6898be8aa261
Global notice with /global command. Can now warn users when doing server restart.
unc0rr
parents:
8519
diff
changeset
|
50 |
rnc <- liftM snd ask |
6898be8aa261
Global notice with /global command. Can now warn users when doing server restart.
unc0rr
parents:
8519
diff
changeset
|
51 |
let chans = map (sendChan . client rnc) $ allClients rnc |
9105 | 52 |
return [AnswerClients chans ["CHAT", "[global notice]", p] | isAdministrator cl] |
53 |
h c p = return [Warning $ B.concat ["Unknown cmd: /", c, p]] |
|
8396 | 54 |
|
4295
1f5604cd99be
This revision should, in theory, correctly merge 0.9.14 and tip, so that future merges of 0.9.14 should work properly
nemo
parents:
4242
diff
changeset
|
55 |
handleCmd cmd = do |
1f5604cd99be
This revision should, in theory, correctly merge 0.9.14 and tip, so that future merges of 0.9.14 should work properly
nemo
parents:
4242
diff
changeset
|
56 |
(ci, irnc) <- ask |
8479
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8478
diff
changeset
|
57 |
let cl = irnc `client` ci |
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8478
diff
changeset
|
58 |
if logonPassed cl then |
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8478
diff
changeset
|
59 |
if isChecker cl then |
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8478
diff
changeset
|
60 |
handleCmd_checker cmd |
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8478
diff
changeset
|
61 |
else |
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8478
diff
changeset
|
62 |
handleCmd_loggedin cmd |
4295
1f5604cd99be
This revision should, in theory, correctly merge 0.9.14 and tip, so that future merges of 0.9.14 should work properly
nemo
parents:
4242
diff
changeset
|
63 |
else |
1f5604cd99be
This revision should, in theory, correctly merge 0.9.14 and tip, so that future merges of 0.9.14 should work properly
nemo
parents:
4242
diff
changeset
|
64 |
handleCmd_NotEntered cmd |
1862 | 65 |
|
4568 | 66 |
|
4612 | 67 |
handleCmd_loggedin ["INFO", asknick] = do |
68 |
(_, rnc) <- ask |
|
4614 | 69 |
maybeClientId <- clientByNick asknick |
5060
7d0f6e5b1c1c
Hide last two octets of IP address from usual users
unc0rr
parents:
5030
diff
changeset
|
70 |
isAdminAsking <- liftM isAdministrator thisClient |
4612 | 71 |
let noSuchClient = isNothing maybeClientId |
72 |
let clientId = fromJust maybeClientId |
|
73 |
let cl = rnc `client` fromJust maybeClientId |
|
74 |
let roomId = clientRoom rnc clientId |
|
75 |
let clRoom = room rnc roomId |
|
9061 | 76 |
let roomMasterSign = if isMaster cl then "+" else "" |
4612 | 77 |
let adminSign = if isAdministrator cl then "@" else "" |
9061 | 78 |
let rInfo = if roomId /= lobbyId then B.concat [adminSign, roomMasterSign, "room ", name clRoom] else adminSign `B.append` "lobby" |
5996
2c72fe81dd37
Convert boolean variable + a bunch of fields which make sense only while game is going on into Maybe + structure
unc0rr
parents:
5060
diff
changeset
|
79 |
let roomStatus = if isJust $ gameInfo clRoom then |
4612 | 80 |
if teamsInGame cl > 0 then "(playing)" else "(spectating)" |
81 |
else |
|
82 |
"" |
|
5060
7d0f6e5b1c1c
Hide last two octets of IP address from usual users
unc0rr
parents:
5030
diff
changeset
|
83 |
let hostStr = if isAdminAsking then host cl else cutHost $ host cl |
2867
9be6693c78cb
- Unbreak support for client versions prior to 0.9.13-dev
unc0rr
parents:
2706
diff
changeset
|
84 |
if noSuchClient then |
4612 | 85 |
return [] |
86 |
else |
|
87 |
answerClient [ |
|
88 |
"INFO", |
|
89 |
nick cl, |
|
5060
7d0f6e5b1c1c
Hide last two octets of IP address from usual users
unc0rr
parents:
5030
diff
changeset
|
90 |
B.concat ["[", hostStr, "]"], |
4612 | 91 |
protoNumber2ver $ clientProto cl, |
7766 | 92 |
B.concat ["[", rInfo, "]", roomStatus] |
4612 | 93 |
] |
1862 | 94 |
|
95 |
||
4295
1f5604cd99be
This revision should, in theory, correctly merge 0.9.14 and tip, so that future merges of 0.9.14 should work properly
nemo
parents:
4242
diff
changeset
|
96 |
handleCmd_loggedin cmd = do |
1f5604cd99be
This revision should, in theory, correctly merge 0.9.14 and tip, so that future merges of 0.9.14 should work properly
nemo
parents:
4242
diff
changeset
|
97 |
(ci, rnc) <- ask |
1f5604cd99be
This revision should, in theory, correctly merge 0.9.14 and tip, so that future merges of 0.9.14 should work properly
nemo
parents:
4242
diff
changeset
|
98 |
if clientRoom rnc ci == lobbyId then |
1f5604cd99be
This revision should, in theory, correctly merge 0.9.14 and tip, so that future merges of 0.9.14 should work properly
nemo
parents:
4242
diff
changeset
|
99 |
handleCmd_lobby cmd |
1f5604cd99be
This revision should, in theory, correctly merge 0.9.14 and tip, so that future merges of 0.9.14 should work properly
nemo
parents:
4242
diff
changeset
|
100 |
else |
1f5604cd99be
This revision should, in theory, correctly merge 0.9.14 and tip, so that future merges of 0.9.14 should work properly
nemo
parents:
4242
diff
changeset
|
101 |
handleCmd_inRoom cmd |