2018-04-12 10:20:31 +01:00
|
|
|
|
/******************************************************************************
|
|
|
|
|
|
// Canary Islands Computer Museum Website
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
//
|
2018-04-15 17:51:07 +01:00
|
|
|
|
// Filename : SoundSynth.cs
|
2018-04-12 10:20:31 +01:00
|
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
|
|
|
|
//
|
|
|
|
|
|
// --[ Description ] ----------------------------------------------------------
|
|
|
|
|
|
//
|
2018-04-15 17:51:07 +01:00
|
|
|
|
// High level representation of a sound synthetizer.
|
2018-04-12 10:20:31 +01:00
|
|
|
|
//
|
|
|
|
|
|
// --[ License ] --------------------------------------------------------------
|
|
|
|
|
|
//
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
|
|
// it under the terms of the GNU General Public License as
|
|
|
|
|
|
// published by the Free Software Foundation, either version 3 of the
|
|
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
|
|
//
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
//
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
//
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
// Copyright © 2003-2018 Natalia Portillo
|
|
|
|
|
|
*******************************************************************************/
|
2018-04-12 11:50:02 +01:00
|
|
|
|
|
2018-04-28 15:55:57 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
|
2018-04-12 10:20:31 +01:00
|
|
|
|
namespace Cicm.Database.Schemas
|
2018-04-12 06:43:45 +01:00
|
|
|
|
{
|
2018-04-15 17:51:07 +01:00
|
|
|
|
/// <summary>Sound synthetizer</summary>
|
|
|
|
|
|
public class SoundSynth
|
2018-04-12 06:43:45 +01:00
|
|
|
|
{
|
2018-04-28 15:55:57 +01:00
|
|
|
|
/// <summary>Company</summary>
|
|
|
|
|
|
public Company Company;
|
|
|
|
|
|
/// <summary>Sample rate in bits of the generate sound</summary>
|
|
|
|
|
|
public int Depth;
|
|
|
|
|
|
/// <summary>Frequency in Hz of the generated sound</summary>
|
|
|
|
|
|
public double Frequency;
|
2018-04-12 11:50:02 +01:00
|
|
|
|
/// <summary>ID</summary>
|
2018-04-12 12:02:56 +01:00
|
|
|
|
public int Id;
|
2018-04-28 15:55:57 +01:00
|
|
|
|
/// <summary>Datetime of introduction</summary>
|
|
|
|
|
|
public DateTime Introduced;
|
|
|
|
|
|
/// <summary>Model/SKU code</summary>
|
|
|
|
|
|
public string ModelCode;
|
2018-04-12 11:50:02 +01:00
|
|
|
|
/// <summary>Name</summary>
|
2018-04-12 12:02:56 +01:00
|
|
|
|
public string Name;
|
2018-04-28 15:55:57 +01:00
|
|
|
|
/// <summary>Simultaneous square wave generators</summary>
|
|
|
|
|
|
public int SquareWave;
|
|
|
|
|
|
/// <summary>Type of sound synthetizer</summary>
|
|
|
|
|
|
public int Type;
|
|
|
|
|
|
/// <summary>Simultaneous voices that can be generated</summary>
|
|
|
|
|
|
public int Voices;
|
|
|
|
|
|
/// <summary>Simultaneous white noise generators</summary>
|
|
|
|
|
|
public int WhiteNoise;
|
2018-04-12 06:43:45 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|