1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
/**
bespoke synth, a software modular synthesizer
Copyright (C) 2021 Ryan Challinor (contact: awwbees@gmail.com)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
**/
//
// NIMessage.cpp
// NI_FakeDaemon
//
// Created by Ryan Challinor on 11/24/14.
//
//
#include "NIMessage.h"
MessageIdToString MessageIdToStringTable[NUM_NI_MESSAGE_IDS] = {
{ 0x03536756, "NIGetServiceVersionMessage" },
{ 0x03444300, "NIDeviceConnectMessage" },
{ 0x03404300, "NISetAsciiStringMessage" },
{ 0x03446724, "NIGetDeviceEnabledMessage" },
{ 0x03444e00, "NIDeviceStateChangeMessage" },
{ 0x03446743, "NIGetDeviceAvailableMessage" },
{ 0x03434e00, "NISetFocusMessage" },
{ 0x03446744, "NIGetDriverVersionMessage" },
{ 0x03436746, "NIGetFirmwareVersionMessage" },
{ 0x03436753, "NIGetSerialNumberMessage" },
{ 0x03646749, "NIGetDisplayInvertedMessage" },
{ 0x03646743, "NIGetDisplayContrastMessage" },
{ 0x03646742, "NIGetDisplayBacklightMessage" },
{ 0x03566766, "NIGetFloatPropertyMessage" },
{ 0x03647344, "NIDisplayDrawMessage" },
{ 0x03654e00, "NIWheelsChangedMessage" },
{ 0x03504e00, "NIPadsChangedMessage" },
{ 0x036c7500, "NISetLedStateMessage" },
{ 0x02447500, "NIHWSDeviceConnectMessage" },
{ 0x03447143, "NIRequestSerialNumberMessage" },
{ 0x02444e2b, "NISetSerialNumberMessage" },
{ 0x03442d00, "NISoftwareShuttingDownMessage" },
{ 0x02444900, "NIHWSDeviceConnectSerialMessage" },
{ 0x03434300, "NIMysteryMessage" },
{ 0x03734e00, "NIButtonPressedMessage" },
{ 0x03774e00, "NIBrowseWheelMessage" },
{ 0x03564e66, "NIOctaveChangedMessage" },
};
std::string TypeForMessageID(uint32_t messageId)
{
for (int i = 0; i < NUM_NI_MESSAGE_IDS; ++i)
{
if (MessageIdToStringTable[i].messageId == messageId)
return MessageIdToStringTable[i].className;
}
char messageIdStr[16];
snprintf(messageIdStr, sizeof(messageIdStr), "0x%08x", messageId);
return std::string("Unknown message type ") + messageIdStr;
}
uint32_t MessageIDForType(std::string type)
{
for (int i = 0; i < NUM_NI_MESSAGE_IDS; ++i)
{
if (MessageIdToStringTable[i].className == type)
return MessageIdToStringTable[i].messageId;
}
return 0;
}
|