You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

65 lines
2.0 KiB

using System;
using System.Threading;
using CommandLine;
using NLog;
namespace ET
{
internal static class Program
{
private static int Main(string[] args)
{
AppDomain.CurrentDomain.UnhandledException += (sender, e) =>
{
Log.Error(e.ExceptionObject.ToString());
};
ETTask.ExceptionHandler += Log.Error;
// 异步方法全部会回掉到主线程
SynchronizationContext.SetSynchronizationContext(ThreadSynchronizationContext.Instance);
try
{
Game.EventSystem.Add(typeof(Game).Assembly);
ProtobufHelper.Init();
MongoRegister.Init();
// 命令行参数
Options options = null;
Parser.Default.ParseArguments<Options>(args)
.WithNotParsed(error => throw new Exception($"命令行格式错误!"))
.WithParsed(o => { options = o; });
Options.Instance = options;
Log.ILog = new NLogger(Game.Options.AppType.ToString());
LogManager.Configuration.Variables["appIdFormat"] = $"{Game.Options.Process:000000}";
Log.Info($"server start........................ {Game.Scene.Id}");
switch (Game.Options.AppType)
{
case AppType.ExcelExporter:
{
Game.Options.Console = 1;
ExcelExporter.Export();
return 0;
}
case AppType.Proto2CS:
{
Game.Options.Console = 1;
Proto2CS.Export();
return 0;
}
}
}
catch (Exception e)
{
Log.Console(e.ToString());
}
return 1;
}
}
}