Program.cs 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. //using Pomelo.DotNetClient.Test;
  2. //using Pomelo;
  3. using Newtonsoft.Json;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Dynamic;
  7. using System.Linq;
  8. using System.Threading;
  9. using System.Web.Helpers;
  10. using System.Web.Script.Serialization;
  11. using ZeusServerEdgeJS;
  12. namespace ZeusServerEdgeJSTest
  13. {
  14. static class Program
  15. {
  16. //static void testJson()
  17. //{
  18. // JavaScriptSerializer js = new JavaScriptSerializer();
  19. // string input = "{\"name\":\"test1\"}";
  20. // var obj = js.DeserializeObject(input);
  21. // dynamic data = Json.Decode(input);
  22. //}
  23. //static void start()
  24. //{
  25. // string workDir = "c:/work/zeus/game-server/";
  26. // string json = @"{
  27. // iceConfig:{host:""127.0.0.1"",port:3900},
  28. // zoneConfig:{startPath:""C:/work/zeus/game-server/node_modules/zeus-csharp/lib/dll"",assetPath:""C:/work/zeus/game-server/node_modules/zeus-csharp/data""},
  29. // fastStreamConfig:{port:3360},
  30. // logConfig:{
  31. // configFile:""c:/work/zeus/game-server/config/log/log4net.config"",
  32. // outputPath:""c:/work/zeus/game-server/"",
  33. // level:100
  34. // }
  35. // }";
  36. // dynamic config = Json.Decode(json);
  37. // //dynamic config = new
  38. // //{
  39. // // zoneConfig = new
  40. // // {
  41. // // startPath = Environment.CurrentDirectory,
  42. // // assetPath = workDir + "node_modules/zeus-csharp/data",
  43. // // },
  44. // // iceConfig = new
  45. // // {
  46. // // host = "127.0.0.1",
  47. // // port = 3900
  48. // // },
  49. // // fastStreamConfig = new
  50. // // {
  51. // // port = 3360,
  52. // // },
  53. // // logConfig = new
  54. // // {
  55. // // configFile = workDir + "config/log/log4net.config",
  56. // // outputPath = workDir,
  57. // // level = 100
  58. // // }
  59. // //};
  60. // string t = (string)config.zoneConfig.startPath;
  61. // new EdgeJS().init(config);
  62. // //Console.WriteLine("program start ok");
  63. //}
  64. /// <summary>
  65. /// 应用程序的主入口点。
  66. /// </summary>
  67. [STAThread]
  68. static void Main()
  69. {
  70. Console.WriteLine(DateTime.Now.ToString("o"));
  71. dynamic data = new ExpandoObject();
  72. data.type = "csharpStat";
  73. data.activeObjectCount = 6;
  74. data.activeZoneCount = 4;
  75. data.zoneCount = 1;
  76. data.playerCount = 2;
  77. data.private_memory_mb = 500;
  78. data.@timestamp = DateTime.Now.ToString("o");
  79. string msg = JsonConvert.SerializeObject(data);
  80. msg = msg.Replace("timestamp", "@timestamp");
  81. // msg = msg.Insert(msg.Length - 1, ",\"@timestamp\":\"" + DateTime.Now.ToString("o") + "\"");
  82. // ((IDictionary<string, object>)msg).Add("b", "aaa");
  83. // Console.WriteLine(msg.name);
  84. //(msg as dynamic)["@timestamp"] = DateTime.Now.ToString("o");
  85. //(msg as dynamic)["fields"] = new
  86. //{
  87. // level = "info",
  88. // category = "monitor",
  89. // serverType = "csharp",
  90. // serverId = "s1"
  91. //};
  92. Console.WriteLine(msg);
  93. // start();
  94. // var currentDir = Environment.GetCommandLineArgs
  95. // testJson();
  96. // IceManager.Init(new string[0], "127.0.0.1",3900);
  97. // ZoneService.instance().start(config);
  98. do
  99. {
  100. Thread.Sleep(500);
  101. }
  102. while (true);
  103. }
  104. }
  105. }