“globus” by David
https://openprocessing.org/sketch/387309
License CreativeCommons Attribution ShareAlike
https://creativecommons.org/licenses/by-sa/3.0
{{filePath}}
{{width}} x {{height}}
Report Sketch
Oh, that naughty sketch! Please let us know what the issue is below.
Apply Template
Applying this template will reset your sketch and remove all your changes. Are you sure you would like to continue?
Report Sketch
Report Comment
Please confirm that you would like to report the comment below.
We will review your submission and take any actions necessary per our Community Guidelines. In addition to reporting this comment, you can also block the user to prevent any future interactions.
Please report comments only when necessary. Unnecessary or abusive use of this tool may result in your own account being suspended.
Are you sure you want to delete your sketch?
Any files uploaded will be deleted as well.
Delete Comment?
This will also delete all the replies to this comment.
Delete this tab? Any code in it will be deleted as well.
Select a collection to submit your sketch
We Need Your Support
Since 2008, OpenProcessing has provided tools for creative coders to learn, create, and share over a million open source projects in a friendly environment.
Niche websites like ours need your continued support for future development and maintenance, while keeping it an ad-free platform that respects your data and privacy!
Please consider subscribing below to show your support with a "Plus" badge on your profile and get access to many other features!
"keyboard "
CC Attribution ShareAlike
globus
xxxxxxxxxx
int pX = 300; //Coordenada x del punt de mira.
int pY = 300; //Coordenada y del punt de mira.
int gX, gY; //Coordenades del globus.
int p = 0; //Punt.
PImage globus;
PImage mira;
PImage cel;//Declarem les imatges.
void setup(){
size (600,600); //Finestra de dibuix.
globus = loadImage("globus.png"); //Carreguem les imatges.
mira = loadImage("mira.png");
cel = loadImage("cel.jpg");
new_globus(); //Definim un nou globus.
}
void draw(){
image(cel,0,0,600,600); //Neteja la pantalla. El cel té la mateixa mida que la finestra
gY = gY - 1; //El globus s’enlaira.
if (gY == 0) new_globus(); //Quan arribi a dalt, nou globus.
if (gX>pX && gX<pX+20) //Detecció de col·lisió i tret.
if(gY>pY && gY<pY+20)
if(keyCode == 'D') {
p = p + 1; //Incrementem els punts.
new_globus();
}
image(globus,gX-20,gY-20,200,200);
image(mira,pX,pY);
teclat(); //Llegeix el teclat.
text ("Globus rebentats:" +p, 250, 20); //Marcador.
int crono = int(millis()/1000); //Temps transcorregut.
if (crono >= 30) noLoop();
text ("Temps:" + (30-crono), width-80, 20);
}
void new_globus(){
gX = int(random(width-40));
//gX aleatòria.
gY = height;
//gY a la vora inferior.
}
void teclat(){
if (keyCode == RIGHT) pX = pX + 3;
if (keyCode == LEFT) pX = pX - 3;
if (keyCode == UP) pY = pY - 3;
if (keyCode == DOWN) pY = pY + 3;
if (pX < 0) pX = 0;
if (pX > width-20) pX = width-20;
if (pY < 0) pY = 0;
if (pY > height-20) pY = height-20;
}
See More Shortcuts