diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-08-29 20:02:35 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-08-29 20:02:35 -0400 |
commit | e1cdfd27cad943290a0233119548a8dd8876bd52 (patch) | |
tree | 1dc0526cc492f9112b5269511c9d634599304940 /lib/LuaBridge/Tests/JuceLibraryCode | |
parent | 4ac4b280abf2ffa28caa5a532353115a3033444f (diff) |
Replaced LuaBridge with sol2 and completely encapsulated scripting within script system
Diffstat (limited to 'lib/LuaBridge/Tests/JuceLibraryCode')
-rw-r--r-- | lib/LuaBridge/Tests/JuceLibraryCode/AppConfig.h | 27 | ||||
-rw-r--r-- | lib/LuaBridge/Tests/JuceLibraryCode/BinaryData.cpp | 143 | ||||
-rw-r--r-- | lib/LuaBridge/Tests/JuceLibraryCode/BinaryData.h | 13 | ||||
-rw-r--r-- | lib/LuaBridge/Tests/JuceLibraryCode/JuceHeader.h | 32 | ||||
-rw-r--r-- | lib/LuaBridge/Tests/JuceLibraryCode/ReadMe.txt | 12 |
5 files changed, 0 insertions, 227 deletions
diff --git a/lib/LuaBridge/Tests/JuceLibraryCode/AppConfig.h b/lib/LuaBridge/Tests/JuceLibraryCode/AppConfig.h deleted file mode 100644 index 1750fab..0000000 --- a/lib/LuaBridge/Tests/JuceLibraryCode/AppConfig.h +++ /dev/null @@ -1,27 +0,0 @@ -/* - - 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 deleted file mode 100644 index ffc5f77..0000000 --- a/lib/LuaBridge/Tests/JuceLibraryCode/BinaryData.cpp +++ /dev/null @@ -1,143 +0,0 @@ -/* ==================================== 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 deleted file mode 100644 index 5478fe9..0000000 --- a/lib/LuaBridge/Tests/JuceLibraryCode/BinaryData.h +++ /dev/null @@ -1,13 +0,0 @@ -/* ========================================================================================= - - 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 deleted file mode 100644 index 805b2b9..0000000 --- a/lib/LuaBridge/Tests/JuceLibraryCode/JuceHeader.h +++ /dev/null @@ -1,32 +0,0 @@ -/* - - 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 deleted file mode 100644 index 7fe54f4..0000000 --- a/lib/LuaBridge/Tests/JuceLibraryCode/ReadMe.txt +++ /dev/null @@ -1,12 +0,0 @@ - - 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). |