169 lines
4.2 KiB
C#
169 lines
4.2 KiB
C#
using System;
|
|
using UnityEngine;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using Debug = UnityEngine.Debug;
|
|
|
|
namespace Dreamteck
|
|
{
|
|
public class AsyncJobSystem : MonoBehaviour
|
|
{
|
|
private Queue<IJobData> _jobs = new Queue<IJobData>();
|
|
|
|
private IJobData _currentJob = null;
|
|
|
|
private bool _isWorking = false;
|
|
|
|
public AsyncJobOperation ScheduleJob<T>(JobData<T> data)
|
|
{
|
|
_jobs.Enqueue(data);
|
|
return new AsyncJobOperation(data);
|
|
}
|
|
|
|
private void Update()
|
|
{
|
|
if (_jobs.Count > 0 && !_isWorking)
|
|
{
|
|
StartCoroutine(JobCoroutine());
|
|
}
|
|
}
|
|
|
|
private IEnumerator JobCoroutine()
|
|
{
|
|
_isWorking = true;
|
|
|
|
while (_jobs.Count > 0)
|
|
{
|
|
_currentJob = _jobs.Dequeue();
|
|
_currentJob.Initialize();
|
|
|
|
while (!_currentJob.done)
|
|
{
|
|
_currentJob.Next();
|
|
yield return null;
|
|
}
|
|
|
|
_currentJob.Complete();
|
|
_currentJob = null;
|
|
|
|
yield return null;
|
|
}
|
|
|
|
_isWorking = false;
|
|
}
|
|
|
|
|
|
public class AsyncJobOperation : CustomYieldInstruction
|
|
{
|
|
private IJobData _job;
|
|
|
|
public AsyncJobOperation(IJobData job)
|
|
{
|
|
_job = job;
|
|
}
|
|
|
|
public override bool keepWaiting {
|
|
get { return !_job.done; }
|
|
}
|
|
}
|
|
|
|
public interface IJobData
|
|
{
|
|
bool done { get; }
|
|
|
|
void Initialize();
|
|
|
|
void Next();
|
|
|
|
void Complete();
|
|
}
|
|
|
|
public class JobData<T> : IJobData
|
|
{
|
|
private int _index;
|
|
|
|
private int _iterations = 0;
|
|
|
|
private IEnumerable<T> _collection;
|
|
|
|
private Action<JobData<T>> _onComplete;
|
|
|
|
private Action<JobData<T>> _onIteration;
|
|
|
|
private IEnumerator<T> _enumerator;
|
|
|
|
public T current { get { return _enumerator.Current; } }
|
|
|
|
public int index { get { return _index; } }
|
|
|
|
public IEnumerable<T> collection { get { return _collection; } }
|
|
|
|
public bool done { get; private set; }
|
|
|
|
public JobData(IEnumerable<T> collection, int iterations, Action<JobData<T>> onIteration)
|
|
{
|
|
_collection = collection;
|
|
_onIteration = onIteration;
|
|
_iterations = iterations;
|
|
done = false;
|
|
}
|
|
|
|
public JobData(IEnumerable<T> collection, int iterations, Action<JobData<T>> onIteration, Action<JobData<T>> onComplete) :
|
|
this(collection, iterations, onIteration)
|
|
{
|
|
_onComplete = onComplete;
|
|
}
|
|
|
|
public void Initialize()
|
|
{
|
|
_enumerator = _collection.GetEnumerator();
|
|
_index = -1;
|
|
done = !_enumerator.MoveNext();
|
|
}
|
|
|
|
public void Complete()
|
|
{
|
|
_enumerator.Dispose();
|
|
|
|
try
|
|
{
|
|
if (_onComplete != null) {
|
|
_onComplete(this);
|
|
}
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
Debug.LogException(e);
|
|
}
|
|
}
|
|
|
|
public void Next()
|
|
{
|
|
int counter = _iterations;
|
|
|
|
if (done)
|
|
{
|
|
return;
|
|
}
|
|
do
|
|
{
|
|
_index++;
|
|
|
|
try
|
|
{
|
|
if(_onIteration != null)
|
|
{
|
|
_onIteration(this);
|
|
}
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
Debug.LogException(e);
|
|
}
|
|
done = !_enumerator.MoveNext();
|
|
}
|
|
while (!done && --counter > 0);
|
|
}
|
|
}
|
|
}
|
|
} |