Drawing Primitives
I call our world Flatland, not because we call it so, but to make its nature clearer to you, my happy readers, who are privileged to live in Space.
– Edwin A. Abbott
Obviously the big fuss about making games nowadays is all about creating vast 3D worlds, but if we are honest with ourselves, it is clear that we will not create the next big AAA-title on our own. It is not such a bad idea then to start slowly, and what better place is there to begin our journey than in Flatland?
With the robust framework from the previous DirectX tutorials, using Direct2D is surprisingly easy.
Rectangles
The first thing we want to try is to draw rectangles — both boring and easy. We can draw a rectangle by calling the FillRectangle method:
Et voilà, a yellow rectangle!
Direct2D distinguishes between filling and drawing objects. Drawing an object results in only the contours of the geometrical figure being rendered to the screen. To draw a rectangle, we use the DrawRectangle method:
Behold: two rectangles. One filled and one drawn!
Ellipses
To draw an ellipse, we have to define its center coordinate, as well as the x and y-radia before calling the FillEllipse or DrawEllipse methods:
Here is the C++-code:
Note that the third parameter of the DrawEllipse function (and of all other draw functions) specifies the thickness of the border.
No Parking!
To have some fun, let us try to recreate a no parking sign.
Creating the blue and red brushes as well as the outer and inner ellipses is straightforward:
What we need to do now is to draw two single lines. While drawing lines is easy (hint: DrawLine), finding the endpoints of the lines might be a little bit of a challenge.
Remembering trigonometry, it is clear that we can find the x and y-coordinates of a point on a circle by putting the angle into a circular function:
Just note that since Windows puts the centre of the screen at the upper left edge of the screen, we have to add the x and y-offsets to the computation. The radius of the ellipse must be multiplied by the sine or cosine of the angle, to account for circles or ellipses with radii not equal to 1. The sin and cos functions require the angle to be specified in radians, which can easily be computed using pi: Let math.h
as M_PI.
Now, drawing the two lines is rather easy:
This was all rather easy. In the next tutorial, we will have some fun with brushes.
References
- Microsoft Developer Network (MSDN)