1
0
Fork 0
forked from aly/qstbak

muffin v7.5.6

This commit is contained in:
alydev 2026-08-17 20:27:25 +10:00
parent 6266f9e6b7
commit addf2d530f
619 changed files with 264792 additions and 446022 deletions

View file

@ -4,7 +4,7 @@ namespace Questionable.Controller.Steps.Common;
internal abstract class AbstractDelayedTaskExecutor<T> : TaskExecutor<T> where T : class, ITask
{
private DateTime _continueAt;
private long _continueAtMs;
protected TimeSpan Delay { get; set; }
@ -21,7 +21,7 @@ internal abstract class AbstractDelayedTaskExecutor<T> : TaskExecutor<T> where T
protected sealed override bool Start()
{
bool result = StartInternal();
_continueAt = DateTime.Now.Add(Delay);
_continueAtMs = _200D_206E_200D_200E_202D_202A_206F_202D_200D_206F_206D_202E_202D_202C_200B_200B_206E_200D_202B_206A_200C_200C_202E_206F_206D_200B_200D_206A_200E_202D_200B_200D_202D_202E_206D_200E_202C_206F_200C_202C_202E() + (long)Delay.TotalMilliseconds;
return result;
}
@ -29,15 +29,36 @@ internal abstract class AbstractDelayedTaskExecutor<T> : TaskExecutor<T> where T
public override ETaskResult Update()
{
if (_continueAt >= DateTime.Now)
int num = ((_200D_206E_200D_200E_202D_202A_206F_202D_200D_206F_206D_202E_202D_202C_200B_200B_206E_200D_202B_206A_200C_200C_202E_206F_206D_200B_200D_206A_200E_202D_200B_200D_202D_202E_206D_200E_202C_206F_200C_202C_202E() >= _continueAtMs) ? 741757895 : 741757892);
while (true)
{
return ETaskResult.StillRunning;
int num2 = num;
int num3 = 741757894;
int num4 = num2;
int num5 = num4 + num3;
int num6 = num4 & num3;
switch (num5 - (num6 + num6))
{
case 0:
goto IL_004d;
case 1:
return UpdateInternal();
case 2:
return ETaskResult.StillRunning;
}
continue;
IL_004d:
num = 741757892;
}
return UpdateInternal();
}
protected virtual ETaskResult UpdateInternal()
{
return ETaskResult.TaskComplete;
}
static long _200D_206E_200D_200E_202D_202A_206F_202D_200D_206F_206D_202E_202D_202C_200B_200B_206E_200D_202B_206A_200C_200C_202E_206F_206D_200B_200D_206A_200E_202D_200B_200D_202D_202E_206D_200E_202C_206F_200C_202C_202E()
{
return Environment.TickCount64;
}
}