X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcec-config-gui%2FCecConfigGUI.cs;h=b8c2b54fa68ca7031ef3b410c72639a63f9e732c;hb=ece1582ec85912aebc8f87c0dca015ae62b29331;hp=10a484411cea0d143b390980cdc22081c81d08be;hpb=8674df6af2ed9e296a80450f4b034c11765e70b6;p=deb_libcec.git diff --git a/src/cec-config-gui/CecConfigGUI.cs b/src/cec-config-gui/CecConfigGUI.cs index 10a4844..b8c2b54 100644 --- a/src/cec-config-gui/CecConfigGUI.cs +++ b/src/cec-config-gui/CecConfigGUI.cs @@ -10,6 +10,7 @@ using CecSharp; using CecConfigGui.actions; using System.Globalization; using System.IO; +using System.Xml; namespace CecConfigGui { @@ -24,17 +25,119 @@ namespace CecConfigGui Config.ClientVersion = CecClientVersion.Version1_5_0; Callbacks = new CecCallbackWrapper(this); Config.SetCallbacks(Callbacks); - - InitializeComponent(); + LoadXMLConfiguration(ref Config); Lib = new LibCecSharp(Config); + InitializeComponent(); LoadButtonConfiguration(); - ActiveProcess = new ConnectToDevice(ref Lib); + //TODO read the com port setting from the configuration + CecAdapter[] adapters = Lib.FindAdapters(string.Empty); + if (adapters.Length == 0 || !Lib.Open(adapters[0].ComPort, 10000)) + { + MessageBox.Show("Could not connect to any CEC adapter. Please check your configuration.", "Pulse-Eight USB-CEC Adapter", MessageBoxButtons.OK); + Application.Exit(); + } + + ActiveProcess = new ConnectToDevice(ref Lib, Config); ActiveProcess.EventHandler += new EventHandler(ProcessEventHandler); (new Thread(new ThreadStart(ActiveProcess.Run))).Start(); } + private bool LoadXMLConfiguration(ref LibCECConfiguration config) + { + bool gotConfig = false; + string xbmcDir = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + @"\XBMC\userdata\peripheral_data"; + string defaultDir = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments); + string file = defaultDir + @"\usb_2548_1001.xml"; + if (File.Exists(xbmcDir + @"\usb_2548_1001.xml")) + file = xbmcDir + @"\usb_2548_1001.xml"; + + if (File.Exists(file)) + { + XmlTextReader reader = new XmlTextReader(file); + while (reader.Read()) + { + gotConfig = true; + switch (reader.NodeType) + { + case XmlNodeType.Element: + if (reader.Name.ToLower() == "setting") + { + string name = string.Empty; + string value = string.Empty; + + while (reader.MoveToNextAttribute()) + { + if (reader.Name.ToLower().Equals("id")) + name = reader.Value.ToLower(); + if (reader.Name.ToLower().Equals("value")) + value = reader.Value; + } + + switch (name) + { + case "cec_hdmi_port": + { + byte iPort; + if (byte.TryParse(value, out iPort)) + config.HDMIPort = iPort; + } + break; + case "connected_device": + { + ushort iDevice; + if (ushort.TryParse(value, out iDevice)) + config.BaseDevice = (CecLogicalAddress)iDevice; + } + break; + case "physical_address": + { + ushort physicalAddress = 0; + if (ushort.TryParse(value, NumberStyles.AllowHexSpecifier, null, out physicalAddress)) + config.PhysicalAddress = physicalAddress; + } + break; + case "device_type": + { + ushort iType; + if (ushort.TryParse(value, out iType)) + config.DeviceTypes.Types[0] = (CecDeviceType)iType; + } + break; + case "cec_power_on_startup": + config.PowerOnStartup = value.Equals("1") || value.ToLower().Equals("true") || value.ToLower().Equals("yes"); + break; + case "cec_power_off_shutdown": + config.PowerOffShutdown = value.Equals("1") || value.ToLower().Equals("true") || value.ToLower().Equals("yes"); + break; + case "cec_standby_screensaver": + config.PowerOffScreensaver = value.Equals("1") || value.ToLower().Equals("true") || value.ToLower().Equals("yes"); + break; + case "standby_pc_on_tv_standby": + config.PowerOffOnStandby = value.Equals("1") || value.ToLower().Equals("true") || value.ToLower().Equals("yes"); + break; + case "use_tv_menu_language": + config.UseTVMenuLanguage = value.Equals("1") || value.ToLower().Equals("true") || value.ToLower().Equals("yes"); + break; + case "enabled": + break; + case "port": + //TODO + break; + default: + break; + } + } + break; + default: + break; + } + } + } + return gotConfig; + } + private void LoadButtonConfiguration() { //TODO load the real configuration @@ -121,6 +224,16 @@ namespace CecConfigGui public int ReceiveCommand(CecCommand command) { + bool bGetNewPhysicalAddress = false; + if (command.Opcode == CecOpcode.ReportPhysicalAddress) + bGetNewPhysicalAddress = true; + + if (bGetNewPhysicalAddress) + { + LibCECConfiguration config = new LibCECConfiguration(); + Lib.GetCurrentConfiguration(config); + SetControlText(this.tbPhysicalAddress, String.Format("{0,4:X}", config.PhysicalAddress)); + } return 1; } @@ -245,14 +358,25 @@ namespace CecConfigGui SetControlEnabled(cbPortNumber, val); SetControlEnabled(cbConnectedDevice, cbConnectedDevice.Items.Count > 1 ? val : false); SetControlEnabled(tbPhysicalAddress, val); - SetControlEnabled(cbDeviceType, val); + SetControlEnabled(cbDeviceType, false); // TODO not implemented yet SetControlEnabled(cbUseTVMenuLanguage, val); SetControlEnabled(cbPowerOnStartup, val); SetControlEnabled(cbPowerOffShutdown, val); SetControlEnabled(cbPowerOffScreensaver, val); SetControlEnabled(cbPowerOffOnStandby, val); + SetControlEnabled(cbWakeDevices, false); // TODO not implemented yet SetControlEnabled(bClose, val); SetControlEnabled(bSave, val); + + SetControlEnabled(bSendImageViewOn, val); + SetControlEnabled(bStandby, val); + SetControlEnabled(bActivateSource, val); + SetControlEnabled(bScan, val); + + bool enableVolumeButtons = (GetTargetDevice() == CecLogicalAddress.AudioSystem) && val; + SetControlEnabled(bVolUp, enableVolumeButtons); + SetControlEnabled(bVolDown, enableVolumeButtons); + SetControlEnabled(bMute, enableVolumeButtons); } delegate void SetControlTextCallback(Control control, string val); @@ -427,21 +551,26 @@ namespace CecConfigGui private CecCallbackWrapper Callbacks; private UpdateProcess ActiveProcess = null; - private void connectedDevice_SelectedIndexChanged(object sender, EventArgs e) + public void SetConnectedDevice(CecLogicalAddress address, int portnumber) { if (ActiveProcess == null) { SetControlsEnabled(false); - SelectedConnectedDevice = (this.cbConnectedDevice.Text.Equals(AVRVendorString)) ? CecLogicalAddress.AudioSystem : CecLogicalAddress.Tv; - int iPortNumber = 0; - if (!int.TryParse(cbPortNumber.Text, out iPortNumber)) - iPortNumber = 1; - ActiveProcess = new UpdateConnectedDevice(ref Lib, cbConnectedDevice.Text.Equals(AVRVendorString) ? CecLogicalAddress.AudioSystem : CecLogicalAddress.Tv, iPortNumber); + ActiveProcess = new UpdateConnectedDevice(ref Lib, address, portnumber); ActiveProcess.EventHandler += new EventHandler(ProcessEventHandler); (new Thread(new ThreadStart(ActiveProcess.Run))).Start(); } } + private void connectedDevice_SelectedIndexChanged(object sender, EventArgs e) + { + SelectedConnectedDevice = (this.cbConnectedDevice.Text.Equals(AVRVendorString)) ? CecLogicalAddress.AudioSystem : CecLogicalAddress.Tv; + int iPortNumber = 0; + if (!int.TryParse(cbPortNumber.Text, out iPortNumber)) + iPortNumber = 1; + SetConnectedDevice(SelectedConnectedDevice, iPortNumber); + } + private void bCancel_Click(object sender, EventArgs e) { this.Dispose(); @@ -518,15 +647,10 @@ namespace CecConfigGui SetControlsEnabled(true); } - private void tbPhysicalAddress_TextChanged(object sender, EventArgs e) + public void SetPhysicalAddress(ushort physicalAddress) { if (ActiveProcess == null) { - if (tbPhysicalAddress.Text.Length != 4) - return; - ushort physicalAddress = 0; - if (!ushort.TryParse(tbPhysicalAddress.Text, NumberStyles.AllowHexSpecifier, null, out physicalAddress)) - return; SetControlsEnabled(false); SetControlText(cbPortNumber, string.Empty); SetControlText(cbConnectedDevice, string.Empty); @@ -536,6 +660,17 @@ namespace CecConfigGui } } + private void tbPhysicalAddress_TextChanged(object sender, EventArgs e) + { + if (tbPhysicalAddress.Text.Length != 4) + return; + ushort physicalAddress = 0; + if (!ushort.TryParse(tbPhysicalAddress.Text, NumberStyles.AllowHexSpecifier, null, out physicalAddress)) + return; + + SetPhysicalAddress(physicalAddress); + } + private void bClearLog_Click(object sender, EventArgs e) { tbLog.Text = string.Empty; @@ -578,6 +713,153 @@ namespace CecConfigGui if (data == null || !data.Enabled) e.CellStyle.ForeColor = Color.Gray; } + + delegate CecLogicalAddress GetTargetDeviceCallback(); + private CecLogicalAddress GetTargetDevice() + { + if (this.cbCommandDestination.InvokeRequired) + { + GetTargetDeviceCallback d = new GetTargetDeviceCallback(GetTargetDevice); + CecLogicalAddress retval = CecLogicalAddress.Unknown; + try + { + retval = (CecLogicalAddress)this.Invoke(d, new object[] { }); + } + catch (Exception) { } + return retval; + } + + switch (this.cbCommandDestination.Text.Substring(0, 1).ToLower()) + { + case "0": + return CecLogicalAddress.Tv; + case "1": + return CecLogicalAddress.RecordingDevice1; + case "2": + return CecLogicalAddress.RecordingDevice2; + case "3": + return CecLogicalAddress.Tuner1; + case "4": + return CecLogicalAddress.PlaybackDevice1; + case "5": + return CecLogicalAddress.AudioSystem; + case "6": + return CecLogicalAddress.Tuner2; + case "7": + return CecLogicalAddress.Tuner3; + case "8": + return CecLogicalAddress.PlaybackDevice2; + case "9": + return CecLogicalAddress.RecordingDevice3; + case "a": + return CecLogicalAddress.Tuner4; + case "b": + return CecLogicalAddress.PlaybackDevice3; + case "c": + return CecLogicalAddress.Reserved1; + case "d": + return CecLogicalAddress.Reserved2; + case "e": + return CecLogicalAddress.FreeUse; + case "f": + return CecLogicalAddress.Broadcast; + default: + return CecLogicalAddress.Unknown; + } + } + + public void SendImageViewOn(CecLogicalAddress address) + { + if (ActiveProcess == null) + { + SetControlsEnabled(false); + ActiveProcess = new SendImageViewOn(ref Lib, address); + ActiveProcess.EventHandler += new EventHandler(ProcessEventHandler); + (new Thread(new ThreadStart(ActiveProcess.Run))).Start(); + } + } + + private void bSendImageViewOn_Click(object sender, EventArgs e) + { + SendImageViewOn(GetTargetDevice()); + } + + public void SendStandby(CecLogicalAddress address) + { + if (ActiveProcess == null) + { + SetControlsEnabled(false); + ActiveProcess = new SendStandby(ref Lib, address); + ActiveProcess.EventHandler += new EventHandler(ProcessEventHandler); + (new Thread(new ThreadStart(ActiveProcess.Run))).Start(); + } + } + + private void bStandby_Click(object sender, EventArgs e) + { + SendStandby(GetTargetDevice()); + } + + public void ShowDeviceInfo(CecLogicalAddress address) + { + if (ActiveProcess == null) + { + SetControlsEnabled(false); + ActiveProcess = new ShowDeviceInfo(this, ref Lib, address); + ActiveProcess.EventHandler += new EventHandler(ProcessEventHandler); + (new Thread(new ThreadStart(ActiveProcess.Run))).Start(); + } + } + + private void bScan_Click(object sender, EventArgs e) + { + ShowDeviceInfo(GetTargetDevice()); + } + + public void ActivateSource(CecLogicalAddress address) + { + if (ActiveProcess == null) + { + SetControlsEnabled(false); + ActiveProcess = new SendActivateSource(ref Lib, address); + ActiveProcess.EventHandler += new EventHandler(ProcessEventHandler); + (new Thread(new ThreadStart(ActiveProcess.Run))).Start(); + } + } + + private void bActivateSource_Click(object sender, EventArgs e) + { + ActivateSource(GetTargetDevice()); + } + + private void cbCommandDestination_SelectedIndexChanged(object sender, EventArgs e) + { + bool enableVolumeButtons = (GetTargetDevice() == CecLogicalAddress.AudioSystem); + this.bVolUp.Enabled = enableVolumeButtons; + this.bVolDown.Enabled = enableVolumeButtons; + this.bMute.Enabled = enableVolumeButtons; + } + + private void bVolUp_Click(object sender, EventArgs e) + { + SetControlsEnabled(false); + Lib.VolumeUp(true); + SetControlsEnabled(true); + } + + private void bVolDown_Click(object sender, EventArgs e) + { + SetControlsEnabled(false); + Lib.VolumeDown(true); + SetControlsEnabled(true); + } + + private void bMute_Click(object sender, EventArgs e) + { + SetControlsEnabled(false); + Lib.MuteAudio(true); + SetControlsEnabled(true); + } } internal class CecCallbackWrapper : CecCallbackMethods