From 09e86fa5e752edc602dfa2460002b8379538b99a Mon Sep 17 00:00:00 2001 From: benfry Date: Fri, 10 Dec 2004 05:10:53 +0000 Subject: [PATCH] add -target 1.1 to the make files for the libs --- build/linux/make.sh | 6 +++--- build/macosx/make.sh | 8 ++++---- build/windows/make.sh | 10 +++++----- core/todo.txt | 2 ++ todo.txt | 3 +-- 5 files changed, 15 insertions(+), 14 deletions(-) diff --git a/build/linux/make.sh b/build/linux/make.sh index 9b3fa8e88..25e632700 100755 --- a/build/linux/make.sh +++ b/build/linux/make.sh @@ -112,7 +112,7 @@ CLASSPATH="../../build/linux/work/lib/core.jar:../../build/linux/work/java/lib/r # SERIAL LIBRARY echo Build serial library... cd ../../lib/serial -../../build/linux/work/jikes +D -classpath "code/RXTXcomm.jar:$CLASSPATH" -d . *.java +../../build/linux/work/jikes -target 1.1 +D -classpath "code/RXTXcomm.jar:$CLASSPATH" -d . *.java rm -f library/serial.jar zip -r0q library/serial.jar processing rm -rf processing @@ -123,7 +123,7 @@ cp library/serial.jar ../../build/linux/work/libraries/serial/library/ # NET LIBRARY echo Build net library... cd ../../lib/net -../../build/linux/work/jikes +D -d . *.java +../../build/linux/work/jikes -target 1.1 +D -d . *.java rm -f library/net.jar zip -r0q library/net.jar processing rm -rf processing @@ -134,7 +134,7 @@ cp library/net.jar ../../build/linux/work/libraries/net/library/ # PARTICLES LIBRARY echo Build particles library... cd ../../lib/particles -../../build/linux/work/jikes +D -d . *.java +../../build/linux/work/jikes -target 1.1 +D -d . *.java rm -f library/particles.jar zip -r0q library/particles.jar simong rm -rf simong diff --git a/build/macosx/make.sh b/build/macosx/make.sh index 19efd2d9c..c3d8c07c0 100755 --- a/build/macosx/make.sh +++ b/build/macosx/make.sh @@ -118,7 +118,7 @@ CLASSPATH=../../build/macosx/work/lib/core.jar:$CLASSPATH # SERIAL LIBRARY echo Building serial library... cd ../../lib/serial -../../build/macosx/work/jikes +D -classpath "code/RXTXcomm.jar:../../build/macosx/work/lib/core.jar:$CLASSPATH" -d . *.java +../../build/macosx/work/jikes -target 1.1 +D -classpath "code/RXTXcomm.jar:../../build/macosx/work/lib/core.jar:$CLASSPATH" -d . *.java rm -f library/serial.jar zip -r0q library/serial.jar processing rm -rf processing @@ -129,7 +129,7 @@ cp library/serial.jar ../../build/macosx/work/libraries/serial/library/ # NET LIBRARY echo Building net library... cd ../../lib/net -../../build/macosx/work/jikes +D -d . *.java +../../build/macosx/work/jikes -target 1.1 +D -d . *.java rm -f library/net.jar zip -r0q library/net.jar processing rm -rf processing @@ -148,7 +148,7 @@ else exit 1; fi cd ../../lib/video -../../build/macosx/work/jikes +D -classpath "$QTJAVA:$CLASSPATH" -d . *.java +../../build/macosx/work/jikes -target 1.1 +D -classpath "$QTJAVA:$CLASSPATH" -d . *.java rm -f library/video.jar zip -r0q library/video.jar processing rm -rf processing @@ -159,7 +159,7 @@ cp library/video.jar ../../build/macosx/work/libraries/video/library/ # PARTICLES LIBRARY echo Build particles library... cd ../../lib/particles -../../build/macosx/work/jikes +D -d . *.java +../../build/macosx/work/jikes -target 1.1 +D -d . *.java rm -f library/particles.jar zip -r0q library/particles.jar simong rm -rf simong diff --git a/build/windows/make.sh b/build/windows/make.sh index a51055880..01611bd93 100755 --- a/build/windows/make.sh +++ b/build/windows/make.sh @@ -139,7 +139,7 @@ CLASSPATH="..\\..\\build\\windows\\work\\lib\\core.jar;..\\..\\build\\windows\\w # SERIAL LIBRARY echo Build serial library... cd ../../lib/serial -../../build/windows/work/jikes +D -classpath "code\\RXTXcomm.jar;$CLASSPATH" -d . *.java +../../build/windows/work/jikes -target 1.1 +D -classpath "code\\RXTXcomm.jar;$CLASSPATH" -d . *.java rm -f library/serial.jar zip -r0q library/serial.jar processing rm -rf processing @@ -150,7 +150,7 @@ cp library/serial.jar ../../build/windows/work/libraries/serial/library/ # NET LIBRARY echo Build net library... cd ../../lib/net -../../build/windows/work/jikes +D -d . *.java +../../build/windows/work/jikes -target 1.1 +D -d . *.java rm -f library/net.jar zip -r0q library/net.jar processing rm -rf processing @@ -171,7 +171,7 @@ else exit 1; fi cd ../../lib/video -../../build/windows/work/jikes +D -classpath "$QTJAVA;$CLASSPATH" -d . *.java +../../build/windows/work/jikes -target 1.1 +D -classpath "$QTJAVA;$CLASSPATH" -d . *.java rm -f library/video.jar zip -r0q library/video.jar processing rm -rf processing @@ -182,7 +182,7 @@ cp library/video.jar ../../build/windows/work/libraries/video/library/ # PARTICLES LIBRARY echo Build particles library... cd ../../lib/particles -../../build/windows/work/jikes +D -d . *.java +../../build/windows/work/jikes -target 1.1 +D -d . *.java rm -f library/particles.jar zip -r0q library/particles.jar simong rm -rf simong @@ -194,7 +194,7 @@ exit; # OPENGL LIBRARY echo Building OpenGL library... cd ../../lib/opengl -../../build/windows/work/jikes +D -classpath "library\\jogl.jar;$CLASSPATH" -d . *.java +../../build/windows/work/jikes -target 1.1 +D -classpath "library\\jogl.jar;$CLASSPATH" -d . *.java rm -f library/opengl.jar zip -r0q library/opengl.jar processing rm -rf processing diff --git a/core/todo.txt b/core/todo.txt index f6ca0792f..17205fa7c 100644 --- a/core/todo.txt +++ b/core/todo.txt @@ -16,6 +16,8 @@ _ warn people that they should make images be a pow of 2 _ fonts probably need to be RGBA, not ALPHA style images _ there's nothing really ALPHA about them? +_ also when drawing an image, sense whether drawn rotated +_ if just rotate/translate, then can use SCREEN_SPACE for fonts _ bring screen space and font size settings back in to PGraphics _ causing too much trouble to be stuck down in PFont _ don't allocate zbuffer & stencil until depth() is called diff --git a/todo.txt b/todo.txt index 85db37b42..bdaa393f6 100644 --- a/todo.txt +++ b/todo.txt @@ -1,11 +1,10 @@ 0073 pde X change horizontal offset to 5 instead of 4 X yet another tweak to the message() function in PdeRuntime +X add -target 1.1 to all the library make entries _ basic sample audio playback needed for p5 -_ add -target 1.1 to all the library make entries - _ what's up with int() -> toInt() conversion? _ hack to not use console on the code folder