1
Fork 0
mirror of https://bitbucket.org/Ioncannon/project-meteor-server.git synced 2025-04-20 11:47:48 +00:00
project-meteor-server/Map Server/Program.cs

97 lines
3.2 KiB
C#
Raw Normal View History

/*
===========================================================================
Copyright (C) 2015-2019 Project Meteor Dev Team
This file is part of Project Meteor Server.
Project Meteor Server is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Project Meteor Server is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with Project Meteor Server. If not, see <https:www.gnu.org/licenses/>.
===========================================================================
*/
using System;
2015-09-25 18:52:25 -04:00
using System.Diagnostics;
using MySql.Data.MySqlClient;
using NLog;
2015-09-25 18:52:25 -04:00
namespace Meteor.Map
2015-09-25 18:52:25 -04:00
{
class Program
{
public static Logger Log;
2017-05-27 02:17:25 +01:00
public static Server Server;
public static Random Random;
public static DateTime LastTick = DateTime.Now;
public static DateTime Tick = DateTime.Now;
2015-09-25 18:52:25 -04:00
static void Main(string[] args)
2016-06-16 01:50:13 +01:00
{
// set up logging
Log = LogManager.GetCurrentClassLogger();
2015-09-25 18:52:25 -04:00
#if DEBUG
TextWriterTraceListener myWriter = new TextWriterTraceListener(System.Console.Out);
Debug.Listeners.Add(myWriter);
#endif
bool startServer = true;
Log.Info("==================================");
Log.Info("Project Meteor: Map Server");
2017-08-26 14:00:40 -04:00
Log.Info("Version: 0.1");
Log.Info("==================================");
2016-06-15 10:40:30 -04:00
//Load Config
ConfigConstants.Load();
ConfigConstants.ApplyLaunchArgs(args);
2015-09-25 18:52:25 -04:00
//Test DB Connection
Program.Log.Info("Testing DB connection... ");
2015-09-25 18:52:25 -04:00
using (MySqlConnection conn = new MySqlConnection(String.Format("Server={0}; Port={1}; Database={2}; UID={3}; Password={4}", ConfigConstants.DATABASE_HOST, ConfigConstants.DATABASE_PORT, ConfigConstants.DATABASE_NAME, ConfigConstants.DATABASE_USERNAME, ConfigConstants.DATABASE_PASSWORD)))
{
try
{
conn.Open();
conn.Close();
2016-06-15 10:40:30 -04:00
Program.Log.Info("Connection ok.");
2015-09-25 18:52:25 -04:00
}
catch (MySqlException e)
{
Program.Log.Error(e.ToString());
2015-09-25 18:52:25 -04:00
startServer = false;
}
}
2015-09-25 18:52:25 -04:00
//Start server if A-OK
if (startServer)
{
2017-05-27 02:17:25 +01:00
Random = new Random();
Server = new Server();
Tick = DateTime.Now;
2017-05-27 02:17:25 +01:00
Server.StartServer();
2015-09-25 18:52:25 -04:00
while (startServer)
{
String input = Console.ReadLine();
Log.Info("[Console Input] " + input);
Server.GetCommandProcessor().DoCommand(input, null);
}
2015-09-25 18:52:25 -04:00
}
Program.Log.Info("Press any key to continue...");
2015-09-25 18:52:25 -04:00
Console.ReadKey();
}
}
}