Create a live aquarium wallpaper in Android
Posted on: 27 Dec 2010
| Filed under: Android, CodeProject, Google
| Tagged under: Andriod
|
26 comments
Download the source code: http://www.rajeeshcv.com/download/LiveAquariumWallpaper.zip Android package: http://www.rajeeshcv.com/download/LiveAquariumWallpaper.apk (I have only tested this in the SDK simulator and haven’t considered all the screen sizes, so may find some UI glitches)Few weeks ago I started learning Android programming , so this article is an outcome of that out-side office study :). Here I will be explaining – how to create a live wallpaper which looks like an aquarium with fishes swimming across the screen. The fish animation is done using sprite technique. Courtesy :
- Fish sprite used here is from a code project article - http://www.codeproject.com/KB/GDI-plus/LovelyGoldFishDeskPet.aspx
- Creating animation using sprites - http://www.droidnova.com/2d-sprite-animation-in-android,471.html
public class AquariumWallpaperService extends WallpaperService {
@Override
public Engine onCreateEngine() {
return new AquariumWallpaperEngine();
}
class AquariumWallpaperEngine extends Engine{
private Aquarium _aquarium;
public AquariumWallpaperEngine() {
this._aquarium = new Aquarium();
this._aquarium.initialize(getBaseContext(), getSurfaceHolder());
}
@Override
public void onVisibilityChanged(boolean visible) {
if(visible){
this._aquarium.render();
}
}
@Override
public void onSurfaceChanged(SurfaceHolder holder, int format,
int width, int height) {
super.onSurfaceChanged(holder, format, width, height);
}
@Override
public void onSurfaceCreated(SurfaceHolder holder) {
super.onSurfaceCreated(holder);
this._aquarium.start();
}
@Override
public void onSurfaceDestroyed(SurfaceHolder holder) {
super.onSurfaceDestroyed(holder);
this._aquarium.stop();
}
}
}
Aquarium class wraps all the rendering logic, as well as creating the fishes. This also starts a thread which is responsible for updating the view.
public class Aquarium {
private AquariumThread _aquariumThread;
private SurfaceHolder _surfaceHolder;
private ArrayList<Renderable> _fishes;
private Bitmap _backgroundImage;
private Context _context;
public void render(){
Canvas canvas = null;
try{
canvas = this._surfaceHolder.lockCanvas(null);
synchronized (this._surfaceHolder) {
this.onDraw(canvas);
}
}finally{
if(canvas != null){
this._surfaceHolder.unlockCanvasAndPost(canvas);
}
}
}
protected void onDraw(Canvas canvas) {
this.renderBackGround(canvas);
for (Renderable renderable : this._fishes) {
renderable.render(canvas);
}
};
public void start(){
this._aquariumThread.switchOn();
}
public void stop(){
boolean retry = true;
this._aquariumThread.switchOff();
while (retry) {
try {
this._aquariumThread.join();
retry = false;
} catch (InterruptedException e) {
// we will try it again and again...
}
}
}
public int getLeft() {
return 0;
}
public int getRight() {
return this._backgroundImage.getWidth();
}
public void initialize(Context context, SurfaceHolder surfaceHolder) {
this._aquariumThread = new AquariumThread(this);
this._surfaceHolder = surfaceHolder;
this._fishes = new ArrayList<Renderable>();
this._context = context;
BitmapFactory.Options options = new BitmapFactory.Options();
options.inPurgeable = true;
this._backgroundImage = BitmapFactory.decodeResource(context.getResources(), com.plugai.android.livewallpapers.R.drawable.aquarium, options);
this.addFishes();
}
private void addFishes() {
Point startPoint = new Point(100, 100);
this._fishes.add(new ClownFish(this._context, this, startPoint, 90));
Point startPoint1 = new Point(100, 300);
this._fishes.add(new ClownFish(this._context, this, startPoint1, 50));
Point startPoint2 = new Point(200, 200);
this._fishes.add(new ClownFish(this._context, this, startPoint2, 15));
}
private void renderBackGround(Canvas canvas)
{
canvas.drawBitmap(this._backgroundImage, 0, 0, null);
}
}
Here is the code for AquariumThread class
public class AquariumThread extends Thread {
private Aquarium _aquarium;
private boolean _running;
public AquariumThread(Aquarium aquarium) {
this._aquarium = aquarium;
}
public void switchOn(){
this._running = true;
this.start();
}
public void pause(){
this._running = false;
synchronized(this){
this.notify();
}
}
public void switchOff(){
this._running = false;
synchronized(this){
this.notify();
}
}
@Override
public void run() {
while(this._running){
this._aquarium.render();
}
}
}
All the renderable object in the aquarium must implement an interface Renderable, which has got one single method called render(…)
package com.plugai.android.livewallpapers;
import android.graphics.Canvas;
public interface Renderable {
void render(Canvas canvas);
}
This interface helps to render an object other than a fish, like plants etc... in future.
I have created another abstract class which has common functionalities like changing the position and direction of a fish after a particular interval and called it as AquaticAnimal, this is because I could create specific fishes which just differ by it’s look by extending from this class.
public abstract class AquaticAnimal implements Renderable {
private static int MAX_SPEED = 100;
private Context _context;
private Aquarium _aquarium;
private FishSprite _leftSprite;
private FishSprite _rightSprite;
private int _direction = -1;
private int _speedFraction;
private long _previousTime;
public AquaticAnimal(Context context, Aquarium aquarium){
this._context = context;
this._aquarium = aquarium;
}
protected void initialize(Bitmap leftBitmap, Bitmap rightBitmap, int fps, int totalFrames, Point startPoint, int speed){
this._leftSprite = new FishSprite(leftBitmap, fps, totalFrames, startPoint);
this._rightSprite = new FishSprite(rightBitmap, fps, totalFrames, startPoint);
this._speedFraction = (MAX_SPEED / speed) * 10;
}
private FishSprite getSprite(){
if(this._direction < 0){
return this._leftSprite;
}
return this._rightSprite;
}
public int getDirection(){
FishSprite sprite = this.getSprite();
int xPos = sprite.getXPos();
if(this._direction < 0){
xPos += sprite.getWidth();
}
if(xPos < this._aquarium.getLeft()){
this._direction = 1;
}else if(xPos > this._aquarium.getRight()){
this._direction = -1;
}else{
// Do nothing
}
return this._direction;
}
public Context getContext(){
return this._context;
}
public Aquarium getAquarium(){
return this._aquarium;
}
@Override
public void render(Canvas canvas){
long currentTime = System.currentTimeMillis();
this.getSprite().render(canvas, currentTime);
this.swim(currentTime);
}
public void swim(long currentTime){
long diff = currentTime - this._previousTime;
if(diff > this._speedFraction){
int currentX = this.getSprite().getXPos();
this.getSprite().setXPos(currentX + this.getDirection());
this._previousTime = currentTime;
}
}
}
The sprite animation is moved into a specific class FishSprite
public class FishSprite {
/**
* Private fields
*/
private Bitmap _currentSpriteBitmap;
private Rect _drawRect;
private int _fps;
private int _noOfFrames;
private int _currentFrame;
private long _timer;
private int _spriteWidth;
private int _spriteHeight;
private Point _position;
public FishSprite(Bitmap spriteBitmap, int fps, int frameCount, Point startPoint) {
this.initialize();
this._position = startPoint;
this._currentSpriteBitmap = spriteBitmap;
this._spriteHeight = spriteBitmap.getHeight();
this._spriteWidth = spriteBitmap.getWidth() / frameCount;
this._drawRect = new Rect(0,0, this._spriteWidth, this._spriteHeight);
this._fps = 1000 / fps;
this._noOfFrames = frameCount;
}
private void initialize() {
this._drawRect = new Rect(0,0,0,0);
this._timer = 0;
this._currentFrame = 0;
}
private void Update(long currentTime) {
if(currentTime > this._timer + this._fps ) {
this._timer = currentTime;
this._currentFrame +=1;
if(this._currentFrame >= this._noOfFrames) {
this._currentFrame = 0;
}
}
this._drawRect.left = this._currentFrame * this._spriteWidth;
this._drawRect.right = this._drawRect.left + this._spriteWidth;
}
public void render(Canvas canvas, long currentTime) {
this.Update(currentTime);
Rect dest = new Rect(getXPos(), getYPos(), getXPos() + this._spriteWidth,
getYPos() + this._spriteHeight);
canvas.drawBitmap(this._currentSpriteBitmap, this._drawRect, dest, null);
}
public Point getPosition() {
return _position;
}
public void setPosition(Point position) {
this._position = position;
}
public int getYPos() {
return this._position.y;
}
public int getXPos() {
return this._position.x;
}
public void setYPos(int y) {
this._position.y = y;
}
public void setXPos(int x) {
this._position.x = x;
}
public int getWidth(){
return this._spriteWidth;
}
public int getHeight(){
return this._spriteHeight;
}
}
Now to the final bit, that is creating a fish. Someone might have noticed that I have created an object of ClownFish in the Aquarium class. ClownFish is just a derived class from AquaticAnimal, with a specific sprite image. So if you have sprite images for a shark, you could simple extend a new class for a shark with that image.
public class ClownFish extends AquaticAnimal {
private static final int TOTAL_FRAMES_IN_SPRITE = 20;
private static final int CLOWN_FISH_FPS = 20;
public ClownFish(Context context, Aquarium aquarium, Point startPoint, int speed){
super(context, aquarium);
BitmapFactory.Options options = new BitmapFactory.Options();
options.inPurgeable = true;
Bitmap leftBitmap = BitmapFactory.decodeResource(getContext().getResources(), com.plugai.android.livewallpapers.R.drawable.left, options);
BitmapFactory.Options options1 = new BitmapFactory.Options();
options1.inPurgeable = true;
Bitmap rightBitmap = BitmapFactory.decodeResource(getContext().getResources(), com.plugai.android.livewallpapers.R.drawable.right, options1);
this.initialize(leftBitmap, rightBitmap, CLOWN_FISH_FPS, TOTAL_FRAMES_IN_SPRITE, startPoint, speed);
}
public void render(Canvas canvas){
super.render(canvas);
}
}
Please feel free to go through the code, If I haven’t explained clearly. Hope this article helped some way or other.
Happy new year!!!
Comments
GuruMoorthy Arumugam
BIPIN
BIPIN
k.Ashok Kumar
cyberfisher
shawn
shawn
vl
Rajeesh
shawn
shawn
B. Harris
John
Rajeesh
Saurabh Sachdeva
Rajeesh
Rizacan
Sujith PV
Sam
Ajai
Floris
Rajeesh
Floris
square
cool source to try
i couldn't get project to run in eclipse
but the code was useful!
sancho
Farhan
Hi, and thanx for such a nice tutorial. I just wanted to admire/appreciate as you said you started android development some weeks before, and you produce this.. Man i've been doing for 1 year and i dont think i can produce some thing like this. so may be if you write something about how you learn to be able to do something like this would be very very highly appreciated. you can also send a personal message to me if u like. Very much thanx again. Please do write.. :)