author | unC0Rr |
Thu, 29 Aug 2024 15:28:20 +0200 | |
branch | transitional_engine |
changeset 16025 | 274a5afc2aec |
parent 15983 | 2c92499daa67 |
permissions | -rw-r--r-- |
10464
d08611b52000
Added two copyrights on gameServer
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10392
diff
changeset
|
1 |
{- |
d08611b52000
Added two copyrights on gameServer
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10392
diff
changeset
|
2 |
* Hedgewars, a free turn based strategy game |
11046 | 3 |
* Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com> |
10464
d08611b52000
Added two copyrights on gameServer
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10392
diff
changeset
|
4 |
* |
d08611b52000
Added two copyrights on gameServer
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10392
diff
changeset
|
5 |
* This program is free software; you can redistribute it and/or modify |
d08611b52000
Added two copyrights on gameServer
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10392
diff
changeset
|
6 |
* it under the terms of the GNU General Public License as published by |
d08611b52000
Added two copyrights on gameServer
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10392
diff
changeset
|
7 |
* the Free Software Foundation; version 2 of the License |
d08611b52000
Added two copyrights on gameServer
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10392
diff
changeset
|
8 |
* |
d08611b52000
Added two copyrights on gameServer
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10392
diff
changeset
|
9 |
* This program is distributed in the hope that it will be useful, |
d08611b52000
Added two copyrights on gameServer
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10392
diff
changeset
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
d08611b52000
Added two copyrights on gameServer
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10392
diff
changeset
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
d08611b52000
Added two copyrights on gameServer
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10392
diff
changeset
|
12 |
* GNU General Public License for more details. |
d08611b52000
Added two copyrights on gameServer
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10392
diff
changeset
|
13 |
* |
d08611b52000
Added two copyrights on gameServer
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10392
diff
changeset
|
14 |
* You should have received a copy of the GNU General Public License |
d08611b52000
Added two copyrights on gameServer
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10392
diff
changeset
|
15 |
* along with this program; if not, write to the Free Software |
d08611b52000
Added two copyrights on gameServer
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10392
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
d08611b52000
Added two copyrights on gameServer
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10392
diff
changeset
|
17 |
\-} |
d08611b52000
Added two copyrights on gameServer
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10392
diff
changeset
|
18 |
|
10058 | 19 |
{-# LANGUAGE OverloadedStrings #-} |
10049 | 20 |
module Votes where |
21 |
||
15983 | 22 |
import Control.Monad |
10049 | 23 |
import Control.Monad.Reader |
10216 | 24 |
import Control.Monad.State.Strict |
10049 | 25 |
import ServerState |
10058 | 26 |
import qualified Data.ByteString.Char8 as B |
10081 | 27 |
import qualified Data.List as L |
10195 | 28 |
import qualified Data.Map as Map |
10058 | 29 |
import Data.Maybe |
10880 | 30 |
import Control.Applicative |
10058 | 31 |
------------------- |
13504
f747c385b5ba
Server: Replace hardcoded hog-related numbers with consts
Wuzzy <Wuzzy2@mail.ru>
parents:
13079
diff
changeset
|
32 |
import Consts |
10058 | 33 |
import Utils |
34 |
import CoreTypes |
|
35 |
import HandlerUtils |
|
10392 | 36 |
import EngineInteraction |
10049 | 37 |
|
10081 | 38 |
|
10881
941b5ab9e5a6
"/force" command for server admin to force voting result
unc0rr
parents:
10880
diff
changeset
|
39 |
voted :: Bool -> Bool -> Reader (ClientIndex, IRnC) [Action] |
941b5ab9e5a6
"/force" command for server admin to force voting result
unc0rr
parents:
10880
diff
changeset
|
40 |
voted forced vote = do |
10081 | 41 |
cl <- thisClient |
42 |
rm <- thisRoom |
|
43 |
uid <- liftM clUID thisClient |
|
44 |
||
10392 | 45 |
case voting rm of |
46 |
Nothing -> |
|
14117
d6915d15b6de
GameServer: Turn some messages into warnings
Wuzzy <Wuzzy2@mail.ru>
parents:
13696
diff
changeset
|
47 |
return [Warning $ loc "There's no voting going on."] |
10392 | 48 |
Just voting -> |
10881
941b5ab9e5a6
"/force" command for server admin to force voting result
unc0rr
parents:
10880
diff
changeset
|
49 |
if (not forced) && (uid `L.notElem` entitledToVote voting) then |
10392 | 50 |
return [] |
10881
941b5ab9e5a6
"/force" command for server admin to force voting result
unc0rr
parents:
10880
diff
changeset
|
51 |
else if (not forced) && (uid `L.elem` map fst (votes voting)) then |
14117
d6915d15b6de
GameServer: Turn some messages into warnings
Wuzzy <Wuzzy2@mail.ru>
parents:
13696
diff
changeset
|
52 |
return [Warning $ loc "You already have voted."] |
10881
941b5ab9e5a6
"/force" command for server admin to force voting result
unc0rr
parents:
10880
diff
changeset
|
53 |
else if forced && (not $ isAdministrator cl) then |
941b5ab9e5a6
"/force" command for server admin to force voting result
unc0rr
parents:
10880
diff
changeset
|
54 |
return [] |
10392 | 55 |
else |
13696
d732ca5dcab9
GameServer: Refactor fake nick names into Consts
Wuzzy <Wuzzy2@mail.ru>
parents:
13504
diff
changeset
|
56 |
((:) (AnswerClients [sendChan cl] ["CHAT", nickServer, loc "Your vote has been counted."])) |
10880 | 57 |
<$> (actOnVoting $ voting{votes = (uid, vote):votes voting}) |
10786
712283ed86e0
Implement /newseed and /hedgehogs commands. Only tested for building.
unc0rr
parents:
10464
diff
changeset
|
58 |
|
10087 | 59 |
where |
60 |
actOnVoting :: Voting -> Reader (ClientIndex, IRnC) [Action] |
|
61 |
actOnVoting vt = do |
|
10212 | 62 |
let (pro, contra) = L.partition snd $ votes vt |
10392 | 63 |
let totalV = length $ entitledToVote vt |
64 |
let successV = totalV `div` 2 + 1 |
|
10087 | 65 |
|
10881
941b5ab9e5a6
"/force" command for server admin to force voting result
unc0rr
parents:
10880
diff
changeset
|
66 |
if (forced && not vote) || (length contra > totalV - successV) then |
10087 | 67 |
closeVoting |
10881
941b5ab9e5a6
"/force" command for server admin to force voting result
unc0rr
parents:
10880
diff
changeset
|
68 |
else if (forced && vote) || (length pro >= successV) then do |
10215 | 69 |
a <- act $ voteType vt |
70 |
c <- closeVoting |
|
71 |
return $ c ++ a |
|
10087 | 72 |
else |
73 |
return [ModifyRoom $ \r -> r{voting = Just vt}] |
|
74 |
||
75 |
closeVoting = do |
|
76 |
chans <- roomClientsChans |
|
77 |
return [ |
|
13696
d732ca5dcab9
GameServer: Refactor fake nick names into Consts
Wuzzy <Wuzzy2@mail.ru>
parents:
13504
diff
changeset
|
78 |
AnswerClients chans ["CHAT", nickServer, loc "Voting closed."] |
10087 | 79 |
, ModifyRoom (\r -> r{voting = Nothing}) |
80 |
] |
|
81 |
||
82 |
act (VoteKick nickname) = do |
|
83 |
(thisClientId, rnc) <- ask |
|
84 |
maybeClientId <- clientByNick nickname |
|
85 |
rm <- thisRoom |
|
86 |
let kickId = fromJust maybeClientId |
|
87 |
let kickCl = rnc `client` kickId |
|
88 |
let sameRoom = clientRoom rnc thisClientId == clientRoom rnc kickId |
|
89 |
return |
|
90 |
[KickRoomClient kickId | |
|
91 |
isJust maybeClientId |
|
92 |
&& sameRoom |
|
93 |
&& ((isNothing $ gameInfo rm) || teamsInGame kickCl == 0) |
|
94 |
] |
|
10195 | 95 |
act (VoteMap roomSave) = do |
96 |
rm <- thisRoom |
|
97 |
let rs = Map.lookup roomSave (roomSaves rm) |
|
98 |
case rs of |
|
99 |
Nothing -> return [] |
|
11575 | 100 |
Just (location, mp, p) -> do |
10218 | 101 |
cl <- thisClient |
102 |
chans <- roomClientsChans |
|
11575 | 103 |
return $ |
104 |
[ModifyRoom $ \r -> r{params = p, mapParams = mp} |
|
13696
d732ca5dcab9
GameServer: Refactor fake nick names into Consts
Wuzzy <Wuzzy2@mail.ru>
parents:
13504
diff
changeset
|
105 |
, AnswerClients chans ["CHAT", nickServer, location] |
11575 | 106 |
, SendUpdateOnThisRoom |
107 |
, LoadGhost location] |
|
10392 | 108 |
act (VotePause) = do |
109 |
rm <- thisRoom |
|
110 |
chans <- roomClientsChans |
|
111 |
let modifyGameInfo f room = room{gameInfo = fmap f $ gameInfo room} |
|
112 |
return [ModifyRoom (modifyGameInfo $ \g -> g{isPaused = not $ isPaused g}), |
|
13696
d732ca5dcab9
GameServer: Refactor fake nick names into Consts
Wuzzy <Wuzzy2@mail.ru>
parents:
13504
diff
changeset
|
113 |
AnswerClients chans ["CHAT", nickServer, loc "Pause toggled."], |
10392 | 114 |
AnswerClients chans ["EM", toEngineMsg "I"]] |
10786
712283ed86e0
Implement /newseed and /hedgehogs commands. Only tested for building.
unc0rr
parents:
10464
diff
changeset
|
115 |
act (VoteNewSeed) = |
712283ed86e0
Implement /newseed and /hedgehogs commands. Only tested for building.
unc0rr
parents:
10464
diff
changeset
|
116 |
return [SetRandomSeed] |
712283ed86e0
Implement /newseed and /hedgehogs commands. Only tested for building.
unc0rr
parents:
10464
diff
changeset
|
117 |
act (VoteHedgehogsPerTeam h) = do |
712283ed86e0
Implement /newseed and /hedgehogs commands. Only tested for building.
unc0rr
parents:
10464
diff
changeset
|
118 |
rm <- thisRoom |
712283ed86e0
Implement /newseed and /hedgehogs commands. Only tested for building.
unc0rr
parents:
10464
diff
changeset
|
119 |
chans <- roomClientsChans |
712283ed86e0
Implement /newseed and /hedgehogs commands. Only tested for building.
unc0rr
parents:
10464
diff
changeset
|
120 |
let answers = concatMap (\t -> |
712283ed86e0
Implement /newseed and /hedgehogs commands. Only tested for building.
unc0rr
parents:
10464
diff
changeset
|
121 |
[ModifyRoom $ modifyTeam t{hhnum = h} |
10787 | 122 |
, AnswerClients chans ["HH_NUM", teamname t, showB h]] |
13504
f747c385b5ba
Server: Replace hardcoded hog-related numbers with consts
Wuzzy <Wuzzy2@mail.ru>
parents:
13079
diff
changeset
|
123 |
) $ if length curteams * h > cMaxHHs then [] else curteams |
10879
9bedbd36de49
Don't change hedgehogs total number to a value > 48 as result of voting.
unc0rr
parents:
10787
diff
changeset
|
124 |
; |
9bedbd36de49
Don't change hedgehogs total number to a value > 48 as result of voting.
unc0rr
parents:
10787
diff
changeset
|
125 |
curteams = |
10786
712283ed86e0
Implement /newseed and /hedgehogs commands. Only tested for building.
unc0rr
parents:
10464
diff
changeset
|
126 |
if isJust $ gameInfo rm then |
10879
9bedbd36de49
Don't change hedgehogs total number to a value > 48 as result of voting.
unc0rr
parents:
10787
diff
changeset
|
127 |
teamsAtStart . fromJust . gameInfo $ rm |
10786
712283ed86e0
Implement /newseed and /hedgehogs commands. Only tested for building.
unc0rr
parents:
10464
diff
changeset
|
128 |
else |
712283ed86e0
Implement /newseed and /hedgehogs commands. Only tested for building.
unc0rr
parents:
10464
diff
changeset
|
129 |
teams rm |
712283ed86e0
Implement /newseed and /hedgehogs commands. Only tested for building.
unc0rr
parents:
10464
diff
changeset
|
130 |
|
712283ed86e0
Implement /newseed and /hedgehogs commands. Only tested for building.
unc0rr
parents:
10464
diff
changeset
|
131 |
return $ ModifyRoom (\r -> r{defaultHedgehogsNumber = h}) : answers |
10081 | 132 |
|
10049 | 133 |
|
134 |
startVote :: VoteType -> Reader (ClientIndex, IRnC) [Action] |
|
10058 | 135 |
startVote vt = do |
136 |
(ci, rnc) <- ask |
|
10090 | 137 |
--cl <- thisClient |
10058 | 138 |
rm <- thisRoom |
139 |
chans <- roomClientsChans |
|
140 |
||
141 |
let uids = map (clUID . client rnc) . roomClients rnc $ clientRoom rnc ci |
|
142 |
||
143 |
if isJust $ voting rm then |
|
144 |
return [] |
|
145 |
else |
|
10212 | 146 |
return [ |
147 |
ModifyRoom (\r -> r{voting = Just (newVoting vt){entitledToVote = uids}}) |
|
13696
d732ca5dcab9
GameServer: Refactor fake nick names into Consts
Wuzzy <Wuzzy2@mail.ru>
parents:
13504
diff
changeset
|
148 |
, AnswerClients chans ["CHAT", nickServer, B.concat [loc "New voting started", ": ", voteInfo vt]] |
10212 | 149 |
, ReactCmd ["VOTE", "YES"] |
10215 | 150 |
] |
10081 | 151 |
|
10049 | 152 |
|
10215 | 153 |
checkVotes :: StateT ServerState IO [Action] |
154 |
checkVotes = do |
|
155 |
rnc <- gets roomsClients |
|
10216 | 156 |
liftM concat $ io $ do |
10215 | 157 |
ris <- allRoomsM rnc |
10216 | 158 |
mapM (check rnc) ris |
10215 | 159 |
where |
160 |
check rnc ri = do |
|
161 |
e <- room'sM rnc voting ri |
|
162 |
case e of |
|
163 |
Just rv -> do |
|
164 |
modifyRoom rnc (\r -> r{voting = if voteTTL rv == 0 then Nothing else Just rv{voteTTL = voteTTL rv - 1}}) ri |
|
165 |
if voteTTL rv == 0 then do |
|
10216 | 166 |
chans <- liftM (map sendChan) $ roomClientsM rnc ri |
13696
d732ca5dcab9
GameServer: Refactor fake nick names into Consts
Wuzzy <Wuzzy2@mail.ru>
parents:
13504
diff
changeset
|
167 |
return [AnswerClients chans ["CHAT", nickServer, loc "Voting expired."]] |
10215 | 168 |
else |
169 |
return [] |
|
10216 | 170 |
Nothing -> return [] |
10058 | 171 |
|
10081 | 172 |
|
10058 | 173 |
voteInfo :: VoteType -> B.ByteString |
174 |
voteInfo (VoteKick n) = B.concat [loc "kick", " ", n] |
|
10195 | 175 |
voteInfo (VoteMap n) = B.concat [loc "map", " ", n] |
10392 | 176 |
voteInfo (VotePause) = B.concat [loc "pause"] |
10786
712283ed86e0
Implement /newseed and /hedgehogs commands. Only tested for building.
unc0rr
parents:
10464
diff
changeset
|
177 |
voteInfo (VoteNewSeed) = B.concat [loc "new seed"] |
13079
81c154fd4380
More user-friendly server messages
Wuzzy <Wuzzy2@mail.ru>
parents:
11575
diff
changeset
|
178 |
voteInfo (VoteHedgehogsPerTeam i) = B.concat [loc "hedgehogs per team: ", " ", showB i] |