CTurtle
|
The Turtle Class Symbolically represents a turtle that runs around a screen that has a paint brush attached to its tail. The tail can be in two states; up and down. As the turtle moves forwards, backwards, left, and right, it can draw shapes and outlines, write text, and stamp itself onto whatever surface it's walking/crawling on (In this case, it's walking on a TurtleScreen). More...
#include <CTurtle.hpp>
Public Member Functions | |
Turtle (AbstractTurtleScreen &scr) | |
The turtle constructor. Turtles are attached to whatever screen they are constructed with. | |
Turtle (const Turtle &)=delete | |
Turtles are not trivially copyable. The copy constructor is explicitly disallowed. | |
Turtle (Turtle &&mv)=delete | |
Turtles are not trivially moved. The move constructor is explicitly disallowed. | |
Turtle & | operator= (const Turtle &)=delete |
Turtles are not trivially moved. The copy operator is explicitly disallowed. | |
Turtle & | operator= (Turtle &&turtle)=delete |
Turtles are not trivially moved. The move operator is explicitly disallowed. | |
void | forward (int pixels) |
Moves the turtle forward the specified number of pixels. | |
void | fd (int pixels) |
Moves the turtle forward the specified number of pixels. | |
void | backward (int pixels) |
Moves the turtle backward the specified number of pixels. | |
void | bk (int pixels) |
Moves the turtle backward the specified number of pixels. | |
void | back (int pixels) |
Moves the turtle backward the specified number of pixels. | |
void | right (float amt) |
Rotates the turtle the specified number of units to the right. The unit by which the input is specified is determined by the current angle mode. The difference between Clockwise and Counterclockwise is determined by the current screen's mode. | |
void | rt (float angle) |
Rotates the turtle the specified number of units to the right. The unit by which the input is specified is determined by the current angle mode. The difference between Clockwise and Counterclockwise is determined by the current screen's mode. | |
void | left (float amt) |
Rotates the turtle the specified number of units to the left. The unit by which the input is specified is determined by the current angle mode. The difference between Clockwise and Counterclockwise is determined by the current screen's mode. | |
void | lt (float angle) |
Rotates the turtle the specified number of units to the left. The unit by which the input is specified is determined by the current angle mode. The difference between Clockwise and Counterclockwise is determined by the current screen's mode. | |
void | goTo (int x, int y) |
Sets the transform location of this turtle. | |
void | goTo (const Point &pt) |
Sets the transform location of this turtle. | |
void | setpos (int x, int y) |
Sets the transform location of this turtle. | |
void | setpos (const Point &pt) |
Sets the transform location of this turtle. | |
void | setposition (int x, int y) |
Sets the transform location of this turtle. | |
void | setposition (const Point &pt) |
Sets the transform location of this turtle. | |
void | setx (int x) |
Sets the X-axis transform location of this turtle. | |
void | sety (int y) |
Sets the Y-axis transform location of this turtle. | |
int | xcor () const |
Returns the current x coordinate location of this turtle. | |
int | ycor () const |
Returns the current y coordinate location of this turtle. | |
Point | getpos () const |
Returns the current location of the turtle, as a Point. | |
void | shift (int x, int y) |
Adds a "naive" translation to the current turtle's transform.\ Does not take into account the rotation, or orientation, of the turtle. | |
const PenState & | penstate () const |
void | setheading (float amt) |
Sets the rotation of this turtle. The unit by which the input is specified is determined by the current angle mode. The difference between Clockwise and Counterclockwise is determined by the current screen's mode. | |
void | face (int x, int y) |
void | face (const Point &pt) |
int | distance (int x, int y) |
int | distance (const Point &pt) |
void | seth (float angle) |
Sets the rotation of this turtle. The unit by which the input is specified is determined by the current angle mode. The difference between Clockwise and Counterclockwise is determined by the current screen's mode. | |
float | towards (int x, int y) |
Returns the angle between the line of the current turtle transform to the given point. | |
float | towards (const Point &pt) |
Returns the angle between the line of the current turtle transform to the given point. | |
float | heading () |
Returns the heading of the Turtle (e.g, its current rotation). | |
void | home () |
void | circle (int radius, int steps, const Color &color) |
Adds a circle to the screen. | |
void | circle (const Color &color) |
Adds a circle to the screen. Default parameters are circle with a radius of 30 with 15 steps. | |
void | dot (const Color &color, int size=10) |
Adds a dot to the screen. | |
void | fill (bool val) |
Sets the "filling" state-> If the input is false but the prior state is true, a SceneObject is put on the screen in the shape of the previously captured points. | |
bool | filling () const |
Returns a boolean indicating if this turtle is currently filling a shape. | |
void | begin_fill () |
Begins filling a polygon. | |
void | end_fill () |
Stops filling a polygon. | |
void | fillcolor (const Color &c) |
Sets the fill color of this turtle. | |
Color | fillcolor () |
Returns the fill color of this turtle. | |
void | write (const std::string &text) |
void | write (const std::string &text, const std::string &font, const Color &color={"white"}, float scale=1.0f, TextAlign alignment=TEXT_ALIGN_LEFT) |
int | stamp () |
Puts the current shape of this turtle on the screen with the current fill color and the outline of the shape. | |
void | clearstamp (int stampid) |
Removes the stamp with the specified ID. | |
void | clearstamps (int stampid=-1) |
Removes all stamps with an ID less than that which is specified. If the specified stampid is less than 0, it removes ALL stamps. | |
void | shape (const AbstractDrawableObject &p) |
Sets the shape of this turtle. | |
void | shape (const std::string &name) |
Sets the shape of this turtle from the specified shape name. | |
const AbstractDrawableObject & | shape () |
Returns the shape of this turtle. | |
bool | undo (bool try_redraw=true) |
Undoes the previous action of this turtle. | |
void | setundobuffer (unsigned int size) |
Set, or disable, the undo buffer. | |
unsigned int | undobufferentries () |
Returns the size of the undo stack. | |
void | speed (float val) |
Sets the speed of this turtle in range of 0 to 10. | |
float | speed () |
Returns the speed of this turtle. | |
void | tilt (float amt) |
Applies a rotation to the turtle's cursor. | |
float | tilt () const |
Returns the rotation of the cursor. Not the heading, or the angle at which the forward function will move. | |
void | setshowturtle (bool val) |
Set whether or not the turtle is being shown. | |
void | showturtle () |
Shows the turtle. Equivalent to calling setshowturtle(true). | |
void | hideturtle () |
Hides the turtle. | |
void | setpenstate (bool down) |
Sets whether or not the pen is down. | |
void | penup () |
Brings the pen up. | |
void | pendown () |
Brings the pen down. | |
void | pencolor (const Color &c) |
Sets the pen color. | |
Color | pencolor () const |
Returns the pen color; the color of the lines between movements. | |
void | width (int pixels) |
int | width () const |
void | draw (const Transform &screenTransform, Image &canvas) |
Draws this turtle on the specified canvas with the specified transform. | |
void | degrees () |
void | radians () |
void | reset () |
Resets this turtle. Moves this turtle home, resets all pen attributes, and removes all previously added scene objects. | |
void | setScreen (AbstractTurtleScreen *scr) |
Sets this turtles screen. | |
virtual | ~Turtle () |
Empty virtual destructor. | |
Protected Member Functions | |
void | pushState () |
bool | popState () |
bool | pushGeometry (const Transform &t, AbstractDrawableObject *geom) |
Internal function used to add geometry to the turtle screen. | |
bool | pushStamp (const Transform &t, AbstractDrawableObject *geom) |
Internal function used to add a stamp object to the turtle screen. | |
bool | pushText (const Transform &t, const Color &color, const BitmapFont &font, const std::string &text, float scale=1.0f, TextAlign alignment=TEXT_ALIGN_LEFT) |
Internal function used to add a text object to the turtle screen. | |
bool | pushTraceLine (Point a, Point b) |
Internal function used to add a trace line object to the turtle screen. Trace lines do NOT push a state. Their state is encompassed by movement, and these lines are only added when moving the turtle while the pen is down. | |
long int | getAnimMS () |
void | updateParent (bool invalidate=false, bool input=true) |
void | travelBetween (Transform src, const Transform &dest, bool doPushState) |
void | travelTo (const Transform &dest) |
void | travelBack () |
Turtle ()=default | |
Protected Attributes | |
std::list< std::list< SceneObject >::iterator > | objects |
std::list< PenState > | stateStack = {PenState()} |
std::list< Line > | fillLines |
Transform * | transform = nullptr |
PenState * | state = nullptr |
Point | travelPoints [2] |
bool | traveling = false |
unsigned int | undoStackSize = 100 |
Polygon | fillAccum |
AbstractTurtleScreen * | screen = nullptr |
The Turtle Class Symbolically represents a turtle that runs around a screen that has a paint brush attached to its tail. The tail can be in two states; up and down. As the turtle moves forwards, backwards, left, and right, it can draw shapes and outlines, write text, and stamp itself onto whatever surface it's walking/crawling on (In this case, it's walking on a TurtleScreen).
|
protecteddefault |
Inheritors must assign screen pointer!
|
inline |
Moves the turtle backward the specified number of pixels.
|
inline |
Begins filling a polygon.
|
inline |
Moves the turtle backward the specified number of pixels.
|
inline |
Adds a circle to the screen. Default parameters are circle with a radius of 30 with 15 steps.
color | The color of the circle. |
|
inline |
Adds a circle to the screen.
radius | The radius, in pixels, of the circle. |
steps | The "quality" of the circle. Higher is slow but looks better. Use with low numbers for N-sided shapes. |
color | The color of the circle. |
|
inline |
Sets this turtle to use angles measured in degrees.
|
inline |
Returns the distance between this turtle and the given point.
pt |
|
inline |
Returns the distance between this turtle and the given coordinate pair.
x | X axis |
y | Y axis |
|
inline |
Adds a dot to the screen.
The | color of the dot. |
size | The size of the dot. |
|
inline |
Draws this turtle on the specified canvas with the specified transform.
screenTransform | The transform at which to draw the turtle objects. |
canvas | The canvas on which to draw this turtle. |
|
inline |
Stops filling a polygon.
|
inline |
Rotates the turtle to face the specified point.
pt | point to face towards |
|
inline |
Rotates the turtle to face the specified point.
x | coordinate along the x axis to face |
y | coordinate along the y axis to face |
|
inline |
Moves the turtle forward the specified number of pixels.
pixels | total number of pixels to move. |
|
inline |
Sets the "filling" state-> If the input is false but the prior state is true, a SceneObject is put on the screen in the shape of the previously captured points.
state | Whether or not the turtle is filling a polygon. |
|
inline |
Returns the fill color of this turtle.
|
inline |
Sets the fill color of this turtle.
c | The color with which to fill polygons. |
|
inline |
Returns a boolean indicating if this turtle is currently filling a shape.
|
inline |
Moves the turtle forward the specified number of pixels.
pixels | total number of pixels to move. |
|
inlineprotected |
Returns the speed, of any applicable animation in milliseconds, based off of this turtle's speed setting.
|
inline |
Returns the current location of the turtle, as a Point.
|
inline |
|
inline |
Hides the turtle.
|
inline |
\Brings the turtle back to its origin. Depends on the current screen mode. If the screen mode is set to "world", The turtle is turned to the right and positive angles are counterclockwise. Otherwise, if it is set to "logo", The turtle face upwards and positive angles are clockwise.
|
inline |
Rotates the turtle the specified number of units to the left. The unit by which the input is specified is determined by the current angle mode. The difference between Clockwise and Counterclockwise is determined by the current screen's mode.
|
inline |
Rotates the turtle the specified number of units to the left. The unit by which the input is specified is determined by the current angle mode. The difference between Clockwise and Counterclockwise is determined by the current screen's mode.
|
inline |
Returns the pen color; the color of the lines between movements.
|
inline |
Sets the pen color.
c | The color used by the pen; the color of lines between movements. |
|
inline |
|
inlineprotected |
Internal function used to add geometry to the turtle screen.
t | The transform of the geometry. |
color | The color of the geometry. |
geom | The geometry to add. |
|
inlineprotected |
Internal function used to add a stamp object to the turtle screen.
t | The transform at which to draw the stamp. |
color | The color with which to draw the stamp. |
geom | The geometry of the stamp. |
|
inlineprotected |
Internal function used to add a text object to the turtle screen.
t | The transform at which to draw the text. |
color | The color with which to draw the text. |
font | to use to draw the text. |
scale | to draw the text at. |
text | The string to draw. |
alignment | The alignment of the text. Particularly useful for multi-line strings. |
Internal function used to add a trace line object to the turtle screen. Trace lines do NOT push a state. Their state is encompassed by movement, and these lines are only added when moving the turtle while the pen is down.
a | Point A |
b | Point B |
|
inline |
Sets this turtle to use angles measured in radians.
|
inline |
Rotates the turtle the specified number of units to the right. The unit by which the input is specified is determined by the current angle mode. The difference between Clockwise and Counterclockwise is determined by the current screen's mode.
|
inline |
Rotates the turtle the specified number of units to the right. The unit by which the input is specified is determined by the current angle mode. The difference between Clockwise and Counterclockwise is determined by the current screen's mode.
|
inline |
Sets the rotation of this turtle. The unit by which the input is specified is determined by the current angle mode. The difference between Clockwise and Counterclockwise is determined by the current screen's mode.
|
inline |
Sets the rotation of this turtle. The unit by which the input is specified is determined by the current angle mode. The difference between Clockwise and Counterclockwise is determined by the current screen's mode.
|
inline |
Sets the transform location of this turtle.
|
inline |
Sets the transform location of this turtle.
|
inline |
Sets the transform location of this turtle.
|
inline |
Sets the transform location of this turtle.
|
inline |
Set whether or not the turtle is being shown.
state | True when showing, false othewise. |
|
inline |
Set, or disable, the undo buffer.
size | The size of the undo buffer. |
|
inline |
Sets the shape of this turtle.
p | The polygon to derive shape geometry from. |
|
inline |
Sets the shape of this turtle from the specified shape name.
name | The name of the shape to set. |
|
inline |
Adds a "naive" translation to the current turtle's transform.\ Does not take into account the rotation, or orientation, of the turtle.
x | component of coordinate pair |
y | component of coordinate pair. |
|
inline |
Shows the turtle. Equivalent to calling setshowturtle(true).
|
inline |
Sets the speed of this turtle in range of 0 to 10.
The | speed of the turtle, in range of 0 to 10. |
|
inline |
Puts the current shape of this turtle on the screen with the current fill color and the outline of the shape.
|
inline |
Returns the angle between the line of the current turtle transform to the given point.
pt |
|
inline |
Returns the angle between the line of the current turtle transform to the given point.
x | component of coordinate pair |
y | component of coordinate pair. |
|
inlineprotected |
Performs an interpolation, with animation, between the current transformation and the previous one. Will not push the state stack. ENSURE STATE STACK IS BIG ENOUGH TO DO THIS BEFORE CALLING.
|
inlineprotected |
Performs an interpolation, with animation, between the source transform and the destination transform. May push a new fill vertex if filling and pushing state, and applies appropriate lines if the pen is down. Generally manages all state related to movement as a side effect.
|
inlineprotected |
Performs an interpolation, with animation, between the current transform and the specified one. Pushes a new fill vertex if filling, and applies appropriate lines if the pen is down. Does push the state stack.
|
inlineprotected |
Conditionally calls the parent screen's update function.
|
inline |
Returns the width of the pen line.
|
inline |
Sets the width of the pen line.
pixels | The total width, in pixels, of the pen line. |
|
inline |
Writes the specified string to the screen. Uses the current filling color.
text | The text to write. |
|
inline |
Writes the specified string to the screen. Uses the specified color.
text | The text to write. |
font | The font name to use. Uses "default" font by default. Must be registered to parent screen. |
color | The color to write the text in. |
scale | The scale to draw the text at. This is relative to the size of the used font. |
alignment | The horizontal alignment of text. This is specifically useful for multi-line strings. |
|
inline |
Returns the current x coordinate location of this turtle.
|
inline |
Returns the current y coordinate location of this turtle.