LibCecSharp: Update for 1.6.2
[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 Version1_6_1 = 0x1601,
358 Version1_6_2 = 0x1602
359 };
360
361 public enum class CecServerVersion
362 {
363 VersionPre1_5 = 0,
364 Version1_5_0 = 0x1500,
365 Version1_5_1 = 0x1501,
366 Version1_5_2 = 0x1502,
367 Version1_5_3 = 0x1503,
368 Version1_6_0 = 0x1600,
369 Version1_6_1 = 0x1601,
370 Version1_6_2 = 0x1602
371 };
372
373 public ref class CecAdapter
374 {
375 public:
376 CecAdapter(System::String ^ strPath, System::String ^ strComPort)
377 {
378 Path = strPath;
379 ComPort = strComPort;
380 }
381
382 property System::String ^ Path;
383 property System::String ^ ComPort;
384 };
385
386 public ref class CecDeviceTypeList
387 {
388 public:
389 CecDeviceTypeList(void)
390 {
391 Types = gcnew array<CecDeviceType>(5);
392 for (unsigned int iPtr = 0; iPtr < 5; iPtr++)
393 Types[iPtr] = CecDeviceType::Reserved;
394 }
395
396 property array<CecDeviceType> ^ Types;
397 };
398
399 public ref class CecLogicalAddresses
400 {
401 public:
402 CecLogicalAddresses(void)
403 {
404 Addresses = gcnew array<CecLogicalAddress>(16);
405 Clear();
406 }
407
408 void Clear(void)
409 {
410 for (unsigned int iPtr = 0; iPtr < 16; iPtr++)
411 Addresses[iPtr] = CecLogicalAddress::Unknown;
412 }
413
414 bool IsSet(CecLogicalAddress iAddress)
415 {
416 return Addresses[(unsigned int)iAddress] != CecLogicalAddress::Unknown;
417 }
418
419 void Set(CecLogicalAddress iAddress)
420 {
421 Addresses[(unsigned int)iAddress] = iAddress;
422 }
423
424 property CecLogicalAddress Primary;
425 property array<CecLogicalAddress> ^ Addresses;
426 };
427
428 public ref class CecDatapacket
429 {
430 public:
431 CecDatapacket(void)
432 {
433 Data = gcnew array<uint8_t>(100);
434 Size = 0;
435 }
436
437 void PushBack(uint8_t data)
438 {
439 if (Size < 100)
440 {
441 Data[Size] = data;
442 Size++;
443 }
444 }
445
446 property array<uint8_t> ^ Data;
447 property uint8_t Size;
448 };
449
450 public ref class CecCommand
451 {
452 public:
453 CecCommand(CecLogicalAddress iInitiator, CecLogicalAddress iDestination, bool bAck, bool bEom, CecOpcode iOpcode, int32_t iTransmitTimeout)
454 {
455 Initiator = iInitiator;
456 Destination = iDestination;
457 Ack = bAck;
458 Eom = bEom;
459 Opcode = iOpcode;
460 OpcodeSet = true;
461 TransmitTimeout = iTransmitTimeout;
462 Parameters = gcnew CecDatapacket;
463 Empty = false;
464 }
465
466 CecCommand(void)
467 {
468 Initiator = CecLogicalAddress::Unknown;
469 Destination = CecLogicalAddress::Unknown;
470 Ack = false;
471 Eom = false;
472 Opcode = CecOpcode::None;
473 OpcodeSet = false;
474 TransmitTimeout = 0;
475 Parameters = gcnew CecDatapacket;
476 Empty = true;
477 }
478
479 void PushBack(uint8_t data)
480 {
481 if (Initiator == CecLogicalAddress::Unknown && Destination == CecLogicalAddress::Unknown)
482 {
483 Initiator = (CecLogicalAddress) (data >> 4);
484 Destination = (CecLogicalAddress) (data & 0xF);
485 }
486 else if (!OpcodeSet)
487 {
488 OpcodeSet = true;
489 Opcode = (CecOpcode)data;
490 }
491 else
492 {
493 Parameters->PushBack(data);
494 }
495 }
496
497 property bool Empty;
498 property CecLogicalAddress Initiator;
499 property CecLogicalAddress Destination;
500 property bool Ack;
501 property bool Eom;
502 property CecOpcode Opcode;
503 property CecDatapacket ^ Parameters;
504 property bool OpcodeSet;
505 property int32_t TransmitTimeout;
506 };
507
508 public ref class CecKeypress
509 {
510 public:
511 CecKeypress(int iKeycode, unsigned int iDuration)
512 {
513 Keycode = iKeycode;
514 Duration = iDuration;
515 Empty = false;
516 }
517
518 CecKeypress(void)
519 {
520 Keycode = 0;
521 Duration = 0;
522 Empty = true;
523 }
524
525 property bool Empty;
526 property int Keycode;
527 property unsigned int Duration;
528 };
529
530 public ref class CecLogMessage
531 {
532 public:
533 CecLogMessage(System::String ^ strMessage, CecLogLevel iLevel, int64_t iTime)
534 {
535 Message = strMessage;
536 Level = iLevel;
537 Time = iTime;
538 Empty = false;
539 }
540
541 CecLogMessage(void)
542 {
543 Message = "";
544 Level = CecLogLevel::None;
545 Time = 0;
546 Empty = true;
547 }
548
549 property bool Empty;
550 property System::String ^Message;
551 property CecLogLevel Level;
552 property int64_t Time;
553 };
554
555 ref class CecCallbackMethods; //forward
556 public ref class LibCECConfiguration
557 {
558 public:
559 LibCECConfiguration(void)
560 {
561 DeviceName = "";
562 DeviceTypes = gcnew CecDeviceTypeList();
563 AutodetectAddress = true;
564 PhysicalAddress = CEC_DEFAULT_PHYSICAL_ADDRESS;
565 BaseDevice = (CecLogicalAddress)CEC_DEFAULT_BASE_DEVICE;
566 HDMIPort = CEC_DEFAULT_HDMI_PORT;
567 ClientVersion = CecClientVersion::VersionPre1_5;
568 ServerVersion = CecServerVersion::VersionPre1_5;
569 TvVendor = CecVendorId::Unknown;
570
571 GetSettingsFromROM = false;
572 UseTVMenuLanguage = CEC_DEFAULT_SETTING_USE_TV_MENU_LANGUAGE == 1;
573 ActivateSource = CEC_DEFAULT_SETTING_ACTIVATE_SOURCE == 1;
574
575 WakeDevices = gcnew CecLogicalAddresses();
576 if (CEC_DEFAULT_SETTING_ACTIVATE_SOURCE == 1)
577 WakeDevices->Set(CecLogicalAddress::Tv);
578
579 PowerOffDevices = gcnew CecLogicalAddresses();
580 if (CEC_DEFAULT_SETTING_POWER_OFF_SHUTDOWN == 1)
581 PowerOffDevices->Set(CecLogicalAddress::Broadcast);
582
583 PowerOffScreensaver = CEC_DEFAULT_SETTING_POWER_OFF_SCREENSAVER == 1;
584 PowerOffOnStandby = CEC_DEFAULT_SETTING_POWER_OFF_ON_STANDBY == 1;
585
586 SendInactiveSource = CEC_DEFAULT_SETTING_SEND_INACTIVE_SOURCE == 1;
587 LogicalAddresses = gcnew CecLogicalAddresses();
588 FirmwareVersion = 1;
589 PowerOffDevicesOnStandby = CEC_DEFAULT_SETTING_POWER_OFF_DEVICES_STANDBY == 1;
590 ShutdownOnStandby = CEC_DEFAULT_SETTING_SHUTDOWN_ON_STANDBY == 1;
591 DeviceLanguage = "";
592 }
593
594 void SetCallbacks(CecCallbackMethods ^callbacks)
595 {
596 Callbacks = callbacks;
597 }
598
599 void Update(const CEC::libcec_configuration &config)
600 {
601 DeviceName = gcnew System::String(config.strDeviceName);
602
603 for (unsigned int iPtr = 0; iPtr < 5; iPtr++)
604 DeviceTypes->Types[iPtr] = (CecDeviceType)config.deviceTypes.types[iPtr];
605
606 AutodetectAddress = config.bAutodetectAddress == 1;
607 PhysicalAddress = config.iPhysicalAddress;
608 BaseDevice = (CecLogicalAddress)config.baseDevice;
609 HDMIPort = config.iHDMIPort;
610 ClientVersion = (CecClientVersion)config.clientVersion;
611 ServerVersion = (CecServerVersion)config.serverVersion;
612 TvVendor = (CecVendorId)config.tvVendor;
613
614 // player specific settings
615 GetSettingsFromROM = config.bGetSettingsFromROM == 1;
616 UseTVMenuLanguage = config.bUseTVMenuLanguage == 1;
617 ActivateSource = config.bActivateSource == 1;
618
619 WakeDevices->Clear();
620 for (uint8_t iPtr = 0; iPtr <= 16; iPtr++)
621 if (config.wakeDevices[iPtr])
622 WakeDevices->Set((CecLogicalAddress)iPtr);
623
624 PowerOffDevices->Clear();
625 for (uint8_t iPtr = 0; iPtr <= 16; iPtr++)
626 if (config.powerOffDevices[iPtr])
627 PowerOffDevices->Set((CecLogicalAddress)iPtr);
628
629 PowerOffScreensaver = config.bPowerOffScreensaver == 1;
630 PowerOffOnStandby = config.bPowerOffOnStandby == 1;
631
632 if (ServerVersion >= CecServerVersion::Version1_5_1)
633 SendInactiveSource = config.bSendInactiveSource == 1;
634
635 if (ServerVersion >= CecServerVersion::Version1_5_3)
636 {
637 LogicalAddresses->Clear();
638 for (uint8_t iPtr = 0; iPtr <= 16; iPtr++)
639 if (config.logicalAddresses[iPtr])
640 LogicalAddresses->Set((CecLogicalAddress)iPtr);
641 }
642
643 if (ServerVersion >= CecServerVersion::Version1_6_0)
644 {
645 FirmwareVersion = config.iFirmwareVersion;
646 PowerOffDevicesOnStandby = config.bPowerOffDevicesOnStandby == 1;
647 ShutdownOnStandby = config.bShutdownOnStandby == 1;
648 }
649
650 if (ServerVersion >= CecServerVersion::Version1_6_2)
651 DeviceLanguage = gcnew System::String(config.strDeviceLanguage);
652 }
653
654 property System::String ^ DeviceName;
655 property CecDeviceTypeList ^ DeviceTypes;
656 property bool AutodetectAddress;
657 property uint16_t PhysicalAddress;
658 property CecLogicalAddress BaseDevice;
659 property uint8_t HDMIPort;
660 property CecClientVersion ClientVersion;
661 property CecServerVersion ServerVersion;
662 property CecVendorId TvVendor;
663
664 // player specific settings
665 property bool GetSettingsFromROM;
666 property bool UseTVMenuLanguage;
667 property bool ActivateSource;
668 property CecLogicalAddresses ^WakeDevices;
669 property CecLogicalAddresses ^PowerOffDevices;
670 property bool PowerOffScreensaver;
671 property bool PowerOffOnStandby;
672 property bool SendInactiveSource;
673 property CecLogicalAddresses ^LogicalAddresses;
674 property uint16_t FirmwareVersion;
675 property bool PowerOffDevicesOnStandby;
676 property bool ShutdownOnStandby;
677 property System::String ^ DeviceLanguage;
678 property CecCallbackMethods ^ Callbacks;
679 };
680
681 // the callback methods are called by unmanaged code, so we need some delegates for this
682 #pragma unmanaged
683 // unmanaged callback methods
684 typedef int (__stdcall *LOGCB) (const CEC::cec_log_message &message);
685 typedef int (__stdcall *KEYCB) (const CEC::cec_keypress &key);
686 typedef int (__stdcall *COMMANDCB)(const CEC::cec_command &command);
687 typedef int (__stdcall *CONFIGCB) (const CEC::libcec_configuration &config);
688 typedef int (__stdcall *ALERTCB) (const CEC::libcec_alert, const CEC::libcec_parameter &data);
689 typedef int (__stdcall *MENUCB) (const CEC::cec_menu_state newVal);
690
691 static LOGCB g_logCB;
692 static KEYCB g_keyCB;
693 static COMMANDCB g_commandCB;
694 static CONFIGCB g_configCB;
695 static ALERTCB g_alertCB;
696 static MENUCB g_menuCB;
697 static CEC::ICECCallbacks g_cecCallbacks;
698
699 int CecLogMessageCB(void *cbParam, const CEC::cec_log_message &message)
700 {
701 if (g_logCB)
702 return g_logCB(message);
703 return 0;
704 }
705
706 int CecKeyPressCB(void *cbParam, const CEC::cec_keypress &key)
707 {
708 if (g_keyCB)
709 return g_keyCB(key);
710 return 0;
711 }
712
713 int CecCommandCB(void *cbParam, const CEC::cec_command &command)
714 {
715 if (g_commandCB)
716 return g_commandCB(command);
717 return 0;
718 }
719
720 int CecConfigCB(void *cbParam, const CEC::libcec_configuration &config)
721 {
722 if (g_configCB)
723 return g_configCB(config);
724 return 0;
725 }
726
727 int CecAlertCB(void *cbParam, const CEC::libcec_alert alert, const CEC::libcec_parameter &data)
728 {
729 if (g_alertCB)
730 return g_alertCB(alert, data);
731 return 0;
732 }
733
734 int CecMenuCB(void *cbParam, const CEC::cec_menu_state newVal)
735 {
736 if (g_menuCB)
737 return g_menuCB(newVal);
738 return 0;
739 }
740
741 #pragma managed
742 // delegates for the unmanaged callback methods
743 public delegate int CecLogMessageManagedDelegate(const CEC::cec_log_message &);
744 public delegate int CecKeyPressManagedDelegate(const CEC::cec_keypress &);
745 public delegate int CecCommandManagedDelegate(const CEC::cec_command &);
746 public delegate int CecConfigManagedDelegate(const CEC::libcec_configuration &);
747 public delegate int CecAlertManagedDelegate(const CEC::libcec_alert, const CEC::libcec_parameter &);
748 public delegate int CecMenuManagedDelegate(const CEC::cec_menu_state newVal);
749
750 // callback method interface
751 public ref class CecCallbackMethods
752 {
753 public:
754 CecCallbackMethods(void)
755 {
756 m_bHasCallbacks = false;
757 m_bDelegatesCreated = false;
758 }
759
760 ~CecCallbackMethods(void)
761 {
762 DestroyDelegates();
763 }
764
765 protected:
766 !CecCallbackMethods(void)
767 {
768 DestroyDelegates();
769 }
770
771 public:
772 virtual void DisableCallbacks(void)
773 {
774 DestroyDelegates();
775 }
776
777 virtual bool EnableCallbacks(CecCallbackMethods ^ callbacks)
778 {
779 CreateDelegates();
780 if (!m_bHasCallbacks)
781 {
782 m_bHasCallbacks = true;
783 m_callbacks = callbacks;
784 return true;
785 }
786
787 return false;
788 }
789
790 virtual int ReceiveLogMessage(CecLogMessage ^ message)
791 {
792 return 0;
793 }
794
795 virtual int ReceiveKeypress(CecKeypress ^ key)
796 {
797 return 0;
798 }
799
800 virtual int ReceiveCommand(CecCommand ^ command)
801 {
802 return 0;
803 }
804
805 virtual int ConfigurationChanged(LibCECConfiguration ^ config)
806 {
807 return 0;
808 }
809
810 virtual int ReceiveAlert(CecAlert alert, CecParameter ^ data)
811 {
812 return 0;
813 }
814
815 virtual int ReceiveMenuStateChange(CecMenuState newVal)
816 {
817 return 0;
818 }
819
820 protected:
821 // managed callback methods
822 int CecLogMessageManaged(const CEC::cec_log_message &message)
823 {
824 int iReturn(0);
825 if (m_bHasCallbacks)
826 iReturn = m_callbacks->ReceiveLogMessage(gcnew CecLogMessage(gcnew System::String(message.message), (CecLogLevel)message.level, message.time));
827 return iReturn;
828 }
829
830 int CecKeyPressManaged(const CEC::cec_keypress &key)
831 {
832 int iReturn(0);
833 if (m_bHasCallbacks)
834 iReturn = m_callbacks->ReceiveKeypress(gcnew CecKeypress(key.keycode, key.duration));
835 return iReturn;
836 }
837
838 int CecCommandManaged(const CEC::cec_command &command)
839 {
840 int iReturn(0);
841 if (m_bHasCallbacks)
842 {
843 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);
844 for (uint8_t iPtr = 0; iPtr < command.parameters.size; iPtr++)
845 newCommand->Parameters->PushBack(command.parameters[iPtr]);
846 iReturn = m_callbacks->ReceiveCommand(newCommand);
847 }
848 return iReturn;
849 }
850
851 int CecConfigManaged(const CEC::libcec_configuration &config)
852 {
853 int iReturn(0);
854 if (m_bHasCallbacks)
855 {
856 LibCECConfiguration ^netConfig = gcnew LibCECConfiguration();
857 netConfig->Update(config);
858 iReturn = m_callbacks->ConfigurationChanged(netConfig);
859 }
860 return iReturn;
861 }
862
863 int CecAlertManaged(const CEC::libcec_alert alert, const CEC::libcec_parameter &data)
864 {
865 int iReturn(0);
866 if (m_bHasCallbacks)
867 {
868 CecParameterType newType = (CecParameterType)data.paramType;
869 if (newType == CecParameterType::ParameterTypeString)
870 {
871 System::String ^ newData = gcnew System::String((const char *)data.paramData, 0, 128);
872 CecParameter ^ newParam = gcnew CecParameter(newType, newData);
873 iReturn = m_callbacks->ReceiveAlert((CecAlert)alert, newParam);
874 }
875 }
876 return iReturn;
877 }
878
879 int CecMenuManaged(const CEC::cec_menu_state newVal)
880 {
881 int iReturn(0);
882 if (m_bHasCallbacks)
883 {
884 iReturn = m_callbacks->ReceiveMenuStateChange((CecMenuState)newVal);
885 }
886 return iReturn;
887 }
888
889 void DestroyDelegates()
890 {
891 m_bHasCallbacks = false;
892 if (m_bDelegatesCreated)
893 {
894 m_bDelegatesCreated = false;
895 m_logMessageGCHandle.Free();
896 m_keypressGCHandle.Free();
897 m_commandGCHandle.Free();
898 m_alertGCHandle.Free();
899 m_menuGCHandle.Free();
900 }
901 }
902
903 void CreateDelegates()
904 {
905 DestroyDelegates();
906
907 if (!m_bDelegatesCreated)
908 {
909 msclr::interop::marshal_context ^ context = gcnew msclr::interop::marshal_context();
910
911 // create the delegate method for the log message callback
912 m_logMessageDelegate = gcnew CecLogMessageManagedDelegate(this, &CecCallbackMethods::CecLogMessageManaged);
913 m_logMessageGCHandle = System::Runtime::InteropServices::GCHandle::Alloc(m_logMessageDelegate);
914 g_logCB = static_cast<LOGCB>(System::Runtime::InteropServices::Marshal::GetFunctionPointerForDelegate(m_logMessageDelegate).ToPointer());
915 g_cecCallbacks.CBCecLogMessage = CecLogMessageCB;
916
917 // create the delegate method for the keypress callback
918 m_keypressDelegate = gcnew CecKeyPressManagedDelegate(this, &CecCallbackMethods::CecKeyPressManaged);
919 m_keypressGCHandle = System::Runtime::InteropServices::GCHandle::Alloc(m_keypressDelegate);
920 g_keyCB = static_cast<KEYCB>(System::Runtime::InteropServices::Marshal::GetFunctionPointerForDelegate(m_keypressDelegate).ToPointer());
921 g_cecCallbacks.CBCecKeyPress = CecKeyPressCB;
922
923 // create the delegate method for the command callback
924 m_commandDelegate = gcnew CecCommandManagedDelegate(this, &CecCallbackMethods::CecCommandManaged);
925 m_commandGCHandle = System::Runtime::InteropServices::GCHandle::Alloc(m_commandDelegate);
926 g_commandCB = static_cast<COMMANDCB>(System::Runtime::InteropServices::Marshal::GetFunctionPointerForDelegate(m_commandDelegate).ToPointer());
927 g_cecCallbacks.CBCecCommand = CecCommandCB;
928
929 // create the delegate method for the configuration change callback
930 m_configDelegate = gcnew CecConfigManagedDelegate(this, &CecCallbackMethods::CecConfigManaged);
931 m_configGCHandle = System::Runtime::InteropServices::GCHandle::Alloc(m_configDelegate);
932 g_configCB = static_cast<CONFIGCB>(System::Runtime::InteropServices::Marshal::GetFunctionPointerForDelegate(m_configDelegate).ToPointer());
933 g_cecCallbacks.CBCecConfigurationChanged = CecConfigCB;
934
935 // create the delegate method for the alert callback
936 m_alertDelegate = gcnew CecAlertManagedDelegate(this, &CecCallbackMethods::CecAlertManaged);
937 m_alertGCHandle = System::Runtime::InteropServices::GCHandle::Alloc(m_alertDelegate);
938 g_alertCB = static_cast<ALERTCB>(System::Runtime::InteropServices::Marshal::GetFunctionPointerForDelegate(m_alertDelegate).ToPointer());
939 g_cecCallbacks.CBCecAlert = CecAlertCB;
940
941 // create the delegate method for the menu callback
942 m_menuDelegate = gcnew CecMenuManagedDelegate(this, &CecCallbackMethods::CecMenuManaged);
943 m_menuGCHandle = System::Runtime::InteropServices::GCHandle::Alloc(m_menuDelegate);
944 g_menuCB = static_cast<MENUCB>(System::Runtime::InteropServices::Marshal::GetFunctionPointerForDelegate(m_menuDelegate).ToPointer());
945 g_cecCallbacks.CBCecMenuStateChanged = CecMenuCB;
946
947 delete context;
948 m_bDelegatesCreated = true;
949 }
950 }
951
952 CecLogMessageManagedDelegate ^ m_logMessageDelegate;
953 static System::Runtime::InteropServices::GCHandle m_logMessageGCHandle;
954 LOGCB m_logMessageCallback;
955
956 CecKeyPressManagedDelegate ^ m_keypressDelegate;
957 static System::Runtime::InteropServices::GCHandle m_keypressGCHandle;
958 KEYCB m_keypressCallback;
959
960 CecCommandManagedDelegate ^ m_commandDelegate;
961 static System::Runtime::InteropServices::GCHandle m_commandGCHandle;
962 COMMANDCB m_commandCallback;
963
964 CecConfigManagedDelegate ^ m_configDelegate;
965 static System::Runtime::InteropServices::GCHandle m_configGCHandle;
966 CONFIGCB m_configCallback;
967
968 CecAlertManagedDelegate ^ m_alertDelegate;
969 static System::Runtime::InteropServices::GCHandle m_alertGCHandle;
970 CONFIGCB m_alertCallback;
971
972 CecMenuManagedDelegate ^ m_menuDelegate;
973 static System::Runtime::InteropServices::GCHandle m_menuGCHandle;
974 MENUCB m_menuCallback;
975
976 CecCallbackMethods ^ m_callbacks;
977 bool m_bHasCallbacks;
978 bool m_bDelegatesCreated;
979 };
980 }