2 using System.Collections.Generic;
5 using System.Windows.Forms;
6 using System.Threading;
8 using CecConfigGui.actions;
9 using System.Globalization;
13 namespace CecConfigGui
15 internal enum ConfigTab
23 public partial class CecConfigGUI : AsyncForm
27 Config = new LibCECConfiguration();
28 Config.DeviceTypes.Types[0] = CecDeviceType.RecordingDevice;
29 Config.DeviceName = "CEC Config";
30 Config.GetSettingsFromROM = true;
31 Config.ClientVersion = CecClientVersion.Version1_5_1;
32 Callbacks = new CecCallbackWrapper(this);
33 Config.SetCallbacks(Callbacks);
34 LoadXMLConfiguration(ref Config);
35 Lib = new LibCecSharp(Config);
37 InitializeComponent();
38 LoadButtonConfiguration();
40 ActiveProcess = new ConnectToDevice(ref Lib, Config);
41 ActiveProcess.EventHandler += ProcessEventHandler;
42 (new Thread(ActiveProcess.Run)).Start();
45 private bool LoadXMLConfiguration(ref LibCECConfiguration config)
47 bool gotConfig = false;
48 string xbmcDir = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + @"\XBMC\userdata\peripheral_data";
49 string defaultDir = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
50 string file = defaultDir + @"\usb_2548_1001.xml";
51 if (File.Exists(xbmcDir + @"\usb_2548_1001.xml"))
52 file = xbmcDir + @"\usb_2548_1001.xml";
54 if (File.Exists(file))
56 XmlTextReader reader = new XmlTextReader(file);
60 switch (reader.NodeType)
62 case XmlNodeType.Element:
63 if (reader.Name.ToLower() == "setting")
65 string name = string.Empty;
66 string value = string.Empty;
68 while (reader.MoveToNextAttribute())
70 if (reader.Name.ToLower().Equals("id"))
71 name = reader.Value.ToLower();
72 if (reader.Name.ToLower().Equals("value"))
81 if (byte.TryParse(value, out iPort))
82 config.HDMIPort = iPort;
85 case "connected_device":
88 if (ushort.TryParse(value, out iDevice))
89 config.BaseDevice = (CecLogicalAddress)iDevice;
92 case "cec_power_on_startup":
93 if (value.Equals("1") || value.ToLower().Equals("true") || value.ToLower().Equals("yes"))
95 config.ActivateSource = true;
96 config.WakeDevices.Set(CecLogicalAddress.Tv);
99 case "cec_power_off_shutdown":
100 if (value.Equals("1") || value.ToLower().Equals("true") || value.ToLower().Equals("yes"))
101 config.PowerOffDevices.Set(CecLogicalAddress.Broadcast);
103 case "cec_standby_screensaver":
104 config.PowerOffScreensaver = value.Equals("1") || value.ToLower().Equals("true") || value.ToLower().Equals("yes");
106 case "standby_pc_on_tv_standby":
107 config.PowerOffOnStandby = value.Equals("1") || value.ToLower().Equals("true") || value.ToLower().Equals("yes");
109 case "use_tv_menu_language":
110 config.UseTVMenuLanguage = value.Equals("1") || value.ToLower().Equals("true") || value.ToLower().Equals("yes");
113 case "physical_address":
115 ushort physicalAddress = 0;
116 if (ushort.TryParse(value, NumberStyles.AllowHexSpecifier, null, out physicalAddress))
117 config.PhysicalAddress = physicalAddress;
123 if (ushort.TryParse(value, out iType))
124 config.DeviceTypes.Types[0] = (CecDeviceType)iType;
130 if (UInt64.TryParse(value, out iVendor))
131 config.TvVendor = (CecVendorId)iVendor;
136 config.WakeDevices.Clear();
137 string[] split = value.Split(new[] { ' ' });
138 foreach (string dev in split)
140 byte iLogicalAddress;
141 if (byte.TryParse(dev, out iLogicalAddress))
142 config.WakeDevices.Set((CecLogicalAddress)iLogicalAddress);
146 case "standby_devices":
148 config.PowerOffDevices.Clear();
149 string[] split = value.Split(new char[] { ' ' });
150 foreach (string dev in split)
152 byte iLogicalAddress;
153 if (byte.TryParse(dev, out iLogicalAddress))
154 config.PowerOffDevices.Set((CecLogicalAddress)iLogicalAddress);
164 case "send_inactive_source":
165 config.SendInactiveSource = value.Equals("1") || value.ToLower().Equals("true") || value.ToLower().Equals("yes");
180 private void LoadButtonConfiguration()
182 //TODO load the real configuration
183 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Select", (new CecKeypress { Keycode = 0x00 }), string.Empty));
184 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Up", (new CecKeypress { Keycode = 0x01 }), string.Empty));
185 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Down", (new CecKeypress { Keycode = 0x02 }), string.Empty));
186 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Left", (new CecKeypress { Keycode = 0x03 }), string.Empty));
187 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Right", (new CecKeypress { Keycode = 0x04 }), string.Empty));
188 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Right+Up", (new CecKeypress { Keycode = 0x05 }), string.Empty));
189 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Right+Down", (new CecKeypress { Keycode = 0x06 }), string.Empty));
190 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Left+Up", (new CecKeypress { Keycode = 0x07 }), string.Empty));
191 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Left+Down", (new CecKeypress { Keycode = 0x08 }), string.Empty));
192 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Root menu", (new CecKeypress { Keycode = 0x09 }), string.Empty));
193 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Setup menu", (new CecKeypress { Keycode = 0x0A }), string.Empty));
194 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Contents menu", (new CecKeypress { Keycode = 0x0B }), string.Empty));
195 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Favourite menu", (new CecKeypress { Keycode = 0x0C }), string.Empty));
196 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Exit", (new CecKeypress { Keycode = 0x0D }), string.Empty));
197 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("0", (new CecKeypress { Keycode = 0x20 }), string.Empty));
198 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("1", (new CecKeypress { Keycode = 0x21 }), string.Empty));
199 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("2", (new CecKeypress { Keycode = 0x22 }), string.Empty));
200 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("3", (new CecKeypress { Keycode = 0x23 }), string.Empty));
201 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("4", (new CecKeypress { Keycode = 0x24 }), string.Empty));
202 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("5", (new CecKeypress { Keycode = 0x25 }), string.Empty));
203 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("6", (new CecKeypress { Keycode = 0x26 }), string.Empty));
204 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("7", (new CecKeypress { Keycode = 0x27 }), string.Empty));
205 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("8", (new CecKeypress { Keycode = 0x28 }), string.Empty));
206 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("9", (new CecKeypress { Keycode = 0x29 }), string.Empty));
207 cecButtonConfigBindingSource.Add(new CecButtonConfigItem(".", (new CecKeypress { Keycode = 0x2A }), string.Empty));
208 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Enter", (new CecKeypress { Keycode = 0x2B }), string.Empty));
209 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Clear", (new CecKeypress { Keycode = 0x2C }), string.Empty));
210 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Next favourite", (new CecKeypress { Keycode = 0x2F }), string.Empty));
211 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Channel up", (new CecKeypress { Keycode = 0x30 }), string.Empty));
212 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Channel down", (new CecKeypress { Keycode = 0x31 }), string.Empty));
213 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Previous channel", (new CecKeypress { Keycode = 0x32 }), string.Empty));
214 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Sound select", (new CecKeypress { Keycode = 0x33 }), string.Empty));
215 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Input select", (new CecKeypress { Keycode = 0x34 }), string.Empty));
216 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Display information", (new CecKeypress { Keycode = 0x35 }), string.Empty));
217 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Help", (new CecKeypress { Keycode = 0x36 }), string.Empty));
218 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Page up", (new CecKeypress { Keycode = 0x37 }), string.Empty));
219 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Page down", (new CecKeypress { Keycode = 0x38 }), string.Empty));
220 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Power", (new CecKeypress { Keycode = 0x40 }), string.Empty));
221 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Volume up", (new CecKeypress { Keycode = 0x41 }), string.Empty));
222 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Volume down", (new CecKeypress { Keycode = 0x42 }), string.Empty));
223 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Mute", (new CecKeypress { Keycode = 0x43 }), string.Empty));
224 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Play", (new CecKeypress { Keycode = 0x44 }), string.Empty));
225 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Stop", (new CecKeypress { Keycode = 0x45 }), string.Empty));
226 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Pause", (new CecKeypress { Keycode = 0x46 }), string.Empty));
227 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Record", (new CecKeypress { Keycode = 0x47 }), string.Empty));
228 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Rewind", (new CecKeypress { Keycode = 0x48 }), string.Empty));
229 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Fast forward", (new CecKeypress { Keycode = 0x49 }), string.Empty));
230 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Eject", (new CecKeypress { Keycode = 0x4A }), string.Empty));
231 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Forward", (new CecKeypress { Keycode = 0x4B }), string.Empty));
232 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Backward", (new CecKeypress { Keycode = 0x4C }), string.Empty));
233 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Stop record", (new CecKeypress { Keycode = 0x4D }), string.Empty));
234 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Pause record", (new CecKeypress { Keycode = 0x4E }), string.Empty));
235 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Angle", (new CecKeypress { Keycode = 0x50 }), string.Empty));
236 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Sub picture", (new CecKeypress { Keycode = 0x51 }), string.Empty));
237 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Video on demand", (new CecKeypress { Keycode = 0x52 }), string.Empty));
238 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Electronic program guide", (new CecKeypress { Keycode = 0x53 }), string.Empty));
239 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Timer programming", (new CecKeypress { Keycode = 0x54 }), string.Empty));
240 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Initial configuration", (new CecKeypress { Keycode = 0x55 }), string.Empty));
241 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Play (function)", (new CecKeypress { Keycode = 0x60 }), string.Empty));
242 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Pause play (function)", (new CecKeypress { Keycode = 0x61 }), string.Empty));
243 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Record (function)", (new CecKeypress { Keycode = 0x62 }), string.Empty));
244 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Pause record (function)", (new CecKeypress { Keycode = 0x63 }), string.Empty));
245 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Stop (function)", (new CecKeypress { Keycode = 0x64 }), string.Empty));
246 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Mute (function)", (new CecKeypress { Keycode = 0x65 }), string.Empty));
247 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Restore volume", (new CecKeypress { Keycode = 0x66 }), string.Empty));
248 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Tune", (new CecKeypress { Keycode = 0x67 }), string.Empty));
249 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Select media", (new CecKeypress { Keycode = 0x68 }), string.Empty));
250 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Select AV input", (new CecKeypress { Keycode = 0x69 }), string.Empty));
251 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Select audio input", (new CecKeypress { Keycode = 0x6A }), string.Empty));
252 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Power toggle", (new CecKeypress { Keycode = 0x6B }), string.Empty));
253 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Power off", (new CecKeypress { Keycode = 0x6C }), string.Empty));
254 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Power on", (new CecKeypress { Keycode = 0x6D }), string.Empty));
255 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("F1 (blue)", (new CecKeypress { Keycode = 0x71 }), string.Empty));
256 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("F2 (red)", (new CecKeypress { Keycode = 0x72 }), string.Empty));
257 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("F3 (green)", (new CecKeypress { Keycode = 0x73 }), string.Empty));
258 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("F4 (yellow)", (new CecKeypress { Keycode = 0x74 }), string.Empty));
259 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("F5", (new CecKeypress { Keycode = 0x75 }), string.Empty));
260 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("Data", (new CecKeypress { Keycode = 0x76 }), string.Empty));
261 cecButtonConfigBindingSource.Add(new CecButtonConfigItem("(Samsung) Return", (new CecKeypress { Keycode = 0x91 }), string.Empty));
264 private void ProcessEventHandler(object src, UpdateEvent updateEvent)
266 switch (updateEvent.Type)
268 case UpdateEventType.StatusText:
269 SetControlText(lStatus, updateEvent.StringValue);
271 case UpdateEventType.PhysicalAddress:
272 Config.PhysicalAddress = (ushort)updateEvent.IntValue;
273 SetControlText(tbPhysicalAddress, string.Format("{0,4:X}", updateEvent.IntValue));
275 case UpdateEventType.ProgressBar:
276 SetControlVisible(pProgress, true);
277 SetProgressValue(pProgress, updateEvent.IntValue);
279 case UpdateEventType.TVVendorId:
280 TVVendor = (CecVendorId)updateEvent.IntValue;
281 UpdateSelectedDevice();
283 case UpdateEventType.BaseDevicePhysicalAddress:
284 SetControlText(lConnectedPhysicalAddress, string.Format("Address: {0,4:X}", updateEvent.IntValue));
286 case UpdateEventType.BaseDevice:
287 Config.BaseDevice = (CecLogicalAddress)updateEvent.IntValue;
289 case UpdateEventType.HDMIPort:
290 Config.HDMIPort = (byte)updateEvent.IntValue;
292 case UpdateEventType.MenuLanguage:
293 SetControlText(cbUseTVMenuLanguage, "Use the TV's language setting" + (updateEvent.StringValue.Length > 0 ? " (" + updateEvent.StringValue + ")" : ""));
295 case UpdateEventType.HasAVRDevice:
296 if (HasAVRDevice != updateEvent.BoolValue)
298 HasAVRDevice = updateEvent.BoolValue;
299 UpdateSelectedDevice();
302 case UpdateEventType.AVRVendorId:
303 AVRVendor = (CecVendorId)updateEvent.IntValue;
304 UpdateSelectedDevice();
306 case UpdateEventType.Configuration:
307 SuppressUpdates = true;
308 ConfigurationChanged(updateEvent.ConfigValue);
309 SuppressUpdates = false;
311 case UpdateEventType.PollDevices:
312 CheckActiveDevices();
314 case UpdateEventType.ProcessCompleted:
315 ActiveProcess = null;
316 SetControlsEnabled(true);
317 if (UpdatingInfoPanel != null)
319 UpdatingInfoPanel.SetControlEnabled(UpdatingInfoPanel.bUpdate, true);
320 UpdatingInfoPanel = null;
322 SetControlVisible(pProgress, false);
324 case UpdateEventType.ExitApplication:
325 ActiveProcess = null;
326 SetControlsEnabled(false);
327 SetControlVisible(pProgress, false);
333 private void SetControlsEnabled(bool val)
335 SetControlEnabled(cbPortNumber, val && !cbOverrideAddress.Checked);
336 SetControlEnabled(cbConnectedDevice, cbConnectedDevice.Items.Count > 1 && !cbOverrideAddress.Checked && val);
337 SetControlEnabled(cbOverrideAddress, val);
338 SetControlEnabled(tbPhysicalAddress, val && !Config.AutodetectAddress && cbOverrideAddress.Checked);
339 SetControlEnabled(cbDeviceType, val);
340 SetControlEnabled(cbUseTVMenuLanguage, val);
341 SetControlEnabled(cbActivateSource, val);
342 SetControlEnabled(cbPowerOffScreensaver, val);
343 SetControlEnabled(cbPowerOffOnStandby, val);
344 SetControlEnabled(cbWakeDevices, val);
345 SetControlEnabled(cbPowerOffDevices, val);
346 SetControlEnabled(cbVendorOverride, val);
347 SetControlEnabled(cbVendorId, val && cbVendorOverride.Checked);
348 SetControlEnabled(cbSendInactiveSource, val);
349 SetControlEnabled(bClose, val);
350 SetControlEnabled(bSaveConfig, val);
351 SetControlEnabled(bReloadConfig, val);
352 SetControlEnabled(bRescanDevices, val);
354 SetControlEnabled(bSendImageViewOn, val);
355 SetControlEnabled(bStandby, val);
356 SetControlEnabled(bActivateSource, val);
357 SetControlEnabled(bScan, val);
359 bool enableVolumeButtons = (GetTargetDevice() == CecLogicalAddress.AudioSystem) && val;
360 SetControlEnabled(bVolUp, enableVolumeButtons);
361 SetControlEnabled(bVolDown, enableVolumeButtons);
362 SetControlEnabled(bMute, enableVolumeButtons);
365 private void tabControl1_SelectedIndexChanged(object sender, EventArgs e)
367 switch (tabControl1.SelectedIndex)
370 SelectedTab = ConfigTab.Configuration;
373 SelectedTab = ConfigTab.KeyConfiguration;
376 SelectedTab = ConfigTab.Tester;
379 SelectedTab = ConfigTab.Log;
383 SelectedTab = ConfigTab.Configuration;
388 protected override void Dispose(bool disposing)
392 Lib.DisableCallbacks();
393 Lib.StandbyDevices(CecLogicalAddress.Broadcast);
396 if (disposing && (components != null))
398 components.Dispose();
400 base.Dispose(disposing);
404 public void ReloadXmlConfiguration()
406 LoadXMLConfiguration(ref Config);
407 Lib.SetConfiguration(Config);
408 ConfigurationChanged(Config);
411 public void UpdateInfoPanel(DeviceInformation panel)
413 if (!SuppressUpdates && ActiveProcess == null)
415 SetControlsEnabled(false);
416 UpdatingInfoPanel = panel;
417 panel.SetControlEnabled(panel.bUpdate, false);
418 ActiveProcess = new UpdateDeviceInfo(this, ref Lib, panel);
419 ActiveProcess.EventHandler += ProcessEventHandler;
420 (new Thread(ActiveProcess.Run)).Start();
424 public void SetPhysicalAddress(ushort physicalAddress)
426 if (!SuppressUpdates && ActiveProcess == null && cbOverrideAddress.Checked)
428 SetControlsEnabled(false);
429 SetControlText(cbPortNumber, string.Empty);
430 SetControlText(cbConnectedDevice, string.Empty);
431 ActiveProcess = new UpdatePhysicalAddress(ref Lib, physicalAddress);
432 ActiveProcess.EventHandler += ProcessEventHandler;
433 (new Thread(ActiveProcess.Run)).Start();
437 public void UpdateConfigurationAsync()
439 if (!SuppressUpdates && ActiveProcess == null)
441 SetControlsEnabled(false);
442 ActiveProcess = new UpdateConfiguration(ref Lib, Config);
443 ActiveProcess.EventHandler += ProcessEventHandler;
444 (new Thread(ActiveProcess.Run)).Start();
448 public void SendImageViewOn(CecLogicalAddress address)
450 if (!SuppressUpdates && ActiveProcess == null)
452 SetControlsEnabled(false);
453 ActiveProcess = new SendImageViewOn(ref Lib, address);
454 ActiveProcess.EventHandler += ProcessEventHandler;
455 (new Thread(ActiveProcess.Run)).Start();
459 public void ActivateSource(CecLogicalAddress address)
461 if (!SuppressUpdates && ActiveProcess == null)
463 SetControlsEnabled(false);
464 ActiveProcess = new SendActivateSource(ref Lib, address);
465 ActiveProcess.EventHandler += ProcessEventHandler;
466 (new Thread(ActiveProcess.Run)).Start();
470 public void SendStandby(CecLogicalAddress address)
472 if (!SuppressUpdates && ActiveProcess == null)
474 SetControlsEnabled(false);
475 ActiveProcess = new SendStandby(ref Lib, address);
476 ActiveProcess.EventHandler += ProcessEventHandler;
477 (new Thread(ActiveProcess.Run)).Start();
481 public void ShowDeviceInfo(CecLogicalAddress address)
483 if (!SuppressUpdates && ActiveProcess == null)
485 SetControlsEnabled(false);
486 ActiveProcess = new ShowDeviceInfo(this, ref Lib, address);
487 ActiveProcess.EventHandler += ProcessEventHandler;
488 (new Thread(ActiveProcess.Run)).Start();
493 #region Configuration tab
494 private void cbOverrideAddress_CheckedChanged(object sender, EventArgs e)
496 SetControlEnabled(tbPhysicalAddress, ((CheckBox)sender).Checked);
497 SetControlEnabled(cbPortNumber, !((CheckBox)sender).Checked);
498 SetControlEnabled(cbConnectedDevice, !((CheckBox)sender).Checked && cbConnectedDevice.Items.Count > 1);
501 private void tbPhysicalAddress_TextChanged(object sender, EventArgs e)
503 if (tbPhysicalAddress.Text.Length != 4 ||
504 cbOverrideAddress.Checked)
506 ushort physicalAddress = 0;
507 if (!ushort.TryParse(tbPhysicalAddress.Text, NumberStyles.AllowHexSpecifier, null, out physicalAddress))
510 SetPhysicalAddress(physicalAddress);
513 private void UpdateSelectedDevice()
516 SetComboBoxItems(cbConnectedDevice, Config.BaseDevice == CecLogicalAddress.AudioSystem ? AVRVendorString : TVVendorString, new object[] { TVVendorString, AVRVendorString });
518 SetComboBoxItems(cbConnectedDevice, TVVendorString, new object[] { TVVendorString });
521 public void SetConnectedDevice(CecLogicalAddress address, int portnumber)
523 if (!SuppressUpdates && ActiveProcess == null)
525 SetControlsEnabled(false);
526 ActiveProcess = new UpdateConnectedDevice(ref Lib, address, portnumber);
527 ActiveProcess.EventHandler += ProcessEventHandler;
528 (new Thread(ActiveProcess.Run)).Start();
532 private void connectedDevice_SelectedIndexChanged(object sender, EventArgs e)
534 SetConnectedDevice(SelectedConnectedDevice, SelectedPortNumber);
537 private void bCancel_Click(object sender, EventArgs e)
542 private void bSave_Click(object sender, EventArgs e)
544 SetControlsEnabled(false);
546 Config.UseTVMenuLanguage = cbUseTVMenuLanguage.Checked;
547 Config.ActivateSource = cbActivateSource.Checked;
548 Config.PowerOffScreensaver = cbPowerOffScreensaver.Checked;
549 Config.PowerOffOnStandby = cbPowerOffOnStandby.Checked;
550 Config.SendInactiveSource = cbSendInactiveSource.Checked;
551 Config.WakeDevices = WakeDevices;
552 Config.PowerOffDevices = PowerOffDevices;
554 /* save settings in the eeprom */
555 Lib.PersistConfiguration(Config);
558 if (ActiveProcess == null)
560 SetControlsEnabled(false);
561 string xbmcDir = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + @"\XBMC\userdata\peripheral_data";
562 string defaultDir = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
564 SaveFileDialog dialog = new SaveFileDialog()
566 Title = "Where do you want to store the settings?",
567 InitialDirectory = Directory.Exists(xbmcDir) ? xbmcDir : defaultDir,
568 FileName = "usb_2548_1001.xml",
569 Filter = "xml files (*.xml)|*.xml|All files (*.*)|*.*",
573 if (dialog.ShowDialog() == DialogResult.OK)
575 FileStream fs = null;
576 string error = string.Empty;
579 fs = (FileStream)dialog.OpenFile();
587 MessageBox.Show("Cannot open '" + dialog.FileName + "' for writing" + (error.Length > 0 ? ": " + error : string.Empty ), "Pulse-Eight USB-CEC Adapter", MessageBoxButtons.OK, MessageBoxIcon.Error);
591 StreamWriter writer = new StreamWriter(fs);
592 StringBuilder output = new StringBuilder();
593 output.AppendLine("<settings>");
594 output.AppendLine("<setting id=\"cec_hdmi_port\" value=\"" + Config.HDMIPort + "\" />");
595 output.AppendLine("<setting id=\"connected_device\" value=\"" + (Config.BaseDevice == CecLogicalAddress.AudioSystem ? 5 : 0) + "\" />");
596 output.AppendLine("<setting id=\"cec_power_on_startup\" value=\"" + (Config.ActivateSource ? 1 : 0) + "\" />");
597 output.AppendLine("<setting id=\"cec_power_off_shutdown\" value=\"" + (Config.PowerOffDevices.IsSet(CecLogicalAddress.Broadcast) ? 1 : 0) + "\" />");
598 output.AppendLine("<setting id=\"cec_standby_screensaver\" value=\"" + (Config.PowerOffScreensaver ? 1 : 0) + "\" />");
599 output.AppendLine("<setting id=\"standby_pc_on_tv_standby\" value=\"" + (Config.PowerOffOnStandby ? 1 : 0) + "\" />");
600 output.AppendLine("<setting id=\"use_tv_menu_language\" value=\"" + (Config.UseTVMenuLanguage ? 1 : 0) + "\" />");
601 output.AppendLine("<setting id=\"enabled\" value=\"1\" />");
602 output.AppendLine("<setting id=\"port\" value=\"\" />");
604 // only supported by 1.5.0+ clients
605 output.AppendLine("<!-- the following lines are only supported by v1.5.0+ clients -->");
606 output.AppendLine("<setting id=\"activate_source\" value=\"" + (Config.ActivateSource ? 1 : 0) + "\" />");
607 output.AppendLine("<setting id=\"physical_address\" value=\"" + string.Format("{0,4:X}", cbOverrideAddress.Checked ? Config.PhysicalAddress : 0).Trim() + "\" />");
608 output.AppendLine("<setting id=\"device_type\" value=\"" + (int)Config.DeviceTypes.Types[0] + "\" />");
609 output.AppendLine("<setting id=\"tv_vendor\" value=\"" + string.Format("{0,6:X}", (int)Config.TvVendor).Trim() + "\" />");
611 output.Append("<setting id=\"wake_devices\" value=\"");
612 StringBuilder strWakeDevices = new StringBuilder();
613 foreach (CecLogicalAddress addr in Config.WakeDevices.Addresses)
614 if (addr != CecLogicalAddress.Unknown)
615 strWakeDevices.Append(" " + (int)addr);
616 output.Append(strWakeDevices.ToString().Trim());
617 output.AppendLine("\" />");
619 output.Append("<setting id=\"standby_devices\" value=\"");
620 StringBuilder strSleepDevices = new StringBuilder();
621 foreach (CecLogicalAddress addr in Config.PowerOffDevices.Addresses)
622 if (addr != CecLogicalAddress.Unknown)
623 strSleepDevices.Append(" " + (int)addr);
624 output.Append(strSleepDevices.ToString().Trim());
625 output.AppendLine("\" />");
627 // only supported by 1.5.1+ clients
628 output.AppendLine("<!-- the following lines are only supported by v1.5.1+ clients -->");
629 output.AppendLine("<setting id=\"send_inactive_source\" value=\"" + (Config.SendInactiveSource ? 1 : 0) + "\" />");
631 output.AppendLine("</settings>");
632 writer.Write(output.ToString());
636 MessageBox.Show("Settings are stored.", "Pulse-Eight USB-CEC Adapter", MessageBoxButtons.OK, MessageBoxIcon.Information);
639 SetControlsEnabled(true);
643 private void bReloadConfig_Click(object sender, EventArgs e)
645 if (Lib.CanPersistConfiguration())
647 Lib.GetCurrentConfiguration(Config);
648 ConfigurationChanged(Config);
652 ReloadXmlConfiguration();
656 private void cbVendorOverride_CheckedChanged(object sender, EventArgs e)
658 if (cbVendorOverride.Checked)
660 cbVendorId.Enabled = true;
661 switch (cbVendorId.Text)
664 Config.TvVendor = CecVendorId.LG;
667 Config.TvVendor = CecVendorId.Onkyo;
670 Config.TvVendor = CecVendorId.Panasonic;
673 Config.TvVendor = CecVendorId.Philips;
676 Config.TvVendor = CecVendorId.Pioneer;
679 Config.TvVendor = CecVendorId.Samsung;
682 Config.TvVendor = CecVendorId.Sony;
685 Config.TvVendor = CecVendorId.Yamaha;
688 Config.TvVendor = CecVendorId.Unknown;
694 cbVendorId.Enabled = false;
695 Config.TvVendor = CecVendorId.Unknown;
699 private void cbDeviceType_SelectedIndexChanged(object sender, EventArgs e)
701 CecDeviceType type = SelectedDeviceType;
702 if (type != Config.DeviceTypes.Types[0])
704 Config.DeviceTypes.Types[0] = type;
705 if (!DeviceChangeWarningDisplayed)
707 DeviceChangeWarningDisplayed = true;
708 MessageBox.Show("You have changed the device type. Save the configuration, and restart the application to use the new setting.", "Pulse-Eight USB-CEC Adapter", MessageBoxButtons.OK, MessageBoxIcon.Warning);
714 #region Key configuration tab
715 delegate void SelectKeypressRowCallback(CecKeypress key);
716 private void SelectKeypressRow(CecKeypress key)
718 if (dgButtons.InvokeRequired)
720 SelectKeypressRowCallback d = SelectKeypressRow;
723 Invoke(d, new object[] { key });
725 catch (Exception) { }
730 foreach (DataGridViewRow row in dgButtons.Rows)
732 CecButtonConfigItem item = row.DataBoundItem as CecButtonConfigItem;
733 if (item != null && item.Key.Keycode == key.Keycode)
735 rowIndex = row.Index;
741 row.Selected = false;
745 dgButtons.FirstDisplayedScrollingRowIndex = rowIndex;
749 private void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
751 DataGridView grid = sender as DataGridView;
752 CecButtonConfigItem data = grid.Rows[e.RowIndex].DataBoundItem as CecButtonConfigItem;
753 if (data == null || !data.Enabled)
754 e.CellStyle.ForeColor = Color.Gray;
758 #region CEC Tester tab
759 public void CheckActiveDevices()
761 CecLogicalAddresses activeDevices = Lib.GetActiveDevices();
762 List<string> deviceList = new List<string>();
763 foreach (CecLogicalAddress activeDevice in activeDevices.Addresses)
765 if (activeDevice != CecLogicalAddress.Unknown)
766 deviceList.Add(string.Format("{0,1:X} : {1}", (int)activeDevice, Lib.ToString(activeDevice)));
768 deviceList.Add(string.Format("{0,1:X} : {1}", (int)CecLogicalAddress.Broadcast, Lib.ToString(CecLogicalAddress.Broadcast)));
770 SetActiveDevices(deviceList.ToArray());
773 delegate void SetActiveDevicesCallback(string[] activeDevices);
774 private void SetActiveDevices(string[] activeDevices)
776 if (cbCommandDestination.InvokeRequired)
778 SetActiveDevicesCallback d = SetActiveDevices;
781 Invoke(d, new object[] { activeDevices });
783 catch (Exception) { }
787 cbCommandDestination.Items.Clear();
788 foreach (string item in activeDevices)
789 cbCommandDestination.Items.Add(item);
793 delegate CecLogicalAddress GetTargetDeviceCallback();
794 private CecLogicalAddress GetTargetDevice()
796 if (cbCommandDestination.InvokeRequired)
798 GetTargetDeviceCallback d = GetTargetDevice;
799 CecLogicalAddress retval = CecLogicalAddress.Unknown;
802 retval = (CecLogicalAddress)Invoke(d, new object[] { });
804 catch (Exception) { }
808 return GetLogicalAddressFromString(cbCommandDestination.Text);
811 private CecLogicalAddress GetLogicalAddressFromString(string name)
813 switch (name.Substring(0, 1).ToLower())
816 return CecLogicalAddress.Tv;
818 return CecLogicalAddress.RecordingDevice1;
820 return CecLogicalAddress.RecordingDevice2;
822 return CecLogicalAddress.Tuner1;
824 return CecLogicalAddress.PlaybackDevice1;
826 return CecLogicalAddress.AudioSystem;
828 return CecLogicalAddress.Tuner2;
830 return CecLogicalAddress.Tuner3;
832 return CecLogicalAddress.PlaybackDevice2;
834 return CecLogicalAddress.RecordingDevice3;
836 return CecLogicalAddress.Tuner4;
838 return CecLogicalAddress.PlaybackDevice3;
840 return CecLogicalAddress.Reserved1;
842 return CecLogicalAddress.Reserved2;
844 return CecLogicalAddress.FreeUse;
846 return CecLogicalAddress.Broadcast;
848 return CecLogicalAddress.Unknown;
852 private void bSendImageViewOn_Click(object sender, EventArgs e)
854 SendImageViewOn(GetTargetDevice());
857 private void bStandby_Click(object sender, EventArgs e)
859 SendStandby(GetTargetDevice());
862 private void bScan_Click(object sender, EventArgs e)
864 ShowDeviceInfo(GetTargetDevice());
867 private void bActivateSource_Click(object sender, EventArgs e)
869 ActivateSource(GetTargetDevice());
872 private void cbCommandDestination_SelectedIndexChanged(object sender, EventArgs e)
874 bool enableVolumeButtons = (GetTargetDevice() == CecLogicalAddress.AudioSystem);
875 bVolUp.Enabled = enableVolumeButtons;
876 bVolDown.Enabled = enableVolumeButtons;
877 bMute.Enabled = enableVolumeButtons;
878 bActivateSource.Enabled = (GetTargetDevice() != CecLogicalAddress.Broadcast);
879 bScan.Enabled = (GetTargetDevice() != CecLogicalAddress.Broadcast);
882 private void bVolUp_Click(object sender, EventArgs e)
884 SetControlsEnabled(false);
886 SetControlsEnabled(true);
889 private void bVolDown_Click(object sender, EventArgs e)
891 SetControlsEnabled(false);
892 Lib.VolumeDown(true);
893 SetControlsEnabled(true);
896 private void bMute_Click(object sender, EventArgs e)
898 SetControlsEnabled(false);
900 SetControlsEnabled(true);
903 private void bRescanDevices_Click(object sender, EventArgs e)
905 if (!SuppressUpdates && ActiveProcess == null)
907 SetControlsEnabled(false);
908 ActiveProcess = new RescanDevices(ref Lib);
909 ActiveProcess.EventHandler += ProcessEventHandler;
910 (new Thread(ActiveProcess.Run)).Start();
916 delegate void UpdateLogCallback();
917 private void UpdateLog()
919 if (tbLog.InvokeRequired)
921 UpdateLogCallback d = UpdateLog;
924 Invoke(d, new object[] { });
926 catch (Exception) { }
931 tbLog.Select(tbLog.Text.Length, 0);
932 tbLog.ScrollToCaret();
936 private void AddLogMessage(CecLogMessage message)
938 string strLevel = "";
939 bool display = false;
940 switch (message.Level)
942 case CecLogLevel.Error:
943 strLevel = "ERROR: ";
944 display = cbLogError.Checked;
946 case CecLogLevel.Warning:
947 strLevel = "WARNING: ";
948 display = cbLogWarning.Checked;
950 case CecLogLevel.Notice:
951 strLevel = "NOTICE: ";
952 display = cbLogNotice.Checked;
954 case CecLogLevel.Traffic:
955 strLevel = "TRAFFIC: ";
956 display = cbLogTraffic.Checked;
958 case CecLogLevel.Debug:
959 strLevel = "DEBUG: ";
960 display = cbLogDebug.Checked;
968 string strLog = string.Format("{0} {1,16} {2}", strLevel, message.Time, message.Message) + System.Environment.NewLine;
972 if (SelectedTab == ConfigTab.Log)
976 private void bClearLog_Click(object sender, EventArgs e)
982 private void bSaveLog_Click(object sender, EventArgs e)
984 SaveFileDialog dialog = new SaveFileDialog()
986 Title = "Where do you want to store the log file?",
987 InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments),
988 FileName = "cec-log.txt",
989 Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*",
993 if (dialog.ShowDialog() == DialogResult.OK)
995 FileStream fs = (FileStream)dialog.OpenFile();
998 MessageBox.Show("Cannot open '" + dialog.FileName + "' for writing", "Pulse-Eight USB-CEC Adapter", MessageBoxButtons.OK, MessageBoxIcon.Error);
1002 StreamWriter writer = new StreamWriter(fs);
1007 MessageBox.Show("The log file was stored as '" + dialog.FileName + "'.", "Pulse-Eight USB-CEC Adapter", MessageBoxButtons.OK, MessageBoxIcon.Information);
1013 #region LibCecSharp callbacks
1014 public int ConfigurationChanged(LibCECConfiguration config)
1017 SetControlText(tbPhysicalAddress, string.Format("{0,4:X}", Config.PhysicalAddress));
1018 SetControlText(cbConnectedDevice, Config.BaseDevice == CecLogicalAddress.AudioSystem ? AVRVendorString : TVVendorString);
1019 SetControlText(cbPortNumber, Config.HDMIPort.ToString());
1020 switch (config.DeviceTypes.Types[0])
1022 case CecDeviceType.RecordingDevice:
1023 SetControlText(cbDeviceType, "Recorder");
1025 case CecDeviceType.PlaybackDevice:
1026 SetControlText(cbDeviceType, "Player");
1028 case CecDeviceType.Tuner:
1029 SetControlText(cbDeviceType, "Tuner");
1032 SetControlText(cbDeviceType, "Recorder");
1035 if (config.TvVendor != CecVendorId.Unknown)
1037 SetCheckboxChecked(cbVendorOverride, true);
1038 SetControlText(cbVendorId, Lib.ToString(config.TvVendor));
1042 SetCheckboxChecked(cbVendorOverride, false);
1043 SetControlText(cbVendorId, Lib.ToString(TVVendor));
1046 SetCheckboxChecked(cbUseTVMenuLanguage, Config.UseTVMenuLanguage);
1047 SetCheckboxChecked(cbActivateSource, Config.ActivateSource);
1048 SetCheckboxChecked(cbPowerOffScreensaver, Config.PowerOffScreensaver);
1049 SetCheckboxChecked(cbPowerOffOnStandby, Config.PowerOffOnStandby);
1050 SetCheckboxChecked(cbSendInactiveSource, Config.SendInactiveSource);
1051 UpdateSelectedDevice();
1053 for (int iPtr = 0; iPtr < 15; iPtr++)
1054 SetCheckboxItemChecked(cbWakeDevices, iPtr, Config.WakeDevices.IsSet((CecLogicalAddress)iPtr));
1055 for (int iPtr = 0; iPtr < 15; iPtr++)
1056 SetCheckboxItemChecked(cbPowerOffDevices, iPtr, Config.PowerOffDevices.IsSet((CecLogicalAddress)iPtr));
1058 SetControlText(this, "Pulse-Eight USB-CEC Adapter - libCEC " + Lib.ToString(Config.ServerVersion));
1062 public int ReceiveCommand(CecCommand command)
1067 public int ReceiveKeypress(CecKeypress key)
1069 SelectKeypressRow(key);
1073 public int ReceiveLogMessage(CecLogMessage message)
1077 AddLogMessage(message);
1079 catch (Exception) { }
1084 #region Class members
1085 public bool HasAVRDevice { get; private set; }
1087 private CecVendorId _tvVendor = CecVendorId.Unknown;
1088 public CecVendorId TVVendor
1090 get { return _tvVendor;}
1091 private set { _tvVendor = value; }
1093 public string TVVendorString
1097 return TVVendor != CecVendorId.Unknown ?
1098 "Television (" + Lib.ToString(TVVendor) + ")" :
1104 private CecVendorId _avrVendor = CecVendorId.Unknown;
1105 public CecVendorId AVRVendor
1107 get { return _avrVendor; }
1108 private set { _avrVendor = value; }
1110 public string AVRVendorString
1114 return AVRVendor != CecVendorId.Unknown ?
1115 "AVR (" + Lib.ToString(AVRVendor) + ")" :
1120 public CecLogicalAddress SelectedConnectedDevice
1124 return (cbConnectedDevice.Text.Equals(AVRVendorString)) ? CecLogicalAddress.AudioSystem : CecLogicalAddress.Tv;
1127 public CecDeviceType SelectedDeviceType
1131 switch (cbDeviceType.Text.ToLower())
1134 return CecDeviceType.PlaybackDevice;
1136 return CecDeviceType.Tuner;
1138 return CecDeviceType.RecordingDevice;
1142 public int SelectedPortNumber
1146 int iPortNumber = 0;
1147 if (!int.TryParse(cbPortNumber.Text, out iPortNumber))
1152 protected LibCECConfiguration Config;
1153 protected LibCecSharp Lib;
1154 private CecCallbackWrapper Callbacks;
1155 private UpdateProcess ActiveProcess = null;
1156 private bool SuppressUpdates = true;
1157 private ConfigTab SelectedTab = ConfigTab.Configuration;
1158 private string Log = string.Empty;
1159 private DeviceInformation UpdatingInfoPanel = null;
1160 private bool DeviceChangeWarningDisplayed = false;
1161 public CecLogicalAddresses WakeDevices
1165 CecLogicalAddresses addr = new CecLogicalAddresses();
1166 foreach (object item in cbWakeDevices.CheckedItems)
1168 string c = item as string;
1169 addr.Set(GetLogicalAddressFromString(c));
1174 public CecLogicalAddresses PowerOffDevices
1178 CecLogicalAddresses addr = new CecLogicalAddresses();
1179 foreach (object item in cbPowerOffDevices.CheckedItems)
1181 string c = item as string;
1182 addr.Set(GetLogicalAddressFromString(c));
1191 /// A little wrapper that is needed because we already inherit form
1193 internal class CecCallbackWrapper : CecCallbackMethods
1195 public CecCallbackWrapper(CecConfigGUI gui)
1200 public override int ReceiveCommand(CecCommand command)
1202 return Gui.ReceiveCommand(command);
1205 public override int ReceiveKeypress(CecKeypress key)
1207 return Gui.ReceiveKeypress(key);
1210 public override int ReceiveLogMessage(CecLogMessage message)
1212 return Gui.ReceiveLogMessage(message);
1215 public override int ConfigurationChanged(LibCECConfiguration config)
1217 return Gui.ConfigurationChanged(config);
1220 private CecConfigGUI Gui;