2024-01-17 17:59:10 +01:00
using CShocker.Ranges ;
2024-01-17 04:11:30 +01:00
using Microsoft.Extensions.Logging ;
2024-01-17 17:59:10 +01:00
namespace CShocker.Shockers.Abstract ;
2024-01-17 04:11:30 +01:00
2024-01-17 04:36:38 +01:00
public abstract class Shocker
2024-01-17 04:11:30 +01:00
{
2024-01-17 19:33:57 +01:00
public readonly List < string > ShockerIds ;
public readonly IntensityRange IntensityRange ;
public readonly DurationRange DurationRange ;
2024-01-17 04:11:30 +01:00
protected readonly ILogger ? Logger ;
2024-01-17 04:33:41 +01:00
2024-01-17 04:41:27 +01:00
public void Control ( ControlAction action , string? shockerId = null , int? intensity = null , int? duration = null )
2024-01-17 04:11:30 +01:00
{
2024-01-17 17:59:10 +01:00
int i = intensity ? ? IntensityRange . GetRandomRangeValue ( ) ;
int d = duration ? ? DurationRange . GetRandomRangeValue ( ) ;
2024-01-17 04:11:30 +01:00
this . Logger ? . Log ( LogLevel . Information , $"{action} {(intensity is not null ? $" Overwrite { i } " : $" { i } ")} {(duration is not null ? $" Overwrite { d } " : $" { d } ")}" ) ;
if ( action is ControlAction . Nothing )
return ;
if ( shockerId is null )
2024-01-17 17:59:10 +01:00
foreach ( string shocker in ShockerIds )
2024-01-17 04:11:30 +01:00
ControlInternal ( action , shocker , i , d ) ;
else
ControlInternal ( action , shockerId , i , d ) ;
}
protected abstract void ControlInternal ( ControlAction action , string shockerId , int intensity , int duration ) ;
2024-01-17 17:59:10 +01:00
protected Shocker ( List < string > shockerIds , IntensityRange intensityRange , DurationRange durationRange , ILogger ? logger = null )
2024-01-17 04:11:30 +01:00
{
2024-01-17 17:59:10 +01:00
this . ShockerIds = shockerIds ;
this . IntensityRange = intensityRange ;
this . DurationRange = durationRange ;
2024-01-17 04:11:30 +01:00
this . Logger = logger ;
}
}