Removing Topics from SVN
@@ -1,41 +0,0 @@
|
||||
/**
|
||||
* Animated Sprite (Shifty + Teddy)
|
||||
* by James Patterson.
|
||||
*
|
||||
* Press the mouse button to change animations.
|
||||
* Demonstrates loading, displaying, and animating GIF images.
|
||||
* It would be easy to write a program to display
|
||||
* animated GIFs, but would not allow as much control over
|
||||
* the display sequence and rate of display.
|
||||
*/
|
||||
|
||||
Animation animation1, animation2;
|
||||
float xpos;
|
||||
float ypos;
|
||||
float drag = 30.0;
|
||||
|
||||
void setup() {
|
||||
size(640, 360);
|
||||
background(255, 204, 0);
|
||||
frameRate(24);
|
||||
animation1 = new Animation("PT_Shifty_", 38);
|
||||
animation2 = new Animation("PT_Teddy_", 60);
|
||||
ypos = height * 0.25;
|
||||
}
|
||||
|
||||
void draw() {
|
||||
float difx = mouseX - xpos;
|
||||
if (abs(difx) > 1.0) {
|
||||
xpos = xpos + difx/drag;
|
||||
xpos = constrain(xpos, 0, width);
|
||||
}
|
||||
|
||||
// Display the sprite at the position xpos, ypos
|
||||
if (mousePressed) {
|
||||
background(153, 153, 0);
|
||||
animation1.display(xpos-animation1.getWidth()/2, ypos);
|
||||
} else {
|
||||
background(255, 204, 0);
|
||||
animation2.display(xpos-animation1.getWidth()/2, ypos);
|
||||
}
|
||||
}
|
||||
@@ -1,27 +0,0 @@
|
||||
// Class for animating a sequence of GIFs
|
||||
|
||||
class Animation {
|
||||
PImage[] images;
|
||||
int imageCount;
|
||||
int frame;
|
||||
|
||||
Animation(String imagePrefix, int count) {
|
||||
imageCount = count;
|
||||
images = new PImage[imageCount];
|
||||
|
||||
for (int i = 0; i < imageCount; i++) {
|
||||
// Use nf() to number format 'i' into four digits
|
||||
String filename = imagePrefix + nf(i, 4) + ".gif";
|
||||
images[i] = loadImage(filename);
|
||||
}
|
||||
}
|
||||
|
||||
void display(float xpos, float ypos) {
|
||||
frame = (frame+1) % imageCount;
|
||||
image(images[frame], xpos, ypos);
|
||||
}
|
||||
|
||||
int getWidth() {
|
||||
return images[0].width;
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 314 B |
|
Before Width: | Height: | Size: 314 B |
|
Before Width: | Height: | Size: 318 B |
|
Before Width: | Height: | Size: 328 B |
|
Before Width: | Height: | Size: 343 B |
|
Before Width: | Height: | Size: 379 B |
|
Before Width: | Height: | Size: 420 B |
|
Before Width: | Height: | Size: 501 B |
|
Before Width: | Height: | Size: 615 B |
|
Before Width: | Height: | Size: 733 B |
|
Before Width: | Height: | Size: 806 B |
|
Before Width: | Height: | Size: 842 B |
|
Before Width: | Height: | Size: 877 B |
|
Before Width: | Height: | Size: 877 B |
|
Before Width: | Height: | Size: 951 B |
|
Before Width: | Height: | Size: 934 B |
|
Before Width: | Height: | Size: 917 B |
|
Before Width: | Height: | Size: 907 B |
|
Before Width: | Height: | Size: 907 B |
|
Before Width: | Height: | Size: 892 B |
|
Before Width: | Height: | Size: 854 B |
|
Before Width: | Height: | Size: 841 B |
|
Before Width: | Height: | Size: 886 B |
|
Before Width: | Height: | Size: 805 B |
|
Before Width: | Height: | Size: 733 B |
|
Before Width: | Height: | Size: 667 B |
|
Before Width: | Height: | Size: 596 B |
|
Before Width: | Height: | Size: 539 B |
|
Before Width: | Height: | Size: 503 B |
|
Before Width: | Height: | Size: 451 B |
|
Before Width: | Height: | Size: 392 B |
|
Before Width: | Height: | Size: 351 B |
|
Before Width: | Height: | Size: 333 B |
|
Before Width: | Height: | Size: 323 B |
|
Before Width: | Height: | Size: 316 B |
|
Before Width: | Height: | Size: 316 B |
|
Before Width: | Height: | Size: 315 B |
|
Before Width: | Height: | Size: 312 B |
|
Before Width: | Height: | Size: 305 B |
|
Before Width: | Height: | Size: 309 B |
|
Before Width: | Height: | Size: 310 B |
|
Before Width: | Height: | Size: 310 B |
|
Before Width: | Height: | Size: 315 B |
|
Before Width: | Height: | Size: 329 B |
|
Before Width: | Height: | Size: 339 B |
|
Before Width: | Height: | Size: 354 B |
|
Before Width: | Height: | Size: 390 B |
|
Before Width: | Height: | Size: 415 B |
|
Before Width: | Height: | Size: 451 B |
|
Before Width: | Height: | Size: 482 B |
|
Before Width: | Height: | Size: 546 B |
|
Before Width: | Height: | Size: 566 B |
|
Before Width: | Height: | Size: 607 B |
|
Before Width: | Height: | Size: 692 B |
|
Before Width: | Height: | Size: 778 B |
|
Before Width: | Height: | Size: 853 B |
|
Before Width: | Height: | Size: 914 B |
|
Before Width: | Height: | Size: 936 B |
|
Before Width: | Height: | Size: 968 B |
|
Before Width: | Height: | Size: 971 B |
|
Before Width: | Height: | Size: 987 B |
|
Before Width: | Height: | Size: 1013 B |
|
Before Width: | Height: | Size: 1014 B |
|
Before Width: | Height: | Size: 1002 B |
|
Before Width: | Height: | Size: 976 B |
|
Before Width: | Height: | Size: 984 B |
|
Before Width: | Height: | Size: 936 B |
|
Before Width: | Height: | Size: 891 B |
|
Before Width: | Height: | Size: 826 B |
|
Before Width: | Height: | Size: 717 B |
|
Before Width: | Height: | Size: 625 B |
|
Before Width: | Height: | Size: 543 B |
|
Before Width: | Height: | Size: 486 B |
|
Before Width: | Height: | Size: 468 B |
|
Before Width: | Height: | Size: 453 B |
|
Before Width: | Height: | Size: 440 B |
|
Before Width: | Height: | Size: 428 B |
|
Before Width: | Height: | Size: 410 B |
|
Before Width: | Height: | Size: 387 B |
|
Before Width: | Height: | Size: 351 B |
|
Before Width: | Height: | Size: 329 B |
|
Before Width: | Height: | Size: 322 B |
|
Before Width: | Height: | Size: 318 B |
|
Before Width: | Height: | Size: 315 B |
|
Before Width: | Height: | Size: 310 B |
|
Before Width: | Height: | Size: 311 B |
|
Before Width: | Height: | Size: 311 B |
|
Before Width: | Height: | Size: 312 B |
|
Before Width: | Height: | Size: 312 B |
|
Before Width: | Height: | Size: 311 B |
|
Before Width: | Height: | Size: 308 B |
|
Before Width: | Height: | Size: 306 B |
|
Before Width: | Height: | Size: 303 B |
|
Before Width: | Height: | Size: 303 B |
|
Before Width: | Height: | Size: 306 B |
|
Before Width: | Height: | Size: 308 B |
|
Before Width: | Height: | Size: 306 B |
|
Before Width: | Height: | Size: 306 B |