aboutsummaryrefslogtreecommitdiffstats
path: root/lib/LuaBridge/Tests/JuceLibraryCode
diff options
context:
space:
mode:
Diffstat (limited to 'lib/LuaBridge/Tests/JuceLibraryCode')
-rw-r--r--lib/LuaBridge/Tests/JuceLibraryCode/AppConfig.h27
-rw-r--r--lib/LuaBridge/Tests/JuceLibraryCode/BinaryData.cpp143
-rw-r--r--lib/LuaBridge/Tests/JuceLibraryCode/BinaryData.h13
-rw-r--r--lib/LuaBridge/Tests/JuceLibraryCode/JuceHeader.h32
-rw-r--r--lib/LuaBridge/Tests/JuceLibraryCode/ReadMe.txt12
5 files changed, 227 insertions, 0 deletions
diff --git a/lib/LuaBridge/Tests/JuceLibraryCode/AppConfig.h b/lib/LuaBridge/Tests/JuceLibraryCode/AppConfig.h
new file mode 100644
index 0000000..1750fab
--- /dev/null
+++ b/lib/LuaBridge/Tests/JuceLibraryCode/AppConfig.h
@@ -0,0 +1,27 @@
+/*
+
+ IMPORTANT! This file is auto-generated each time you save your
+ project - if you alter its contents, your changes may be overwritten!
+
+ There's a section below where you can add your own custom code safely, and the
+ Introjucer will preserve the contents of that block, but the best way to change
+ any of these definitions is by using the Introjucer's project settings.
+
+ Any commented-out settings will assume their default values.
+
+*/
+
+#ifndef __JUCE_APPCONFIG_K9UFLC__
+#define __JUCE_APPCONFIG_K9UFLC__
+
+//==============================================================================
+// [BEGIN_USER_CODE_SECTION]
+
+// (You can add your own code in this section, and the Introjucer will not overwrite it)
+
+// [END_USER_CODE_SECTION]
+
+//==============================================================================
+
+
+#endif // __JUCE_APPCONFIG_K9UFLC__
diff --git a/lib/LuaBridge/Tests/JuceLibraryCode/BinaryData.cpp b/lib/LuaBridge/Tests/JuceLibraryCode/BinaryData.cpp
new file mode 100644
index 0000000..ffc5f77
--- /dev/null
+++ b/lib/LuaBridge/Tests/JuceLibraryCode/BinaryData.cpp
@@ -0,0 +1,143 @@
+/* ==================================== JUCER_BINARY_RESOURCE ====================================
+
+ This is an auto-generated file, created by The Introjucer 3.0.0
+ Do not edit anything in this file!
+
+*/
+
+namespace BinaryData
+{
+
+//================== Tests.lua ==================
+static const unsigned char temp_b6c6a671[] =
+"-- test lua script to be run with the luabridge test program\r\n"
+"\r\n"
+"print(\"Running LuaBridge tests:\");\r\n"
+"\r\n"
+"-- enum from C++\r\n"
+"FN_CTOR = 0\r\n"
+"FN_DTOR = 1\r\n"
+"FN_STATIC = 2\r\n"
+"FN_VIRTUAL = 3\r\n"
+"FN_PROPGET = 4\r\n"
+"FN_PROPSET = 5\r\n"
+"FN_STATIC_PROPGET = 6\r\n"
+"FN_STATIC_PROPSET = 7\r\n"
+"FN_OPERATOR = 8\r\n"
+"NUM_FN_TYPES = 9\r\n"
+"\r\n"
+"-- function to print contents of a table\r\n"
+"function printtable (t)\r\n"
+" for k, v in pairs(t) do\r\n"
+" if (type(v) == \"table\") then\r\n"
+" print(k .. \" =>\", \"(table)\");\r\n"
+" elseif (type(v) == \"function\") then\r\n"
+" print(k .. \" =>\", \"(function)\");\r\n"
+" elseif (type(v) == \"userdata\") then\r\n"
+" print(k .. \" =>\", \"(userdata)\");\r\n"
+" else\r\n"
+" print(k .. \" =>\", v);\r\n"
+" end\r\n"
+" end\r\n"
+"end\r\n"
+"\r\n"
+"function assert (expr)\r\n"
+" if (not expr) then error(\"assert failed\", 2) end\r\n"
+"end\r\n"
+"\r\n"
+"-- test functions registered from C++\r\n"
+"\r\n"
+"assert(testSucceeded());\r\n"
+"assert(testRetInt() == 47);\r\n"
+"assert(testRetFloat() == 47.0);\r\n"
+"assert(testRetConstCharPtr() == \"Hello, world\");\r\n"
+"assert(testRetStdString() == \"Hello, world\");\r\n"
+"\r\n"
+"testParamInt(47); assert(testSucceeded());\r\n"
+"testParamBool(true); assert(testSucceeded());\r\n"
+"testParamFloat(47.0); assert(testSucceeded());\r\n"
+"testParamConstCharPtr(\"Hello, world\"); assert(testSucceeded());\r\n"
+"testParamStdString(\"Hello, world\"); assert(testSucceeded());\r\n"
+"testParamStdStringRef(\"Hello, world\"); assert(testSucceeded());\r\n"
+"\r\n"
+"-- test static methods of classes registered from C++\r\n"
+"\r\n"
+"A.testStatic(); assert(testAFnCalled(FN_STATIC));\r\n"
+"B.testStatic(); assert(testAFnCalled(FN_STATIC));\r\n"
+"B.testStatic2(); assert(testBFnCalled(FN_STATIC));\r\n"
+"\r\n"
+"-- test static properties of classes registered from C++\r\n"
+"\r\n"
+"assert(A.testStaticProp == 47);\r\n"
+"assert(A.testStaticProp2 == 47);assert(testAFnCalled(FN_STATIC_PROPGET));\r\n"
+"A.testStaticProp = 48; assert(A.testStaticProp == 48);\r\n"
+"A.testStaticProp2 = 49; assert(testAFnCalled(FN_STATIC_PROPSET) and A.testStaticProp2 == 49);\r\n"
+"\r\n"
+"-- test classes registered from C++\r\n"
+"\r\n"
+"object1 = A(\"object1\"); assert(testAFnCalled(FN_CTOR));\r\n"
+"object1:testVirtual(); assert(testAFnCalled(FN_VIRTUAL));\r\n"
+"\r\n"
+"object2 = B(\"object2\"); assert(testAFnCalled(FN_CTOR) and testBFnCalled(FN_CTOR));\r\n"
+"object2:testVirtual(); assert(testBFnCalled(FN_VIRTUAL) and not testAFnCalled(FN_VIRTUAL));\r\n"
+"\r\n"
+"-- test functions taking and returning objects\r\n"
+"\r\n"
+"testParamAPtr(object1); assert(object1:testSucceeded());\r\n"
+"testParamAPtrConst(object1); assert(object1:testSucceeded());\r\n"
+"testParamConstAPtr(object1); assert(object1:testSucceeded());\r\n"
+"testParamSharedPtrA(object1); assert(object1:testSucceeded());\r\n"
+"\r\n"
+"testParamAPtr(object2); assert(object2:testSucceeded());\r\n"
+"testParamAPtrConst(object2); assert(object2:testSucceeded());\r\n"
+"testParamConstAPtr(object2); assert(object2:testSucceeded());\r\n"
+"testParamSharedPtrA(object2); assert(object2:testSucceeded());\r\n"
+"\r\n"
+"result = testRetSharedPtrA(); assert(result:getName() == \"from C\");\r\n"
+"\r\n"
+"-- test constness\r\n"
+"\r\n"
+"constA = testRetSharedPtrConstA(); assert(constA:getName() == \"const A\");\r\n"
+"assert(constA.testVirtual == nil);\r\n"
+"testParamConstAPtr(constA); assert(constA:testSucceeded());\r\n"
+"assert(pcall(testParamAPtr, constA) == false, \"attempt to call nil value\");\r\n"
+"\r\n"
+"-- test properties\r\n"
+"\r\n"
+"assert(object1.testProp == 47);\r\n"
+"assert(object1.testProp2 == 47); assert(testAFnCalled(FN_PROPGET));\r\n"
+"assert(object2.testProp == 47);\r\n"
+"assert(object2.testProp2 == 47); assert(testAFnCalled(FN_PROPGET));\r\n"
+"\r\n"
+"object1.testProp = 48; assert(object1.testProp == 48);\r\n"
+"object1.testProp2 = 49; assert(testAFnCalled(FN_PROPSET) and object1.testProp2 == 49);\r\n"
+"\r\n"
+"-- test operator overload\r\n"
+"object1a = object1 + object1; assert(testAFnCalled(FN_OPERATOR));\r\n"
+"assert(object1a:getName() == \"object1 + object1\");\r\n"
+"\r\n"
+"print(\"All tests succeeded.\");\r\n";
+
+const char* Tests_lua = (const char*) temp_b6c6a671;
+
+
+const char* getNamedResource (const char*, int&) throw();
+const char* getNamedResource (const char* resourceNameUTF8, int& numBytes) throw()
+{
+ unsigned hash = 0;
+ if (resourceNameUTF8 != 0)
+ while (*resourceNameUTF8 != 0)
+ hash = 31 * hash + *resourceNameUTF8++;
+
+ switch (hash)
+ {
+ case 0x322b48ba:
+ case 0xeec98b6c: numBytes = 3877; return Tests_lua;
+ default: break;
+ }
+
+ numBytes = 0;
+ return 0;
+}
+
+}
diff --git a/lib/LuaBridge/Tests/JuceLibraryCode/BinaryData.h b/lib/LuaBridge/Tests/JuceLibraryCode/BinaryData.h
new file mode 100644
index 0000000..5478fe9
--- /dev/null
+++ b/lib/LuaBridge/Tests/JuceLibraryCode/BinaryData.h
@@ -0,0 +1,13 @@
+/* =========================================================================================
+
+ This is an auto-generated file, created by The Introjucer 3.0.0
+ Do not edit anything in this file!
+
+*/
+
+namespace BinaryData
+{
+ extern const char* Tests_lua;
+ const int Tests_luaSize = 3877;
+
+}
diff --git a/lib/LuaBridge/Tests/JuceLibraryCode/JuceHeader.h b/lib/LuaBridge/Tests/JuceLibraryCode/JuceHeader.h
new file mode 100644
index 0000000..805b2b9
--- /dev/null
+++ b/lib/LuaBridge/Tests/JuceLibraryCode/JuceHeader.h
@@ -0,0 +1,32 @@
+/*
+
+ IMPORTANT! This file is auto-generated each time you save your
+ project - if you alter its contents, your changes may be overwritten!
+
+ This is the header file that your files should include in order to get all the
+ JUCE library headers. You should avoid including the JUCE headers directly in
+ your own source files, because that wouldn't pick up the correct configuration
+ options for your app.
+
+*/
+
+#ifndef __APPHEADERFILE_K9UFLC__
+#define __APPHEADERFILE_K9UFLC__
+
+#include "AppConfig.h"
+#include "BinaryData.h"
+
+#if ! DONT_SET_USING_JUCE_NAMESPACE
+ // If your code uses a lot of JUCE classes, then this will obviously save you
+ // a lot of typing, but can be disabled by setting DONT_SET_USING_JUCE_NAMESPACE.
+ using namespace juce;
+#endif
+
+namespace ProjectInfo
+{
+ const char* const projectName = "LuaBridgeTests";
+ const char* const versionString = "1.0.0";
+ const int versionNumber = 0x10000;
+}
+
+#endif // __APPHEADERFILE_K9UFLC__
diff --git a/lib/LuaBridge/Tests/JuceLibraryCode/ReadMe.txt b/lib/LuaBridge/Tests/JuceLibraryCode/ReadMe.txt
new file mode 100644
index 0000000..7fe54f4
--- /dev/null
+++ b/lib/LuaBridge/Tests/JuceLibraryCode/ReadMe.txt
@@ -0,0 +1,12 @@
+
+ Important Note!!
+ ================
+
+The purpose of this folder is to contain files that are auto-generated by the Introjucer,
+and ALL files in this folder will be mercilessly DELETED and completely re-written whenever
+the Introjucer saves your project.
+
+Therefore, it's a bad idea to make any manual changes to the files in here, or to
+put any of your own files in here if you don't want to lose them. (Of course you may choose
+to add the folder's contents to your version-control system so that you can re-merge your own
+modifications after the Introjucer has saved its changes).