mirror of
https://github.com/DCFApixels/DragonECS.git
synced 2025-09-18 09:54:35 +08:00
Add debug feature
This commit is contained in:
parent
e2ebe33b57
commit
aa80699f5a
8
src/Debug.meta
Normal file
8
src/Debug.meta
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 2121c71030effff4ab087ff83e5cfc95
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
154
src/Debug/EcsDebug.cs
Normal file
154
src/Debug/EcsDebug.cs
Normal file
@ -0,0 +1,154 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Diagnostics;
|
||||||
|
|
||||||
|
|
||||||
|
namespace DCFApixels.DragonECS
|
||||||
|
{
|
||||||
|
public static class EcsDebug
|
||||||
|
{
|
||||||
|
public static void Set<T>() where T : DebugService, new() => DebugService.Set<T>();
|
||||||
|
public static void Set(DebugService service) => DebugService.Set(service);
|
||||||
|
|
||||||
|
|
||||||
|
public static void Print(object v) => DebugService.Instance.Print(v);
|
||||||
|
public static void Print(string tag, object v)
|
||||||
|
{
|
||||||
|
#if !DISABLE_ECS_DEBUG
|
||||||
|
DebugService.Instance.Print(tag, v);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
public static int RegisterMark(string name)
|
||||||
|
{
|
||||||
|
#if !DISABLE_ECS_DEBUG
|
||||||
|
return DebugService.Instance.RegisterMark(name);
|
||||||
|
#else
|
||||||
|
return 0;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
public static void DeleteMark(string name)
|
||||||
|
{
|
||||||
|
#if !DISABLE_ECS_DEBUG
|
||||||
|
DebugService.Instance.DeleteMark(name);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
public static void ProfileMarkBegin(int id)
|
||||||
|
{
|
||||||
|
#if !DISABLE_ECS_DEBUG
|
||||||
|
DebugService.Instance.ProfileMarkBegin(id);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
public static double ProfileMarkEnd(int id)
|
||||||
|
{
|
||||||
|
#if !DISABLE_ECS_DEBUG
|
||||||
|
return DebugService.Instance.ProfileMarkEnd(id);
|
||||||
|
#else
|
||||||
|
return 0;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
public abstract class DebugService
|
||||||
|
{
|
||||||
|
private static DebugService _instance;
|
||||||
|
|
||||||
|
public static DebugService Instance
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
if (_instance == null)
|
||||||
|
{
|
||||||
|
_instance = new DefaultDebugService();
|
||||||
|
}
|
||||||
|
return _instance;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void Set<T>() where T : DebugService, new() => Set(new T());
|
||||||
|
public static void Set(DebugService service)
|
||||||
|
{
|
||||||
|
_instance = service;
|
||||||
|
OnServiceChanged(_instance);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public static Action<DebugService> OnServiceChanged = delegate { };
|
||||||
|
|
||||||
|
|
||||||
|
private IntDispenser _idDispenser = new IntDispenser(0);
|
||||||
|
private Dictionary<string, int> _nameIdTable = new Dictionary<string, int>();
|
||||||
|
|
||||||
|
public void Print(object v) => Print(null, v);
|
||||||
|
public abstract void Print(string tag, object v);
|
||||||
|
|
||||||
|
|
||||||
|
public int RegisterMark(string name)
|
||||||
|
{
|
||||||
|
int id;
|
||||||
|
if(!_nameIdTable.TryGetValue(name, out id))
|
||||||
|
{
|
||||||
|
id = _idDispenser.GetFree();
|
||||||
|
_nameIdTable.Add(name, id);
|
||||||
|
}
|
||||||
|
OnNewMark(id, name);
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
public void DeleteMark(string name)
|
||||||
|
{
|
||||||
|
int id = _nameIdTable[name];
|
||||||
|
_nameIdTable.Remove(name);
|
||||||
|
_idDispenser.Release(id);
|
||||||
|
OnDelMark(id);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
protected abstract void OnNewMark(int id, string name);
|
||||||
|
protected abstract void OnDelMark(int id);
|
||||||
|
|
||||||
|
public abstract void ProfileMarkBegin(int id);
|
||||||
|
public abstract double ProfileMarkEnd(int id);
|
||||||
|
|
||||||
|
// public abstract IEnumerable<>
|
||||||
|
}
|
||||||
|
|
||||||
|
public sealed class DefaultDebugService : DebugService
|
||||||
|
{
|
||||||
|
private Stopwatch[] _stopwatchs;
|
||||||
|
|
||||||
|
public DefaultDebugService()
|
||||||
|
{
|
||||||
|
#if !DISABLE_ECS_DEBUG
|
||||||
|
_stopwatchs = new Stopwatch[64];
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void Print(string tag, object v)
|
||||||
|
{
|
||||||
|
Console.WriteLine($"[{tag}] {v}");
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void ProfileMarkBegin(int id)
|
||||||
|
{
|
||||||
|
_stopwatchs[id].Start();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override double ProfileMarkEnd(int id)
|
||||||
|
{
|
||||||
|
_stopwatchs[id].Stop();
|
||||||
|
var time = _stopwatchs[id].Elapsed;
|
||||||
|
_stopwatchs[id].Reset();
|
||||||
|
return time.TotalSeconds;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void OnDelMark(int id)
|
||||||
|
{
|
||||||
|
_stopwatchs[id] = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void OnNewMark(int id, string name)
|
||||||
|
{
|
||||||
|
if (id >= _stopwatchs.Length) Array.Resize(ref _stopwatchs, _stopwatchs.Length << 1);
|
||||||
|
_stopwatchs[id] = new Stopwatch();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
11
src/Debug/EcsDebug.cs.meta
Normal file
11
src/Debug/EcsDebug.cs.meta
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 0b40701424b50164b9c76021678c908b
|
||||||
|
MonoImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {instanceID: 0}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
@ -27,6 +27,12 @@ namespace DCFApixels.DragonECS
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = true)]
|
||||||
|
sealed class MyAttribute : Attribute
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
public interface IEcsSystem { }
|
public interface IEcsSystem { }
|
||||||
public interface IEcsRunner
|
public interface IEcsRunner
|
||||||
{
|
{
|
||||||
@ -211,15 +217,19 @@ namespace DCFApixels.DragonECS
|
|||||||
public IList Targets => _targetsSealed;
|
public IList Targets => _targetsSealed;
|
||||||
public object Filter => _filter;
|
public object Filter => _filter;
|
||||||
public bool IsHasFilter => _isHasFilter;
|
public bool IsHasFilter => _isHasFilter;
|
||||||
|
|
||||||
private EcsRunner<TInterface> Set(TInterface[] targets, bool isHasFilter, object filter)
|
private EcsRunner<TInterface> Set(TInterface[] targets, bool isHasFilter, object filter)
|
||||||
{
|
{
|
||||||
this.targets = targets;
|
this.targets = targets;
|
||||||
_targetsSealed = new ReadOnlyCollection<TInterface>(targets);
|
_targetsSealed = new ReadOnlyCollection<TInterface>(targets);
|
||||||
_filter = filter;
|
_filter = filter;
|
||||||
_isHasFilter = isHasFilter;
|
_isHasFilter = isHasFilter;
|
||||||
|
OnSetup();
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected virtual void OnSetup() { }
|
||||||
|
|
||||||
internal void Rebuild(IEnumerable<IEcsSystem> targets)
|
internal void Rebuild(IEnumerable<IEcsSystem> targets)
|
||||||
{
|
{
|
||||||
if(_isHasFilter)
|
if(_isHasFilter)
|
||||||
|
Loading…
Reference in New Issue
Block a user