| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using System.Net;
- using Model;
- namespace Hotfix
- {
- [ObjectSystem]
- public class NetInnerComponentSystem : ObjectSystem<NetInnerComponent>, IAwake, IAwake<IPEndPoint>, IUpdate
- {
- public void Awake()
- {
- this.Get().Awake();
- }
- public void Awake(IPEndPoint ipEndPoint)
- {
- this.Get().Awake(ipEndPoint);
- }
- public void Update()
- {
- this.Get().Update();
- }
- }
-
- public static class NetInnerComponentEx
- {
- public static void Awake(this NetInnerComponent self)
- {
- self.Awake(NetworkProtocol.TCP);
- self.MessagePacker = new MongoPacker();
- self.MessageDispatcher = new InnerMessageDispatcher();
- self.AppType = self.Parent.GetComponent<StartConfigComponent>().StartConfig.AppType;
- }
- public static void Awake(this NetInnerComponent self, IPEndPoint ipEndPoint)
- {
- self.Awake(NetworkProtocol.TCP, ipEndPoint);
- self.MessagePacker = new MongoPacker();
- self.MessageDispatcher = new InnerMessageDispatcher();
- self.AppType = self.Parent.GetComponent<StartConfigComponent>().StartConfig.AppType;
- }
- public static void Update(this NetInnerComponent self)
- {
- self.Update();
- }
- }
- }
|