mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-22 20:57:47 +00:00

- regex'd in mysqlexception logging - servers can now specify server_port, log_path, log_file - added scripts to import/export all tables (exporting will export a handful of garbage table names, open and check for structure before deleting) - fixed packet logging (thanks deviltti)
67 lines
2 KiB
C#
67 lines
2 KiB
C#
using System;
|
|
using System.Diagnostics;
|
|
using System.Threading;
|
|
using MySql.Data.MySqlClient;
|
|
using System.Reflection;
|
|
using FFXIVClassic_Lobby_Server.common;
|
|
|
|
namespace FFXIVClassic_Lobby_Server
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
#if DEBUG
|
|
TextWriterTraceListener myWriter = new TextWriterTraceListener(System.Console.Out);
|
|
Debug.Listeners.Add(myWriter);
|
|
#endif
|
|
|
|
bool startServer = true;
|
|
|
|
//Load Config
|
|
if (!ConfigConstants.load())
|
|
startServer = false;
|
|
|
|
Log.log("--------FFXIV 1.0 Lobby Server--------", Log.LogType.Debug);
|
|
|
|
|
|
Assembly assem = Assembly.GetExecutingAssembly();
|
|
Version vers = assem.GetName().Version;
|
|
Log.info("Version: " + vers.ToString());
|
|
|
|
//Test DB Connection
|
|
Log.info(String.Format("Testing DB connection to \"{0}\"... ", ConfigConstants.DATABASE_HOST));
|
|
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();
|
|
|
|
Log.conn("[OK]");
|
|
}
|
|
catch (MySqlException e)
|
|
{
|
|
Log.error(e.ToString());
|
|
Log.error("[FAILED]");
|
|
|
|
startServer = false;
|
|
}
|
|
}
|
|
|
|
//Start Server if A-OK
|
|
if (startServer)
|
|
{
|
|
Server server = new Server();
|
|
server.startServer();
|
|
|
|
while (true) Thread.Sleep(10000);
|
|
}
|
|
|
|
Log.info("Press any key to continue...");
|
|
Console.ReadKey();
|
|
}
|
|
|
|
|
|
}
|
|
}
|