mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-14 11:22:03 +01:00
- FIX: Deleting satellite channels from an SCM file did not work correctly - Improved SCM file format detection - Samsung E/F-Series: channels in the favorite lists now use their prog# instead of all being put at #1 - fixed LG unit tests - fixed Samsung tests
30 lines
953 B
C#
30 lines
953 B
C#
using ChanSort.Api;
|
|
|
|
namespace ChanSort.Loader.Samsung
|
|
{
|
|
internal class AnalogChannel : ScmChannelBase
|
|
{
|
|
private const string _Frequency = "offFrequency";
|
|
|
|
#region ctor()
|
|
|
|
public AnalogChannel(int slot, bool isCable, DataMapping mapping, decimal freq, bool sortedFavorites) :
|
|
base(mapping, sortedFavorites)
|
|
{
|
|
var signalSource = SignalSource.Analog | SignalSource.Tv;
|
|
signalSource |= isCable ? SignalSource.Cable : SignalSource.Antenna;
|
|
this.InitCommonData(slot, signalSource, mapping);
|
|
|
|
this.FreqInMhz = (decimal)mapping.GetFloat(_Frequency); // C,D,E series have the value in the data record
|
|
if (this.FreqInMhz == 0) // for B series take it from the Tuning table
|
|
this.FreqInMhz = freq;
|
|
if (this.FreqInMhz == 0) // fallback since Freq is part of the UID and requires a unique value
|
|
this.FreqInMhz = slot;
|
|
this.ChannelOrTransponder = "";
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
|
|
}
|