author | Wuzzy <almikes@aol.com> |
Thu, 27 Apr 2017 02:42:40 +0200 | |
changeset 12356 | 62b935bec899 |
parent 11046 | 47a8c19ecb60 |
permissions | -rw-r--r-- |
10460
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10051
diff
changeset
|
1 |
{- |
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10051
diff
changeset
|
2 |
* Hedgewars, a free turn based strategy game |
11046 | 3 |
* Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com> |
10460
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10051
diff
changeset
|
4 |
* |
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10051
diff
changeset
|
5 |
* This program is free software; you can redistribute it and/or modify |
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10051
diff
changeset
|
6 |
* it under the terms of the GNU General Public License as published by |
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10051
diff
changeset
|
7 |
* the Free Software Foundation; version 2 of the License |
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10051
diff
changeset
|
8 |
* |
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10051
diff
changeset
|
9 |
* This program is distributed in the hope that it will be useful, |
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10051
diff
changeset
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10051
diff
changeset
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10051
diff
changeset
|
12 |
* GNU General Public License for more details. |
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10051
diff
changeset
|
13 |
* |
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10051
diff
changeset
|
14 |
* You should have received a copy of the GNU General Public License |
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10051
diff
changeset
|
15 |
* along with this program; if not, write to the Free Software |
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10051
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10051
diff
changeset
|
17 |
\-} |
8dcea9087d75
Added copyrights to gameServer directory
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
10051
diff
changeset
|
18 |
|
4921 | 19 |
{-# LANGUAGE CPP, ScopedTypeVariables, OverloadedStrings #-} |
1804 | 20 |
|
21 |
module Main where |
|
22 |
||
4568 | 23 |
import Network.Socket |
24 |
import Network.BSD |
|
1804 | 25 |
import Control.Concurrent.Chan |
4960 | 26 |
import qualified Control.Exception as E |
1804 | 27 |
import System.Log.Logger |
28 |
----------------------------------- |
|
29 |
import Opts |
|
30 |
import CoreTypes |
|
31 |
import ServerCore |
|
4991 | 32 |
#if defined(OFFICIAL_SERVER) |
4974
078cd026a7b1
Add stubs for server config reading and writing routines
unc0rr
parents:
4973
diff
changeset
|
33 |
import ConfigFile |
4991 | 34 |
#endif |
1804 | 35 |
|
36 |
#if !defined(mingw32_HOST_OS) |
|
37 |
import System.Posix |
|
38 |
#endif |
|
39 |
||
40 |
||
4905 | 41 |
setupLoggers :: IO () |
5209
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5119
diff
changeset
|
42 |
setupLoggers = do |
10820
e86ba0e821a6
Fix bug, undo debug level in server, set air mine number to something non-debug
nemo
parents:
10818
diff
changeset
|
43 |
updateGlobalLogger "Clients" (setLevel NOTICE) |
5209
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5119
diff
changeset
|
44 |
updateGlobalLogger "Core" (setLevel NOTICE) |
10051 | 45 |
updateGlobalLogger "REPLAYS" (setLevel NOTICE) |
1804 | 46 |
|
4960 | 47 |
|
4989 | 48 |
server :: ServerInfo -> IO () |
4960 | 49 |
server si = do |
50 |
proto <- getProtocolNumber "tcp" |
|
51 |
E.bracket |
|
52 |
(socket AF_INET Stream proto) |
|
53 |
sClose |
|
54 |
(\sock -> do |
|
55 |
setSocketOption sock ReuseAddr 1 |
|
56 |
bindSocket sock (SockAddrInet (listenPort si) iNADDR_ANY) |
|
57 |
listen sock maxListenQueue |
|
5209
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5119
diff
changeset
|
58 |
startServer si{serverSocket = Just sock} |
4960 | 59 |
) |
60 |
||
61 |
handleRestart :: ShutdownException -> IO () |
|
5209
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5119
diff
changeset
|
62 |
handleRestart ShutdownException = do |
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5119
diff
changeset
|
63 |
noticeM "Core" "Shutting down" |
4960 | 64 |
return () |
65 |
||
4905 | 66 |
main :: IO () |
1804 | 67 |
main = withSocketsDo $ do |
68 |
#if !defined(mingw32_HOST_OS) |
|
4932 | 69 |
_ <- installHandler sigPIPE Ignore Nothing |
70 |
_ <- installHandler sigCHLD Ignore Nothing |
|
1804 | 71 |
#endif |
72 |
||
2867
9be6693c78cb
- Unbreak support for client versions prior to 0.9.13-dev
unc0rr
parents:
2349
diff
changeset
|
73 |
setupLoggers |
1804 | 74 |
|
2867
9be6693c78cb
- Unbreak support for client versions prior to 0.9.13-dev
unc0rr
parents:
2349
diff
changeset
|
75 |
dbQueriesChan <- newChan |
4905 | 76 |
coreChan' <- newChan |
5209
f7a610e2ef5f
On restart command close server socket and spawn new server, keep running until last client quits
unc0rr
parents:
5119
diff
changeset
|
77 |
serverInfo' <- getOpts $ newServerInfo coreChan' dbQueriesChan Nothing Nothing |
4905 | 78 |
|
1964 | 79 |
#if defined(OFFICIAL_SERVER) |
4975
31da8979e5b1
Use Data.TConfig to read and store server config in hedgewars.ini (a little bit of hate to the author for not exporting Conf type)
unc0rr
parents:
4974
diff
changeset
|
80 |
si <- readServerConfig serverInfo' |
1964 | 81 |
#else |
4960 | 82 |
let si = serverInfo' |
1964 | 83 |
#endif |
84 |
||
4960 | 85 |
(server si) `E.catch` handleRestart |