Release 2.2.0
[deb_libcec.git] / src / LibCecSharp / CecSharpTypes.h
CommitLineData
4ef3b314
LOK
1#pragma once
2/*
f9717bcc
LOK
3* This file is part of the libCEC(R) library.
4*
16f47961 5* libCEC(R) is Copyright (C) 2011-2013 Pulse-Eight Limited. All rights reserved.
f9717bcc
LOK
6* libCEC(R) is an original work, containing original code.
7*
8* libCEC(R) is a trademark of Pulse-Eight Limited.
9*
10* This program is dual-licensed; you can redistribute it and/or modify
11* it under the terms of the GNU General Public License as published by
12* the Free Software Foundation; either version 2 of the License, or
13* (at your option) any later version.
14*
15* This program is distributed in the hope that it will be useful,
16* but WITHOUT ANY WARRANTY; without even the implied warranty of
17* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18* GNU General Public License for more details.
19*
20* You should have received a copy of the GNU General Public License
21* along with this program; if not, write to the Free Software
22* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23*
24*
25* Alternatively, you can license this library under a commercial license,
26* please contact Pulse-Eight Licensing for more information.
27*
28* For more information contact:
29* Pulse-Eight Licensing <license@pulse-eight.com>
30* http://www.pulse-eight.com/
31* http://www.pulse-eight.net/
32*/
4ef3b314 33
dc6366e8 34#include "../lib/platform/threads/mutex.h"
4ef3b314
LOK
35#include <vcclr.h>
36#include <msclr/marshal.h>
37#include "../../include/cec.h"
dc6366e8 38#include <vector>
4ef3b314
LOK
39
40#using <System.dll>
41
1c7cd8f8
LOK
42/// <summary>
43/// LibCecSharp namespace
44/// </summary>
45/// <see cref="LibCecSharp" />
4ef3b314
LOK
46namespace CecSharp
47{
8438c41f
LOK
48 /// <summary>
49 /// The device type. For client applications, libCEC only supports RecordingDevice, PlaybackDevice or Tuner.
50 /// libCEC uses RecordingDevice by default.
51 /// </summary>
f9717bcc
LOK
52 public enum class CecDeviceType
53 {
8438c41f
LOK
54 /// <summary>
55 /// Television
56 /// </summary>
f9717bcc 57 Tv = 0,
8438c41f
LOK
58 /// <summary>
59 /// Recording device
60 /// </summary>
f9717bcc 61 RecordingDevice = 1,
8438c41f
LOK
62 /// <summary>
63 /// Reserved / do not use
64 /// </summary>
f9717bcc 65 Reserved = 2,
8438c41f
LOK
66 /// <summary>
67 /// Tuner
68 /// </summary>
f9717bcc 69 Tuner = 3,
8438c41f
LOK
70 /// <summary>
71 /// Playback device
72 /// </summary>
f9717bcc 73 PlaybackDevice = 4,
8438c41f
LOK
74 /// <summary>
75 /// Audio system / AVR
76 /// </summary>
f9717bcc
LOK
77 AudioSystem = 5
78 };
79
8438c41f
LOK
80 /// <summary>
81 /// Log level that can be used by the logging callback method to filter messages from libCEC.
82 /// </summary>
f9717bcc
LOK
83 public enum class CecLogLevel
84 {
8438c41f
LOK
85 /// <summary>
86 /// No logging
87 /// </summary>
f9717bcc 88 None = 0,
8438c41f
LOK
89 /// <summary>
90 /// libCEC encountered a serious problem, and couldn't complete an action.
91 /// </summary>
f9717bcc 92 Error = 1,
8438c41f
LOK
93 /// <summary>
94 /// libCEC warns that it encountered a problem, but recovered.
95 /// </summary>
f9717bcc 96 Warning = 2,
8438c41f
LOK
97 /// <summary>
98 /// libCEC informs the client about a CEC state change.
99 /// </summary>
f9717bcc 100 Notice = 4,
8438c41f
LOK
101 /// <summary>
102 /// Raw CEC data traffic
103 /// </summary>
f9717bcc 104 Traffic = 8,
8438c41f
LOK
105 /// <summary>
106 /// Debugging messages
107 /// </summary>
f9717bcc 108 Debug = 16,
8438c41f
LOK
109 /// <summary>
110 /// Display all messages
111 /// </summary>
f9717bcc
LOK
112 All = 31
113 };
114
8438c41f
LOK
115 /// <summary>
116 /// A logical address on the CEC bus
117 /// </summary>
f9717bcc
LOK
118 public enum class CecLogicalAddress
119 {
8438c41f
LOK
120 /// <summary>
121 /// Not a valid logical address
122 /// </summary>
123 Unknown = -1,
124 /// <summary>
125 /// Television
126 /// </summary>
f9717bcc 127 Tv = 0,
8438c41f
LOK
128 /// <summary>
129 /// Recording device 1
130 /// </summary>
f9717bcc 131 RecordingDevice1 = 1,
8438c41f
LOK
132 /// <summary>
133 /// Recording device 2
134 /// </summary>
f9717bcc 135 RecordingDevice2 = 2,
8438c41f
LOK
136 /// <summary>
137 /// Tuner 1
138 /// </summary>
f9717bcc 139 Tuner1 = 3,
8438c41f
LOK
140 /// <summary>
141 /// Playback device 1
142 /// </summary>
f9717bcc 143 PlaybackDevice1 = 4,
8438c41f
LOK
144 /// <summary>
145 /// Audio system / AVR
146 /// </summary>
f9717bcc 147 AudioSystem = 5,
8438c41f
LOK
148 /// <summary>
149 /// Tuner 2
150 /// </summary>
f9717bcc 151 Tuner2 = 6,
8438c41f
LOK
152 /// <summary>
153 /// Tuner 3
154 /// </summary>
f9717bcc 155 Tuner3 = 7,
8438c41f
LOK
156 /// <summary>
157 /// Playback device 2
158 /// </summary>
f9717bcc 159 PlaybackDevice2 = 8,
8438c41f
LOK
160 /// <summary>
161 /// Recording device 3
162 /// </summary>
f9717bcc 163 RecordingDevice3 = 9,
8438c41f
LOK
164 /// <summary>
165 /// Tuner 4
166 /// </summary>
f9717bcc 167 Tuner4 = 10,
8438c41f
LOK
168 /// <summary>
169 /// Playback device 3
170 /// </summary>
f9717bcc 171 PlaybackDevice3 = 11,
8438c41f
LOK
172 /// <summary>
173 /// Reserved address 1
174 /// </summary>
f9717bcc 175 Reserved1 = 12,
8438c41f
LOK
176 /// <summary>
177 /// Reserved address 2
178 /// </summary>
f9717bcc 179 Reserved2 = 13,
8438c41f
LOK
180 /// <summary>
181 /// Free to use
182 /// </summary>
f9717bcc 183 FreeUse = 14,
8438c41f
LOK
184 /// <summary>
185 /// Unregistered / new device
186 /// </summary>
f9717bcc 187 Unregistered = 15,
8438c41f
LOK
188 /// <summary>
189 /// Broadcast address
190 /// </summary>
f9717bcc
LOK
191 Broadcast = 15
192 };
193
8438c41f
LOK
194 /// <summary>
195 /// The type of alert when libCEC calls the CecAlert callback
196 /// </summary>
f9717bcc
LOK
197 public enum class CecAlert
198 {
8438c41f
LOK
199 /// <summary>
200 /// The device needs servicing. This is set when the firmware can be upgraded, or when a problem with the firmware is detected.
201 /// The latest firmware flash tool can be downloaded from http://packages.pulse-eight.net/
202 /// </summary>
5b431288
LOK
203 ServiceDevice = 0,
204 /// <summary>
205 /// The connection to the adapter was lost, probably because the device got unplugged.
206 /// </summary>
207 ConnectionLost,
208 /// <summary>
209 /// No permission from the OS to access the adapter.
210 /// </summary>
211 PermissionError,
212 /// <summary>
213 /// The device is being used by another program.
214 /// </summary>
215 PortBusy,
216 /// <summary>
217 /// The physical address that is assigned to the adapter is already being used.
218 /// </summary>
219 PhysicalAddressError,
220 /// <summary>
221 /// The TV does not respond to polls.
222 /// </summary>
223 TVPollFailed
f9717bcc
LOK
224 };
225
8438c41f
LOK
226 /// <summary>
227 /// The type of parameter that is sent with the CecAlert callback
228 /// </summary>
f9717bcc
LOK
229 public enum class CecParameterType
230 {
8438c41f
LOK
231 /// <summary>
232 /// The parameter is a string
233 /// </summary>
f9717bcc
LOK
234 ParameterTypeString = 1
235 };
236
8438c41f
LOK
237 /// <summary>
238 /// A parameter for the CecAlert callback
239 /// </summary>
f9717bcc
LOK
240 public ref class CecParameter
241 {
242 public:
8438c41f
LOK
243 /// <summary>
244 /// Create a new parameter
245 /// </summary>
246 /// <param name="type">The type of this parameter.</param>
247 /// <param name="data">The value of this parameter.</param>
248 CecParameter(CecParameterType type, System::String ^ data)
f9717bcc
LOK
249 {
250 Type = type;
8438c41f 251 Data = data;
f9717bcc
LOK
252 }
253
8438c41f
LOK
254 /// <summary>
255 /// The type of this parameter
256 /// </summary>
f9717bcc 257 property CecParameterType Type;
8438c41f
LOK
258 /// <summary>
259 /// The value of this parameter
260 /// </summary>
f9717bcc
LOK
261 property System::String ^ Data;
262 };
263
8438c41f
LOK
264 /// <summary>
265 /// The power status of a CEC device
266 /// </summary>
f9717bcc
LOK
267 public enum class CecPowerStatus
268 {
8438c41f
LOK
269 /// <summary>
270 /// Powered on
271 /// </summary>
f9717bcc 272 On = 0x00,
8438c41f
LOK
273 /// <summary>
274 /// In standby mode
275 /// </summary>
f9717bcc 276 Standby = 0x01,
8438c41f
LOK
277 /// <summary>
278 /// In transition from standby to on
279 /// </summary>
f9717bcc 280 InTransitionStandbyToOn = 0x02,
8438c41f
LOK
281 /// <summary>
282 /// In transition from on to standby
283 /// </summary>
f9717bcc 284 InTransitionOnToStandby = 0x03,
8438c41f
LOK
285 /// <summary>
286 /// Unknown status
287 /// </summary>
f9717bcc
LOK
288 Unknown = 0x99
289 };
290
8438c41f
LOK
291 /// <summary>
292 /// The CEC version of a CEC device
293 /// </summary>
f9717bcc
LOK
294 public enum class CecVersion
295 {
8438c41f
LOK
296 /// <summary>
297 /// Unknown version
298 /// </summary>
f9717bcc 299 Unknown = 0x00,
8438c41f
LOK
300 /// <summary>
301 /// Version 1.2
302 /// </summary>
f9717bcc 303 V1_2 = 0x01,
8438c41f
LOK
304 /// <summary>
305 /// Version 1.2a
306 /// </summary>
f9717bcc 307 V1_2A = 0x02,
8438c41f
LOK
308 /// <summary>
309 /// Version 1.3
310 /// </summary>
f9717bcc 311 V1_3 = 0x03,
8438c41f
LOK
312 /// <summary>
313 /// Version 1.3a
314 /// </summary>
f9717bcc 315 V1_3A = 0x04,
8438c41f
LOK
316 /// <summary>
317 /// Version 1.4
318 /// </summary>
f9717bcc
LOK
319 V1_4 = 0x05
320 };
321
8438c41f
LOK
322 /// <summary>
323 /// Parameter for OSD string display, that controls how to display the string
324 /// </summary>
f9717bcc
LOK
325 public enum class CecDisplayControl
326 {
8438c41f
LOK
327 /// <summary>
328 /// Display for the default time
329 /// </summary>
f9717bcc 330 DisplayForDefaultTime = 0x00,
8438c41f
LOK
331 /// <summary>
332 /// Display until it is cleared by ClearPreviousMessage
333 /// </summary>
f9717bcc 334 DisplayUntilCleared = 0x40,
8438c41f
LOK
335 /// <summary>
336 /// Clear message displayed by DisplayUntilCleared
337 /// </summary>
f9717bcc 338 ClearPreviousMessage = 0x80,
8438c41f
LOK
339 /// <summary>
340 /// Reserved / do not use
341 /// </summary>
f9717bcc
LOK
342 ReservedForFutureUse = 0xC0
343 };
344
8438c41f
LOK
345 /// <summary>
346 /// The menu state of a CEC device
347 /// </summary>
f9717bcc
LOK
348 public enum class CecMenuState
349 {
8438c41f
LOK
350 /// <summary>
351 /// Menu active
352 /// </summary>
f9717bcc 353 Activated = 0,
8438c41f
LOK
354 /// <summary>
355 /// Menu not active
356 /// </summary>
f9717bcc
LOK
357 Deactivated = 1
358 };
359
8438c41f
LOK
360 /// <summary>
361 /// Deck control mode for playback and recording devices
362 /// </summary>
f9717bcc
LOK
363 public enum class CecDeckControlMode
364 {
8438c41f
LOK
365 /// <summary>
366 /// Skip forward / wind
367 /// </summary>
f9717bcc 368 SkipForwardWind = 1,
8438c41f
LOK
369 /// <summary>
370 /// Skip reverse / rewind
371 /// </summary>
f9717bcc 372 SkipReverseRewind = 2,
8438c41f
LOK
373 /// <summary>
374 /// Stop
375 /// </summary>
f9717bcc 376 Stop = 3,
8438c41f
LOK
377 /// <summary>
378 /// Eject
379 /// </summary>
f9717bcc
LOK
380 Eject = 4
381 };
382
8438c41f
LOK
383 /// <summary>
384 /// Deck status for playback and recording devices
385 /// </summary>
f9717bcc
LOK
386 public enum class CecDeckInfo
387 {
8438c41f
LOK
388 /// <summary>
389 /// Playing
390 /// </summary>
f9717bcc 391 Play = 0x11,
8438c41f
LOK
392 /// <summary>
393 /// Recording
394 /// </summary>
f9717bcc 395 Record = 0x12,
8438c41f
LOK
396 /// <summary>
397 /// Reverse
398 /// </summary>
f9717bcc 399 Reverse = 0x13,
8438c41f
LOK
400 /// <summary>
401 /// Showing still frame
402 /// </summary>
f9717bcc 403 Still = 0x14,
8438c41f
LOK
404 /// <summary>
405 /// Playing slow
406 /// </summary>
f9717bcc 407 Slow = 0x15,
8438c41f
LOK
408 /// <summary>
409 /// Playing slow reverse
410 /// </summary>
f9717bcc 411 SlowReverse = 0x16,
8438c41f
LOK
412 /// <summary>
413 /// Fast forward
414 /// </summary>
f9717bcc 415 FastForward = 0x17,
8438c41f
LOK
416 /// <summary>
417 /// Fast reverse
418 /// </summary>
f9717bcc 419 FastReverse = 0x18,
8438c41f
LOK
420 /// <summary>
421 /// No media detected
422 /// </summary>
f9717bcc 423 NoMedia = 0x19,
8438c41f
LOK
424 /// <summary>
425 /// Stop / not playing
426 /// </summary>
f9717bcc 427 Stop = 0x1A,
8438c41f
LOK
428 /// <summary>
429 /// Skip forward / wind
430 /// </summary>
f9717bcc 431 SkipForwardWind = 0x1B,
8438c41f
LOK
432 /// <summary>
433 /// Skip reverse / rewind
434 /// </summary>
f9717bcc 435 SkipReverseRewind = 0x1C,
8438c41f
LOK
436 /// <summary>
437 /// Index search forward
438 /// </summary>
f9717bcc 439 IndexSearchForward = 0x1D,
8438c41f
LOK
440 /// <summary>
441 /// Index search reverse
442 /// </summary>
f9717bcc 443 IndexSearchReverse = 0x1E,
8438c41f
LOK
444 /// <summary>
445 /// Other / unknown status
446 /// </summary>
f9717bcc
LOK
447 OtherStatus = 0x1F
448 };
449
8438c41f
LOK
450 /// <summary>
451 /// User control code, the key code when the user presses or releases a button on the remote.
1c7cd8f8 452 /// Used by SendKeypress() and the CecKey callback.
8438c41f 453 /// </summary>
f9717bcc
LOK
454 public enum class CecUserControlCode
455 {
8438c41f
LOK
456 /// <summary>
457 /// Select / OK
458 /// </summary>
f9717bcc 459 Select = 0x00,
8438c41f
LOK
460 /// <summary>
461 /// Direction up
462 /// </summary>
f9717bcc 463 Up = 0x01,
8438c41f
LOK
464 /// <summary>
465 /// Direction down
466 /// </summary>
f9717bcc 467 Down = 0x02,
8438c41f
LOK
468 /// <summary>
469 /// Direction left
470 /// </summary>
f9717bcc 471 Left = 0x03,
8438c41f
LOK
472 /// <summary>
473 /// Direction right
474 /// </summary>
f9717bcc 475 Right = 0x04,
8438c41f
LOK
476 /// <summary>
477 /// Direction right + up
478 /// </summary>
f9717bcc 479 RightUp = 0x05,
8438c41f
LOK
480 /// <summary>
481 /// Direction right + down
482 /// </summary>
f9717bcc 483 RightDown = 0x06,
8438c41f
LOK
484 /// <summary>
485 /// Direction left + up
486 /// </summary>
f9717bcc 487 LeftUp = 0x07,
8438c41f
LOK
488 /// <summary>
489 /// Direction left + down
490 /// </summary>
f9717bcc 491 LeftDown = 0x08,
8438c41f
LOK
492 /// <summary>
493 /// Root menu
494 /// </summary>
f9717bcc 495 RootMenu = 0x09,
8438c41f
LOK
496 /// <summary>
497 /// Setup menu
498 /// </summary>
f9717bcc 499 SetupMenu = 0x0A,
8438c41f
LOK
500 /// <summary>
501 /// Contents menu
502 /// </summary>
f9717bcc 503 ContentsMenu = 0x0B,
8438c41f
LOK
504 /// <summary>
505 /// Favourite menu
506 /// </summary>
f9717bcc 507 FavoriteMenu = 0x0C,
8438c41f
LOK
508 /// <summary>
509 /// Exit / back
510 /// </summary>
f9717bcc 511 Exit = 0x0D,
8438c41f
LOK
512 /// <summary>
513 /// Number 0
514 /// </summary>
f9717bcc 515 Number0 = 0x20,
8438c41f
LOK
516 /// <summary>
517 /// Number 1
518 /// </summary>
f9717bcc 519 Number1 = 0x21,
8438c41f
LOK
520 /// <summary>
521 /// Number 2
522 /// </summary>
f9717bcc 523 Number2 = 0x22,
8438c41f
LOK
524 /// <summary>
525 /// Number 3
526 /// </summary>
f9717bcc 527 Number3 = 0x23,
8438c41f
LOK
528 /// <summary>
529 /// Number 4
530 /// </summary>
f9717bcc 531 Number4 = 0x24,
8438c41f
LOK
532 /// <summary>
533 /// Number 5
534 /// </summary>
f9717bcc 535 Number5 = 0x25,
8438c41f
LOK
536 /// <summary>
537 /// Number 6
538 /// </summary>
f9717bcc 539 Number6 = 0x26,
8438c41f
LOK
540 /// <summary>
541 /// Number 7
542 /// </summary>
f9717bcc 543 Number7 = 0x27,
8438c41f
LOK
544 /// <summary>
545 /// Number 8
546 /// </summary>
f9717bcc 547 Number8 = 0x28,
8438c41f
LOK
548 /// <summary>
549 /// Number 9
550 /// </summary>
f9717bcc 551 Number9 = 0x29,
8438c41f
LOK
552 /// <summary>
553 /// .
554 /// </summary>
f9717bcc 555 Dot = 0x2A,
8438c41f
LOK
556 /// <summary>
557 /// Enter input
558 /// </summary>
f9717bcc 559 Enter = 0x2B,
8438c41f
LOK
560 /// <summary>
561 /// Clear input
562 /// </summary>
f9717bcc 563 Clear = 0x2C,
8438c41f
LOK
564 /// <summary>
565 /// Next favourite
566 /// </summary>
f9717bcc 567 NextFavorite = 0x2F,
8438c41f
LOK
568 /// <summary>
569 /// Channel up
570 /// </summary>
f9717bcc 571 ChannelUp = 0x30,
8438c41f
LOK
572 /// <summary>
573 /// Channel down
574 /// </summary>
f9717bcc 575 ChannelDown = 0x31,
8438c41f
LOK
576 /// <summary>
577 /// Previous channel
578 /// </summary>
f9717bcc 579 PreviousChannel = 0x32,
8438c41f
LOK
580 /// <summary>
581 /// Select sound track
582 /// </summary>
f9717bcc 583 SoundSelect = 0x33,
8438c41f
LOK
584 /// <summary>
585 /// Select input
586 /// </summary>
f9717bcc 587 InputSelect = 0x34,
8438c41f
LOK
588 /// <summary>
589 /// Display information
590 /// </summary>
f9717bcc 591 DisplayInformation = 0x35,
8438c41f
LOK
592 /// <summary>
593 /// Show help
594 /// </summary>
f9717bcc 595 Help = 0x36,
8438c41f
LOK
596 /// <summary>
597 /// Page up
598 /// </summary>
f9717bcc 599 PageUp = 0x37,
8438c41f
LOK
600 /// <summary>
601 /// Page down
602 /// </summary>
f9717bcc 603 PageDown = 0x38,
8438c41f
LOK
604 /// <summary>
605 /// Toggle powered on / standby
606 /// </summary>
f9717bcc 607 Power = 0x40,
8438c41f
LOK
608 /// <summary>
609 /// Volume up
610 /// </summary>
f9717bcc 611 VolumeUp = 0x41,
8438c41f
LOK
612 /// <summary>
613 /// Volume down
614 /// </summary>
f9717bcc 615 VolumeDown = 0x42,
8438c41f
LOK
616 /// <summary>
617 /// Mute audio
618 /// </summary>
f9717bcc 619 Mute = 0x43,
8438c41f
LOK
620 /// <summary>
621 /// Start playback
622 /// </summary>
f9717bcc 623 Play = 0x44,
8438c41f
LOK
624 /// <summary>
625 /// Stop playback
626 /// </summary>
f9717bcc 627 Stop = 0x45,
8438c41f
LOK
628 /// <summary>
629 /// Pause playback
630 /// </summary>
f9717bcc 631 Pause = 0x46,
8438c41f
LOK
632 /// <summary>
633 /// Toggle recording
634 /// </summary>
f9717bcc 635 Record = 0x47,
8438c41f
LOK
636 /// <summary>
637 /// Rewind
638 /// </summary>
f9717bcc 639 Rewind = 0x48,
8438c41f
LOK
640 /// <summary>
641 /// Fast forward
642 /// </summary>
f9717bcc 643 FastForward = 0x49,
8438c41f
LOK
644 /// <summary>
645 /// Eject media
646 /// </summary>
f9717bcc 647 Eject = 0x4A,
8438c41f
LOK
648 /// <summary>
649 /// Forward
650 /// </summary>
f9717bcc 651 Forward = 0x4B,
8438c41f
LOK
652 /// <summary>
653 /// Backward
654 /// </summary>
f9717bcc 655 Backward = 0x4C,
8438c41f
LOK
656 /// <summary>
657 /// Stop recording
658 /// </summary>
f9717bcc 659 StopRecord = 0x4D,
8438c41f
LOK
660 /// <summary>
661 /// Pause recording
662 /// </summary>
f9717bcc 663 PauseRecord = 0x4E,
8438c41f
LOK
664 /// <summary>
665 /// Change angle
666 /// </summary>
f9717bcc 667 Angle = 0x50,
8438c41f
LOK
668 /// <summary>
669 /// Toggle sub picture
670 /// </summary>
f9717bcc 671 SubPicture = 0x51,
8438c41f
LOK
672 /// <summary>
673 /// Toggle video on demand
674 /// </summary>
f9717bcc 675 VideoOnDemand = 0x52,
8438c41f
LOK
676 /// <summary>
677 /// Toggle electronic program guide (EPG)
678 /// </summary>
f9717bcc 679 ElectronicProgramGuide = 0x53,
8438c41f
LOK
680 /// <summary>
681 /// Toggle timer programming
682 /// </summary>
f9717bcc 683 TimerProgramming = 0x54,
8438c41f
LOK
684 /// <summary>
685 /// Set initial configuration
686 /// </summary>
f9717bcc 687 InitialConfiguration = 0x55,
8438c41f
LOK
688 /// <summary>
689 /// Start playback function
690 /// </summary>
f9717bcc 691 PlayFunction = 0x60,
8438c41f
LOK
692 /// <summary>
693 /// Pause playback function
694 /// </summary>
f9717bcc 695 PausePlayFunction = 0x61,
8438c41f
LOK
696 /// <summary>
697 /// Toggle recording function
698 /// </summary>
f9717bcc 699 RecordFunction = 0x62,
8438c41f
LOK
700 /// <summary>
701 /// Pause recording function
702 /// </summary>
f9717bcc 703 PauseRecordFunction = 0x63,
8438c41f
LOK
704 /// <summary>
705 /// Stop playback function
706 /// </summary>
f9717bcc 707 StopFunction = 0x64,
8438c41f
LOK
708 /// <summary>
709 /// Mute audio function
710 /// </summary>
f9717bcc 711 MuteFunction = 0x65,
8438c41f
LOK
712 /// <summary>
713 /// Restore volume function
714 /// </summary>
f9717bcc 715 RestoreVolumeFunction = 0x66,
8438c41f
LOK
716 /// <summary>
717 /// Tune function
718 /// </summary>
f9717bcc 719 TuneFunction = 0x67,
8438c41f
LOK
720 /// <summary>
721 /// Select media function
722 /// </summary>
f9717bcc 723 SelectMediaFunction = 0x68,
8438c41f
LOK
724 /// <summary>
725 /// Select AV input function
726 /// </summary>
f9717bcc 727 SelectAVInputFunction = 0x69,
8438c41f
LOK
728 /// <summary>
729 /// Select audio input function
730 /// </summary>
f9717bcc 731 SelectAudioInputFunction = 0x6A,
8438c41f
LOK
732 /// <summary>
733 /// Toggle powered on / standby function
734 /// </summary>
f9717bcc 735 PowerToggleFunction = 0x6B,
8438c41f
LOK
736 /// <summary>
737 /// Power off function
738 /// </summary>
f9717bcc 739 PowerOffFunction = 0x6C,
8438c41f
LOK
740 /// <summary>
741 /// Power on function
742 /// </summary>
f9717bcc 743 PowerOnFunction = 0x6D,
8438c41f
LOK
744 /// <summary>
745 /// F1 / blue button
746 /// </summary>
f9717bcc 747 F1Blue = 0x71,
8438c41f
LOK
748 /// <summary>
749 /// F2 / red button
750 /// </summary>
f9717bcc 751 F2Red = 0X72,
8438c41f
LOK
752 /// <summary>
753 /// F3 / green button
754 /// </summary>
f9717bcc 755 F3Green = 0x73,
8438c41f
LOK
756 /// <summary>
757 /// F4 / yellow button
758 /// </summary>
f9717bcc 759 F4Yellow = 0x74,
8438c41f
LOK
760 /// <summary>
761 /// F5
762 /// </summary>
f9717bcc 763 F5 = 0x75,
8438c41f
LOK
764 /// <summary>
765 /// Data / teletext
766 /// </summary>
f9717bcc 767 Data = 0x76,
8438c41f
LOK
768 /// <summary>
769 /// Max. valid key code for standard buttons
770 /// </summary>
f9717bcc 771 Max = 0x76,
8438c41f
LOK
772 /// <summary>
773 /// Extra return button on Samsung remotes
774 /// </summary>
f9717bcc 775 SamsungReturn = 0x91,
8438c41f
LOK
776 /// <summary>
777 /// Unknown / invalid key code
778 /// </summary>
f9717bcc
LOK
779 Unknown
780 };
781
8438c41f
LOK
782 /// <summary>
783 /// Vendor IDs for CEC devices
784 /// </summary>
f9717bcc
LOK
785 public enum class CecVendorId
786 {
4f504673
KS
787 Toshiba = 0x000039,
788 Samsung = 0x0000F0,
789 Denon = 0x0005CD,
790 Marantz = 0x000678,
791 Loewe = 0x000982,
792 Onkyo = 0x0009B0,
793 Medion = 0x000CB8,
794 Toshiba2 = 0x000CE7,
795 PulseEight = 0x001582,
796 HarmanKardon2 = 0x001950,
797 Akai = 0x0020C7,
798 AOC = 0x002467,
799 Panasonic = 0x008045,
800 Philips = 0x00903E,
801 Daewoo = 0x009053,
802 Yamaha = 0x00A0DE,
803 Grundig = 0x00D0D5,
804 Pioneer = 0x00E036,
805 LG = 0x00E091,
806 Sharp = 0x08001F,
807 Sony = 0x080046,
808 Broadcom = 0x18C086,
809 Vizio = 0x6B746D,
810 Benq = 0x8065E9,
811 HarmanKardon = 0x9C645E,
812 Unknown = 0
f9717bcc
LOK
813 };
814
8438c41f
LOK
815 /// <summary>
816 /// Audio status of audio system / AVR devices
817 /// </summary>
f9717bcc
LOK
818 public enum class CecAudioStatus
819 {
8438c41f
LOK
820 /// <summary>
821 /// Muted
822 /// </summary>
f9717bcc 823 MuteStatusMask = 0x80,
8438c41f
LOK
824 /// <summary>
825 /// Not muted, volume status mask
826 /// </summary>
f9717bcc 827 VolumeStatusMask = 0x7F,
8438c41f
LOK
828 /// <summary>
829 /// Minumum volume
830 /// </summary>
f9717bcc 831 VolumeMin = 0x00,
8438c41f
LOK
832 /// <summary>
833 /// Maximum volume
834 /// </summary>
f9717bcc 835 VolumeMax = 0x64,
8438c41f
LOK
836 /// <summary>
837 /// Unknown status
838 /// </summary>
f9717bcc
LOK
839 VolumeStatusUnknown = 0x7F
840 };
841
8438c41f
LOK
842 /// <summary>
843 /// CEC opcodes, as described in the HDMI CEC specification
844 /// </summary>
f9717bcc
LOK
845 public enum class CecOpcode
846 {
8438c41f
LOK
847 /// <summary>
848 /// Active source
849 /// </summary>
f9717bcc 850 ActiveSource = 0x82,
8438c41f
LOK
851 /// <summary>
852 /// Image view on: power on display for image display
853 /// </summary>
f9717bcc 854 ImageViewOn = 0x04,
8438c41f
LOK
855 /// <summary>
856 /// Text view on: power on display for text display
857 /// </summary>
f9717bcc 858 TextViewOn = 0x0D,
8438c41f
LOK
859 /// <summary>
860 /// Device no longer is the active source
861 /// </summary>
f9717bcc 862 InactiveSource = 0x9D,
8438c41f
LOK
863 /// <summary>
864 /// Request which device has the active source status
865 /// </summary>
f9717bcc 866 RequestActiveSource = 0x85,
8438c41f
LOK
867 /// <summary>
868 /// Routing change for HDMI switches
869 /// </summary>
f9717bcc 870 RoutingChange = 0x80,
8438c41f
LOK
871 /// <summary>
872 /// Routing information for HDMI switches
873 /// </summary>
f9717bcc 874 RoutingInformation = 0x81,
8438c41f
LOK
875 /// <summary>
876 /// Change the stream path to the given physical address
877 /// </summary>
f9717bcc 878 SetStreamPath = 0x86,
8438c41f
LOK
879 /// <summary>
880 /// Inform that a device went into standby mode
881 /// </summary>
f9717bcc 882 Standby = 0x36,
8438c41f
LOK
883 /// <summary>
884 /// Stop recording
885 /// </summary>
f9717bcc 886 RecordOff = 0x0B,
8438c41f
LOK
887 /// <summary>
888 /// Start recording
889 /// </summary>
f9717bcc 890 RecordOn = 0x09,
8438c41f
LOK
891 /// <summary>
892 /// Recording status information
893 /// </summary>
f9717bcc 894 RecordStatus = 0x0A,
8438c41f
LOK
895 /// <summary>
896 /// Record current display
897 /// </summary>
f9717bcc 898 RecordTvScreen = 0x0F,
8438c41f
LOK
899 /// <summary>
900 /// Clear analogue timer
901 /// </summary>
f9717bcc 902 ClearAnalogueTimer = 0x33,
8438c41f
LOK
903 /// <summary>
904 /// Clear digital timer
905 /// </summary>
f9717bcc 906 ClearDigitalTimer = 0x99,
8438c41f
LOK
907 /// <summary>
908 /// Clear external timer
909 /// </summary>
f9717bcc 910 ClearExternalTimer = 0xA1,
8438c41f
LOK
911 /// <summary>
912 /// Set analogue timer
913 /// </summary>
f9717bcc 914 SetAnalogueTimer = 0x34,
8438c41f
LOK
915 /// <summary>
916 /// Set digital timer
917 /// </summary>
f9717bcc 918 SetDigitalTimer = 0x97,
8438c41f
LOK
919 /// <summary>
920 /// Set external timer
921 /// </summary>
f9717bcc 922 SetExternalTimer = 0xA2,
8438c41f
LOK
923 /// <summary>
924 /// Set program title of a timer
925 /// </summary>
f9717bcc 926 SetTimerProgramTitle = 0x67,
8438c41f
LOK
927 /// <summary>
928 /// Timer status cleared
929 /// </summary>
f9717bcc 930 TimerClearedStatus = 0x43,
8438c41f
LOK
931 /// <summary>
932 /// Timer status information
933 /// </summary>
f9717bcc 934 TimerStatus = 0x35,
8438c41f
LOK
935 /// <summary>
936 /// CEC version used by a device
937 /// </summary>
f9717bcc 938 CecVersion = 0x9E,
8438c41f
LOK
939 /// <summary>
940 /// Request CEC version of a device
941 /// </summary>
f9717bcc 942 GetCecVersion = 0x9F,
8438c41f
LOK
943 /// <summary>
944 /// Request physical address of a device
945 /// </summary>
f9717bcc 946 GivePhysicalAddress = 0x83,
8438c41f
LOK
947 /// <summary>
948 /// Request language code of the menu language of a device
f81c0652 949 /// 3 character ISO 639-2 country code. see http://http://www.loc.gov/standards/iso639-2/
8438c41f 950 /// </summary>
f9717bcc 951 GetMenuLanguage = 0x91,
8438c41f
LOK
952 /// <summary>
953 /// Report the physical address
954 /// </summary>
f9717bcc 955 ReportPhysicalAddress = 0x84,
8438c41f
LOK
956 /// <summary>
957 /// Report the language code of the menu language
f81c0652 958 /// 3 character ISO 639-2 country code. see http://http://www.loc.gov/standards/iso639-2/
8438c41f 959 /// </summary>
f9717bcc 960 SetMenuLanguage = 0x32,
8438c41f
LOK
961 /// <summary>
962 /// Deck control for playback and recording devices
963 /// </summary>
f9717bcc 964 DeckControl = 0x42,
8438c41f
LOK
965 /// <summary>
966 /// Deck status for playback and recording devices
967 /// </summary>
f9717bcc 968 DeckStatus = 0x1B,
8438c41f
LOK
969 /// <summary>
970 /// Request deck status from playback and recording devices
971 /// </summary>
f9717bcc 972 GiveDeckStatus = 0x1A,
8438c41f
LOK
973 /// <summary>
974 /// Start playback on playback and recording devices
975 /// </summary>
f9717bcc 976 Play = 0x41,
8438c41f
LOK
977 /// <summary>
978 /// Request tuner status
979 /// </summary>
f9717bcc 980 GiveTunerDeviceStatus = 0x08,
8438c41f
LOK
981 /// <summary>
982 /// Select analogue service on a tuner
983 /// </summary>
f9717bcc 984 SelectAnalogueService = 0x92,
8438c41f
LOK
985 /// <summary>
986 /// Select digital service on a tuner
987 /// </summary>
f9717bcc 988 SelectDigtalService = 0x93,
8438c41f
LOK
989 /// <summary>
990 /// Report tuner device status
991 /// </summary>
f9717bcc 992 TunerDeviceStatus = 0x07,
8438c41f
LOK
993 /// <summary>
994 /// Tuner step decrement
995 /// </summary>
f9717bcc 996 TunerStepDecrement = 0x06,
8438c41f
LOK
997 /// <summary>
998 /// Tuner step increment
999 /// </summary>
f9717bcc 1000 TunerStepIncrement = 0x05,
8438c41f
LOK
1001 /// <summary>
1002 /// Report device vendor ID
1003 /// </summary>
f9717bcc 1004 DeviceVendorId = 0x87,
8438c41f
LOK
1005 /// <summary>
1006 /// Request device vendor ID
1007 /// </summary>
f9717bcc 1008 GiveDeviceVendorId = 0x8C,
8438c41f
LOK
1009 /// <summary>
1010 /// Vendor specific command
1011 /// </summary>
f9717bcc 1012 VendorCommand = 0x89,
8438c41f
LOK
1013 /// <summary>
1014 /// Vendor specific command with vendor ID
1015 /// </summary>
f9717bcc 1016 VendorCommandWithId = 0xA0,
8438c41f
LOK
1017 /// <summary>
1018 /// Vendor specific remote button pressed
1019 /// </summary>
f9717bcc 1020 VendorRemoteButtonDown = 0x8A,
8438c41f
LOK
1021 /// <summary>
1022 /// Vendor specific remote button released
1023 /// </summary>
f9717bcc 1024 VendorRemoteButtonUp = 0x8B,
8438c41f
LOK
1025 /// <summary>
1026 /// Display / clear OSD string
1027 /// </summary>
f9717bcc 1028 SetOsdString = 0x64,
8438c41f
LOK
1029 /// <summary>
1030 /// Request device OSD name
1031 /// </summary>
f9717bcc 1032 GiveOsdName = 0x46,
8438c41f
LOK
1033 /// <summary>
1034 /// Report device OSD name
1035 /// </summary>
f9717bcc 1036 SetOsdName = 0x47,
8438c41f
LOK
1037 /// <summary>
1038 /// Request device menu status
1039 /// </summary>
f9717bcc 1040 MenuRequest = 0x8D,
8438c41f
LOK
1041 /// <summary>
1042 /// Report device menu status
1043 /// </summary>
f9717bcc 1044 MenuStatus = 0x8E,
8438c41f
LOK
1045 /// <summary>
1046 /// Remote button pressed
1047 /// </summary>
f9717bcc 1048 UserControlPressed = 0x44,
8438c41f
LOK
1049 /// <summary>
1050 /// Remote button released
1051 /// </summary>
f9717bcc 1052 UserControlRelease = 0x45,
8438c41f
LOK
1053 /// <summary>
1054 /// Request device power status
1055 /// </summary>
f9717bcc 1056 GiveDevicePowerStatus = 0x8F,
8438c41f
LOK
1057 /// <summary>
1058 /// Report device power status
1059 /// </summary>
f9717bcc 1060 ReportPowerStatus = 0x90,
8438c41f
LOK
1061 /// <summary>
1062 /// Feature abort / unsupported command
1063 /// </summary>
f9717bcc 1064 FeatureAbort = 0x00,
8438c41f
LOK
1065 /// <summary>
1066 /// Abort command
1067 /// </summary>
f9717bcc 1068 Abort = 0xFF,
8438c41f
LOK
1069 /// <summary>
1070 /// Give audio status
1071 /// </summary>
f9717bcc 1072 GiveAudioStatus = 0x71,
8438c41f
LOK
1073 /// <summary>
1074 /// Give audiosystem mode
1075 /// </summary>
f9717bcc 1076 GiveSystemAudioMode = 0x7D,
8438c41f
LOK
1077 /// <summary>
1078 /// Report device audio status
1079 /// </summary>
f9717bcc 1080 ReportAudioStatus = 0x7A,
8438c41f
LOK
1081 /// <summary>
1082 /// Set audiosystem mode
1083 /// </summary>
f9717bcc 1084 SetSystemAudioMode = 0x72,
8438c41f
LOK
1085 /// <summary>
1086 /// Request audiosystem mode
1087 /// </summary>
f9717bcc 1088 SystemAudioModeRequest = 0x70,
8438c41f
LOK
1089 /// <summary>
1090 /// Report audiosystem mode
1091 /// </summary>
f9717bcc 1092 SystemAudioModeStatus = 0x7E,
8438c41f
LOK
1093 /// <summary>
1094 /// Set audio bitrate
1095 /// </summary>
f9717bcc 1096 SetAudioRate = 0x9A,
8438c41f
LOK
1097 /// <summary>
1098 /// When this opcode is set, no opcode will be sent to the device / poll message
1099 /// This is one of the reserved numbers
1100 /// </summary>
f9717bcc
LOK
1101 None = 0xFD
1102 };
1103
8438c41f
LOK
1104 /// <summary>
1105 /// Audiosystem status
1106 /// </summary>
f9717bcc
LOK
1107 public enum class CecSystemAudioStatus
1108 {
8438c41f
LOK
1109 /// <summary>
1110 /// Turned off
1111 /// </summary>
f9717bcc 1112 Off = 0,
8438c41f
LOK
1113 /// <summary>
1114 /// Turned on
1115 /// </summary>
f9717bcc
LOK
1116 On = 1
1117 };
1118
8438c41f
LOK
1119 /// <summary>
1120 /// libCEC client application version
1121 /// </summary>
f9717bcc
LOK
1122 public enum class CecClientVersion
1123 {
8438c41f
LOK
1124 /// <summary>
1125 /// before v1.5.0
1126 /// </summary>
f9717bcc 1127 VersionPre1_5 = 0,
8438c41f
LOK
1128 /// <summary>
1129 /// v1.5.0
1130 /// </summary>
f9717bcc 1131 Version1_5_0 = 0x1500,
8438c41f
LOK
1132 /// <summary>
1133 /// v1.5.1
1134 /// </summary>
f9717bcc 1135 Version1_5_1 = 0x1501,
8438c41f
LOK
1136 /// <summary>
1137 /// v1.5.2
1138 /// </summary>
f9717bcc 1139 Version1_5_2 = 0x1502,
8438c41f
LOK
1140 /// <summary>
1141 /// v1.5.3
1142 /// </summary>
f9717bcc 1143 Version1_5_3 = 0x1503,
8438c41f
LOK
1144 /// <summary>
1145 /// v1.6.0
1146 /// </summary>
f9717bcc 1147 Version1_6_0 = 0x1600,
8438c41f
LOK
1148 /// <summary>
1149 /// v1.6.1
1150 /// </summary>
f9717bcc 1151 Version1_6_1 = 0x1601,
8438c41f
LOK
1152 /// <summary>
1153 /// v1.6.2
1154 /// </summary>
f9717bcc 1155 Version1_6_2 = 0x1602,
8438c41f
LOK
1156 /// <summary>
1157 /// v1.6.3
1158 /// </summary>
f9717bcc 1159 Version1_6_3 = 0x1603,
8438c41f
LOK
1160 /// <summary>
1161 /// v1.7.0
1162 /// </summary>
f9717bcc 1163 Version1_7_0 = 0x1700,
8438c41f
LOK
1164 /// <summary>
1165 /// v1.7.1
1166 /// </summary>
f9717bcc 1167 Version1_7_1 = 0x1701,
8438c41f
LOK
1168 /// <summary>
1169 /// v1.7.2
1170 /// </summary>
f9717bcc 1171 Version1_7_2 = 0x1702,
8438c41f
LOK
1172 /// <summary>
1173 /// v1.8.0
1174 /// </summary>
f9717bcc 1175 Version1_8_0 = 0x1800,
8438c41f
LOK
1176 /// <summary>
1177 /// v1.8.1
1178 /// </summary>
f9717bcc 1179 Version1_8_1 = 0x1801,
8438c41f
LOK
1180 /// <summary>
1181 /// v1.8.2
1182 /// </summary>
f9717bcc 1183 Version1_8_2 = 0x1802,
8438c41f
LOK
1184 /// <summary>
1185 /// v1.9.0
1186 /// </summary>
f81c0652
LOK
1187 Version1_9_0 = 0x1900,
1188 /// <summary>
1189 /// v2.0.0-pre
1190 /// </summary>
999665e3
LOK
1191 Version1_99_0 = 0x1990,
1192 /// <summary>
1193 /// v2.0.0
1194 /// </summary>
20fd14a9
LOK
1195 Version2_0_0 = 0x2000,
1196 /// <summary>
1197 /// v2.0.1
1198 /// </summary>
784a6a79
LOK
1199 Version2_0_1 = 0x2001,
1200 /// <summary>
1201 /// v2.0.2
1202 /// </summary>
83715833
LOK
1203 Version2_0_2 = 0x2002,
1204 /// <summary>
1205 /// v2.0.3
1206 /// </summary>
0c271bd0
LOK
1207 Version2_0_3 = 0x2003,
1208 /// <summary>
1209 /// v2.0.4
1210 /// </summary>
6fb1aefd
LOK
1211 Version2_0_4 = 0x2004,
1212 /// <summary>
1213 /// v2.0.5
1214 /// </summary>
9b56a19a
LOK
1215 Version2_0_5 = 0x2005,
1216 /// <summary>
1217 /// v2.1.0
1218 /// </summary>
331d659e
LOK
1219 Version2_1_0 = 0x2100,
1220 /// <summary>
1221 /// v2.1.1
1222 /// </summary>
f6db051e
LOK
1223 Version2_1_1 = 0x2101,
1224 /// <summary>
b53bfc2d
LOK
1225 /// v2.1.2
1226 /// </summary>
1227 Version2_1_2 = 0x2102,
1228 /// <summary>
1229 /// v2.1.3
1230 /// </summary>
1231 Version2_1_3 = 0x2103,
1232 /// <summary>
7cb1f563
LOK
1233 /// v2.1.4
1234 /// </summary>
1235 Version2_1_4 = 0x2104,
b5d801b8
LOK
1236 /// <summary>
1237 /// v2.1.4
1238 /// </summary>
1239 Version2_2_0 = 0x2200,
1240 /// <summary>
f6db051e
LOK
1241 /// The current version
1242 /// </summary>
b5d801b8 1243 CurrentVersion = 0x2200
f9717bcc
LOK
1244 };
1245
8438c41f
LOK
1246 /// <summary>
1247 /// libCEC version
1248 /// </summary>
f9717bcc
LOK
1249 public enum class CecServerVersion
1250 {
8438c41f
LOK
1251 /// <summary>
1252 /// before v1.5.0
1253 /// </summary>
f9717bcc 1254 VersionPre1_5 = 0,
8438c41f
LOK
1255 /// <summary>
1256 /// v1.5.0
1257 /// </summary>
f9717bcc 1258 Version1_5_0 = 0x1500,
8438c41f
LOK
1259 /// <summary>
1260 /// v1.5.1
1261 /// </summary>
f9717bcc 1262 Version1_5_1 = 0x1501,
8438c41f
LOK
1263 /// <summary>
1264 /// v1.5.2
1265 /// </summary>
f9717bcc 1266 Version1_5_2 = 0x1502,
8438c41f
LOK
1267 /// <summary>
1268 /// v1.5.3
1269 /// </summary>
f9717bcc 1270 Version1_5_3 = 0x1503,
8438c41f
LOK
1271 /// <summary>
1272 /// v1.6.0
1273 /// </summary>
f9717bcc 1274 Version1_6_0 = 0x1600,
8438c41f
LOK
1275 /// <summary>
1276 /// v1.6.1
1277 /// </summary>
f9717bcc 1278 Version1_6_1 = 0x1601,
8438c41f
LOK
1279 /// <summary>
1280 /// v1.6.2
1281 /// </summary>
f9717bcc 1282 Version1_6_2 = 0x1602,
8438c41f
LOK
1283 /// <summary>
1284 /// v1.6.3
1285 /// </summary>
f9717bcc 1286 Version1_6_3 = 0x1603,
8438c41f
LOK
1287 /// <summary>
1288 /// v1.7.0
1289 /// </summary>
f9717bcc 1290 Version1_7_0 = 0x1700,
8438c41f
LOK
1291 /// <summary>
1292 /// v1.7.1
1293 /// </summary>
f9717bcc 1294 Version1_7_1 = 0x1701,
8438c41f
LOK
1295 /// <summary>
1296 /// v1.7.2
1297 /// </summary>
f9717bcc 1298 Version1_7_2 = 0x1702,
8438c41f
LOK
1299 /// <summary>
1300 /// v1.8.0
1301 /// </summary>
f9717bcc 1302 Version1_8_0 = 0x1800,
8438c41f
LOK
1303 /// <summary>
1304 /// v1.8.1
1305 /// </summary>
f9717bcc 1306 Version1_8_1 = 0x1801,
8438c41f
LOK
1307 /// <summary>
1308 /// v1.8.2
1309 /// </summary>
f9717bcc 1310 Version1_8_2 = 0x1802,
8438c41f
LOK
1311 /// <summary>
1312 /// v1.9.0
1313 /// </summary>
f81c0652
LOK
1314 Version1_9_0 = 0x1900,
1315 /// <summary>
1316 /// v2.0.0-pre
1317 /// </summary>
999665e3
LOK
1318 Version1_99_0 = 0x1990,
1319 /// <summary>
1320 /// v2.0.0
1321 /// </summary>
20fd14a9
LOK
1322 Version2_0_0 = 0x2000,
1323 /// <summary>
1324 /// v2.0.1
1325 /// </summary>
784a6a79
LOK
1326 Version2_0_1 = 0x2001,
1327 /// <summary>
1328 /// v2.0.2
1329 /// </summary>
83715833
LOK
1330 Version2_0_2 = 0x2002,
1331 /// <summary>
1332 /// v2.0.3
1333 /// </summary>
0c271bd0
LOK
1334 Version2_0_3 = 0x2003,
1335 /// <summary>
1336 /// v2.0.4
1337 /// </summary>
6fb1aefd
LOK
1338 Version2_0_4 = 0x2004,
1339 /// <summary>
1340 /// v2.0.5
1341 /// </summary>
9b56a19a
LOK
1342 Version2_0_5 = 0x2005,
1343 /// <summary>
1344 /// v2.1.0
1345 /// </summary>
331d659e
LOK
1346 Version2_1_0 = 0x2100,
1347 /// <summary>
1348 /// v2.1.1
1349 /// </summary>
f6db051e
LOK
1350 Version2_1_1 = 0x2101,
1351 /// <summary>
b53bfc2d
LOK
1352 /// v2.1.2
1353 /// </summary>
1354 Version2_1_2 = 0x2102,
1355 /// <summary>
1356 /// v2.1.3
1357 /// </summary>
1358 Version2_1_3 = 0x2103,
b5d801b8 1359 /// <summary>
7cb1f563
LOK
1360 /// v2.1.4
1361 /// </summary>
1362 Version2_1_4 = 0x2104,
b53bfc2d 1363 /// <summary>
b5d801b8
LOK
1364 /// v2.2.0
1365 /// </summary>
1366 Version2_2_0 = 0x2200,
1367 /// <summary>
f6db051e
LOK
1368 /// The current version
1369 /// </summary>
b5d801b8 1370 CurrentVersion = 0x2200
f9717bcc
LOK
1371 };
1372
8438c41f
LOK
1373 /// <summary>
1374 /// Type of adapter to which libCEC is connected
1375 /// </summary>
22190f06
LOK
1376 public enum class CecAdapterType
1377 {
8438c41f
LOK
1378 /// <summary>
1379 /// Unknown adapter type
1380 /// </summary>
22190f06 1381 Unknown = 0,
8438c41f
LOK
1382 /// <summary>
1383 /// Pulse-Eight USB-CEC adapter
1384 /// </summary>
22190f06 1385 PulseEightExternal = 0x1,
8438c41f
LOK
1386 /// <summary>
1387 /// Pulse-Eight CEC daughterboard
1388 /// </summary>
22190f06 1389 PulseEightDaughterboard = 0x2,
8438c41f
LOK
1390 /// <summary>
1391 /// Raspberry Pi
1392 /// </summary>
9b56a19a
LOK
1393 RaspberryPi = 0x100,
1394 /// <summary>
1395 /// TDA995x
1396 /// </summary>
1397 TDA995x = 0x200
22190f06
LOK
1398 };
1399
f9717bcc 1400 /// <summary>
8438c41f 1401 /// Descriptor of a CEC adapter, returned when scanning for adapters that are connected to the system
f9717bcc
LOK
1402 /// </summary>
1403 public ref class CecAdapter
1404 {
1405 public:
1406 /// <summary>
1407 /// Create a new CEC adapter descriptor
1408 /// </summary>
1409 /// <param name="path"> The path descriptor for this CEC adapter</param>
1410 /// <param name="comPort">The COM port of this CEC adapter</param>
1411 CecAdapter(System::String ^ path, System::String ^ comPort)
1412 {
1413 Path = path;
1414 ComPort = comPort;
1415 }
1416
1417 /// <summary>
1418 /// The path descriptor for this CEC adapter
1419 /// </summary>
1420 property System::String ^ Path;
1421
1422 /// <summary>
1423 /// The COM port of this CEC adapter
1424 /// </summary>
1425 property System::String ^ ComPort;
1426 };
1427
1428 /// <summary>
1429 /// A list of CEC device types
1430 /// </summary>
1431 public ref class CecDeviceTypeList
1432 {
1433 public:
1434 /// <summary>
1435 /// Create a new empty list of CEC device types
1436 /// </summary>
1437 CecDeviceTypeList(void)
1438 {
1439 Types = gcnew array<CecDeviceType>(5);
1440 for (unsigned int iPtr = 0; iPtr < 5; iPtr++)
1441 Types[iPtr] = CecDeviceType::Reserved;
1442 }
1443
1444 /// <summary>
1445 /// The array with CecDeviceType instances in this list.
1446 /// </summary>
1447 property array<CecDeviceType> ^ Types;
1448 };
1449
1450 /// <summary>
1451 /// A list of logical addresses
1452 /// </summary>
1453 public ref class CecLogicalAddresses
1454 {
1455 public:
1456 /// <summary>
1457 /// Create a new empty list of logical addresses
1458 /// </summary>
1459 CecLogicalAddresses(void)
1460 {
1461 Addresses = gcnew array<CecLogicalAddress>(16);
1462 Clear();
1463 }
1464
1465 /// <summary>
1466 /// Clears this list
1467 /// </summary>
1468 void Clear(void)
1469 {
1470 Primary = CecLogicalAddress::Unknown;
1471 for (unsigned int iPtr = 0; iPtr < 16; iPtr++)
1472 Addresses[iPtr] = CecLogicalAddress::Unknown;
1473 }
1474
1475 /// <summary>
1476 /// Checks whether a logical address is set in this list.
1477 /// </summary>
1478 /// <param name="address">The address to check.</param>
1479 /// <returns>True when set, false otherwise</returns>
1480 bool IsSet(CecLogicalAddress address)
1481 {
1482 return Addresses[(unsigned int)address] != CecLogicalAddress::Unknown;
1483 }
1484
1485 /// <summary>
1486 /// Add a logical address to this list (if it's not set already)
1487 /// </summary>
1488 /// <param name="address">The address to add.</param>
1489 void Set(CecLogicalAddress address)
1490 {
1491 Addresses[(unsigned int)address] = address;
1492 if (Primary == CecLogicalAddress::Unknown)
1493 Primary = address;
1494 }
1495
1496 /// <summary>
1497 /// The primary (first) address in this list
1498 /// </summary>
1499 property CecLogicalAddress Primary;
1500
1501 /// <summary>
1502 /// The list of addresses
1503 /// </summary>
1504 property array<CecLogicalAddress> ^ Addresses;
1505 };
1506
1507
1508 /// <summary>
1509 /// Byte array used for CEC command parameters
1510 /// </summary>
1511 public ref class CecDatapacket
1512 {
1513 public:
1514 /// <summary>
1515 /// Create a new byte array with maximum size 100
1516 /// </summary>
1517 CecDatapacket(void)
1518 {
1519 Data = gcnew array<uint8_t>(100);
1520 Size = 0;
1521 }
1522
1523 /// <summary>
1524 /// Adds a byte to this byte array
1525 /// </summary>
1526 /// <param name="data">The byte to add.</param>
1527 void PushBack(uint8_t data)
1528 {
1529 if (Size < 100)
1530 {
1531 Data[Size] = data;
1532 Size++;
1533 }
1534 }
1535
1536 /// <summary>
1537 /// Array data
1538 /// </summary>
1539 property array<uint8_t> ^ Data;
1540
1541 /// <summary>
1542 /// Current data size
1543 /// </summary>
1544 property uint8_t Size;
1545 };
1546
1547 /// <summary>
1548 /// A CEC command that is received or transmitted over the CEC bus
1549 /// </summary>
1550 public ref class CecCommand
1551 {
1552 public:
1553 /// <summary>
1554 /// Create a new CEC command instance
1555 /// </summary>
1556 /// <param name="initiator">The initiator of the command</param>
1557 /// <param name="destination">The receiver of the command</param>
1558 /// <param name="ack">True when the ack bit is set, false otherwise</param>
1559 /// <param name="eom">True when the eom bit is set, false otherwise</param>
1560 /// <param name="opcode">The CEC opcode of this command</param>
1561 /// <param name="transmitTimeout">The timeout to use when transmitting a command</param>
1562 CecCommand(CecLogicalAddress initiator, CecLogicalAddress destination, bool ack, bool eom, CecOpcode opcode, int32_t transmitTimeout)
1563 {
1564 Initiator = initiator;
1565 Destination = destination;
1566 Ack = ack;
1567 Eom = eom;
1568 Opcode = opcode;
1569 OpcodeSet = true;
1570 TransmitTimeout = transmitTimeout;
1571 Parameters = gcnew CecDatapacket;
1572 Empty = false;
1573 }
1574
1575 /// <summary>
1576 /// Create a new empty CEC command instance
1577 /// </summary>
1578 CecCommand(void)
1579 {
1580 Initiator = CecLogicalAddress::Unknown;
1581 Destination = CecLogicalAddress::Unknown;
1582 Ack = false;
1583 Eom = false;
1584 Opcode = CecOpcode::None;
1585 OpcodeSet = false;
1586 TransmitTimeout = 0;
1587 Parameters = gcnew CecDatapacket;
1588 Empty = true;
1589 }
1590
1591 /// <summary>
1592 /// Pushes a byte of data to this CEC command
1593 /// </summary>
1594 /// <param name="data">The byte to add</param>
1595 void PushBack(uint8_t data)
1596 {
1597 if (Initiator == CecLogicalAddress::Unknown && Destination == CecLogicalAddress::Unknown)
1598 {
1599 Initiator = (CecLogicalAddress) (data >> 4);
1600 Destination = (CecLogicalAddress) (data & 0xF);
1601 }
1602 else if (!OpcodeSet)
1603 {
1604 OpcodeSet = true;
1605 Opcode = (CecOpcode)data;
1606 }
1607 else
1608 {
1609 Parameters->PushBack(data);
1610 }
1611 }
1612
1613 /// <summary>
1614 /// True when this command is empty, false otherwise.
1615 /// </summary>
1616 property bool Empty;
1617 /// <summary>
1618 /// The initiator of the command
1619 /// </summary>
1620 property CecLogicalAddress Initiator;
1621 /// <summary>
1622 /// The destination of the command
1623 /// </summary>
1624 property CecLogicalAddress Destination;
1625 /// <summary>
1626 /// True when the ack bit is set, false otherwise
1627 /// </summary>
1628 property bool Ack;
1629 /// <summary>
1630 /// True when the eom bit is set, false otherwise
1631 /// </summary>
1632 property bool Eom;
1633 /// <summary>
1634 /// The CEC opcode of the command
1635 /// </summary>
1636 property CecOpcode Opcode;
1637 /// <summary>
1638 /// The parameters of this command
1639 /// </summary>
1640 property CecDatapacket ^ Parameters;
1641 /// <summary>
1642 /// True when an opcode is set, false otherwise (poll message)
1643 /// </summary>
1644 property bool OpcodeSet;
1645 /// <summary>
1646 /// The timeout to use when transmitting a command
1647 /// </summary>
1648 property int32_t TransmitTimeout;
1649 };
1650
1651 /// <summary>
1652 /// A key press that was received
1653 /// </summary>
1654 public ref class CecKeypress
1655 {
1656 public:
1657 /// <summary>
1658 /// Create a new key press instance
1659 /// </summary>
1660 /// <param name="keycode">The key code of this key press</param>
1661 /// <param name="duration">The duration of this key press in milliseconds</param>
1662 CecKeypress(CecUserControlCode keycode, unsigned int duration)
1663 {
1664 Keycode = keycode;
1665 Duration = duration;
1666 Empty = false;
1667 }
1668
1669 /// <summary>
1670 /// Create a new empty key press instance
1671 /// </summary>
1672 CecKeypress(void)
1673 {
1674 Keycode = CecUserControlCode::Unknown;
1675 Duration = 0;
1676 Empty = true;
1677 }
1678
1679 /// <summary>
1680 /// True when empty, false otherwise
1681 /// </summary>
1682 property bool Empty;
1683 /// <summary>
1684 /// The key code of this key press
1685 /// </summary>
1686 property CecUserControlCode Keycode;
1687 /// <summary>
1688 /// The duration of this key press in milliseconds
1689 /// </summary>
1690 property unsigned int Duration;
1691 };
1692
1693 /// <summary>
1694 /// A log message that libCEC generated
1695 /// </summary>
1696 public ref class CecLogMessage
1697 {
1698 public:
1699 /// <summary>
1700 /// Create a new log message
1701 /// </summary>
1702 /// <param name="message">The actual message</param>
1703 /// <param name="level">The log level, so the application can choose what type information to display</param>
1704 /// <param name="time">The timestamp of this message, in milliseconds after connecting</param>
1705 CecLogMessage(System::String ^ message, CecLogLevel level, int64_t time)
1706 {
1707 Message = message;
1708 Level = level;
1709 Time = time;
1710 Empty = false;
1711 }
1712
1713 /// <summary>
1714 /// Create a new empty log message
1715 /// </summary>
1716 CecLogMessage(void)
1717 {
1718 Message = "";
1719 Level = CecLogLevel::None;
1720 Time = 0;
1721 Empty = true;
1722 }
1723
1724 /// <summary>
1725 /// True when empty, false otherwise.
1726 /// </summary>
1727 property bool Empty;
1728 /// <summary>
1729 /// The actual message
1730 /// </summary>
1731 property System::String ^Message;
1732 /// <summary>
1733 /// The log level, so the application can choose what type information to display
1734 /// </summary>
1735 property CecLogLevel Level;
1736 /// <summary>
1737 /// The timestamp of this message, in milliseconds after connecting
1738 /// </summary>
1739 property int64_t Time;
1740 };
1741
1742 ref class CecCallbackMethods; //forward declaration
1743
1744 /// <summary>
1745 /// The configuration that libCEC uses.
1746 /// </summary>
1747 public ref class LibCECConfiguration
1748 {
1749 public:
1750 /// <summary>
1751 /// Create a new configuration instance with default settings.
1752 /// </summary>
1753 LibCECConfiguration(void)
1754 {
1755 DeviceName = "";
1756 DeviceTypes = gcnew CecDeviceTypeList();
1757 AutodetectAddress = true;
1758 PhysicalAddress = CEC_DEFAULT_PHYSICAL_ADDRESS;
1759 BaseDevice = (CecLogicalAddress)CEC_DEFAULT_BASE_DEVICE;
1760 HDMIPort = CEC_DEFAULT_HDMI_PORT;
b53bfc2d
LOK
1761 ClientVersion = CecClientVersion::CurrentVersion;
1762 ServerVersion = CecServerVersion::CurrentVersion;
f9717bcc
LOK
1763 TvVendor = CecVendorId::Unknown;
1764
1765 GetSettingsFromROM = false;
1766 UseTVMenuLanguage = CEC_DEFAULT_SETTING_USE_TV_MENU_LANGUAGE == 1;
1767 ActivateSource = CEC_DEFAULT_SETTING_ACTIVATE_SOURCE == 1;
1768
1769 WakeDevices = gcnew CecLogicalAddresses();
1770 if (CEC_DEFAULT_SETTING_ACTIVATE_SOURCE == 1)
1771 WakeDevices->Set(CecLogicalAddress::Tv);
1772
1773 PowerOffDevices = gcnew CecLogicalAddresses();
1774 if (CEC_DEFAULT_SETTING_POWER_OFF_SHUTDOWN == 1)
1775 PowerOffDevices->Set(CecLogicalAddress::Broadcast);
1776
1777 PowerOffScreensaver = CEC_DEFAULT_SETTING_POWER_OFF_SCREENSAVER == 1;
1778 PowerOffOnStandby = CEC_DEFAULT_SETTING_POWER_OFF_ON_STANDBY == 1;
1779
1780 SendInactiveSource = CEC_DEFAULT_SETTING_SEND_INACTIVE_SOURCE == 1;
1781 LogicalAddresses = gcnew CecLogicalAddresses();
1782 FirmwareVersion = 1;
1783 PowerOffDevicesOnStandby = CEC_DEFAULT_SETTING_POWER_OFF_DEVICES_STANDBY == 1;
1784 ShutdownOnStandby = CEC_DEFAULT_SETTING_SHUTDOWN_ON_STANDBY == 1;
1785 DeviceLanguage = "";
22190f06
LOK
1786 FirmwareBuildDate = gcnew System::DateTime(1970,1,1,0,0,0,0);
1787 CECVersion = (CecVersion)CEC_DEFAULT_SETTING_CEC_VERSION;
1788 AdapterType = CecAdapterType::Unknown;
f9717bcc
LOK
1789 }
1790
1791 /// <summary>
1792 /// Change the callback method pointers in this configuration instance.
1793 /// </summary>
1794 /// <param name="callbacks">The new callbacks</param>
1795 void SetCallbacks(CecCallbackMethods ^callbacks)
1796 {
1797 Callbacks = callbacks;
1798 }
1799
1800 /// <summary>
1801 /// Update this configuration with data received from libCEC
1802 /// </summary>
1803 /// <param name="config">The configuration that was received from libCEC</param>
1804 void Update(const CEC::libcec_configuration &config)
1805 {
1806 DeviceName = gcnew System::String(config.strDeviceName);
1807
1808 for (unsigned int iPtr = 0; iPtr < 5; iPtr++)
1809 DeviceTypes->Types[iPtr] = (CecDeviceType)config.deviceTypes.types[iPtr];
1810
1811 AutodetectAddress = config.bAutodetectAddress == 1;
1812 PhysicalAddress = config.iPhysicalAddress;
1813 BaseDevice = (CecLogicalAddress)config.baseDevice;
1814 HDMIPort = config.iHDMIPort;
1815 ClientVersion = (CecClientVersion)config.clientVersion;
1816 ServerVersion = (CecServerVersion)config.serverVersion;
1817 TvVendor = (CecVendorId)config.tvVendor;
1818
1819 // player specific settings
1820 GetSettingsFromROM = config.bGetSettingsFromROM == 1;
1821 UseTVMenuLanguage = config.bUseTVMenuLanguage == 1;
1822 ActivateSource = config.bActivateSource == 1;
1823
1824 WakeDevices->Clear();
1825 for (uint8_t iPtr = 0; iPtr <= 16; iPtr++)
1826 if (config.wakeDevices[iPtr])
1827 WakeDevices->Set((CecLogicalAddress)iPtr);
1828
1829 PowerOffDevices->Clear();
1830 for (uint8_t iPtr = 0; iPtr <= 16; iPtr++)
1831 if (config.powerOffDevices[iPtr])
1832 PowerOffDevices->Set((CecLogicalAddress)iPtr);
1833
1834 PowerOffScreensaver = config.bPowerOffScreensaver == 1;
1835 PowerOffOnStandby = config.bPowerOffOnStandby == 1;
1836
1837 if (ServerVersion >= CecServerVersion::Version1_5_1)
1838 SendInactiveSource = config.bSendInactiveSource == 1;
1839
1840 if (ServerVersion >= CecServerVersion::Version1_5_3)
1841 {
1842 LogicalAddresses->Clear();
1843 for (uint8_t iPtr = 0; iPtr <= 16; iPtr++)
1844 if (config.logicalAddresses[iPtr])
1845 LogicalAddresses->Set((CecLogicalAddress)iPtr);
1846 }
1847
1848 if (ServerVersion >= CecServerVersion::Version1_6_0)
1849 {
1850 FirmwareVersion = config.iFirmwareVersion;
1851 PowerOffDevicesOnStandby = config.bPowerOffDevicesOnStandby == 1;
1852 ShutdownOnStandby = config.bShutdownOnStandby == 1;
1853 }
1854
1855 if (ServerVersion >= CecServerVersion::Version1_6_2)
22190f06 1856 {
f9717bcc 1857 DeviceLanguage = gcnew System::String(config.strDeviceLanguage);
22190f06
LOK
1858 FirmwareBuildDate = gcnew System::DateTime(1970,1,1,0,0,0,0);
1859 FirmwareBuildDate = FirmwareBuildDate->AddSeconds(config.iFirmwareBuildDate);
1860 }
f9717bcc
LOK
1861
1862 if (ServerVersion >= CecServerVersion::Version1_6_3)
1863 MonitorOnlyClient = config.bMonitorOnly == 1;
22190f06
LOK
1864
1865 if (ServerVersion >= CecServerVersion::Version1_8_0)
1866 CECVersion = (CecVersion)config.cecVersion;
1867
1868 if (ServerVersion >= CecServerVersion::Version1_8_2)
1869 AdapterType = (CecAdapterType)config.adapterType;
d18ea27b
JM
1870
1871 if (ServerVersion >= CecServerVersion::Version2_1_0)
1872 PowerOnScreensaver = config.bPowerOnScreensaver == 1;
f9717bcc
LOK
1873 }
1874
1875 /// <summary>
1876 /// The device name to use on the CEC bus
1877 /// </summary>
1878 property System::String ^ DeviceName;
1879
1880 /// <summary>
1881 /// The device type(s) to use on the CEC bus for libCEC
1882 /// </summary>
1883 property CecDeviceTypeList ^ DeviceTypes;
1884
1885 /// <summary>
f81c0652 1886 /// (read only) set to true by libCEC when the physical address was autodetected
f9717bcc
LOK
1887 /// </summary>
1888 property bool AutodetectAddress;
1889
1890 /// <summary>
f81c0652 1891 /// The physical address of the CEC adapter
f9717bcc
LOK
1892 /// </summary>
1893 property uint16_t PhysicalAddress;
1894
1895 /// <summary>
f81c0652 1896 /// The logical address of the device to which the adapter is connected. Only used when PhysicalAddress = 0 or when the adapter doesn't support autodetection
f9717bcc
LOK
1897 /// </summary>
1898 property CecLogicalAddress BaseDevice;
1899
1900 /// <summary>
f81c0652 1901 /// The HDMI port to which the adapter is connected. Only used when iPhysicalAddress = 0 or when the adapter doesn't support autodetection
f9717bcc
LOK
1902 /// </summary>
1903 property uint8_t HDMIPort;
1904
1905 /// <summary>
1906 /// The client API version to use
1907 /// </summary>
1908 property CecClientVersion ClientVersion;
1909
1910 /// <summary>
1911 /// The version of libCEC
1912 /// </summary>
1913 property CecServerVersion ServerVersion;
1914
1915 /// <summary>
f81c0652 1916 /// Override the vendor ID of the TV. Leave this untouched to autodetect
f9717bcc
LOK
1917 /// </summary>
1918 property CecVendorId TvVendor;
1919
1920 /// <summary>
1921 /// True to read the settings from the EEPROM, which possibly override the settings passed here
1922 /// </summary>
1923 property bool GetSettingsFromROM;
1924
1925 /// <summary>
1926 /// Use the language setting of the TV in the client application. Must be implemented by the client application.
f81c0652 1927 /// 3 character ISO 639-2 country code. see http://http://www.loc.gov/standards/iso639-2/
f9717bcc
LOK
1928 /// </summary>
1929 property bool UseTVMenuLanguage;
1930
1931 /// <summary>
1932 /// Make libCEC the active source when starting the client application
1933 /// </summary>
1934 property bool ActivateSource;
1935
1936 /// <summary>
f81c0652 1937 /// List of devices to wake when initialising libCEC or when calling PowerOnDevices() without any parameter.
f9717bcc
LOK
1938 /// </summary>
1939 property CecLogicalAddresses ^WakeDevices;
1940
1941 /// <summary>
f81c0652 1942 /// List of devices to power off when calling StandbyDevices() without any parameter.
f9717bcc
LOK
1943 /// </summary>
1944 property CecLogicalAddresses ^PowerOffDevices;
1945
1946 /// <summary>
1947 /// Send standby commands when the client application activates the screensaver. Must be implemented by the client application.
1948 /// </summary>
1949 property bool PowerOffScreensaver;
1950
1951 /// <summary>
1952 /// Power off the PC when the TV powers off. Must be implemented by the client application.
1953 /// </summary>
1954 property bool PowerOffOnStandby;
1955
1956 /// <summary>
1957 /// Send an inactive source message when exiting the client application.
1958 /// </summary>
1959 property bool SendInactiveSource;
1960
1961 /// <summary>
1962 /// The list of logical addresses that libCEC is using
1963 /// </summary>
1964 property CecLogicalAddresses ^LogicalAddresses;
1965
1966 /// <summary>
1967 /// The firmware version of the adapter to which libCEC is connected
1968 /// </summary>
1969 property uint16_t FirmwareVersion;
1970
1971 /// <summary>
1972 /// Send standby commands when the client application activates standby mode (S3). Must be implemented by the client application.
1973 /// </summary>
1974 property bool PowerOffDevicesOnStandby;
f81c0652
LOK
1975
1976 /// <summary>
1977 /// Shutdown this PC when the TV is switched off. only used when PowerOffOnStandby = false
1978 /// </summary>
f9717bcc
LOK
1979 property bool ShutdownOnStandby;
1980
1981 /// <summary>
1982 /// True to start a monitor-only client, false to start a standard client.
1983 /// </summary>
1984 property bool MonitorOnlyClient;
1985
1986 /// <summary>
1987 /// The language code of the menu language that libCEC reports to other devices.
f81c0652 1988 /// 3 character ISO 639-2 country code. see http://http://www.loc.gov/standards/iso639-2/
f9717bcc
LOK
1989 /// </summary>
1990 property System::String ^ DeviceLanguage;
1991
1992 /// <summary>
1993 /// The callback methods to use.
1994 /// </summary>
1995 property CecCallbackMethods ^ Callbacks;
22190f06
LOK
1996
1997 /// <summary>
1998 /// The build date of the firmware.
1999 /// </summary>
2000 property System::DateTime ^ FirmwareBuildDate;
2001
2002 /// <summary>
2003 /// The CEC version that libCEC uses.
2004 /// </summary>
2005 property CecVersion CECVersion;
2006
2007 /// <summary>
2008 /// The type of adapter that libCEC is connected to.
2009 /// </summary>
2010 property CecAdapterType AdapterType;
f2658b50
LOK
2011
2012 /// <summary>
2013 /// True to power on when quitting the screensaver.
2014 /// </summary>
2015 property bool PowerOnScreensaver;
f9717bcc
LOK
2016 };
2017
2018 // the callback methods are called by unmanaged code, so we need some delegates for this
2019#pragma unmanaged
2020 // unmanaged callback methods
2021 typedef int (__stdcall *LOGCB) (const CEC::cec_log_message &message);
2022 typedef int (__stdcall *KEYCB) (const CEC::cec_keypress &key);
2023 typedef int (__stdcall *COMMANDCB)(const CEC::cec_command &command);
2024 typedef int (__stdcall *CONFIGCB) (const CEC::libcec_configuration &config);
2025 typedef int (__stdcall *ALERTCB) (const CEC::libcec_alert, const CEC::libcec_parameter &data);
2026 typedef int (__stdcall *MENUCB) (const CEC::cec_menu_state newVal);
2027 typedef void (__stdcall *ACTICB) (const CEC::cec_logical_address logicalAddress, const uint8_t bActivated);
2028
8438c41f
LOK
2029 /// <summary>
2030 /// libCEC callback methods. Unmanaged code.
2031 /// </summary>
f9717bcc
LOK
2032 typedef struct
2033 {
8438c41f
LOK
2034 /// <summary>
2035 /// Log message callback
2036 /// </summary>
f9717bcc 2037 LOGCB logCB;
8438c41f
LOK
2038 /// <summary>
2039 /// Key press/release callback
2040 /// </summary>
f9717bcc 2041 KEYCB keyCB;
8438c41f
LOK
2042 /// <summary>
2043 /// Raw CEC data callback
2044 /// </summary>
f9717bcc 2045 COMMANDCB commandCB;
8438c41f
LOK
2046 /// <summary>
2047 /// Updated configuration callback
2048 /// </summary>
f9717bcc 2049 CONFIGCB configCB;
8438c41f
LOK
2050 /// <summary>
2051 /// Alert message callback
2052 /// </summary>
f9717bcc 2053 ALERTCB alertCB;
8438c41f
LOK
2054 /// <summary>
2055 /// Menu status change callback
2056 /// </summary>
f9717bcc 2057 MENUCB menuCB;
8438c41f
LOK
2058 /// <summary>
2059 /// Source (de)activated callback
2060 /// </summary>
f9717bcc
LOK
2061 ACTICB sourceActivatedCB;
2062 } UnmanagedCecCallbacks;
2063
2064 static PLATFORM::CMutex g_callbackMutex;
2065 static std::vector<UnmanagedCecCallbacks> g_unmanagedCallbacks;
dc6366e8 2066 static CEC::ICECCallbacks g_cecCallbacks;
4ef3b314 2067
8438c41f
LOK
2068 /// <summary>
2069 /// Called by libCEC to send back a log message to the application
2070 /// </summary>
2071 /// <param name="cbParam">Pointer to the callback struct</param>
2072 /// <param name="message">The log message</param>
2073 /// <return>1 when handled, 0 otherwise</return>
ecc38cdd 2074 int CecLogMessageCB(void *cbParam, const CEC::cec_log_message message)
f9717bcc
LOK
2075 {
2076 if (cbParam)
2077 {
2078 size_t iPtr = (size_t)cbParam;
2079 PLATFORM::CLockObject lock(g_callbackMutex);
2080 if (iPtr >= 0 && iPtr < g_unmanagedCallbacks.size())
2081 return g_unmanagedCallbacks[iPtr].logCB(message);
2082 }
2083 return 0;
2084 }
2085
8438c41f
LOK
2086 /// <summary>
2087 /// Called by libCEC to send back a key press or release to the application
2088 /// </summary>
2089 /// <param name="cbParam">Pointer to the callback struct</param>
2090 /// <param name="key">The key press command that libCEC received</param>
2091 /// <return>1 when handled, 0 otherwise</return>
ecc38cdd 2092 int CecKeyPressCB(void *cbParam, const CEC::cec_keypress key)
f9717bcc
LOK
2093 {
2094 if (cbParam)
2095 {
2096 size_t iPtr = (size_t)cbParam;
2097 PLATFORM::CLockObject lock(g_callbackMutex);
2098 if (iPtr >= 0 && iPtr < g_unmanagedCallbacks.size())
2099 return g_unmanagedCallbacks[iPtr].keyCB(key);
2100 }
2101 return 0;
2102 }
2103
8438c41f
LOK
2104 /// <summary>
2105 /// Called by libCEC to send back raw CEC data to the application
2106 /// </summary>
2107 /// <param name="cbParam">Pointer to the callback struct</param>
2108 /// <param name="command">The raw CEC data</param>
2109 /// <return>1 when handled, 0 otherwise</return>
ecc38cdd 2110 int CecCommandCB(void *cbParam, const CEC::cec_command command)
f9717bcc
LOK
2111 {
2112 if (cbParam)
2113 {
2114 size_t iPtr = (size_t)cbParam;
2115 PLATFORM::CLockObject lock(g_callbackMutex);
2116 if (iPtr >= 0 && iPtr < g_unmanagedCallbacks.size())
2117 return g_unmanagedCallbacks[iPtr].commandCB(command);
2118 }
2119 return 0;
2120 }
4ef3b314 2121
8438c41f
LOK
2122 /// <summary>
2123 /// Called by libCEC to send back an updated configuration to the application
2124 /// </summary>
2125 /// <param name="cbParam">Pointer to the callback struct</param>
2126 /// <param name="config">The new configuration</param>
2127 /// <return>1 when handled, 0 otherwise</return>
ecc38cdd 2128 int CecConfigCB(void *cbParam, const CEC::libcec_configuration config)
f9717bcc
LOK
2129 {
2130 if (cbParam)
2131 {
2132 size_t iPtr = (size_t)cbParam;
2133 PLATFORM::CLockObject lock(g_callbackMutex);
2134 if (iPtr >= 0 && iPtr < g_unmanagedCallbacks.size())
2135 return g_unmanagedCallbacks[iPtr].configCB(config);
2136 }
2137 return 0;
2138 }
2139
8438c41f
LOK
2140 /// <summary>
2141 /// Called by libCEC to send back an alert message to the application
2142 /// </summary>
2143 /// <param name="cbParam">Pointer to the callback struct</param>
2144 /// <param name="data">The alert message</param>
2145 /// <return>1 when handled, 0 otherwise</return>
ecc38cdd 2146 int CecAlertCB(void *cbParam, const CEC::libcec_alert alert, const CEC::libcec_parameter data)
f9717bcc
LOK
2147 {
2148 if (cbParam)
2149 {
2150 size_t iPtr = (size_t)cbParam;
2151 PLATFORM::CLockObject lock(g_callbackMutex);
2152 if (iPtr >= 0 && iPtr < g_unmanagedCallbacks.size())
2153 return g_unmanagedCallbacks[iPtr].alertCB(alert, data);
2154 }
2155 return 0;
2156 }
2157
8438c41f
LOK
2158 /// <summary>
2159 /// Called by libCEC to send back a menu state change to the application
2160 /// </summary>
2161 /// <param name="cbParam">Pointer to the callback struct</param>
2162 /// <param name="newVal">The new menu state</param>
2163 /// <return>1 when handled, 0 otherwise</return>
f9717bcc
LOK
2164 int CecMenuCB(void *cbParam, const CEC::cec_menu_state newVal)
2165 {
2166 if (cbParam)
2167 {
2168 size_t iPtr = (size_t)cbParam;
2169 PLATFORM::CLockObject lock(g_callbackMutex);
2170 if (iPtr >= 0 && iPtr < g_unmanagedCallbacks.size())
2171 return g_unmanagedCallbacks[iPtr].menuCB(newVal);
2172 }
2173 return 0;
2174 }
dc6366e8 2175
8438c41f
LOK
2176 /// <summary>
2177 /// Called by libCEC to notify the application that the source that is handled by libCEC was (de)activated
2178 /// </summary>
2179 /// <param name="cbParam">Pointer to the callback struct</param>
2180 /// <param name="logicalAddress">The logical address that was (de)activated</param>
2181 /// <param name="activated">True when activated, false when deactivated</param>
2182 void CecSourceActivatedCB(void *cbParam, const CEC::cec_logical_address logicalAddress, const uint8_t activated)
f9717bcc
LOK
2183 {
2184 if (cbParam)
2185 {
2186 size_t iPtr = (size_t)cbParam;
2187 PLATFORM::CLockObject lock(g_callbackMutex);
2188 if (iPtr >= 0 && iPtr < g_unmanagedCallbacks.size())
8438c41f 2189 g_unmanagedCallbacks[iPtr].sourceActivatedCB(logicalAddress, activated);
f9717bcc
LOK
2190 }
2191 }
2192
2193#pragma managed
1c7cd8f8
LOK
2194 /// <summary>
2195 /// Delegate method for the CecLogMessageCB callback in CecCallbackMethods
2196 /// </summary>
f9717bcc 2197 public delegate int CecLogMessageManagedDelegate(const CEC::cec_log_message &);
1c7cd8f8
LOK
2198 /// <summary>
2199 /// Delegate method for the CecKeyPressCB callback in CecCallbackMethods
2200 /// </summary>
f9717bcc 2201 public delegate int CecKeyPressManagedDelegate(const CEC::cec_keypress &);
1c7cd8f8
LOK
2202 /// <summary>
2203 /// Delegate method for the CecCommandCB callback in CecCallbackMethods
2204 /// </summary>
f9717bcc 2205 public delegate int CecCommandManagedDelegate(const CEC::cec_command &);
1c7cd8f8
LOK
2206 /// <summary>
2207 /// Delegate method for the CecConfigCB callback in CecCallbackMethods
2208 /// </summary>
f9717bcc 2209 public delegate int CecConfigManagedDelegate(const CEC::libcec_configuration &);
1c7cd8f8
LOK
2210 /// <summary>
2211 /// Delegate method for the CecAlertCB callback in CecCallbackMethods
2212 /// </summary>
f9717bcc 2213 public delegate int CecAlertManagedDelegate(const CEC::libcec_alert, const CEC::libcec_parameter &);
1c7cd8f8
LOK
2214 /// <summary>
2215 /// Delegate method for the CecMenuCB callback in CecCallbackMethods
2216 /// </summary>
2217 public delegate int CecMenuManagedDelegate(const CEC::cec_menu_state);
2218 /// <summary>
2219 /// Delegate method for the CecSourceActivatedCB callback in CecCallbackMethods
2220 /// </summary>
2221 public delegate void CecSourceActivatedManagedDelegate(const CEC::cec_logical_address, const uint8_t);
f9717bcc 2222
8438c41f
LOK
2223 /// <summary>
2224 /// Assign the callback methods in the g_cecCallbacks struct
2225 /// </summary>
f9717bcc
LOK
2226 void AssignCallbacks()
2227 {
2228 g_cecCallbacks.CBCecLogMessage = CecLogMessageCB;
2229 g_cecCallbacks.CBCecKeyPress = CecKeyPressCB;
2230 g_cecCallbacks.CBCecCommand = CecCommandCB;
2231 g_cecCallbacks.CBCecConfigurationChanged = CecConfigCB;
2232 g_cecCallbacks.CBCecAlert = CecAlertCB;
2233 g_cecCallbacks.CBCecMenuStateChanged = CecMenuCB;
2234 g_cecCallbacks.CBCecSourceActivated = CecSourceActivatedCB;
2235 }
2236
2237 /// <summary>
2238 /// The callback methods that libCEC uses
2239 /// </summary>
2240 public ref class CecCallbackMethods
2241 {
2242 public:
11fea069
LOK
2243 CecCallbackMethods(void)
2244 {
f9717bcc
LOK
2245 m_iCallbackPtr = -1;
2246 AssignCallbacks();
11fea069
LOK
2247 m_bHasCallbacks = false;
2248 m_bDelegatesCreated = false;
2249 }
4ef3b314 2250
f9717bcc 2251 ~CecCallbackMethods(void)
dc6366e8
LOK
2252 {
2253 DestroyDelegates();
2254 }
2255
8438c41f
LOK
2256 /// <summary>
2257 /// Pointer to the callbacks struct entry
2258 /// </summary>
f9717bcc
LOK
2259 size_t GetCallbackPtr(void)
2260 {
2261 PLATFORM::CLockObject lock(g_callbackMutex);
2262 return m_iCallbackPtr;
2263 }
2264
2265 protected:
2266 !CecCallbackMethods(void)
2267 {
2268 DestroyDelegates();
2269 }
2270
2271 public:
8438c41f
LOK
2272 /// <summary>
2273 /// Disable callback methods
2274 /// </summary>
f9717bcc
LOK
2275 virtual void DisableCallbacks(void)
2276 {
2277 DestroyDelegates();
2278 }
2279
8438c41f
LOK
2280 /// <summary>
2281 /// Enable callback methods
2282 /// </summary>
2283 /// <param name="callbacks">Callback methods to activate</param>
2284 /// <return>true when handled, false otherwise</return>
f9717bcc
LOK
2285 virtual bool EnableCallbacks(CecCallbackMethods ^ callbacks)
2286 {
11fea069 2287 CreateDelegates();
f9717bcc
LOK
2288 if (!m_bHasCallbacks)
2289 {
2290 m_bHasCallbacks = true;
2291 m_callbacks = callbacks;
2292 return true;
2293 }
2294
2295 return false;
2296 }
2297
2298 /// <summary>
8438c41f
LOK
2299 /// Called by libCEC to send back a log message to the application.
2300 /// Override in the application to handle this callback.
f9717bcc
LOK
2301 /// </summary>
2302 /// <param name="message">The log message</param>
8438c41f 2303 /// <return>1 when handled, 0 otherwise</return>
f9717bcc
LOK
2304 virtual int ReceiveLogMessage(CecLogMessage ^ message)
2305 {
2306 return 0;
2307 }
2308
2309 /// <summary>
8438c41f
LOK
2310 /// Called by libCEC to send back a key press or release to the application.
2311 /// Override in the application to handle this callback.
f9717bcc
LOK
2312 /// </summary>
2313 /// <param name="key">The key press command that libCEC received</param>
8438c41f 2314 /// <return>1 when handled, 0 otherwise</return>
f9717bcc
LOK
2315 virtual int ReceiveKeypress(CecKeypress ^ key)
2316 {
2317 return 0;
2318 }
2319
2320 /// <summary>
8438c41f
LOK
2321 /// Called by libCEC to send back raw CEC data to the application.
2322 /// Override in the application to handle this callback.
f9717bcc
LOK
2323 /// </summary>
2324 /// <param name="command">The raw CEC data</param>
8438c41f 2325 /// <return>1 when handled, 0 otherwise</return>
f9717bcc
LOK
2326 virtual int ReceiveCommand(CecCommand ^ command)
2327 {
2328 return 0;
2329 }
2330
2331 /// <summary>
8438c41f
LOK
2332 /// Called by libCEC to send back an updated configuration to the application.
2333 /// Override in the application to handle this callback.
f9717bcc
LOK
2334 /// </summary>
2335 /// <param name="config">The new configuration</param>
8438c41f 2336 /// <return>1 when handled, 0 otherwise</return>
f9717bcc
LOK
2337 virtual int ConfigurationChanged(LibCECConfiguration ^ config)
2338 {
2339 return 0;
2340 }
2341
2342 /// <summary>
8438c41f
LOK
2343 /// Called by libCEC to send back an alert message to the application.
2344 /// Override in the application to handle this callback.
f9717bcc
LOK
2345 /// </summary>
2346 /// <param name="data">The alert message</param>
8438c41f 2347 /// <return>1 when handled, 0 otherwise</return>
f9717bcc
LOK
2348 virtual int ReceiveAlert(CecAlert alert, CecParameter ^ data)
2349 {
2350 return 0;
2351 }
2352
2353 /// <summary>
8438c41f
LOK
2354 /// Called by libCEC to send back a menu state change to the application.
2355 /// Override in the application to handle this callback.
f9717bcc
LOK
2356 /// </summary>
2357 /// <param name="newVal">The new menu state</param>
8438c41f 2358 /// <return>1 when handled, 0 otherwise</return>
f9717bcc
LOK
2359 virtual int ReceiveMenuStateChange(CecMenuState newVal)
2360 {
2361 return 0;
2362 }
2363
2364 /// <summary>
8438c41f
LOK
2365 /// Called by libCEC to notify the application that the source that is handled by libCEC was (de)activated.
2366 /// Override in the application to handle this callback.
f9717bcc
LOK
2367 /// </summary>
2368 /// <param name="logicalAddress">The logical address that was (de)activated</param>
2369 /// <param name="activated">True when activated, false when deactivated</param>
2370 virtual void SourceActivated(CecLogicalAddress logicalAddress, bool activated)
2371 {
2372 }
2373
2374 protected:
2375 // managed callback methods
2376 int CecLogMessageManaged(const CEC::cec_log_message &message)
2377 {
2378 int iReturn(0);
2379 if (m_bHasCallbacks)
2380 iReturn = m_callbacks->ReceiveLogMessage(gcnew CecLogMessage(gcnew System::String(message.message), (CecLogLevel)message.level, message.time));
2381 return iReturn;
2382 }
2383
2384 int CecKeyPressManaged(const CEC::cec_keypress &key)
2385 {
2386 int iReturn(0);
2387 if (m_bHasCallbacks)
2388 iReturn = m_callbacks->ReceiveKeypress(gcnew CecKeypress((CecUserControlCode)key.keycode, key.duration));
2389 return iReturn;
2390 }
2391
2392 int CecCommandManaged(const CEC::cec_command &command)
2393 {
2394 int iReturn(0);
2395 if (m_bHasCallbacks)
2396 {
2397 CecCommand ^ newCommand = gcnew CecCommand((CecLogicalAddress)command.initiator, (CecLogicalAddress)command.destination, command.ack == 1 ? true : false, command.eom == 1 ? true : false, (CecOpcode)command.opcode, command.transmit_timeout);
2398 for (uint8_t iPtr = 0; iPtr < command.parameters.size; iPtr++)
2399 newCommand->Parameters->PushBack(command.parameters[iPtr]);
2400 iReturn = m_callbacks->ReceiveCommand(newCommand);
2401 }
2402 return iReturn;
2403 }
2404
2405 int CecConfigManaged(const CEC::libcec_configuration &config)
2406 {
2407 int iReturn(0);
2408 if (m_bHasCallbacks)
2409 {
2410 LibCECConfiguration ^netConfig = gcnew LibCECConfiguration();
2411 netConfig->Update(config);
2412 iReturn = m_callbacks->ConfigurationChanged(netConfig);
2413 }
2414 return iReturn;
2415 }
2416
2417 int CecAlertManaged(const CEC::libcec_alert alert, const CEC::libcec_parameter &data)
2418 {
2419 int iReturn(0);
2420 if (m_bHasCallbacks)
2421 {
2422 CecParameterType newType = (CecParameterType)data.paramType;
2423 if (newType == CecParameterType::ParameterTypeString)
2424 {
423803df 2425 System::String ^ newData = gcnew System::String(data.paramData ? (const char *)data.paramData : "", 0, 128);
f9717bcc
LOK
2426 CecParameter ^ newParam = gcnew CecParameter(newType, newData);
2427 iReturn = m_callbacks->ReceiveAlert((CecAlert)alert, newParam);
2428 }
2429 }
2430 return iReturn;
2431 }
2432
2433 int CecMenuManaged(const CEC::cec_menu_state newVal)
2434 {
2435 int iReturn(0);
2436 if (m_bHasCallbacks)
2437 {
2438 iReturn = m_callbacks->ReceiveMenuStateChange((CecMenuState)newVal);
2439 }
2440 return iReturn;
2441 }
2442
2443 void CecSourceActivatedManaged(const CEC::cec_logical_address logicalAddress, const uint8_t bActivated)
2444 {
2445 if (m_bHasCallbacks)
2446 m_callbacks->SourceActivated((CecLogicalAddress)logicalAddress, bActivated == 1);
2447 }
2448
2449 void DestroyDelegates()
2450 {
11fea069 2451 m_bHasCallbacks = false;
f9717bcc
LOK
2452 if (m_bDelegatesCreated)
2453 {
11fea069 2454 m_bDelegatesCreated = false;
f9717bcc
LOK
2455 m_logMessageGCHandle.Free();
2456 m_keypressGCHandle.Free();
2457 m_commandGCHandle.Free();
2458 m_alertGCHandle.Free();
2459 m_menuGCHandle.Free();
2460 m_sourceActivatedGCHandle.Free();
2461 }
2462 }
4ef3b314 2463
11fea069
LOK
2464 void CreateDelegates()
2465 {
2466 DestroyDelegates();
2467
2468 if (!m_bDelegatesCreated)
2469 {
2470 msclr::interop::marshal_context ^ context = gcnew msclr::interop::marshal_context();
2471
2472 // create the delegate method for the log message callback
dc6366e8
LOK
2473 m_logMessageDelegate = gcnew CecLogMessageManagedDelegate(this, &CecCallbackMethods::CecLogMessageManaged);
2474 m_logMessageGCHandle = System::Runtime::InteropServices::GCHandle::Alloc(m_logMessageDelegate);
f9717bcc 2475 m_logMessageCallback = static_cast<LOGCB>(System::Runtime::InteropServices::Marshal::GetFunctionPointerForDelegate(m_logMessageDelegate).ToPointer());
11fea069
LOK
2476
2477 // create the delegate method for the keypress callback
dc6366e8
LOK
2478 m_keypressDelegate = gcnew CecKeyPressManagedDelegate(this, &CecCallbackMethods::CecKeyPressManaged);
2479 m_keypressGCHandle = System::Runtime::InteropServices::GCHandle::Alloc(m_keypressDelegate);
f9717bcc 2480 m_keypressCallback = static_cast<KEYCB>(System::Runtime::InteropServices::Marshal::GetFunctionPointerForDelegate(m_keypressDelegate).ToPointer());
11fea069
LOK
2481
2482 // create the delegate method for the command callback
dc6366e8
LOK
2483 m_commandDelegate = gcnew CecCommandManagedDelegate(this, &CecCallbackMethods::CecCommandManaged);
2484 m_commandGCHandle = System::Runtime::InteropServices::GCHandle::Alloc(m_commandDelegate);
f9717bcc 2485 m_commandCallback = static_cast<COMMANDCB>(System::Runtime::InteropServices::Marshal::GetFunctionPointerForDelegate(m_commandDelegate).ToPointer());
11fea069
LOK
2486
2487 // create the delegate method for the configuration change callback
dc6366e8
LOK
2488 m_configDelegate = gcnew CecConfigManagedDelegate(this, &CecCallbackMethods::CecConfigManaged);
2489 m_configGCHandle = System::Runtime::InteropServices::GCHandle::Alloc(m_configDelegate);
f9717bcc 2490 m_configCallback = static_cast<CONFIGCB>(System::Runtime::InteropServices::Marshal::GetFunctionPointerForDelegate(m_configDelegate).ToPointer());
11fea069 2491
5ee37222 2492 // create the delegate method for the alert callback
dc6366e8
LOK
2493 m_alertDelegate = gcnew CecAlertManagedDelegate(this, &CecCallbackMethods::CecAlertManaged);
2494 m_alertGCHandle = System::Runtime::InteropServices::GCHandle::Alloc(m_alertDelegate);
f9717bcc 2495 m_alertCallback = static_cast<ALERTCB>(System::Runtime::InteropServices::Marshal::GetFunctionPointerForDelegate(m_alertDelegate).ToPointer());
5ee37222 2496
c3a20edb 2497 // create the delegate method for the menu callback
dc6366e8
LOK
2498 m_menuDelegate = gcnew CecMenuManagedDelegate(this, &CecCallbackMethods::CecMenuManaged);
2499 m_menuGCHandle = System::Runtime::InteropServices::GCHandle::Alloc(m_menuDelegate);
f9717bcc 2500 m_menuCallback = static_cast<MENUCB>(System::Runtime::InteropServices::Marshal::GetFunctionPointerForDelegate(m_menuDelegate).ToPointer());
c3a20edb 2501
f9717bcc 2502 // create the delegate method for the source activated callback
dc6366e8
LOK
2503 m_sourceActivatedDelegate = gcnew CecSourceActivatedManagedDelegate(this, &CecCallbackMethods::CecSourceActivatedManaged);
2504 m_sourceActivatedGCHandle = System::Runtime::InteropServices::GCHandle::Alloc(m_sourceActivatedDelegate);
f9717bcc 2505 m_sourceActivatedCallback = static_cast<ACTICB>(System::Runtime::InteropServices::Marshal::GetFunctionPointerForDelegate(m_sourceActivatedDelegate).ToPointer());
29d5198c 2506
11fea069 2507 delete context;
dc6366e8 2508
f9717bcc
LOK
2509 UnmanagedCecCallbacks unmanagedCallbacks;
2510 unmanagedCallbacks.logCB = m_logMessageCallback;
2511 unmanagedCallbacks.keyCB = m_keypressCallback;
2512 unmanagedCallbacks.commandCB = m_commandCallback;
2513 unmanagedCallbacks.configCB = m_configCallback;
2514 unmanagedCallbacks.alertCB = m_alertCallback;
2515 unmanagedCallbacks.menuCB = m_menuCallback;
2516 unmanagedCallbacks.sourceActivatedCB = m_sourceActivatedCallback;
2517
2518 PLATFORM::CLockObject lock(g_callbackMutex);
2519 g_unmanagedCallbacks.push_back(unmanagedCallbacks);
2520 m_iCallbackPtr = g_unmanagedCallbacks.size() - 1;
2521 m_bDelegatesCreated = true;
11fea069
LOK
2522 }
2523 }
2524
f9717bcc
LOK
2525 CecLogMessageManagedDelegate ^ m_logMessageDelegate;
2526 static System::Runtime::InteropServices::GCHandle m_logMessageGCHandle;
2527 LOGCB m_logMessageCallback;
4ef3b314 2528
f9717bcc
LOK
2529 CecKeyPressManagedDelegate ^ m_keypressDelegate;
2530 static System::Runtime::InteropServices::GCHandle m_keypressGCHandle;
2531 KEYCB m_keypressCallback;
4ef3b314 2532
f9717bcc
LOK
2533 CecCommandManagedDelegate ^ m_commandDelegate;
2534 static System::Runtime::InteropServices::GCHandle m_commandGCHandle;
2535 COMMANDCB m_commandCallback;
4ef3b314 2536
f9717bcc
LOK
2537 CecConfigManagedDelegate ^ m_configDelegate;
2538 static System::Runtime::InteropServices::GCHandle m_configGCHandle;
2539 CONFIGCB m_configCallback;
32403cc3 2540
f9717bcc
LOK
2541 CecAlertManagedDelegate ^ m_alertDelegate;
2542 static System::Runtime::InteropServices::GCHandle m_alertGCHandle;
2543 ALERTCB m_alertCallback;
5ee37222 2544
f9717bcc
LOK
2545 CecMenuManagedDelegate ^ m_menuDelegate;
2546 static System::Runtime::InteropServices::GCHandle m_menuGCHandle;
2547 MENUCB m_menuCallback;
c3a20edb 2548
f9717bcc
LOK
2549 CecSourceActivatedManagedDelegate ^ m_sourceActivatedDelegate;
2550 static System::Runtime::InteropServices::GCHandle m_sourceActivatedGCHandle;
2551 ACTICB m_sourceActivatedCallback;
29d5198c 2552
f9717bcc
LOK
2553 CecCallbackMethods ^ m_callbacks;
2554 bool m_bHasCallbacks;
11fea069 2555 bool m_bDelegatesCreated;
f9717bcc
LOK
2556 size_t m_iCallbackPtr;
2557 };
4ef3b314 2558}