mirror of
https://github.com/sojamo/controlp5
synced 2024-11-22 14:07:55 +01:00
adding automation scripts to test examples
This commit is contained in:
parent
9bc0a548ff
commit
4d6cfbbc39
BIN
resources/addons/AddMethodList/AddMethodList.class
Normal file
BIN
resources/addons/AddMethodList/AddMethodList.class
Normal file
Binary file not shown.
68
resources/addons/AddMethodList/AddMethodList.java
Normal file
68
resources/addons/AddMethodList/AddMethodList.java
Normal file
@ -0,0 +1,68 @@
|
||||
import controlP5.*;
|
||||
import java.util.*;
|
||||
import java.text.*;
|
||||
import java.io.*;
|
||||
|
||||
import static controlP5.ControlP5Legacy.*;
|
||||
|
||||
public class AddMethodList {
|
||||
|
||||
public static void main(String ... args) {
|
||||
|
||||
if(args.length==1) {
|
||||
|
||||
String[] path = args[0].split("/");
|
||||
String example = path[path.length-1];
|
||||
int len = "ControlP5".length();
|
||||
String c = example.substring(len);
|
||||
c = Character.toUpperCase(c.charAt(0)) + c.substring(1);
|
||||
DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
|
||||
Date date = new Date();
|
||||
println();
|
||||
println(c,dateFormat.format(date),"\nAdding Methods to:",args[0]);
|
||||
try {
|
||||
File f = new File(args[0]+example+".pde");
|
||||
BufferedReader reader = new BufferedReader(new FileReader(f));
|
||||
StringBuffer buffer = new StringBuffer();
|
||||
String line;
|
||||
|
||||
while((line = reader.readLine()) != null ) {
|
||||
if(!line.startsWith("a list of all methods")) {
|
||||
buffer.append(line).append("\n");
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
Class<?> cls = Class.forName("controlP5."+c);
|
||||
|
||||
buffer.append("a list of all methods available for the " + cls.getSimpleName( ) + " Controller\n");
|
||||
buffer.append("use ControlP5.printPublicMethodsFor(" + cls.getSimpleName( ) + ".class);\n");
|
||||
buffer.append("to print the following list into the console.\n\n");
|
||||
buffer.append("You can find further details about class " + cls.getSimpleName( ) + " in the javadoc.\n\n");
|
||||
buffer.append("Format:\n");
|
||||
buffer.append("ClassName : returnType methodName(parameter type)\n\n\n");
|
||||
|
||||
Set set = ControlP5.getPublicMethodsFor(cls);
|
||||
for(Object o:set) {
|
||||
buffer.append(o.toString());
|
||||
buffer.append("\n");
|
||||
}
|
||||
|
||||
buffer.append("\ncreated: ");
|
||||
buffer.append(dateFormat.format(date));
|
||||
buffer.append("\n\n*/\n\n");
|
||||
PrintWriter out = new PrintWriter(f);
|
||||
out.println(buffer.toString());
|
||||
out.close();
|
||||
println("OK ",args[0] );
|
||||
|
||||
} catch (Exception e) {
|
||||
println(e);
|
||||
println("ERROR.");
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
3
resources/addons/AddMethodList/AddMethodList.sh
Normal file
3
resources/addons/AddMethodList/AddMethodList.sh
Normal file
@ -0,0 +1,3 @@
|
||||
|
||||
javac -cp .:../../../distribution/tmp/controlP5/library/controlP5.jar AddMethodList.java
|
||||
java -cp .:../../../distribution/tmp/controlP5/library/controlP5.jar:$HOME/Documents/workspace/libs/core.jar AddMethodList $HOME/Documents/workspace/controlp5/examples/controllers/ControlP5accordion/
|
@ -1,4 +1,5 @@
|
||||
for d in $HOME/Documents/workspace/controlp5/examples/use/*/; do
|
||||
echo "$d"
|
||||
for d in $HOME/Documents/workspace/controlp5/examples/**/*/; do
|
||||
# echo "$d"
|
||||
java -cp .:../../../distribution/tmp/controlP5/library/controlP5.jar:$HOME/Documents/workspace/libs/core.jar AddMethodList $d
|
||||
processing-java --sketch="$d" --output=/tmp/processing-test --force --build
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user