我在将 Daniel Shiffman 的超棒拖动示例应用到我的草图中时遇到问题。我以前用过它,它很棒,但是我试图用一些“花哨的”循环将它应用到多个对象(在本例中为文本),但无济于事。一切正常,除了对象不应该拖动。从逻辑上讲,这是因为Line
类中的 offsetX 和 offsetY 属性不断更新,从而迫使对象保持静止。我确信有一个解决方案,但我无法弄清楚。也许我已经盯着它太久了。我真的很感激帮助!
String[] doc; //array of Strings from each text documents line
int tSize; //text size
float easing; //easing
int boundaryOverlap; //value for words to overlap edges by
PFont font; //font
Lines lines;
boolean clicked = false;
void setup(){
size(displayWidth/2,displayHeight);
background(255);
fill(0);
boundaryOverlap = 20; //value for words to overlap edges by
tSize = 32; //text size
//loads and formats text
doc = loadStrings("text.txt");
font = loadFont("Times-Roman-48.vlw");
textFont(font, tSize);
//lines object
lines = new Lines(doc);
//populate xAddition and yAddition arrays
lines.populateArrays();
}
void draw(){
background(255);
fill(0);
//loops through each line in .txt
for(int i = 0; i <= doc.length-1; i++){
if(clicked) lines.clicked(i);
lines.move(i, clicked); //update doc[i] positions //deletes
lines.display(i); //draws text for each line of text in text.txt
}
}
void mousePressed(){
clicked = true;
}
void mouseReleased(){
clicked = false;
lines.dragging = false;
}
这是线类:
class Lines{
//class properties
float[] x; //array holding random values to be added to x for placement
float[] y; //array holding random values to be added to y for placement
float offsetX;
float offsetY;
String[] doc;
boolean dragging = false; //boolean for dragging
//construct
Lines(String[] tempDoc){
doc = tempDoc;
}
//fills x and y arrays
void populateArrays(){
x = new float[doc.length];
y = new float[doc.length];
//populates x and y arrays
for(int i = 0; i <= doc.length-1; i++){
x[i] = int(random(0-boundaryOverlap, width-boundaryOverlap));
y[i] = int(random(0, height-boundaryOverlap));
}
}
//draws text
void display(int i){
text(doc[i], x[i], y[i]); //draw text
//if(addition[i] != null) text(addition[i], x[i], y[i]+20);
}
void clicked(int i){
if(mouseX > x[i] &&
mouseX < x[i]+textWidth(doc[i]) &&
mouseY < y[i] &&
mouseY > y[i]-tSize){
dragging = true;
offsetX = x[i] - mouseX;
offsetY = y[i] - mouseY;
}
}
//updates text positions
void move(int i, boolean clicked){
//if mouseOver text hover gray
if( mouseX > x[i] &&
mouseX < x[i]+textWidth(doc[i]) &&
mouseY < y[i] &&
mouseY > y[i]-tSize){
fill(100); //gray text fill
if(dragging){
x[i] = mouseX + offsetX;
y[i] = mouseY + offsetY;
}
}
else{
fill(0); //if not text not mouseOver fill is black
dragging = false;
}
}
//delete
void delete(int i){
//if "delete" is pressed
if (keyPressed){
if(key == 8){
doc[i] = ""; // doc[line String that is being hovered over] is replaced with null
keyCode = 1;
}
}
}
}