2019-06-18 22:55:32 -04:00
|
|
|
|
/*
|
|
|
|
|
===========================================================================
|
|
|
|
|
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;
|
2016-06-14 05:09:30 +01:00
|
|
|
|
using NLog;
|
2015-09-25 18:52:25 -04:00
|
|
|
|
|
2016-06-08 22:29:04 +01:00
|
|
|
|
namespace FFXIVClassic_Map_Server
|
2015-09-25 18:52:25 -04:00
|
|
|
|
{
|
|
|
|
|
class Program
|
|
|
|
|
{
|
2016-06-14 05:09:30 +01:00
|
|
|
|
public static Logger Log;
|
2017-05-27 02:17:25 +01:00
|
|
|
|
public static Server Server;
|
|
|
|
|
public static Random Random;
|
2017-07-18 04:51:35 +01:00
|
|
|
|
public static DateTime LastTick = DateTime.Now;
|
|
|
|
|
public static DateTime Tick = DateTime.Now;
|
2016-06-12 20:12:59 +01:00
|
|
|
|
|
2015-09-25 18:52:25 -04:00
|
|
|
|
static void Main(string[] args)
|
2016-06-16 01:50:13 +01:00
|
|
|
|
{
|
|
|
|
|
// set up logging
|
2016-06-15 19:14:21 +01:00
|
|
|
|
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;
|
|
|
|
|
|
2017-07-06 22:30:03 -05:00
|
|
|
|
Log.Info("==================================");
|
|
|
|
|
Log.Info("FFXIV Classic Map Server");
|
2017-08-26 14:00:40 -04:00
|
|
|
|
Log.Info("Version: 0.1");
|
2017-07-06 22:30:03 -05:00
|
|
|
|
Log.Info("==================================");
|
2016-06-15 10:40:30 -04:00
|
|
|
|
|
2016-06-08 22:29:04 +01:00
|
|
|
|
//Load Config
|
2016-12-04 21:41:34 +00:00
|
|
|
|
ConfigConstants.Load();
|
|
|
|
|
ConfigConstants.ApplyLaunchArgs(args);
|
2016-06-14 21:29:10 +01:00
|
|
|
|
|
2015-09-25 18:52:25 -04:00
|
|
|
|
//Test DB Connection
|
2016-06-12 20:12:59 +01:00
|
|
|
|
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-08 22:29:04 +01:00
|
|
|
|
|
2016-06-15 10:40:30 -04:00
|
|
|
|
Program.Log.Info("Connection ok.");
|
2015-09-25 18:52:25 -04:00
|
|
|
|
}
|
|
|
|
|
catch (MySqlException e)
|
|
|
|
|
{
|
2016-06-12 20:12:59 +01:00
|
|
|
|
Program.Log.Error(e.ToString());
|
2015-09-25 18:52:25 -04:00
|
|
|
|
startServer = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-12-21 09:27:51 -05:00
|
|
|
|
|
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();
|
2017-06-14 20:01:15 +01:00
|
|
|
|
Tick = DateTime.Now;
|
2017-05-27 02:17:25 +01:00
|
|
|
|
Server.StartServer();
|
2015-09-25 18:52:25 -04:00
|
|
|
|
|
2016-06-14 05:09:30 +01:00
|
|
|
|
while (startServer)
|
2015-10-04 22:43:22 -04:00
|
|
|
|
{
|
|
|
|
|
String input = Console.ReadLine();
|
2016-06-14 05:09:30 +01:00
|
|
|
|
Log.Info("[Console Input] " + input);
|
2016-08-29 12:48:23 -04:00
|
|
|
|
Server.GetCommandProcessor().DoCommand(input, null);
|
2015-10-04 22:43:22 -04:00
|
|
|
|
}
|
2015-09-25 18:52:25 -04:00
|
|
|
|
}
|
|
|
|
|
|
2016-06-12 20:12:59 +01:00
|
|
|
|
Program.Log.Info("Press any key to continue...");
|
2015-09-25 18:52:25 -04:00
|
|
|
|
Console.ReadKey();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|