All Packages Class Hierarchy This Package Previous Next Index
Class pinball.player.draw.DrawStub
java.lang.Object
|
+----java.lang.Thread
|
+----pinball.player.Stub
|
+----pinball.player.draw.DrawStub
- public class DrawStub
- extends Stub
Sets up a special filter to reverse the image, and find the hand in the frame.
The hand is the object furthest from the left part of the image. Since the camera
sees the person's right hand on the left side of the frame. The frame is reversed
so the person has an easier way of viewing themselves; like looking in a mirror.
-
DrawStub(Buffer, TextArea, Strategy, Camera)
- The stub for the strategy.
-
filter(boolean)
- Filter out the persons right hand.
-
findFlippers(int)
- Search for the flipper the number of times given.
-
reverseImage(byte[], int, int)
- Reverse the image from the camera.
-
statistics()
- Check the list of statistic events and see what to log.
DrawStub
public DrawStub(Buffer buffer,
TextArea gameStats,
Strategy strategy,
Camera camera)
- The stub for the strategy.
- Parameters:
- buffer - The first buffer for the information buffers.
- gameStats - the area on the screen to write stats info.
- strategy - the strategy thread.
- camera - the camera for the system.
findFlippers
public void findFlippers(int quantity)
- Search for the flipper the number of times given.
- Parameters:
- quantity - number of times to look for the flippers.
- Overrides:
- findFlippers in class Stub
reverseImage
public void reverseImage(byte pixels[],
int w,
int h)
- Reverse the image from the camera.
- Parameters:
- pixels - the pixels from the camera.
- w - the width of the image.
- h - the hight of the image.
filter
public void filter(boolean findFlippers)
- Filter out the persons right hand.
- Parameters:
- findFlippers - Is the system finding the flippers.
- Overrides:
- filter in class Stub
statistics
public void statistics()
- Check the list of statistic events and see what to log.
- Overrides:
- statistics in class Stub
All Packages Class Hierarchy This Package Previous Next Index