Merge branch 'master' into release
[deb_libcec.git] / src / LibCecSharp / CecSharpTypes.h
1 #pragma once
2 /*
3 * This file is part of the libCEC(R) library.
4 *
5 * libCEC(R) is Copyright (C) 2011-2012 Pulse-Eight Limited. All rights reserved.
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 */
33
34 #include <windows.h>
35 #include <vcclr.h>
36 #include <msclr/marshal.h>
37 #include "../../include/cec.h"
38
39 #using <System.dll>
40
41 namespace CecSharp
42 {
43 public enum class CecDeviceType
44 {
45 Tv = 0,
46 RecordingDevice = 1,
47 Reserved = 2,
48 Tuner = 3,
49 PlaybackDevice = 4,
50 AudioSystem = 5
51 };
52
53 public enum class CecLogLevel
54 {
55 None = 0,
56 Error = 1,
57 Warning = 2,
58 Notice = 4,
59 Traffic = 8,
60 Debug = 16,
61 All = 31
62 };
63
64 public enum class CecLogicalAddress
65 {
66 Unknown = -1, //not a valid logical address
67 Tv = 0,
68 RecordingDevice1 = 1,
69 RecordingDevice2 = 2,
70 Tuner1 = 3,
71 PlaybackDevice1 = 4,
72 AudioSystem = 5,
73 Tuner2 = 6,
74 Tuner3 = 7,
75 PlaybackDevice2 = 8,
76 RecordingDevice3 = 9,
77 Tuner4 = 10,
78 PlaybackDevice3 = 11,
79 Reserved1 = 12,
80 Reserved2 = 13,
81 FreeUse = 14,
82 Unregistered = 15,
83 Broadcast = 15
84 };
85
86 public enum class CecAlert
87 {
88 ServiceDevice = 1
89 };
90
91 public enum class CecParameterType
92 {
93 ParameterTypeString = 1
94 };
95
96 public ref class CecParameter
97 {
98 public:
99 CecParameter(CecParameterType type, System::String ^ strData)
100 {
101 Type = type;
102 Data = strData;
103 }
104
105 property CecParameterType Type;
106 property System::String ^ Data;
107 };
108
109 public enum class CecPowerStatus
110 {
111 On = 0x00,
112 Standby = 0x01,
113 InTransitionStandbyToOn = 0x02,
114 InTransitionOnToStandby = 0x03,
115 Unknown = 0x99
116 };
117
118 public enum class CecVersion
119 {
120 Unknown = 0x00,
121 V1_2 = 0x01,
122 V1_2A = 0x02,
123 V1_3 = 0x03,
124 V1_3A = 0x04,
125 V1_4 = 0x05
126 };
127
128 public enum class CecDisplayControl
129 {
130 DisplayForDefaultTime = 0x00,
131 DisplayUntilCleared = 0x40,
132 ClearPreviousMessage = 0x80,
133 ReservedForFutureUse = 0xC0
134 };
135
136 public enum class CecMenuState
137 {
138 Activated = 0,
139 Deactivated = 1
140 };
141
142 public enum class CecDeckControlMode
143 {
144 SkipForwardWind = 1,
145 SkipReverseRewind = 2,
146 Stop = 3,
147 Eject = 4
148 };
149
150 public enum class CecDeckInfo
151 {
152 Play = 0x11,
153 Record = 0x12,
154 Reverse = 0x13,
155 Still = 0x14,
156 Slow = 0x15,
157 SlowReverse = 0x16,
158 FastForward = 0x17,
159 FastReverse = 0x18,
160 NoMedia = 0x19,
161 Stop = 0x1A,
162 SkipForwardWind = 0x1B,
163 SkipReverseRewind = 0x1C,
164 IndexSearchForward = 0x1D,
165 IndexSearchReverse = 0x1E,
166 OtherStatus = 0x1F
167 };
168
169 public enum class CecUserControlCode
170 {
171 Select = 0x00,
172 Up = 0x01,
173 Down = 0x02,
174 Left = 0x03,
175 Right = 0x04,
176 RightUp = 0x05,
177 RightDown = 0x06,
178 LeftUp = 0x07,
179 LeftDown = 0x08,
180 RootMenu = 0x09,
181 SetupMenu = 0x0A,
182 ContentsMenu = 0x0B,
183 FavoriteMenu = 0x0C,
184 Exit = 0x0D,
185 Number0 = 0x20,
186 Number1 = 0x21,
187 Number2 = 0x22,
188 Number3 = 0x23,
189 Number4 = 0x24,
190 Number5 = 0x25,
191 Number6 = 0x26,
192 Number7 = 0x27,
193 Number8 = 0x28,
194 Number9 = 0x29,
195 Dot = 0x2A,
196 Enter = 0x2B,
197 Clear = 0x2C,
198 NextFavorite = 0x2F,
199 ChannelUp = 0x30,
200 ChannelDown = 0x31,
201 PreviousChannel = 0x32,
202 SoundSelect = 0x33,
203 InputSelect = 0x34,
204 DisplayInformation = 0x35,
205 Help = 0x36,
206 PageUp = 0x37,
207 PageDown = 0x38,
208 Power = 0x40,
209 VolumeUp = 0x41,
210 VolumeDown = 0x42,
211 Mute = 0x43,
212 Play = 0x44,
213 Stop = 0x45,
214 Pause = 0x46,
215 Record = 0x47,
216 Rewind = 0x48,
217 FastForward = 0x49,
218 Eject = 0x4A,
219 Forward = 0x4B,
220 Backward = 0x4C,
221 StopRecord = 0x4D,
222 PauseRecord = 0x4E,
223 Angle = 0x50,
224 SubPicture = 0x51,
225 VideoOnDemand = 0x52,
226 ElectronicProgramGuide = 0x53,
227 TimerProgramming = 0x54,
228 InitialConfiguration = 0x55,
229 PlayFunction = 0x60,
230 PausePlayFunction = 0x61,
231 RecordFunction = 0x62,
232 PauseRecordFunction = 0x63,
233 StopFunction = 0x64,
234 MuteFunction = 0x65,
235 RestoreVolumeFunction = 0x66,
236 TuneFunction = 0x67,
237 SelectMediaFunction = 0x68,
238 SelectAVInputFunction = 0x69,
239 SelectAudioInputFunction = 0x6A,
240 PowerToggleFunction = 0x6B,
241 PowerOffFunction = 0x6C,
242 PowerOnFunction = 0x6D,
243 F1Blue = 0x71,
244 F2Red = 0X72,
245 F3Green = 0x73,
246 F4Yellow = 0x74,
247 F5 = 0x75,
248 Data = 0x76,
249 Max = 0x76,
250 Unknown
251 };
252
253 public enum class CecVendorId
254 {
255 Samsung = 0x00F0,
256 LG = 0xE091,
257 Panasonic = 0x8045,
258 Pioneer = 0xE036,
259 Onkyo = 0x09B0,
260 Yamaha = 0xA0DE,
261 Philips = 0x903E,
262 Sony = 0x080046,
263 Unknown = 0
264 };
265
266 public enum class CecAudioStatus
267 {
268 MuteStatusMask = 0x80,
269 VolumeStatusMask = 0x7F,
270 VolumeMin = 0x00,
271 VolumeMax = 0x64,
272 VolumeStatusUnknown = 0x7F
273 };
274
275 public enum class CecOpcode
276 {
277 ActiveSource = 0x82,
278 ImageViewOn = 0x04,
279 TextViewOn = 0x0D,
280 InactiveSource = 0x9D,
281 RequestActiveSource = 0x85,
282 RoutingChange = 0x80,
283 RoutingInformation = 0x81,
284 SetStreamPath = 0x86,
285 Standby = 0x36,
286 RecordOff = 0x0B,
287 RecordOn = 0x09,
288 RecordStatus = 0x0A,
289 RecordTvScreen = 0x0F,
290 ClearAnalogueTimer = 0x33,
291 ClearDigitalTimer = 0x99,
292 ClearExternalTimer = 0xA1,
293 SetAnalogueTimer = 0x34,
294 SetDigitalTimer = 0x97,
295 SetExternalTimer = 0xA2,
296 SetTimerProgramTitle = 0x67,
297 TimerClearedStatus = 0x43,
298 TimerStatus = 0x35,
299 CecVersion = 0x9E,
300 GetCecVersion = 0x9F,
301 GivePhysicalAddress = 0x83,
302 GetMenuLanguage = 0x91,
303 ReportPhysicalAddress = 0x84,
304 SetMenuLanguage = 0x32,
305 DeckControl = 0x42,
306 DeckStatus = 0x1B,
307 GiveDeckStatus = 0x1A,
308 Play = 0x41,
309 GiveTunerDeviceStatus = 0x08,
310 SelectAnalogueService = 0x92,
311 SelectDigtalService = 0x93,
312 TunerDeviceStatus = 0x07,
313 TunerStepDecrement = 0x06,
314 TunerStepIncrement = 0x05,
315 DeviceVendorId = 0x87,
316 GiveDeviceVendorId = 0x8C,
317 VendorCommand = 0x89,
318 VendorCommandWithId = 0xA0,
319 VendorRemoteButtonDown = 0x8A,
320 VendorRemoteButtonUp = 0x8B,
321 SetOsdString = 0x64,
322 GiveOsdName = 0x46,
323 SetOsdName = 0x47,
324 MenuRequest = 0x8D,
325 MenuStatus = 0x8E,
326 UserControlPressed = 0x44,
327 UserControlRelease = 0x45,
328 GiveDevicePowerStatus = 0x8F,
329 ReportPowerStatus = 0x90,
330 FeatureAbort = 0x00,
331 Abort = 0xFF,
332 GiveAudioStatus = 0x71,
333 GiveSystemAudioMode = 0x7D,
334 ReportAudioStatus = 0x7A,
335 SetSystemAudioMode = 0x72,
336 SystemAudioModeRequest = 0x70,
337 SystemAudioModeStatus = 0x7E,
338 SetAudioRate = 0x9A,
339 /* when this opcode is set, no opcode will be sent to the device. this is one of the reserved numbers */
340 None = 0xFD
341 };
342
343 public enum class CecSystemAudioStatus
344 {
345 Off = 0,
346 On = 1
347 };
348
349 public enum class CecClientVersion
350 {
351 VersionPre1_5 = 0,
352 Version1_5_0 = 0x1500,
353 Version1_5_1 = 0x1501,
354 Version1_5_2 = 0x1502,
355 Version1_5_3 = 0x1503,
356 Version1_6_0 = 0x1600
357 };
358
359 public enum class CecServerVersion
360 {
361 VersionPre1_5 = 0,
362 Version1_5_0 = 0x1500,
363 Version1_5_1 = 0x1501,
364 Version1_5_2 = 0x1502,
365 Version1_5_3 = 0x1503,
366 Version1_6_0 = 0x1600
367 };
368
369 public ref class CecAdapter
370 {
371 public:
372 CecAdapter(System::String ^ strPath, System::String ^ strComPort)
373 {
374 Path = strPath;
375 ComPort = strComPort;
376 }
377
378 property System::String ^ Path;
379 property System::String ^ ComPort;
380 };
381
382 public ref class CecDeviceTypeList
383 {
384 public:
385 CecDeviceTypeList(void)
386 {
387 Types = gcnew array<CecDeviceType>(5);
388 for (unsigned int iPtr = 0; iPtr < 5; iPtr++)
389 Types[iPtr] = CecDeviceType::Reserved;
390 }
391
392 property array<CecDeviceType> ^ Types;
393 };
394
395 public ref class CecLogicalAddresses
396 {
397 public:
398 CecLogicalAddresses(void)
399 {
400 Addresses = gcnew array<CecLogicalAddress>(16);
401 Clear();
402 }
403
404 void Clear(void)
405 {
406 for (unsigned int iPtr = 0; iPtr < 16; iPtr++)
407 Addresses[iPtr] = CecLogicalAddress::Unknown;
408 }
409
410 bool IsSet(CecLogicalAddress iAddress)
411 {
412 return Addresses[(unsigned int)iAddress] != CecLogicalAddress::Unknown;
413 }
414
415 void Set(CecLogicalAddress iAddress)
416 {
417 Addresses[(unsigned int)iAddress] = iAddress;
418 }
419
420 property CecLogicalAddress Primary;
421 property array<CecLogicalAddress> ^ Addresses;
422 };
423
424 public ref class CecDatapacket
425 {
426 public:
427 CecDatapacket(void)
428 {
429 Data = gcnew array<uint8_t>(100);
430 Size = 0;
431 }
432
433 void PushBack(uint8_t data)
434 {
435 if (Size < 100)
436 {
437 Data[Size] = data;
438 Size++;
439 }
440 }
441
442 property array<uint8_t> ^ Data;
443 property uint8_t Size;
444 };
445
446 public ref class CecCommand
447 {
448 public:
449 CecCommand(CecLogicalAddress iInitiator, CecLogicalAddress iDestination, bool bAck, bool bEom, CecOpcode iOpcode, int32_t iTransmitTimeout)
450 {
451 Initiator = iInitiator;
452 Destination = iDestination;
453 Ack = bAck;
454 Eom = bEom;
455 Opcode = iOpcode;
456 OpcodeSet = true;
457 TransmitTimeout = iTransmitTimeout;
458 Parameters = gcnew CecDatapacket;
459 Empty = false;
460 }
461
462 CecCommand(void)
463 {
464 Initiator = CecLogicalAddress::Unknown;
465 Destination = CecLogicalAddress::Unknown;
466 Ack = false;
467 Eom = false;
468 Opcode = CecOpcode::None;
469 OpcodeSet = false;
470 TransmitTimeout = 0;
471 Parameters = gcnew CecDatapacket;
472 Empty = true;
473 }
474
475 void PushBack(uint8_t data)
476 {
477 if (Initiator == CecLogicalAddress::Unknown && Destination == CecLogicalAddress::Unknown)
478 {
479 Initiator = (CecLogicalAddress) (data >> 4);
480 Destination = (CecLogicalAddress) (data & 0xF);
481 }
482 else if (!OpcodeSet)
483 {
484 OpcodeSet = true;
485 Opcode = (CecOpcode)data;
486 }
487 else
488 {
489 Parameters->PushBack(data);
490 }
491 }
492
493 property bool Empty;
494 property CecLogicalAddress Initiator;
495 property CecLogicalAddress Destination;
496 property bool Ack;
497 property bool Eom;
498 property CecOpcode Opcode;
499 property CecDatapacket ^ Parameters;
500 property bool OpcodeSet;
501 property int32_t TransmitTimeout;
502 };
503
504 public ref class CecKeypress
505 {
506 public:
507 CecKeypress(int iKeycode, unsigned int iDuration)
508 {
509 Keycode = iKeycode;
510 Duration = iDuration;
511 Empty = false;
512 }
513
514 CecKeypress(void)
515 {
516 Keycode = 0;
517 Duration = 0;
518 Empty = true;
519 }
520
521 property bool Empty;
522 property int Keycode;
523 property unsigned int Duration;
524 };
525
526 public ref class CecLogMessage
527 {
528 public:
529 CecLogMessage(System::String ^ strMessage, CecLogLevel iLevel, int64_t iTime)
530 {
531 Message = strMessage;
532 Level = iLevel;
533 Time = iTime;
534 Empty = false;
535 }
536
537 CecLogMessage(void)
538 {
539 Message = "";
540 Level = CecLogLevel::None;
541 Time = 0;
542 Empty = true;
543 }
544
545 property bool Empty;
546 property System::String ^Message;
547 property CecLogLevel Level;
548 property int64_t Time;
549 };
550
551 ref class CecCallbackMethods; //forward
552 public ref class LibCECConfiguration
553 {
554 public:
555 LibCECConfiguration(void)
556 {
557 DeviceName = "";
558 DeviceTypes = gcnew CecDeviceTypeList();
559 AutodetectAddress = true;
560 PhysicalAddress = CEC_DEFAULT_PHYSICAL_ADDRESS;
561 BaseDevice = (CecLogicalAddress)CEC_DEFAULT_BASE_DEVICE;
562 HDMIPort = CEC_DEFAULT_HDMI_PORT;
563 ClientVersion = CecClientVersion::VersionPre1_5;
564 ServerVersion = CecServerVersion::VersionPre1_5;
565 TvVendor = CecVendorId::Unknown;
566
567 GetSettingsFromROM = false;
568 UseTVMenuLanguage = CEC_DEFAULT_SETTING_USE_TV_MENU_LANGUAGE == 1;
569 ActivateSource = CEC_DEFAULT_SETTING_ACTIVATE_SOURCE == 1;
570
571 WakeDevices = gcnew CecLogicalAddresses();
572 if (CEC_DEFAULT_SETTING_ACTIVATE_SOURCE == 1)
573 WakeDevices->Set(CecLogicalAddress::Tv);
574
575 PowerOffDevices = gcnew CecLogicalAddresses();
576 if (CEC_DEFAULT_SETTING_POWER_OFF_SHUTDOWN == 1)
577 PowerOffDevices->Set(CecLogicalAddress::Broadcast);
578
579 PowerOffScreensaver = CEC_DEFAULT_SETTING_POWER_OFF_SCREENSAVER == 1;
580 PowerOffOnStandby = CEC_DEFAULT_SETTING_POWER_OFF_ON_STANDBY == 1;
581 SendInactiveSource = CEC_DEFAULT_SETTING_SEND_INACTIVE_SOURCE == 1;
582 LogicalAddresses = gcnew CecLogicalAddresses();
583 FirmwareVersion = 1;
584 PowerOffDevicesOnStandby = CEC_DEFAULT_SETTING_POWER_OFF_DEVICES_STANDBY == 1;
585 }
586
587 void SetCallbacks(CecCallbackMethods ^callbacks)
588 {
589 Callbacks = callbacks;
590 }
591
592 void Update(const CEC::libcec_configuration &config)
593 {
594 DeviceName = gcnew System::String(config.strDeviceName);
595
596 for (unsigned int iPtr = 0; iPtr < 5; iPtr++)
597 DeviceTypes->Types[iPtr] = (CecDeviceType)config.deviceTypes.types[iPtr];
598
599 AutodetectAddress = config.bAutodetectAddress == 1;
600 PhysicalAddress = config.iPhysicalAddress;
601 BaseDevice = (CecLogicalAddress)config.baseDevice;
602 HDMIPort = config.iHDMIPort;
603 ClientVersion = (CecClientVersion)config.clientVersion;
604 ServerVersion = (CecServerVersion)config.serverVersion;
605 TvVendor = (CecVendorId)config.tvVendor;
606
607 // player specific settings
608 GetSettingsFromROM = config.bGetSettingsFromROM == 1;
609 UseTVMenuLanguage = config.bUseTVMenuLanguage == 1;
610 ActivateSource = config.bActivateSource == 1;
611
612 WakeDevices->Clear();
613 for (uint8_t iPtr = 0; iPtr <= 16; iPtr++)
614 if (config.wakeDevices[iPtr])
615 WakeDevices->Set((CecLogicalAddress)iPtr);
616
617 PowerOffDevices->Clear();
618 for (uint8_t iPtr = 0; iPtr <= 16; iPtr++)
619 if (config.powerOffDevices[iPtr])
620 PowerOffDevices->Set((CecLogicalAddress)iPtr);
621
622 PowerOffScreensaver = config.bPowerOffScreensaver == 1;
623 PowerOffOnStandby = config.bPowerOffOnStandby == 1;
624
625 if (ServerVersion >= CecServerVersion::Version1_5_1)
626 SendInactiveSource = config.bSendInactiveSource == 1;
627
628 if (ServerVersion >= CecServerVersion::Version1_5_3)
629 {
630 LogicalAddresses->Clear();
631 for (uint8_t iPtr = 0; iPtr <= 16; iPtr++)
632 if (config.logicalAddresses[iPtr])
633 LogicalAddresses->Set((CecLogicalAddress)iPtr);
634 }
635
636 if (ServerVersion >= CecServerVersion::Version1_6_0)
637 {
638 FirmwareVersion = config.iFirmwareVersion;
639 PowerOffDevicesOnStandby = config.bPowerOffDevicesOnStandby == 1;
640 }
641 }
642
643 property System::String ^ DeviceName;
644 property CecDeviceTypeList ^ DeviceTypes;
645 property bool AutodetectAddress;
646 property uint16_t PhysicalAddress;
647 property CecLogicalAddress BaseDevice;
648 property uint8_t HDMIPort;
649 property CecClientVersion ClientVersion;
650 property CecServerVersion ServerVersion;
651 property CecVendorId TvVendor;
652
653 // player specific settings
654 property bool GetSettingsFromROM;
655 property bool UseTVMenuLanguage;
656 property bool ActivateSource;
657 property CecLogicalAddresses ^WakeDevices;
658 property CecLogicalAddresses ^PowerOffDevices;
659 property bool PowerOffScreensaver;
660 property bool PowerOffOnStandby;
661 property bool SendInactiveSource;
662 property CecLogicalAddresses ^LogicalAddresses;
663 property uint16_t FirmwareVersion;
664 property bool PowerOffDevicesOnStandby;
665
666 property CecCallbackMethods ^ Callbacks;
667 };
668
669 // the callback methods are called by unmanaged code, so we need some delegates for this
670 #pragma unmanaged
671 // unmanaged callback methods
672 typedef int (__stdcall *LOGCB) (const CEC::cec_log_message &message);
673 typedef int (__stdcall *KEYCB) (const CEC::cec_keypress &key);
674 typedef int (__stdcall *COMMANDCB)(const CEC::cec_command &command);
675 typedef int (__stdcall *CONFIGCB) (const CEC::libcec_configuration &config);
676 typedef int (__stdcall *ALERTCB) (const CEC::libcec_alert, const CEC::libcec_parameter &data);
677
678 static LOGCB g_logCB;
679 static KEYCB g_keyCB;
680 static COMMANDCB g_commandCB;
681 static CONFIGCB g_configCB;
682 static ALERTCB g_alertCB;
683 static CEC::ICECCallbacks g_cecCallbacks;
684
685 int CecLogMessageCB(void *cbParam, const CEC::cec_log_message &message)
686 {
687 if (g_logCB)
688 return g_logCB(message);
689 return 0;
690 }
691
692 int CecKeyPressCB(void *cbParam, const CEC::cec_keypress &key)
693 {
694 if (g_keyCB)
695 return g_keyCB(key);
696 return 0;
697 }
698
699 int CecCommandCB(void *cbParam, const CEC::cec_command &command)
700 {
701 if (g_commandCB)
702 return g_commandCB(command);
703 return 0;
704 }
705
706 int CecConfigCB(void *cbParam, const CEC::libcec_configuration &config)
707 {
708 if (g_configCB)
709 return g_configCB(config);
710 return 0;
711 }
712
713 int CecAlertCB(void *cbParam, const CEC::libcec_alert alert, const CEC::libcec_parameter &data)
714 {
715 if (g_alertCB)
716 return g_alertCB(alert, data);
717 return 0;
718 }
719
720 #pragma managed
721 // delegates for the unmanaged callback methods
722 public delegate int CecLogMessageManagedDelegate(const CEC::cec_log_message &);
723 public delegate int CecKeyPressManagedDelegate(const CEC::cec_keypress &);
724 public delegate int CecCommandManagedDelegate(const CEC::cec_command &);
725 public delegate int CecConfigManagedDelegate(const CEC::libcec_configuration &);
726 public delegate int CecAlertManagedDelegate(const CEC::libcec_alert, const CEC::libcec_parameter &);
727
728 // callback method interface
729 public ref class CecCallbackMethods
730 {
731 public:
732 CecCallbackMethods(void)
733 {
734 m_bHasCallbacks = false;
735 m_bDelegatesCreated = false;
736 }
737
738 ~CecCallbackMethods(void)
739 {
740 DestroyDelegates();
741 }
742
743 protected:
744 !CecCallbackMethods(void)
745 {
746 DestroyDelegates();
747 }
748
749 public:
750 virtual void DisableCallbacks(void)
751 {
752 DestroyDelegates();
753 }
754
755 virtual bool EnableCallbacks(CecCallbackMethods ^ callbacks)
756 {
757 CreateDelegates();
758 if (!m_bHasCallbacks)
759 {
760 m_bHasCallbacks = true;
761 m_callbacks = callbacks;
762 return true;
763 }
764
765 return false;
766 }
767
768 virtual int ReceiveLogMessage(CecLogMessage ^ message)
769 {
770 return 0;
771 }
772
773 virtual int ReceiveKeypress(CecKeypress ^ key)
774 {
775 return 0;
776 }
777
778 virtual int ReceiveCommand(CecCommand ^ command)
779 {
780 return 0;
781 }
782
783 virtual int ConfigurationChanged(LibCECConfiguration ^ config)
784 {
785 return 0;
786 }
787
788 virtual int ReceiveAlert(CecAlert alert, CecParameter ^ data)
789 {
790 return 0;
791 }
792
793 protected:
794 // managed callback methods
795 int CecLogMessageManaged(const CEC::cec_log_message &message)
796 {
797 int iReturn(0);
798 if (m_bHasCallbacks)
799 iReturn = m_callbacks->ReceiveLogMessage(gcnew CecLogMessage(gcnew System::String(message.message), (CecLogLevel)message.level, message.time));
800 return iReturn;
801 }
802
803 int CecKeyPressManaged(const CEC::cec_keypress &key)
804 {
805 int iReturn(0);
806 if (m_bHasCallbacks)
807 iReturn = m_callbacks->ReceiveKeypress(gcnew CecKeypress(key.keycode, key.duration));
808 return iReturn;
809 }
810
811 int CecCommandManaged(const CEC::cec_command &command)
812 {
813 int iReturn(0);
814 if (m_bHasCallbacks)
815 {
816 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);
817 for (uint8_t iPtr = 0; iPtr < command.parameters.size; iPtr++)
818 newCommand->Parameters->PushBack(command.parameters[iPtr]);
819 iReturn = m_callbacks->ReceiveCommand(newCommand);
820 }
821 return iReturn;
822 }
823
824 int CecConfigManaged(const CEC::libcec_configuration &config)
825 {
826 int iReturn(0);
827 if (m_bHasCallbacks)
828 {
829 LibCECConfiguration ^netConfig = gcnew LibCECConfiguration();
830 netConfig->Update(config);
831 iReturn = m_callbacks->ConfigurationChanged(netConfig);
832 }
833 return iReturn;
834 }
835
836 int CecAlertManaged(const CEC::libcec_alert alert, const CEC::libcec_parameter &data)
837 {
838 int iReturn(0);
839 if (m_bHasCallbacks)
840 {
841 CecParameterType newType = (CecParameterType)data.paramType;
842 if (newType == CecParameterType::ParameterTypeString)
843 {
844 System::String ^ newData = gcnew System::String((const char *)data.paramData, 0, 128);
845 CecParameter ^ newParam = gcnew CecParameter(newType, newData);
846 iReturn = m_callbacks->ReceiveAlert((CecAlert)alert, newParam);
847 }
848 }
849 return iReturn;
850 }
851
852 void DestroyDelegates()
853 {
854 m_bHasCallbacks = false;
855 if (m_bDelegatesCreated)
856 {
857 m_bDelegatesCreated = false;
858 m_logMessageGCHandle.Free();
859 m_keypressGCHandle.Free();
860 m_commandGCHandle.Free();
861 }
862 }
863
864 void CreateDelegates()
865 {
866 DestroyDelegates();
867
868 if (!m_bDelegatesCreated)
869 {
870 msclr::interop::marshal_context ^ context = gcnew msclr::interop::marshal_context();
871
872 // create the delegate method for the log message callback
873 m_logMessageDelegate = gcnew CecLogMessageManagedDelegate(this, &CecCallbackMethods::CecLogMessageManaged);
874 m_logMessageGCHandle = System::Runtime::InteropServices::GCHandle::Alloc(m_logMessageDelegate);
875 g_logCB = static_cast<LOGCB>(System::Runtime::InteropServices::Marshal::GetFunctionPointerForDelegate(m_logMessageDelegate).ToPointer());
876 g_cecCallbacks.CBCecLogMessage = CecLogMessageCB;
877
878 // create the delegate method for the keypress callback
879 m_keypressDelegate = gcnew CecKeyPressManagedDelegate(this, &CecCallbackMethods::CecKeyPressManaged);
880 m_keypressGCHandle = System::Runtime::InteropServices::GCHandle::Alloc(m_keypressDelegate);
881 g_keyCB = static_cast<KEYCB>(System::Runtime::InteropServices::Marshal::GetFunctionPointerForDelegate(m_keypressDelegate).ToPointer());
882 g_cecCallbacks.CBCecKeyPress = CecKeyPressCB;
883
884 // create the delegate method for the command callback
885 m_commandDelegate = gcnew CecCommandManagedDelegate(this, &CecCallbackMethods::CecCommandManaged);
886 m_commandGCHandle = System::Runtime::InteropServices::GCHandle::Alloc(m_commandDelegate);
887 g_commandCB = static_cast<COMMANDCB>(System::Runtime::InteropServices::Marshal::GetFunctionPointerForDelegate(m_commandDelegate).ToPointer());
888 g_cecCallbacks.CBCecCommand = CecCommandCB;
889
890 // create the delegate method for the configuration change callback
891 m_configDelegate = gcnew CecConfigManagedDelegate(this, &CecCallbackMethods::CecConfigManaged);
892 m_configGCHandle = System::Runtime::InteropServices::GCHandle::Alloc(m_configDelegate);
893 g_configCB = static_cast<CONFIGCB>(System::Runtime::InteropServices::Marshal::GetFunctionPointerForDelegate(m_configDelegate).ToPointer());
894 g_cecCallbacks.CBCecConfigurationChanged = CecConfigCB;
895
896 // create the delegate method for the alert callback
897 m_alertDelegate = gcnew CecAlertManagedDelegate(this, &CecCallbackMethods::CecAlertManaged);
898 m_alertGCHandle = System::Runtime::InteropServices::GCHandle::Alloc(m_alertDelegate);
899 g_alertCB = static_cast<ALERTCB>(System::Runtime::InteropServices::Marshal::GetFunctionPointerForDelegate(m_alertDelegate).ToPointer());
900 g_cecCallbacks.CBCecAlert = CecAlertCB;
901
902 delete context;
903 m_bDelegatesCreated = true;
904 }
905 }
906
907 CecLogMessageManagedDelegate ^ m_logMessageDelegate;
908 static System::Runtime::InteropServices::GCHandle m_logMessageGCHandle;
909 LOGCB m_logMessageCallback;
910
911 CecKeyPressManagedDelegate ^ m_keypressDelegate;
912 static System::Runtime::InteropServices::GCHandle m_keypressGCHandle;
913 KEYCB m_keypressCallback;
914
915 CecCommandManagedDelegate ^ m_commandDelegate;
916 static System::Runtime::InteropServices::GCHandle m_commandGCHandle;
917 COMMANDCB m_commandCallback;
918
919 CecConfigManagedDelegate ^ m_configDelegate;
920 static System::Runtime::InteropServices::GCHandle m_configGCHandle;
921 CONFIGCB m_configCallback;
922
923 CecAlertManagedDelegate ^ m_alertDelegate;
924 static System::Runtime::InteropServices::GCHandle m_alertGCHandle;
925 CONFIGCB m_alertCallback;
926
927 CecCallbackMethods ^ m_callbacks;
928 bool m_bHasCallbacks;
929 bool m_bDelegatesCreated;
930 };
931 }