Commit | Line | Data |
---|---|---|
16f47961 LOK |
1 | /* |
2 | * This file is part of the libCEC(R) library. | |
3 | * | |
4 | * libCEC(R) is Copyright (C) 2011-2013 Pulse-Eight Limited. All rights reserved. | |
5 | * libCEC(R) is an original work, containing original code. | |
6 | * | |
7 | * libCEC(R) is a trademark of Pulse-Eight Limited. | |
8 | * | |
9 | * This program is dual-licensed; you can redistribute it and/or modify | |
10 | * it under the terms of the GNU General Public License as published by | |
11 | * the Free Software Foundation; either version 2 of the License, or | |
12 | * (at your option) any later version. | |
13 | * | |
14 | * This program is distributed in the hope that it will be useful, | |
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 | * GNU General Public License for more details. | |
18 | * | |
19 | * You should have received a copy of the GNU General Public License | |
20 | * along with this program; if not, write to the Free Software | |
21 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | |
22 | * | |
23 | * | |
24 | * Alternatively, you can license this library under a commercial license, | |
25 | * please contact Pulse-Eight Licensing for more information. | |
26 | * | |
27 | * For more information contact: | |
28 | * Pulse-Eight Licensing <license@pulse-eight.com> | |
29 | * http://www.pulse-eight.com/ | |
30 | * http://www.pulse-eight.net/ | |
31 | */ | |
32 | ||
f017f3c4 LOK |
33 | using CecSharp; |
34 | using LibCECTray.Properties; | |
35 | using LibCECTray.ui; | |
36 | ||
37 | namespace LibCECTray.controller.actions | |
38 | { | |
39 | class ShowDeviceInfo : UpdateProcess | |
40 | { | |
41 | public ShowDeviceInfo(CECController controller, LibCecSharp lib, CecLogicalAddress address) | |
42 | { | |
43 | _controller = controller; | |
44 | _lib = lib; | |
45 | _address = address; | |
46 | } | |
47 | ||
48 | public virtual void ShowDialog(CecLogicalAddress address, ref LibCecSharp lib, | |
49 | bool devicePresent, CecVendorId vendor, bool isActiveSource, ushort physicalAddress, | |
50 | CecVersion version, CecPowerStatus power, string osdName, string menuLanguage) | |
51 | { | |
52 | DeviceInformation di = new DeviceInformation(_controller, _address, ref _lib, devicePresent, vendor, isActiveSource, physicalAddress, version, power, osdName, menuLanguage); | |
53 | _controller.DisplayDialog(di, false); | |
54 | } | |
55 | ||
56 | public override void Process() | |
57 | { | |
58 | CecVendorId vendor = CecVendorId.Unknown; | |
59 | bool isActiveSource = false; | |
60 | ushort physicalAddress = 0xFFFF; | |
61 | CecVersion version = CecVersion.Unknown; | |
62 | CecPowerStatus power = CecPowerStatus.Unknown; | |
63 | string osdName = Resources.unknown; | |
64 | string menuLanguage = Resources.unknown; | |
65 | ||
66 | SendEvent(UpdateEventType.StatusText, string.Format(Resources.action_check_device_present, _lib.ToString(_address))); | |
67 | SendEvent(UpdateEventType.ProgressBar, 10); | |
68 | ||
69 | bool devicePresent = _lib.IsActiveDevice(_address); | |
70 | if (devicePresent) | |
71 | { | |
72 | SendEvent(UpdateEventType.StatusText, Resources.action_requesting_vendor_id); | |
73 | SendEvent(UpdateEventType.ProgressBar, 20); | |
74 | vendor = _lib.GetDeviceVendorId(_address); | |
75 | ||
76 | SendEvent(UpdateEventType.StatusText, Resources.action_requesting_active_source_state); | |
77 | SendEvent(UpdateEventType.ProgressBar, 30); | |
78 | isActiveSource = _lib.IsActiveSource(_address); | |
79 | ||
80 | SendEvent(UpdateEventType.StatusText, Resources.action_requesting_physical_address); | |
81 | SendEvent(UpdateEventType.ProgressBar, 40); | |
82 | physicalAddress = _lib.GetDevicePhysicalAddress(_address); | |
83 | ||
84 | SendEvent(UpdateEventType.StatusText, Resources.action_requesting_cec_version); | |
85 | SendEvent(UpdateEventType.ProgressBar, 50); | |
86 | version = _lib.GetDeviceCecVersion(_address); | |
87 | ||
88 | SendEvent(UpdateEventType.StatusText, Resources.action_requesting_power_status); | |
89 | SendEvent(UpdateEventType.ProgressBar, 60); | |
90 | power = _lib.GetDevicePowerStatus(_address); | |
91 | ||
92 | SendEvent(UpdateEventType.StatusText, Resources.action_requesting_osd_name); | |
93 | SendEvent(UpdateEventType.ProgressBar, 70); | |
94 | osdName = _lib.GetDeviceOSDName(_address); | |
95 | ||
96 | SendEvent(UpdateEventType.StatusText, Resources.action_requesting_menu_language); | |
97 | SendEvent(UpdateEventType.ProgressBar, 80); | |
98 | menuLanguage = _lib.GetDeviceMenuLanguage(_address); | |
99 | } | |
100 | ||
101 | SendEvent(UpdateEventType.StatusText, Resources.action_showing_device_information); | |
102 | SendEvent(UpdateEventType.ProgressBar, 90); | |
103 | SendEvent(UpdateEventType.ProcessCompleted, true); | |
104 | ||
105 | ShowDialog(_address, ref _lib, devicePresent, vendor, isActiveSource, physicalAddress, version, power, osdName, menuLanguage); | |
106 | ||
107 | SendEvent(UpdateEventType.StatusText, Resources.ready); | |
108 | SendEvent(UpdateEventType.ProgressBar, 100); | |
109 | } | |
110 | ||
111 | private readonly CECController _controller; | |
112 | private LibCecSharp _lib; | |
113 | private readonly CecLogicalAddress _address; | |
114 | } | |
115 | } |