summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/Makefile.am17
-rw-r--r--test/curvemaptest.cc237
-rw-r--r--test/dgreftest/midiinputengine.cc13
-rw-r--r--test/midimapparsertest.cc50
-rw-r--r--test/midimappertest.cc77
-rw-r--r--test/powermaptest.cc51
-rw-r--r--test/translationtest_resource_data.cc72
7 files changed, 423 insertions, 94 deletions
diff --git a/test/Makefile.am b/test/Makefile.am
index 15ceb7d..5550816 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -8,7 +8,7 @@ TESTS = resource enginetest paintertest configfile audiocache \
randomtest atomictest syncedsettingstest imagecachetest \
semaphoretest drumkitcreatortest bytesizeparsertest notifiertest \
dgxmlparsertest domloadertest configparsertest midimapparsertest \
- eventsdstest powermaptest midimappertest
+ eventsdstest curvemaptest midimappertest
if WITH_NLS
TESTS += translationtest
@@ -314,6 +314,9 @@ midimapparsertest_LDFLAGS =
midimapparsertest_SOURCES = \
$(top_srcdir)/hugin/hugin.c \
$(top_srcdir)/src/midimapparser.cc \
+ $(top_srcdir)/src/curvemap.cc \
+ $(top_srcdir)/src/parsecurvemap.cc \
+ $(top_srcdir)/src/midimapper.cc \
$(top_srcdir)/pugixml/src/pugixml.cpp \
scopedfile.cc \
midimapparsertest.cc \
@@ -329,14 +332,14 @@ eventsdstest_SOURCES = \
eventsdstest.cc \
uunit/uunit.cc
-powermaptest_CXXFLAGS = \
- -I$(top_srcdir)/test/uunit -DOUTPUT=\"powermaptest\" \
+curvemaptest_CXXFLAGS = \
+ -I$(top_srcdir)/test/uunit -DOUTPUT=\"curvemaptest\" \
$(DEBUG_FLAGS) \
-I$(top_srcdir)/src
-powermaptest_LDFLAGS =
-powermaptest_SOURCES = \
- $(top_srcdir)/src/powermap.cc \
- powermaptest.cc \
+curvemaptest_LDFLAGS =
+curvemaptest_SOURCES = \
+ $(top_srcdir)/src/curvemap.cc \
+ curvemaptest.cc \
uunit/uunit.cc
midimappertest_CXXFLAGS = \
diff --git a/test/curvemaptest.cc b/test/curvemaptest.cc
new file mode 100644
index 0000000..8bbfa10
--- /dev/null
+++ b/test/curvemaptest.cc
@@ -0,0 +1,237 @@
+/* -*- Mode: c++ -*- */
+/***************************************************************************
+ * curvemaptest.cc
+ *
+ * Sun Apr 19 23:23:37 CEST 2020
+ * Copyright 2020 André Nusser
+ * andre.nusser@googlemail.com
+ ****************************************************************************/
+
+/*
+ * This file is part of DrumGizmo.
+ *
+ * DrumGizmo is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * DrumGizmo 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 Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with DrumGizmo; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
+ */
+#include <uunit.h>
+#include <map>
+
+#include "../src/curvemap.h"
+#include <iostream>
+#include <iomanip>
+
+class test_curvemaptest
+ : public uUnit
+{
+public:
+ test_curvemaptest()
+ {
+ uUNIT_TEST(test_curvemaptest::check_default);
+ uUNIT_TEST(test_curvemaptest::check_default_invert);
+ uUNIT_TEST(test_curvemaptest::check_default_disabled_shelf);
+ uUNIT_TEST(test_curvemaptest::check_default_disabled_shelf_invert);
+ uUNIT_TEST(test_curvemaptest::check_fixed1_075_025);
+ uUNIT_TEST(test_curvemaptest::check_fixed1_075_025_invert);
+ uUNIT_TEST(test_curvemaptest::check_shelf_060);
+ uUNIT_TEST(test_curvemaptest::check_shelf_060_invert);
+ // uUNIT_TEST(test_curvemaptest::check_fixed0_075_025_invert);
+ }
+
+ static constexpr auto eps = CurveMapTestAccessor::eps;
+
+ const std::map<double, double> default_map = {
+ {0.0, eps},
+ {eps, eps},
+ {0.1, 0.1},
+ {0.2, 0.2},
+ {0.3, 0.3},
+ {0.4, 0.4},
+ {0.5, 0.5},
+ {0.6, 0.6},
+ {0.7, 0.7},
+ {0.8, 0.8},
+ {0.9, 0.9},
+ {1.0 - eps, 1.0 - eps},
+ {1.0, 1.0 - eps}
+ };
+
+ const std::map<double, double> identity_map = {
+ {0.0, 0.0},
+ {0.1, 0.1},
+ {0.2, 0.2},
+ {0.3, 0.3},
+ {0.4, 0.4},
+ {0.5, 0.5},
+ {0.6, 0.6},
+ {0.7, 0.7},
+ {0.8, 0.8},
+ {0.9, 0.9},
+ {1.0, 1.0}
+ };
+
+ const std::map<double, double> fixed1_075_025_map = {
+ {0.0, eps},
+ {eps, eps},
+ {0, 0.0001},
+ {0.1, 0.0295469705015421},
+ {0.2, 0.0536915548145771},
+ {0.3, 0.0760560110211372},
+ {0.4, 0.100195862352848},
+ {0.5, 0.129666686058044},
+ {0.6, 0.168024003505707},
+ {0.7, 0.218823373317719},
+ {0.8, 0.325357049703598},
+ {0.9, 0.64416378736496},
+ {1.0 - eps, 1.0 - eps},
+ {1.0, 1.0 - eps}
+ };
+
+ const std::map<double, double> shelf_060_map = {
+ {0.0, eps},
+ {eps, eps},
+ {0.1, 0.1},
+ {0.2, 0.2},
+ {0.3, 0.3},
+ {0.4, 0.4},
+ {0.5, 0.5},
+ {0.6, 0.6},
+ {0.7, 0.6},
+ {0.8, 0.6},
+ {0.9, 0.6},
+ {1.0, 0.6}
+ };
+
+ void check_default()
+ {
+ auto dataset = this->default_map;
+
+ CurveMap map;
+
+ for (auto& entry : dataset) {
+ auto in = entry.first;
+ auto expect = entry.second;
+ uASSERT_EQUAL(expect, map.map(in));
+ }
+ }
+
+ void check_default_invert()
+ {
+ auto dataset = this->default_map;
+
+ CurveMap map;
+ map.setInvert(true);
+
+ for (auto& entry : dataset) {
+ auto in = 1.0 - entry.first;
+ auto expect = entry.second;
+ uASSERT_EQUAL(expect, map.map(in));
+ }
+ }
+
+ void check_default_disabled_shelf()
+ {
+ auto dataset = this->identity_map;
+
+ CurveMap map;
+ map.setShelf(false);
+ map.setFixed2({0.6, 0.6});
+
+ for (auto& entry : dataset) {
+ auto in = entry.first;
+ auto expect = entry.second;
+ // std::cout << "{" << in << ", " << std::setprecision (15) << map.map(in) << "}," << std::endl; // FIXME
+ uASSERT_EQUAL(expect, map.map(in));
+ }
+ }
+
+ void check_default_disabled_shelf_invert()
+ {
+ auto dataset = this->identity_map;
+
+ CurveMap map;
+ map.setShelf(false);
+ map.setFixed2({0.6, 0.6});
+ map.setInvert(true);
+
+ for (auto& entry : dataset) {
+ auto in = 1.0 - entry.first;
+ auto expect = entry.second;
+ uASSERT_EQUAL(expect, map.map(in));
+ }
+ }
+
+ void check_fixed1_075_025()
+ {
+ auto dataset = this->fixed1_075_025_map;
+
+ CurveMap map;
+ map.setFixed1({0.75, 0.25});
+
+ for (auto& entry : dataset) {
+ auto in = entry.first;
+ auto expect = entry.second;
+ // std::cout << "{" << in << ", " << std::setprecision (15) << map.map(in) << "}," << std::endl; // FIXME
+ uASSERT_EQUAL(expect, map.map(in));
+ }
+ }
+
+ void check_fixed1_075_025_invert()
+ {
+ auto dataset = this->fixed1_075_025_map;
+
+ CurveMap map;
+ map.setFixed1({0.75, 0.25});
+ map.setInvert(true);
+
+ for (auto& entry : dataset) {
+ auto in = 1.0 - entry.first;
+ auto expect = entry.second;
+ uASSERT_EQUAL(expect, map.map(in));
+ }
+ }
+
+ void check_shelf_060()
+ {
+ auto dataset = this->shelf_060_map;
+
+ CurveMap map;
+ map.setFixed2({0.6, 0.6});
+ map.setShelf(true);
+
+ for (auto& entry : dataset) {
+ auto in = entry.first;
+ auto expect = entry.second;
+ uASSERT_EQUAL(expect, map.map(in));
+ }
+ }
+
+ void check_shelf_060_invert()
+ {
+ auto dataset = this->shelf_060_map;
+
+ CurveMap map;
+ map.setFixed2({0.6, 0.6});
+ map.setShelf(true);
+ map.setInvert(true);
+
+ for (auto& entry : dataset) {
+ auto in = 1.0 - entry.first;
+ auto expect = entry.second;
+ uASSERT_EQUAL(expect, map.map(in));
+ }
+ }
+};
+
+// Registers the fixture into the 'registry'
+static test_curvemaptest test;
diff --git a/test/dgreftest/midiinputengine.cc b/test/dgreftest/midiinputengine.cc
index dbffec9..4827e5f 100644
--- a/test/dgreftest/midiinputengine.cc
+++ b/test/dgreftest/midiinputengine.cc
@@ -155,9 +155,14 @@ void MidifileInputEngine::run(size_t pos, size_t len, std::vector<event_t>& even
int key = current_event->midi_buffer[1];
int velocity = current_event->midi_buffer[2];
- auto instruments = mmap.lookup(key);
- for(const auto& instrument_idx : instruments)
+ auto entries = mmap.lookup(key);
+ for(const auto& entry : entries)
{
+ auto instrument_idx = mmap.lookup_instrument(entry.instrument_name);
+ if (instrument_idx < 0)
+ {
+ continue;
+ }
events.emplace_back();
auto& event = events.back();
event.type = EventType::OnSet;
@@ -165,6 +170,10 @@ void MidifileInputEngine::run(size_t pos, size_t len, std::vector<event_t>& even
event.offset = evpos - pos;
event.instrument = instrument_idx;
event.velocity = velocity / 127.0;
+ if (entry.maybe_curve_map)
+ {
+ event.velocity = entry.maybe_curve_map->map(event.velocity);
+ }
}
}
}
diff --git a/test/midimapparsertest.cc b/test/midimapparsertest.cc
index 3e77c44..0b892e9 100644
--- a/test/midimapparsertest.cc
+++ b/test/midimapparsertest.cc
@@ -27,6 +27,7 @@
#include <uunit.h>
#include <midimapparser.h>
+#include <curvemap.h>
#include "scopedfile.h"
@@ -36,11 +37,12 @@ class MidimapParserTest
public:
MidimapParserTest()
{
- uTEST(MidimapParserTest::test);
- uTEST(MidimapParserTest::invalid);
+ uTEST(MidimapParserTest::test_basic);
+ uTEST(MidimapParserTest::test_curve);
+ uTEST(MidimapParserTest::test_invalid);
}
- void test()
+ void test_basic()
{
ScopedFile scoped_file(
"<?xml version='1.0' encoding='UTF-8'?>\n" \
@@ -80,7 +82,47 @@ public:
uASSERT_EQUAL(std::string("Hihat_closed"), midimap[5].instrument_name);
}
- void invalid()
+ void test_curve()
+ {
+ ScopedFile scoped_file(
+ "<?xml version='1.0' encoding='UTF-8'?>\n" \
+ "<midimap>\n" \
+ " <map note=\"56\" instr=\"Hihat_closed\"/>\n" \
+ " <map note=\"40\" instr=\"Kick\">\n" \
+ " <curve in0=\"0.1\" out0=\"0.2\" in1=\"0.5\" out1=\"0.6\" in2=\"0.8\" out2=\"0.9\" invert=\"true\" shelf=\"false\"/>\n" \
+ " </map>\n" \
+ " <map note=\"41\" instr=\"Snare\">\n" \
+ " <curve/>\n" \
+ " </map>\n" \
+ "</midimap>");
+
+ MidiMapParser parser;
+ uASSERT(parser.parseFile(scoped_file.filename()));
+
+ const auto& midimap = parser.midimap;
+ uASSERT_EQUAL(3u, midimap.size());
+
+ uASSERT_EQUAL(56, midimap[0].note_id);
+ uASSERT(!midimap[0].maybe_curve_map);
+
+ uASSERT_EQUAL(40, midimap[1].note_id);
+ uASSERT(midimap[1].maybe_curve_map.get());
+ uASSERT_EQUAL(true, midimap[1].maybe_curve_map->getInvert());
+ uASSERT_EQUAL(false, midimap[1].maybe_curve_map->getShelf());
+ uASSERT_EQUAL(0.1, midimap[1].maybe_curve_map->getFixed0().in);
+ uASSERT_EQUAL(0.2, midimap[1].maybe_curve_map->getFixed0().out);
+ uASSERT_EQUAL(0.5, midimap[1].maybe_curve_map->getFixed1().in);
+ uASSERT_EQUAL(0.6, midimap[1].maybe_curve_map->getFixed1().out);
+ uASSERT_EQUAL(0.8, midimap[1].maybe_curve_map->getFixed2().in);
+ uASSERT_EQUAL(0.9, midimap[1].maybe_curve_map->getFixed2().out);
+
+ uASSERT_EQUAL(41, midimap[2].note_id);
+ CurveMap reference_map;
+ uASSERT(midimap[2].maybe_curve_map.get());
+ uASSERT(reference_map == *midimap[2].maybe_curve_map);
+ }
+
+ void test_invalid()
{
ScopedFile scoped_file(
"<?xml version='1.0' encoding='UTF-8'?>\n" \
diff --git a/test/midimappertest.cc b/test/midimappertest.cc
index 703c646..bf80266 100644
--- a/test/midimappertest.cc
+++ b/test/midimappertest.cc
@@ -26,6 +26,7 @@
#include <uunit.h>
#include <algorithm>
+#include <vector>
#include <midimapper.h>
@@ -45,12 +46,12 @@ public:
{
midimap_t midimap
{
- { 54, "Crash_left_tip" },
- { 60, "Crash_left_whisker" },
- { 55, "Crash_right_tip" },
- { 62, "Crash_right_whisker" },
- { 62, "Hihat_closed" },
- { 56, "Hihat_closed" },
+ MidimapEntry(54, "Crash_left_tip"),
+ MidimapEntry(60, "Crash_left_whisker"),
+ MidimapEntry(55, "Crash_right_tip"),
+ MidimapEntry(62, "Crash_right_whisker"),
+ MidimapEntry(62, "Hihat_closed"),
+ MidimapEntry(56, "Hihat_closed"),
};
instrmap_t instrmap
@@ -66,35 +67,48 @@ public:
mapper.swap(instrmap, midimap);
{
- auto is = mapper.lookup(54);
- uASSERT_EQUAL(1u, is.size());
- uASSERT_EQUAL(0, is[0]);
+ auto es = mapper.lookup(54);
+ uASSERT_EQUAL(1u, es.size());
+
+ auto i = mapper.lookup_instrument(es[0].instrument_name);
+ uASSERT_EQUAL(0, i);
}
{
- auto is = mapper.lookup(60);
- uASSERT_EQUAL(1u, is.size());
- uASSERT_EQUAL(1, is[0]);
+ auto es = mapper.lookup(60);
+ uASSERT_EQUAL(1u, es.size());
+
+ auto i = mapper.lookup_instrument(es[0].instrument_name);
+ uASSERT_EQUAL(1, i);
}
{
- auto is = mapper.lookup(55);
- uASSERT_EQUAL(1u, is.size());
- uASSERT_EQUAL(2, is[0]);
+ auto es = mapper.lookup(55);
+ uASSERT_EQUAL(1u, es.size());
+
+ auto i = mapper.lookup_instrument(es[0].instrument_name);
+ uASSERT_EQUAL(2, i);
}
{
- auto is = mapper.lookup(62);
- uASSERT_EQUAL(2u, is.size());
+ auto es = mapper.lookup(62);
+ uASSERT_EQUAL(2u, es.size());
+
+ std::vector<int> is;
+ is.push_back(mapper.lookup_instrument(es[0].instrument_name));
+ is.push_back(mapper.lookup_instrument(es[1].instrument_name));
+
// We don't care about the order, so just count the instances
uASSERT_EQUAL(1u, std::count(is.begin(), is.end(), 3));
uASSERT_EQUAL(1u, std::count(is.begin(), is.end(), 4));
}
{
- auto is = mapper.lookup(56);
- uASSERT_EQUAL(1u, is.size());
- uASSERT_EQUAL(4, is[0]);
+ auto es = mapper.lookup(56);
+ uASSERT_EQUAL(1u, es.size());
+
+ auto i = mapper.lookup_instrument(es[0].instrument_name);
+ uASSERT_EQUAL(4, i);
}
}
@@ -102,12 +116,12 @@ public:
{
midimap_t midimap
{
- { 54, "Crash_left_tip" },
- { 60, "Crash_left_whisker_MISSING" },
- { 55, "Crash_right_tip" },
- { 62, "Crash_right_whisker" },
- { 62, "Hihat_closed" },
- { 56, "Hihat_closed" },
+ MidimapEntry(54, "Crash_left_tip" ),
+ MidimapEntry(60, "Crash_left_whisker_MISSING" ),
+ MidimapEntry(55, "Crash_right_tip" ),
+ MidimapEntry(62, "Crash_right_whisker" ),
+ MidimapEntry(62, "Hihat_closed" ),
+ MidimapEntry(56, "Hihat_closed" ),
};
instrmap_t instrmap
@@ -124,14 +138,17 @@ public:
// no such note id
{
- auto is = mapper.lookup(42);
- uASSERT_EQUAL(0u, is.size());
+ auto es = mapper.lookup(42);
+ uASSERT_EQUAL(0u, es.size());
}
// no such instrument
{
- auto is = mapper.lookup(60);
- uASSERT_EQUAL(0u, is.size());
+ auto es = mapper.lookup(60);
+ uASSERT_EQUAL(1u, es.size());
+
+ auto is = mapper.lookup_instrument(es[0].instrument_name);
+ uASSERT_EQUAL(-1, is);
}
}
};
diff --git a/test/powermaptest.cc b/test/powermaptest.cc
deleted file mode 100644
index bef5bdc..0000000
--- a/test/powermaptest.cc
+++ /dev/null
@@ -1,51 +0,0 @@
-/* -*- Mode: c++ -*- */
-/***************************************************************************
- * powermaptest.cc
- *
- * Sun Apr 19 23:23:37 CEST 2020
- * Copyright 2020 André Nusser
- * andre.nusser@googlemail.com
- ****************************************************************************/
-
-/*
- * This file is part of DrumGizmo.
- *
- * DrumGizmo is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * DrumGizmo 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 Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with DrumGizmo; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
- */
-#include <uunit.h>
-
-#include "../src/powermap.h"
-
-class test_powermaptest
- : public uUnit
-{
-public:
- test_powermaptest()
- {
- uUNIT_TEST(test_powermaptest::check_values);
- }
-
- void check_values()
- {
- Powermap powermap;
-
- // TODO
- // std::cout << powermap.map(.8) << std::endl;
- // uUNIT_ASSERT_EQUAL(powermap.map(.8), .8);
- }
-};
-
-// Registers the fixture into the 'registry'
-static test_powermaptest test;
diff --git a/test/translationtest_resource_data.cc b/test/translationtest_resource_data.cc
new file mode 100644
index 0000000..7e25737
--- /dev/null
+++ b/test/translationtest_resource_data.cc
@@ -0,0 +1,72 @@
+/* This file is autogenerated by rcgen. Do not modify! */
+#include <dggui/resource_data.h>
+
+const rc_data_t rc_dataX[] =
+{
+ {
+ ":locale/da.mo", 948,
+ "\336\22\4\225\0\0\0\0\15\0\0\0\34\0\0\0"
+ "\204\0\0\0\21\0\0\0\354\0\0\0\0\0\0\0"
+ "\60\1\0\0\5\0\0\0\61\1\0\0\15\0\0\0"
+ "\67\1\0\0\16\0\0\0\105\1\0\0\13\0\0\0"
+ "\124\1\0\0\7\0\0\0\140\1\0\0\4\0\0\0"
+ "\150\1\0\0\12\0\0\0\155\1\0\0\20\0\0\0"
+ "\170\1\0\0\6\0\0\0\211\1\0\0\20\0\0\0"
+ "\220\1\0\0\22\0\0\0\241\1\0\0\12\0\0\0"
+ "\264\1\0\0\141\1\0\0\277\1\0\0\2\0\0\0"
+ "\41\3\0\0\17\0\0\0\44\3\0\0\16\0\0\0"
+ "\64\3\0\0\1\0\0\0\103\3\0\0\11\0\0\0"
+ "\105\3\0\0\11\0\0\0\117\3\0\0\12\0\0\0"
+ "\131\3\0\0\21\0\0\0\144\3\0\0\10\0\0\0"
+ "\166\3\0\0\17\0\0\0\177\3\0\0\26\0\0\0"
+ "\217\3\0\0\15\0\0\0\246\3\0\0\1\0\0\0"
+ "\14\0\0\0\0\0\0\0\15\0\0\0\11\0\0\0"
+ "\0\0\0\0\5\0\0\0\0\0\0\0\7\0\0\0"
+ "\2\0\0\0\12\0\0\0\0\0\0\0\3\0\0\0"
+ "\10\0\0\0\6\0\0\0\13\0\0\0\4\0\0\0"
+ "\0\101\142\157\165\164\0\102\154\145\145\144\40\103\157\156"
+ "\164\162\157\154\0\104\151\163\153\40\123\164\162\145\141\155"
+ "\151\156\147\0\104\162\165\155\107\151\172\155\157\40\166\0"
+ "\104\162\165\155\153\151\164\0\115\141\151\156\0\122\145\163"
+ "\141\155\160\154\151\156\147\0\123\141\155\160\154\145\40\123"
+ "\145\154\145\143\164\151\157\156\0\123\164\141\164\165\163\0"
+ "\124\151\155\151\156\147\40\110\165\155\141\156\151\172\145\162"
+ "\0\126\145\154\157\143\151\164\171\40\110\165\155\141\156\151"
+ "\172\145\162\0\126\151\163\165\141\154\151\172\145\162\0\120"
+ "\162\157\152\145\143\164\55\111\144\55\126\145\162\163\151\157"
+ "\156\72\40\144\162\165\155\147\151\172\155\157\40\60\56\71"
+ "\56\61\67\12\122\145\160\157\162\164\55\115\163\147\151\144"
+ "\55\102\165\147\163\55\124\157\72\40\12\120\117\124\55\103"
+ "\162\145\141\164\151\157\156\55\104\141\164\145\72\40\62\60"
+ "\61\71\55\60\71\55\61\63\40\62\61\72\60\67\53\60"
+ "\62\60\60\12\120\117\55\122\145\166\151\163\151\157\156\55"
+ "\104\141\164\145\72\40\62\60\61\71\55\60\71\55\61\63"
+ "\40\61\71\72\64\62\53\60\62\60\60\12\114\141\163\164"
+ "\55\124\162\141\156\163\154\141\164\157\162\72\40\101\165\164"
+ "\157\155\141\164\151\143\141\154\154\171\40\147\145\156\145\162"
+ "\141\164\145\144\12\114\141\156\147\165\141\147\145\55\124\145"
+ "\141\155\72\40\156\157\156\145\12\114\141\156\147\165\141\147"
+ "\145\72\40\144\141\12\115\111\115\105\55\126\145\162\163\151"
+ "\157\156\72\40\61\56\60\12\103\157\156\164\145\156\164\55"
+ "\124\171\160\145\72\40\164\145\170\164\57\160\154\141\151\156"
+ "\73\40\143\150\141\162\163\145\164\75\111\123\117\55\70\70"
+ "\65\71\55\61\12\103\157\156\164\145\156\164\55\124\162\141"
+ "\156\163\146\145\162\55\105\156\143\157\144\151\156\147\72\40"
+ "\70\142\151\164\12\120\154\165\162\141\154\55\106\157\162\155"
+ "\163\72\40\156\160\154\165\162\141\154\163\75\62\73\40\160"
+ "\154\165\162\141\154\75\50\156\40\41\75\40\61\51\73\12"
+ "\0\117\155\0\117\166\145\162\150\370\162\40\153\157\156\164"
+ "\162\157\154\0\104\151\163\153\40\163\164\162\145\141\155\151"
+ "\156\147\0\130\0\124\162\157\155\155\145\163\346\164\0\110"
+ "\157\166\145\144\146\141\156\145\0\122\145\163\141\155\160\154"
+ "\151\156\147\0\114\171\144\142\151\144\40\165\144\166\346\154"
+ "\147\145\154\163\145\0\124\151\154\163\164\141\156\144\0\124"
+ "\151\144\163\150\165\155\141\156\151\163\141\164\157\162\0\123"
+ "\154\141\147\163\164\171\162\153\145\40\150\165\155\141\156\151"
+ "\163\141\164\157\162\0\126\151\163\165\141\154\151\163\145\162"
+ "\151\156\147\0"
+ },
+ { "", 0, 0 }
+};
+
+const rc_data_t* rc_data = rc_dataX;