All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class pinball.player.pen.PenStub

java.lang.Object
   |
   +----java.lang.Thread
           |
           +----pinball.player.Stub
                   |
                   +----pinball.player.pen.PenStub

public class PenStub
extends Stub
Uses lines to control the system.


Constructor Index

 o PenStub(Buffer, TextArea, Strategy, Camera)
The stub for the strategy.

Method Index

 o filter(boolean)
Filter out the persons right hand.
 o findFlippers(int)
Search for the flipper the number of times given.
 o reverseImage(byte[], int, int)
Reverse the image from the camera.
 o statistics()
Check the list of statistic events and see what to log.
 o strategyDraw(Graphics, int, int)
Allows the strategy to draw to the screen any lines or other graphics for the user to see how the strategy operates.

Constructors

 o PenStub
 public PenStub(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.

Methods

 o 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
 o 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.
 o 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
 o statistics
 public void statistics()
Check the list of statistic events and see what to log.

Overrides:
statistics in class Stub
 o strategyDraw
 public void strategyDraw(Graphics g,
                          int wSize,
                          int hSize)
Allows the strategy to draw to the screen any lines or other graphics for the user to see how the strategy operates.

Overrides:
strategyDraw in class Stub

All Packages  Class Hierarchy  This Package  Previous  Next  Index