-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Lei Zhang
committed
Jan 16, 2018
1 parent
b1cc455
commit 52e62f5
Showing
98 changed files
with
1,165 additions
and
556 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.cproject | ||
.project | ||
.settings/ | ||
*.pyc | ||
*.DS_STORE |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#ifndef PLUGIN_OPTIONS_H | ||
#define PLUGIN_OPTIONS_H | ||
|
||
const char* pluginOptionsJsonString = "{\"options\": [{\"defaultValue\": 15, \"minValue\": 1, \"type\": \"int\", \"name\": \"transTime\", \"maxValue\": 600}]}"; | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
const char* getPluginOptionsJsonString(){ | ||
return pluginOptionsJsonString; | ||
} | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* | ||
* PluginOptionsManager.h | ||
* | ||
* Created on: Jul 25, 2017 | ||
* Author: eski | ||
*/ | ||
|
||
#ifndef INC_PLUGINOPTIONSMANAGER_H_ | ||
#define INC_PLUGINOPTIONSMANAGER_H_ | ||
|
||
#define PLUGIN_OPTIONS_ERROR_OPTION_NO_EXIST -10 | ||
#define PLUGIN_OPTIONS_ERROR_WRONG_OPTION_TYPE -11 | ||
|
||
#include <string> | ||
|
||
|
||
int getOptionValue(const char* name, int& value); | ||
int getOptionValue(const char* name, bool& value); | ||
int getOptionValue(const char* name, double& value); | ||
int getOptionValue(const char* name, std::string & value); | ||
|
||
|
||
#endif /* INC_PLUGINOPTIONSMANAGER_H_ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
#define INC_VERSION_H_ | ||
|
||
|
||
#define SDK_VERSION "2.0" | ||
#define SDK_VERSION "2.2" | ||
|
||
|
||
#endif /* INC_VERSION_H_ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"palette": [{"hue": 227, "saturation": 100, "brightness": 99}, {"hue": 182, "saturation": 100, "brightness": 100}, {"hue": 125, "saturation": 100, "brightness": 93}, {"hue": 62, "saturation": 100, "brightness": 100}, {"hue": 31, "saturation": 100, "brightness": 100}, {"hue": 2, "saturation": 100, "brightness": 100}, {"hue": 307, "saturation": 100, "brightness": 100}], "pluginType": "color", "pluginUuid": "c6e98ebc-dfb3-4f5e-a6cb-f63907278379", "version": "1.0", "animType": "plugin", "animName": "Converge", "colorType": "HSB"} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
File renamed without changes.
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#ifndef PLUGIN_OPTIONS_H | ||
#define PLUGIN_OPTIONS_H | ||
|
||
const char* pluginOptionsJsonString = "{\"options\": [{\"defaultValue\": 15, \"minValue\": 1, \"type\": \"int\", \"name\": \"transTime\", \"maxValue\": 600}]}"; | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
const char* getPluginOptionsJsonString(){ | ||
return pluginOptionsJsonString; | ||
} | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* | ||
* PluginOptionsManager.h | ||
* | ||
* Created on: Jul 25, 2017 | ||
* Author: eski | ||
*/ | ||
|
||
#ifndef INC_PLUGINOPTIONSMANAGER_H_ | ||
#define INC_PLUGINOPTIONSMANAGER_H_ | ||
|
||
#define PLUGIN_OPTIONS_ERROR_OPTION_NO_EXIST -10 | ||
#define PLUGIN_OPTIONS_ERROR_WRONG_OPTION_TYPE -11 | ||
|
||
#include <string> | ||
|
||
|
||
int getOptionValue(const char* name, int& value); | ||
int getOptionValue(const char* name, bool& value); | ||
int getOptionValue(const char* name, double& value); | ||
int getOptionValue(const char* name, std::string & value); | ||
|
||
|
||
#endif /* INC_PLUGINOPTIONSMANAGER_H_ */ |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
#define INC_VERSION_H_ | ||
|
||
|
||
#define SDK_VERSION "2.0" | ||
#define SDK_VERSION "2.2" | ||
|
||
|
||
#endif /* INC_VERSION_H_ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file modified
BIN
+596 KB
(160%)
Examples/RhythmicNorthernLights/Utilities/libPluginUtilities.a
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Oops, something went wrong.