This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class BackgroundChanger { | |
float backY[]={0,height,(height*3),(height*4),(height*5),(height*6)}; | |
/////////---backY sets the background in this case there are 6 sections. I used width x (width/2) | |
int backL[]={1,1,1,1,1,1}; | |
int speed=5; | |
int density=1; | |
int heighty=;//////////set as screen height | |
static final Bitmap backgroundBitmaps[]={null,null,null}; | |
//////////---this is used for different backgrounds you can set | |
Bitmap backgroundPicker; | |
this.height =backgroundBitmaps[0].getHeight(); | |
backset(); | |
//////---backset would be called to reset the original setups. | |
public void backSet() { | |
backY[0]=0; | |
backY[1]=height; | |
backY[2]=(height*2); | |
backY[3]=(height*3); | |
backY[4]=(height*4); | |
// backY[5]=(height*5); | |
} | |
backloop(){ | |
for (int i = 0; i < 5; i++) { | |
backY[i]=backY[i]+(speed*density); | |
///////recycles background if greater than height | |
if(backY[i]>heighty){backY[i]=backY[i]-(height*5); | |
Levels.setlevels(); | |
/////// This actually calls another class that sets the levelPicker. If | |
different if changes the background image for the set cell. | |
if(levelPicker!=backL[i]){backL[i]=levelPicker; | |
} | |
} | |
switch(backL[i]){ | |
case 0:backgroundPicker=backgroundBitmaps[i]; | |
canvas.drawBitmap(backgroundPicker,0,backY[i], null); | |
break; | |
case 1:backgroundPicker=backgroundBitmaps[i]; | |
canvas.drawBitmap(backgroundPicker,0,backY[i], null); | |
break; | |
case 2:backgroundPicker=backgroundBitmaps[i]; | |
canvas.drawBitmap(backgroundPicker,0,backY[i], null); | |
break; | |
} | |
} | |
} | |
} |