1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- using System;
- using System.Reflection;
- namespace ET.Server
- {
- [ConsoleHandler(ConsoleMode.Robot)]
- public class RobotConsoleHandler: IConsoleHandler
- {
- public async ETTask Run(ModeContex contex, string content)
- {
- string[] ss = content.Split(" ");
- switch (ss[0])
- {
- case ConsoleMode.Robot:
- break;
- case "Run":
- {
- int caseType = int.Parse(ss[1]);
- try
- {
- RobotLog.Debug($"run case start: {caseType}");
- await EventSystem.Instance.Invoke<RobotInvokeArgs, ETTask>(caseType, new RobotInvokeArgs() { Content = content });
- RobotLog.Debug($"run case finish: {caseType}");
- }
- catch (Exception e)
- {
- RobotLog.Debug($"run case error: {caseType}\n{e}");
- }
- break;
- }
- case "RunAll":
- {
- FieldInfo[] fieldInfos = typeof (RobotCaseType).GetFields();
- foreach (FieldInfo fieldInfo in fieldInfos)
- {
- int caseType = (int)fieldInfo.GetValue(null);
- if (caseType > RobotCaseType.MaxCaseType)
- {
- RobotLog.Debug($"case > {RobotCaseType.MaxCaseType}: {caseType}");
- break;
- }
- try
- {
- RobotLog.Debug($"run case start: {caseType}");
- await EventSystem.Instance.Invoke<RobotInvokeArgs, ETTask>(caseType, new RobotInvokeArgs() { Content = content});
- RobotLog.Debug($"---------run case finish: {caseType}");
- }
- catch (Exception e)
- {
- RobotLog.Debug($"run case error: {caseType}\n{e}");
- break;
- }
- }
- break;
- }
- }
- await ETTask.CompletedTask;
- }
- }
- }
|