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 if (!Lib.CanPersistConfiguration())
556 if (ActiveProcess == null)
558 SetControlsEnabled(false);
559 string xbmcDir = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + @"\XBMC\userdata\peripheral_data";
560 string defaultDir = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
562 SaveFileDialog dialog = new SaveFileDialog()
564 Title = "Where do you want to store the settings?",
565 InitialDirectory = Directory.Exists(xbmcDir) ? xbmcDir : defaultDir,
566 FileName = "usb_2548_1001.xml",
567 Filter = "xml files (*.xml)|*.xml|All files (*.*)|*.*",
571 if (dialog.ShowDialog() == DialogResult.OK)
573 FileStream fs = null;
574 string error = string.Empty;
577 fs = (FileStream)dialog.OpenFile();
585 MessageBox.Show("Cannot open '" + dialog.FileName + "' for writing" + (error.Length > 0 ? ": " + error : string.Empty ), "Pulse-Eight USB-CEC Adapter", MessageBoxButtons.OK, MessageBoxIcon.Error);
589 StreamWriter writer = new StreamWriter(fs);
590 StringBuilder output = new StringBuilder();
591 output.AppendLine("<settings>");
592 output.AppendLine("<setting id=\"cec_hdmi_port\" value=\"" + Config.HDMIPort + "\" />");
593 output.AppendLine("<setting id=\"connected_device\" value=\"" + (Config.BaseDevice == CecLogicalAddress.AudioSystem ? 5 : 0) + "\" />");
594 output.AppendLine("<setting id=\"cec_power_on_startup\" value=\"" + (Config.ActivateSource ? 1 : 0) + "\" />");
595 output.AppendLine("<setting id=\"cec_power_off_shutdown\" value=\"" + (Config.PowerOffDevices.IsSet(CecLogicalAddress.Broadcast) ? 1 : 0) + "\" />");
596 output.AppendLine("<setting id=\"cec_standby_screensaver\" value=\"" + (Config.PowerOffScreensaver ? 1 : 0) + "\" />");
597 output.AppendLine("<setting id=\"standby_pc_on_tv_standby\" value=\"" + (Config.PowerOffOnStandby ? 1 : 0) + "\" />");
598 output.AppendLine("<setting id=\"use_tv_menu_language\" value=\"" + (Config.UseTVMenuLanguage ? 1 : 0) + "\" />");
599 output.AppendLine("<setting id=\"enabled\" value=\"1\" />");
600 output.AppendLine("<setting id=\"port\" value=\"\" />");
602 // only supported by 1.5.0+ clients
603 output.AppendLine("<!-- the following lines are only supported by v1.5.0+ clients -->");
604 output.AppendLine("<setting id=\"activate_source\" value=\"" + (Config.ActivateSource ? 1 : 0) + "\" />");
605 output.AppendLine("<setting id=\"physical_address\" value=\"" + string.Format("{0,4:X}", cbOverrideAddress.Checked ? Config.PhysicalAddress : 0).Trim() + "\" />");
606 output.AppendLine("<setting id=\"device_type\" value=\"" + (int)Config.DeviceTypes.Types[0] + "\" />");
607 output.AppendLine("<setting id=\"tv_vendor\" value=\"" + string.Format("{0,6:X}", (int)Config.TvVendor).Trim() + "\" />");
609 output.Append("<setting id=\"wake_devices\" value=\"");
610 StringBuilder strWakeDevices = new StringBuilder();
611 foreach (CecLogicalAddress addr in Config.WakeDevices.Addresses)
612 if (addr != CecLogicalAddress.Unknown)
613 strWakeDevices.Append(" " + (int)addr);
614 output.Append(strWakeDevices.ToString().Trim());
615 output.AppendLine("\" />");
617 output.Append("<setting id=\"standby_devices\" value=\"");
618 StringBuilder strSleepDevices = new StringBuilder();
619 foreach (CecLogicalAddress addr in Config.PowerOffDevices.Addresses)
620 if (addr != CecLogicalAddress.Unknown)
621 strSleepDevices.Append(" " + (int)addr);
622 output.Append(strSleepDevices.ToString().Trim());
623 output.AppendLine("\" />");
625 // only supported by 1.5.1+ clients
626 output.AppendLine("<!-- the following lines are only supported by v1.5.1+ clients -->");
627 output.AppendLine("<setting id=\"send_inactive_source\" value=\"" + (Config.SendInactiveSource ? 1 : 0) + "\" />");
629 output.AppendLine("</settings>");
630 writer.Write(output.ToString());
634 MessageBox.Show("Settings are stored.", "Pulse-Eight USB-CEC Adapter", MessageBoxButtons.OK, MessageBoxIcon.Information);
637 SetControlsEnabled(true);
642 if (!Lib.PersistConfiguration(Config))
643 MessageBox.Show("Could not persist the new settings.", "Pulse-Eight USB-CEC Adapter", MessageBoxButtons.OK, MessageBoxIcon.Error);
645 MessageBox.Show("Settings are stored.", "Pulse-Eight USB-CEC Adapter", MessageBoxButtons.OK, MessageBoxIcon.Information);
647 SetControlsEnabled(true);
650 private void bReloadConfig_Click(object sender, EventArgs e)
652 if (Lib.CanPersistConfiguration())
654 Lib.GetCurrentConfiguration(Config);
655 ConfigurationChanged(Config);
659 ReloadXmlConfiguration();
663 private void cbVendorOverride_CheckedChanged(object sender, EventArgs e)
665 if (cbVendorOverride.Checked)
667 cbVendorId.Enabled = true;
668 switch (cbVendorId.Text)
671 Config.TvVendor = CecVendorId.LG;
674 Config.TvVendor = CecVendorId.Onkyo;
677 Config.TvVendor = CecVendorId.Panasonic;
680 Config.TvVendor = CecVendorId.Philips;
683 Config.TvVendor = CecVendorId.Pioneer;
686 Config.TvVendor = CecVendorId.Samsung;
689 Config.TvVendor = CecVendorId.Sony;
692 Config.TvVendor = CecVendorId.Yamaha;
695 Config.TvVendor = CecVendorId.Unknown;
701 cbVendorId.Enabled = false;
702 Config.TvVendor = CecVendorId.Unknown;
706 private void cbDeviceType_SelectedIndexChanged(object sender, EventArgs e)
708 CecDeviceType type = SelectedDeviceType;
709 if (type != Config.DeviceTypes.Types[0])
711 Config.DeviceTypes.Types[0] = type;
712 if (!DeviceChangeWarningDisplayed)
714 DeviceChangeWarningDisplayed = true;
715 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);
721 #region Key configuration tab
722 delegate void SelectKeypressRowCallback(CecKeypress key);
723 private void SelectKeypressRow(CecKeypress key)
725 if (dgButtons.InvokeRequired)
727 SelectKeypressRowCallback d = SelectKeypressRow;
730 Invoke(d, new object[] { key });
732 catch (Exception) { }
737 foreach (DataGridViewRow row in dgButtons.Rows)
739 CecButtonConfigItem item = row.DataBoundItem as CecButtonConfigItem;
740 if (item != null && item.Key.Keycode == key.Keycode)
742 rowIndex = row.Index;
748 row.Selected = false;
752 dgButtons.FirstDisplayedScrollingRowIndex = rowIndex;
756 private void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
758 DataGridView grid = sender as DataGridView;
759 CecButtonConfigItem data = grid.Rows[e.RowIndex].DataBoundItem as CecButtonConfigItem;
760 if (data == null || !data.Enabled)
761 e.CellStyle.ForeColor = Color.Gray;
765 #region CEC Tester tab
766 public void CheckActiveDevices()
768 CecLogicalAddresses activeDevices = Lib.GetActiveDevices();
769 List<string> deviceList = new List<string>();
770 foreach (CecLogicalAddress activeDevice in activeDevices.Addresses)
772 if (activeDevice != CecLogicalAddress.Unknown)
773 deviceList.Add(string.Format("{0,1:X} : {1}", (int)activeDevice, Lib.ToString(activeDevice)));
775 deviceList.Add(string.Format("{0,1:X} : {1}", (int)CecLogicalAddress.Broadcast, Lib.ToString(CecLogicalAddress.Broadcast)));
777 SetActiveDevices(deviceList.ToArray());
780 delegate void SetActiveDevicesCallback(string[] activeDevices);
781 private void SetActiveDevices(string[] activeDevices)
783 if (cbCommandDestination.InvokeRequired)
785 SetActiveDevicesCallback d = SetActiveDevices;
788 Invoke(d, new object[] { activeDevices });
790 catch (Exception) { }
794 cbCommandDestination.Items.Clear();
795 foreach (string item in activeDevices)
796 cbCommandDestination.Items.Add(item);
800 delegate CecLogicalAddress GetTargetDeviceCallback();
801 private CecLogicalAddress GetTargetDevice()
803 if (cbCommandDestination.InvokeRequired)
805 GetTargetDeviceCallback d = GetTargetDevice;
806 CecLogicalAddress retval = CecLogicalAddress.Unknown;
809 retval = (CecLogicalAddress)Invoke(d, new object[] { });
811 catch (Exception) { }
815 return GetLogicalAddressFromString(cbCommandDestination.Text);
818 private CecLogicalAddress GetLogicalAddressFromString(string name)
820 switch (name.Substring(0, 1).ToLower())
823 return CecLogicalAddress.Tv;
825 return CecLogicalAddress.RecordingDevice1;
827 return CecLogicalAddress.RecordingDevice2;
829 return CecLogicalAddress.Tuner1;
831 return CecLogicalAddress.PlaybackDevice1;
833 return CecLogicalAddress.AudioSystem;
835 return CecLogicalAddress.Tuner2;
837 return CecLogicalAddress.Tuner3;
839 return CecLogicalAddress.PlaybackDevice2;
841 return CecLogicalAddress.RecordingDevice3;
843 return CecLogicalAddress.Tuner4;
845 return CecLogicalAddress.PlaybackDevice3;
847 return CecLogicalAddress.Reserved1;
849 return CecLogicalAddress.Reserved2;
851 return CecLogicalAddress.FreeUse;
853 return CecLogicalAddress.Broadcast;
855 return CecLogicalAddress.Unknown;
859 private void bSendImageViewOn_Click(object sender, EventArgs e)
861 SendImageViewOn(GetTargetDevice());
864 private void bStandby_Click(object sender, EventArgs e)
866 SendStandby(GetTargetDevice());
869 private void bScan_Click(object sender, EventArgs e)
871 ShowDeviceInfo(GetTargetDevice());
874 private void bActivateSource_Click(object sender, EventArgs e)
876 ActivateSource(GetTargetDevice());
879 private void cbCommandDestination_SelectedIndexChanged(object sender, EventArgs e)
881 bool enableVolumeButtons = (GetTargetDevice() == CecLogicalAddress.AudioSystem);
882 bVolUp.Enabled = enableVolumeButtons;
883 bVolDown.Enabled = enableVolumeButtons;
884 bMute.Enabled = enableVolumeButtons;
885 bActivateSource.Enabled = (GetTargetDevice() != CecLogicalAddress.Broadcast);
886 bScan.Enabled = (GetTargetDevice() != CecLogicalAddress.Broadcast);
889 private void bVolUp_Click(object sender, EventArgs e)
891 SetControlsEnabled(false);
893 SetControlsEnabled(true);
896 private void bVolDown_Click(object sender, EventArgs e)
898 SetControlsEnabled(false);
899 Lib.VolumeDown(true);
900 SetControlsEnabled(true);
903 private void bMute_Click(object sender, EventArgs e)
905 SetControlsEnabled(false);
907 SetControlsEnabled(true);
910 private void bRescanDevices_Click(object sender, EventArgs e)
912 if (!SuppressUpdates && ActiveProcess == null)
914 SetControlsEnabled(false);
915 ActiveProcess = new RescanDevices(ref Lib);
916 ActiveProcess.EventHandler += ProcessEventHandler;
917 (new Thread(ActiveProcess.Run)).Start();
923 delegate void UpdateLogCallback();
924 private void UpdateLog()
926 if (tbLog.InvokeRequired)
928 UpdateLogCallback d = UpdateLog;
931 Invoke(d, new object[] { });
933 catch (Exception) { }
938 tbLog.Select(tbLog.Text.Length, 0);
939 tbLog.ScrollToCaret();
943 private void AddLogMessage(CecLogMessage message)
945 string strLevel = "";
946 bool display = false;
947 switch (message.Level)
949 case CecLogLevel.Error:
950 strLevel = "ERROR: ";
951 display = cbLogError.Checked;
953 case CecLogLevel.Warning:
954 strLevel = "WARNING: ";
955 display = cbLogWarning.Checked;
957 case CecLogLevel.Notice:
958 strLevel = "NOTICE: ";
959 display = cbLogNotice.Checked;
961 case CecLogLevel.Traffic:
962 strLevel = "TRAFFIC: ";
963 display = cbLogTraffic.Checked;
965 case CecLogLevel.Debug:
966 strLevel = "DEBUG: ";
967 display = cbLogDebug.Checked;
975 string strLog = string.Format("{0} {1,16} {2}", strLevel, message.Time, message.Message) + System.Environment.NewLine;
979 if (SelectedTab == ConfigTab.Log)
983 private void bClearLog_Click(object sender, EventArgs e)
989 private void bSaveLog_Click(object sender, EventArgs e)
991 SaveFileDialog dialog = new SaveFileDialog()
993 Title = "Where do you want to store the log file?",
994 InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments),
995 FileName = "cec-log.txt",
996 Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*",
1000 if (dialog.ShowDialog() == DialogResult.OK)
1002 FileStream fs = (FileStream)dialog.OpenFile();
1005 MessageBox.Show("Cannot open '" + dialog.FileName + "' for writing", "Pulse-Eight USB-CEC Adapter", MessageBoxButtons.OK, MessageBoxIcon.Error);
1009 StreamWriter writer = new StreamWriter(fs);
1014 MessageBox.Show("The log file was stored as '" + dialog.FileName + "'.", "Pulse-Eight USB-CEC Adapter", MessageBoxButtons.OK, MessageBoxIcon.Information);
1020 #region LibCecSharp callbacks
1021 public int ConfigurationChanged(LibCECConfiguration config)
1024 SetControlText(tbPhysicalAddress, string.Format("{0,4:X}", Config.PhysicalAddress));
1025 SetControlText(cbConnectedDevice, Config.BaseDevice == CecLogicalAddress.AudioSystem ? AVRVendorString : TVVendorString);
1026 SetControlText(cbPortNumber, Config.HDMIPort.ToString());
1027 switch (config.DeviceTypes.Types[0])
1029 case CecDeviceType.RecordingDevice:
1030 SetControlText(cbDeviceType, "Recorder");
1032 case CecDeviceType.PlaybackDevice:
1033 SetControlText(cbDeviceType, "Player");
1035 case CecDeviceType.Tuner:
1036 SetControlText(cbDeviceType, "Tuner");
1039 SetControlText(cbDeviceType, "Recorder");
1042 if (config.TvVendor != CecVendorId.Unknown)
1044 SetCheckboxChecked(cbVendorOverride, true);
1045 SetControlText(cbVendorId, Lib.ToString(config.TvVendor));
1049 SetCheckboxChecked(cbVendorOverride, false);
1050 SetControlText(cbVendorId, Lib.ToString(TVVendor));
1053 SetCheckboxChecked(cbUseTVMenuLanguage, Config.UseTVMenuLanguage);
1054 SetCheckboxChecked(cbActivateSource, Config.ActivateSource);
1055 SetCheckboxChecked(cbPowerOffScreensaver, Config.PowerOffScreensaver);
1056 SetCheckboxChecked(cbPowerOffOnStandby, Config.PowerOffOnStandby);
1057 SetCheckboxChecked(cbSendInactiveSource, Config.SendInactiveSource);
1058 UpdateSelectedDevice();
1060 for (int iPtr = 0; iPtr < 15; iPtr++)
1061 SetCheckboxItemChecked(cbWakeDevices, iPtr, Config.WakeDevices.IsSet((CecLogicalAddress)iPtr));
1062 for (int iPtr = 0; iPtr < 15; iPtr++)
1063 SetCheckboxItemChecked(cbPowerOffDevices, iPtr, Config.PowerOffDevices.IsSet((CecLogicalAddress)iPtr));
1065 SetControlText(this, "Pulse-Eight USB-CEC Adapter - libCEC " + Lib.ToString(Config.ServerVersion));
1069 public int ReceiveCommand(CecCommand command)
1074 public int ReceiveKeypress(CecKeypress key)
1076 SelectKeypressRow(key);
1080 public int ReceiveLogMessage(CecLogMessage message)
1084 AddLogMessage(message);
1086 catch (Exception) { }
1091 #region Class members
1092 public bool HasAVRDevice { get; private set; }
1094 private CecVendorId _tvVendor = CecVendorId.Unknown;
1095 public CecVendorId TVVendor
1097 get { return _tvVendor;}
1098 private set { _tvVendor = value; }
1100 public string TVVendorString
1104 return TVVendor != CecVendorId.Unknown ?
1105 "Television (" + Lib.ToString(TVVendor) + ")" :
1111 private CecVendorId _avrVendor = CecVendorId.Unknown;
1112 public CecVendorId AVRVendor
1114 get { return _avrVendor; }
1115 private set { _avrVendor = value; }
1117 public string AVRVendorString
1121 return AVRVendor != CecVendorId.Unknown ?
1122 "AVR (" + Lib.ToString(AVRVendor) + ")" :
1127 public CecLogicalAddress SelectedConnectedDevice
1131 return (cbConnectedDevice.Text.Equals(AVRVendorString)) ? CecLogicalAddress.AudioSystem : CecLogicalAddress.Tv;
1134 public CecDeviceType SelectedDeviceType
1138 switch (cbDeviceType.Text.ToLower())
1141 return CecDeviceType.PlaybackDevice;
1143 return CecDeviceType.Tuner;
1145 return CecDeviceType.RecordingDevice;
1149 public int SelectedPortNumber
1153 int iPortNumber = 0;
1154 if (!int.TryParse(cbPortNumber.Text, out iPortNumber))
1159 protected LibCECConfiguration Config;
1160 protected LibCecSharp Lib;
1161 private CecCallbackWrapper Callbacks;
1162 private UpdateProcess ActiveProcess = null;
1163 private bool SuppressUpdates = true;
1164 private ConfigTab SelectedTab = ConfigTab.Configuration;
1165 private string Log = string.Empty;
1166 private DeviceInformation UpdatingInfoPanel = null;
1167 private bool DeviceChangeWarningDisplayed = false;
1168 public CecLogicalAddresses WakeDevices
1172 CecLogicalAddresses addr = new CecLogicalAddresses();
1173 foreach (object item in cbWakeDevices.CheckedItems)
1175 string c = item as string;
1176 addr.Set(GetLogicalAddressFromString(c));
1181 public CecLogicalAddresses PowerOffDevices
1185 CecLogicalAddresses addr = new CecLogicalAddresses();
1186 foreach (object item in cbPowerOffDevices.CheckedItems)
1188 string c = item as string;
1189 addr.Set(GetLogicalAddressFromString(c));
1198 /// A little wrapper that is needed because we already inherit form
1200 internal class CecCallbackWrapper : CecCallbackMethods
1202 public CecCallbackWrapper(CecConfigGUI gui)
1207 public override int ReceiveCommand(CecCommand command)
1209 return Gui.ReceiveCommand(command);
1212 public override int ReceiveKeypress(CecKeypress key)
1214 return Gui.ReceiveKeypress(key);
1217 public override int ReceiveLogMessage(CecLogMessage message)
1219 return Gui.ReceiveLogMessage(message);
1222 public override int ConfigurationChanged(LibCECConfiguration config)
1224 return Gui.ConfigurationChanged(config);
1227 private CecConfigGUI Gui;