void turnLeft(int flag) - Turns the ship left. Flag is either 1, to virtually hold down the key, or 0, to release the key.
void turnRight(int flag) - Turns the ship right. Flag is either 1, to virtually hold down the key, or 0, to release the key.
void turn(int deg) - Turns the ship in the specified number of degrees.
void turnToDeg(int deg) - Turns the ship towards the specified heading in degrees.
void thrust(int flag) - Turns the ship's thrusters on or off. Flag is either 1, to virtually hold down the key, or 0, to release the key.
void setTurnSpeed(double s) - Sets the speed the ship will turn by. The minimum power level is 4.0 and the maximum power level is 64.0.
void setTurnSpeedDeg(int s) - Ship turns to input degree.
void setPower(double s) - Sets the amount of power the ship will use for thrusting, the minimum power level is 5.0 and the maximum power is 55.0.
void fasterTurnrate() - Increases the ship's turn rate.
void slowerTurnrate() - Decreases the ship's turn rate.
void morePower() - Increases the ship's thrusting power.
void lessPower() - Decreases the ship's thrusting power.