Esempio n. 1
0
        public static List <WaveformTemplate> Templates(IntegraWaveFormTypes type, IntegraWaveFormBanks bank)
        {
            List <WaveformTemplate> waveforms = new();

            Stream?stream = Assembly.GetExecutingAssembly().GetManifestResourceStream("IntegraXL.Resources.WaveForms.csv");

            if (stream == null)
            {
                throw new IntegraException($"[{nameof(IntegraWaveformLookup)}.{nameof(Templates)}]\nUnable to load the waveforms resource.");
            }


            using (StreamReader reader = new (stream))
            {
                while (!reader.EndOfStream)
                {
                    WaveformTemplate template = LoadWaveforms(reader.ReadLine());

                    if (template.Type != type)
                    {
                        continue;
                    }

                    if (template.Bank != bank)
                    {
                        continue;
                    }

                    waveforms.Add(template);
                }
            }

            return(waveforms);
        }
Esempio n. 2
0
        public static WaveformTemplate Template(IntegraWaveFormTypes type, IntegraWaveFormBanks bank, int id)
        {
            // Type: PCM = 0, SNA = 1, SND = 2, SNS = 3
            // Bank: INT = 0, SRX01 = 1 .. SRX12 = 12, ExSN01 = 21 .. ExSN06 = 26

            return(Templates(type, bank).FirstOrDefault(x => x.ID == id, new WaveformTemplate(type, bank, id, "---")));
        }
Esempio n. 3
0
 internal WaveformTemplate(IntegraWaveFormTypes type, IntegraWaveFormBanks bank, int id, string name)
 {
     Type = type;
     Bank = bank;
     ID   = id;
     Name = name;
 }