I'm using AndEngine and I'm creating a class that manages a bunch of sprites. The class needs to perform some actions when the user touches it, so I made it implement the ITouchArea interface.
I defined the method contains:
@Override
public boolean contains(float pX, float pY) {
if( pX >= this.mXCenterPosition - X_DIMENSION/2 &&
pX <= this.mXCenterPosition + X_DIMENSION/2 &&
pY >= this.mYCenterPosition - Y_DIMENSION/2 &&
pY <= this.mYCenterPosition + Y_DIMENSION/2)
return true;
return false;
}
and this method:
@Override
public boolean onAreaTouched(TouchEvent pSceneTouchEvent,
float pTouchAreaLocalX, float pTouchAreaLocalY)
What I still miss is this:
public float[] convertSceneToLocalCoordinates(float pX, float pY)
Without defining it, or returning null, the program crashes. I tried to look at how it is implemented in other classes, but I didn't really understood what it does, and I don't know what it is its function, so I don't know how to implement it. The area of the class is a simple rectangle.
What should this method do? How would I implement it?

containsmethod can be implemented without anyif, justreturn pX >= this.mXCenterPosition - X_DIMENSION/2 && pX <= this.mXCenterPosition + X_DIMENSION/2 && pY >= this.mYCenterPosition - Y_DIMENSION/2 && pY <= this.mYCenterPosition + Y_DIMENSION/2;(with linebreaks like in your example, of course). – Paŭlo Ebermann Sep 19 '11 at 23:10