这个错误严重毁了我的一周。我正在尝试创建一个交互式排行榜,其中包含三个数组:1 个带有图像,2 个带有我写为字符串的整数。我正在尝试制作一个 keyPressed 事件,当他们上下梯子时,数字会随着代表团队的图像而变化,并且我有一个 mousePressed 事件来执行循环以将窗口恢复到其原始状态。
我的问题是,当我尝试运行代码时,keyPressed 事件不会执行,只有在我单击鼠标后才会执行。然后图像移动,但字符串数组不会与第一组图像一起循环返回。我已经包含了下面的代码......我知道它很长并且相信我一直在折射和缩短。现在我想要帮助的是确保 keyPressed 事件首先执行,并且当循环执行时,positions1 字符串数组恢复到其原始位置。
我在下面包含了我的代码,并且正在使用 Macbook Pro OSX Processing 2.0b7。
我重构了我的代码并使用循环来放置图像和文本。现在我遇到的问题是,当我启动 keyPressed 事件时,图像和文本不会改变。你能看看我的代码:
PImage[] teams;
int n = 24;
PImage[] teams2;
int m = 16;
PImage quarterFinalWinners = new PImage();
float damping = 0.1;
PFont font;
String[] positions1 = {"18", "26", "32", "45", "58", "56", "59", "61", "66", "69", "71", "85", "98", "100", "116", "133"};
String[] positions2 = {"14", "19", "25", "30", "34", "45", "52", "69", "71", "72", "87", "84", "89", "105", "107", "110"};
float x;
float y;
/**----------------------------------------------------------------------------------------------------------------------------**/
void setup() {
size(600, 1600);
frameRate(60);
smooth();
font = loadFont("Calibri-Bold-48.vlw");
textFont(font);
frame.setResizable(true);
teams = new PImage[n];
for (int i = 0; i < teams.length; i++) {
teams[i] = loadImage(i + ".png");
}
teams2 = new PImage[m];
for (int i = 0; i < teams2.length; i++) {
teams2[i] = loadImage(i + ".jpg");
}
}
/**----------------------------------------------------------------------------------------------------------------------------**/
void draw() {
//noLoop();
background(0);
if ((x < width) && (y < height)) {
for (int i = 0; i < 16; i++) {
image(teams[i], 150, 60*i);
text(positions1[i], 100, 72*i);
}
}
if (keyPressed) {
if((key == 's') || (key == 'S') && (x < width) && (y < height)) {
for (int i = 0; i < 16; i++) {
image(teams[i], 150, 60*i);
text(positions1[i], 100, 72*i);
}
for (int i = 0; i >= 16; i++) {
text(positions2[i], 100, 72*i);
}
}
}
}
/**----------------------------------------------------------------------------------------------------------------------------**/
/**void keyPressed () {
if((key == 's') || (key == 'S') && (x < width) && (y < height)) {
for (int i = 0; i > 16; i++) {
image(teams[i], 150, 60*i);
}
for (int i = 0; i >= 16; i++) {
text(positions2[i], 100, 72*i);
}
}
}**/
/**image(images[10], 150, 290);
image(images[19], 150, 50);
image(images[17], 150, 230);
image(images[2], 150, 110);
image(images[22], 150, 410);
image(images[20], 150, 470);
image(images[16], 150, 650);
image(images[6], 150, 350);
image(images[7], 150, 590);
image(images[18], 150, 770);
image(images[21], 150, 170);
image(images[12], 150, 830);
image(images[13], 150, 530);
image(images[23], 150, 950);**/
void mousePressed () {
if (mousePressed) {
positions2 = positions1;
}
loop();
}