author | smxx |
Wed, 10 Feb 2010 00:57:39 +0000 | |
changeset 2787 | cf5fc37b4508 |
parent 2747 | 7889a3a9724f |
child 2867 | 9be6693c78cb |
permissions | -rw-r--r-- |
1804 | 1 |
module CoreTypes where |
2 |
||
3 |
import System.IO |
|
4 |
import Control.Concurrent.Chan |
|
5 |
import Control.Concurrent.STM |
|
6 |
import Data.Word |
|
7 |
import qualified Data.Map as Map |
|
8 |
import qualified Data.IntMap as IntMap |
|
9 |
import qualified Data.IntSet as IntSet |
|
10 |
import Data.Sequence(Seq, empty) |
|
1926
cb46fbdcaa41
Add simple DoS protection mechanism (although better than previous server had)
unc0rr
parents:
1921
diff
changeset
|
11 |
import Data.Time |
1804 | 12 |
import Network |
2352 | 13 |
import Data.Function |
1804 | 14 |
|
1833 | 15 |
|
1804 | 16 |
data ClientInfo = |
17 |
ClientInfo |
|
18 |
{ |
|
2004 | 19 |
clientUID :: !Int, |
1804 | 20 |
sendChan :: Chan [String], |
21 |
clientHandle :: Handle, |
|
22 |
host :: String, |
|
1926
cb46fbdcaa41
Add simple DoS protection mechanism (although better than previous server had)
unc0rr
parents:
1921
diff
changeset
|
23 |
connectTime :: UTCTime, |
1804 | 24 |
nick :: String, |
1841
fba7210b438b
Retrieve client password from web database and ask for it
unc0rr
parents:
1839
diff
changeset
|
25 |
webPassword :: String, |
fba7210b438b
Retrieve client password from web database and ask for it
unc0rr
parents:
1839
diff
changeset
|
26 |
logonPassed :: Bool, |
2004 | 27 |
clientProto :: !Word16, |
28 |
roomID :: !Int, |
|
29 |
pingsQueue :: !Word, |
|
1804 | 30 |
isMaster :: Bool, |
31 |
isReady :: Bool, |
|
2245
c011aecc95e5
unc0rr's patch from issue #144 - prevent spectators from ruining the game
nemo
parents:
2173
diff
changeset
|
32 |
isAdministrator :: Bool, |
2403 | 33 |
clientClan :: String, |
2245
c011aecc95e5
unc0rr's patch from issue #144 - prevent spectators from ruining the game
nemo
parents:
2173
diff
changeset
|
34 |
teamsInGame :: Word |
1804 | 35 |
} |
36 |
||
37 |
instance Show ClientInfo where |
|
2352 | 38 |
show ci = show (clientUID ci) |
2004 | 39 |
++ " nick: " ++ (nick ci) |
40 |
++ " host: " ++ (host ci) |
|
1804 | 41 |
|
42 |
instance Eq ClientInfo where |
|
2352 | 43 |
(==) = (==) `on` clientHandle |
1804 | 44 |
|
45 |
data HedgehogInfo = |
|
46 |
HedgehogInfo String String |
|
47 |
||
48 |
data TeamInfo = |
|
49 |
TeamInfo |
|
50 |
{ |
|
2403 | 51 |
teamownerId :: !Int, |
1804 | 52 |
teamowner :: String, |
53 |
teamname :: String, |
|
54 |
teamcolor :: String, |
|
55 |
teamgrave :: String, |
|
56 |
teamfort :: String, |
|
57 |
teamvoicepack :: String, |
|
2747 | 58 |
teamflag :: String, |
1804 | 59 |
difficulty :: Int, |
60 |
hhnum :: Int, |
|
61 |
hedgehogs :: [HedgehogInfo] |
|
62 |
} |
|
63 |
||
64 |
data RoomInfo = |
|
65 |
RoomInfo |
|
66 |
{ |
|
2004 | 67 |
roomUID :: !Int, |
2408 | 68 |
masterID :: !Int, |
1804 | 69 |
name :: String, |
70 |
password :: String, |
|
71 |
roomProto :: Word16, |
|
72 |
teams :: [TeamInfo], |
|
73 |
gameinprogress :: Bool, |
|
74 |
playersIn :: !Int, |
|
2004 | 75 |
readyPlayers :: !Int, |
1804 | 76 |
playersIDs :: IntSet.IntSet, |
77 |
isRestrictedJoins :: Bool, |
|
78 |
isRestrictedTeams :: Bool, |
|
79 |
roundMsgs :: Seq String, |
|
80 |
leftTeams :: [String], |
|
81 |
teamsAtStart :: [TeamInfo], |
|
82 |
params :: Map.Map String [String] |
|
83 |
} |
|
84 |
||
85 |
instance Show RoomInfo where |
|
2352 | 86 |
show ri = show (roomUID ri) |
87 |
++ ", players ids: " ++ show (IntSet.size $ playersIDs ri) |
|
88 |
++ ", players: " ++ show (playersIn ri) |
|
89 |
++ ", ready: " ++ show (readyPlayers ri) |
|
1804 | 90 |
|
91 |
instance Eq RoomInfo where |
|
2352 | 92 |
(==) = (==) `on` roomUID |
1804 | 93 |
|
94 |
newRoom = ( |
|
95 |
RoomInfo |
|
96 |
0 |
|
2408 | 97 |
0 |
1804 | 98 |
"" |
99 |
"" |
|
100 |
0 |
|
101 |
[] |
|
102 |
False |
|
103 |
0 |
|
104 |
0 |
|
105 |
IntSet.empty |
|
106 |
False |
|
107 |
False |
|
108 |
Data.Sequence.empty |
|
109 |
[] |
|
110 |
[] |
|
111 |
(Map.singleton "MAP" ["+rnd+"]) |
|
112 |
) |
|
113 |
||
114 |
data StatisticsInfo = |
|
115 |
StatisticsInfo |
|
116 |
{ |
|
117 |
playersNumber :: Int, |
|
118 |
roomsNumber :: Int |
|
119 |
} |
|
120 |
||
121 |
data ServerInfo = |
|
122 |
ServerInfo |
|
123 |
{ |
|
124 |
isDedicated :: Bool, |
|
125 |
serverMessage :: String, |
|
1953 | 126 |
serverMessageForOldVersions :: String, |
1804 | 127 |
listenPort :: PortNumber, |
128 |
nextRoomID :: Int, |
|
1832 | 129 |
dbHost :: String, |
130 |
dbLogin :: String, |
|
131 |
dbPassword :: String, |
|
1926
cb46fbdcaa41
Add simple DoS protection mechanism (although better than previous server had)
unc0rr
parents:
1921
diff
changeset
|
132 |
lastLogins :: [(String, UTCTime)], |
1833 | 133 |
stats :: TMVar StatisticsInfo, |
1839
5dd4cb7fd7e5
Server now send ASKPASSWORD command to frontend when user has web account
unc0rr
parents:
1833
diff
changeset
|
134 |
coreChan :: Chan CoreMessage, |
1833 | 135 |
dbQueries :: Chan DBQuery |
1804 | 136 |
} |
137 |
||
138 |
instance Show ServerInfo where |
|
2004 | 139 |
show si = "Server Info" |
1804 | 140 |
|
141 |
newServerInfo = ( |
|
142 |
ServerInfo |
|
143 |
True |
|
144 |
"<h2><p align=center><a href=\"http://www.hedgewars.org/\">http://www.hedgewars.org/</a></p></h2>" |
|
2631
163b0128bd21
A rather tedious rename of "Please," to "Please" triggered by bruce89 in interests of proper grammar. Also updated lrelease-qt4 which should pick up artart78's prior hedgewars_fr.ts fixes. Also a couple of typos in en.txt / fi.txt / pl.txt
nemo
parents:
2551
diff
changeset
|
145 |
"<font color=yellow><h3>Hedgewars 0.9.12 is out! Please update.</h3><p align=center><a href=http://hedgewars.org/download.html>Download page here</a></font>" |
1804 | 146 |
46631 |
147 |
0 |
|
1832 | 148 |
"" |
149 |
"" |
|
150 |
"" |
|
1926
cb46fbdcaa41
Add simple DoS protection mechanism (although better than previous server had)
unc0rr
parents:
1921
diff
changeset
|
151 |
[] |
1804 | 152 |
) |
153 |
||
1839
5dd4cb7fd7e5
Server now send ASKPASSWORD command to frontend when user has web account
unc0rr
parents:
1833
diff
changeset
|
154 |
data AccountInfo = |
1847
2178c0fc838c
Set admin flag and send admin notification to users with rid equal to 3
unc0rr
parents:
1841
diff
changeset
|
155 |
HasAccount String Bool |
1839
5dd4cb7fd7e5
Server now send ASKPASSWORD command to frontend when user has web account
unc0rr
parents:
1833
diff
changeset
|
156 |
| Guest |
1921 | 157 |
| Admin |
2116
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
2104
diff
changeset
|
158 |
deriving (Show, Read) |
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
2104
diff
changeset
|
159 |
|
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
2104
diff
changeset
|
160 |
data DBQuery = |
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
2104
diff
changeset
|
161 |
CheckAccount Int String String |
2155
d897222d3339
Implement ability for server admin to clear accounts cache
unc0rr
parents:
2116
diff
changeset
|
162 |
| ClearCache |
2172 | 163 |
| SendStats Int Int |
2116
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
2104
diff
changeset
|
164 |
deriving (Show, Read) |
1839
5dd4cb7fd7e5
Server now send ASKPASSWORD command to frontend when user has web account
unc0rr
parents:
1833
diff
changeset
|
165 |
|
1804 | 166 |
data CoreMessage = |
167 |
Accept ClientInfo |
|
168 |
| ClientMessage (Int, [String]) |
|
2116
dec7ead2d178
Bring back authentication to official server, now using separate process to perform database interaction
unc0rr
parents:
2104
diff
changeset
|
169 |
| ClientAccountInfo (Int, AccountInfo) |
2173 | 170 |
| TimerAction Int |
1804 | 171 |
|
172 |
type Clients = IntMap.IntMap ClientInfo |
|
173 |
type Rooms = IntMap.IntMap RoomInfo |
|
174 |
||
175 |
--type ClientsTransform = [ClientInfo] -> [ClientInfo] |
|
176 |
--type RoomsTransform = [RoomInfo] -> [RoomInfo] |
|
177 |
--type HandlesSelector = ClientInfo -> [ClientInfo] -> [RoomInfo] -> [ClientInfo] |
|
178 |
--type Answer = ServerInfo -> (HandlesSelector, [String]) |
|
179 |
||
180 |
type ClientsSelector = Clients -> Rooms -> [Int] |