/Releases/V_1_0_0_0/TS3QueryLib.Core.Silverlight/Query/HelperClasses/ChannelModification.cs

# · C# · 87 lines · 62 code · 13 blank · 12 comment · 1 complexity · c5340f989bd64ef0f4ac30687a951253 MD5 · raw file

  1. using TS3QueryLib.Core.CommandHandling;
  2. namespace TS3QueryLib.Core.Query.HelperClasses
  3. {
  4. public class ChannelModification : ModificationBase
  5. {
  6. #region Properties
  7. public string Name { get; set; }
  8. public string Topic { get; set; }
  9. public string Description { get; set; }
  10. public string Password { get; set; }
  11. public Codec? Codec { get; set; }
  12. public double? CodecQuality { get; set; }
  13. public int? MaxClients { get; set; }
  14. public int? MaxFamilyClients { get; set; }
  15. public uint? ChannelOrder { get; set; }
  16. public bool? IsPermanent { get; set; }
  17. public bool? IsSemiPermanent { get; set; }
  18. public bool? IsTemporary { get; set; }
  19. public bool? IsDefault { get; set; }
  20. public bool? HasUnlimitedMaxClients { get; set; }
  21. public bool? HasUnlimitedMaxFamilyClients { get; set; }
  22. public bool? ArUnlimitedMaxFamilyClientsInherited { get; set; }
  23. public uint? NeededTalkPower { get; set; }
  24. public string NamePhonetic { get; set; }
  25. public uint? IconId { get; set; }
  26. public uint? ParentChannelId { get; set; }
  27. #endregion
  28. #region Public Methods
  29. public void AddToCommand(Command command)
  30. {
  31. AddToCommand(command, "channel_name", Name);
  32. AddToCommand(command, "channel_topic", Topic);
  33. AddToCommand(command, "channel_description", Description);
  34. AddToCommand(command, "channel_password", Password);
  35. if (Codec.HasValue)
  36. AddToCommand(command, "channel_codec", (uint)Codec.Value);
  37. AddToCommand(command, "channel_codec_quality", CodecQuality);
  38. AddToCommand(command, "channel_maxclients", MaxClients);
  39. AddToCommand(command, "channel_maxfamilyclients", MaxFamilyClients);
  40. AddToCommand(command, "channel_order", ChannelOrder);
  41. AddToCommand(command, "channel_flag_permanent", IsPermanent);
  42. AddToCommand(command, "channel_flag_semi_permanent", IsSemiPermanent);
  43. AddToCommand(command, "channel_flag_temporary", IsTemporary);
  44. AddToCommand(command, "channel_flag_default", IsDefault);
  45. AddToCommand(command, "channel_flag_maxclients_unlimited", HasUnlimitedMaxClients);
  46. AddToCommand(command, "channel_flag_maxfamilyclients_unlimited", HasUnlimitedMaxFamilyClients);
  47. AddToCommand(command, "channel_flag_maxfamilyclients_inherited", ArUnlimitedMaxFamilyClientsInherited);
  48. AddToCommand(command, "channel_needed_talk_power", NeededTalkPower);
  49. AddToCommand(command, "channel_name_phonetic", NamePhonetic);
  50. AddToCommand(command, "channel_icon_id", IconId);
  51. AddToCommand(command, "cpid", ParentChannelId);
  52. }
  53. #endregion
  54. }
  55. public enum Codec
  56. {
  57. /// <summary>
  58. /// speex narrowband mono, 16bit, 8kHz)
  59. /// </summary>
  60. SpeexNarrowband = 0,
  61. /// <summary>
  62. /// speex wideband (mono, 16bit, 16kHz)
  63. /// </summary>
  64. SpeexWideband = 1,
  65. /// <summary>
  66. /// speex ultra-wideband (mono, 16bit, 32kHz)
  67. /// </summary>
  68. SpeexUltrawideband = 2,
  69. /// <summary>
  70. /// celt mono (mono, 16bit, 48kHz)
  71. /// </summary>
  72. CeltMono = 3
  73. }
  74. }