1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
|
#include <math.h>
#include <grass/gis.h>
#include "driver.h"
#include "driverlib.h"
static int am_inside;
static int dont_draw;
static int t, b, l, r;
static double basex, basey;
static double curx, cury;
static void remember(double x, double y)
{
if ((int)x > r)
r = (int)x;
if ((int)x < l)
l = (int)x;
if ((int)y > b)
b = (int)y;
if ((int)y < t)
t = (int)y;
curx = x;
cury = y;
}
static void text_draw(double x, double y)
{
int X1 = (int)x;
int Y1 = (int)y;
int X2 = (int)curx;
int Y2 = (int)cury;
if (am_inside) {
COM_Cont_abs(X1, Y1);
}
else {
COM_Move_abs(X2, Y2);
COM_Cont_abs(X1, Y1);
am_inside = 1;
}
curx = x;
cury = y;
}
static void text_move(double x, double y)
{
int X1 = (int)x;
int Y1 = (int)y;
if (am_inside)
COM_Move_abs(X1, Y1);
curx = x;
cury = y;
}
void drawchar(double text_size_x, double text_size_y,
double sinrot, double cosrot, unsigned char character)
{
unsigned char *X;
unsigned char *Y;
int n_vects;
int i;
int ax, ay;
double x, y;
void (*Do) (double, double);
int ix, iy;
x = basex;
y = basey;
get_char_vects(character, &n_vects, &X, &Y);
Do = text_move;
for (i = 1; i < n_vects; i++) {
if (X[i] == ' ') {
Do = text_move;
continue;
}
ix = 10 + X[i] - 'R';
iy = 10 - Y[i] + 'R';
ax = (int)(text_size_x * (double)ix);
ay = (int)(text_size_y * (double)iy);
if (dont_draw) {
remember(x + (ax * cosrot - ay * sinrot),
y - (ax * sinrot + ay * cosrot));
}
else {
(*Do) (x + (ax * cosrot - ay * sinrot),
y - (ax * sinrot + ay * cosrot));
Do = text_draw;
}
}
/* This seems to do variable spacing
ix = 10 + X[i] - 'R';
*/
ix = 20;
iy = 0;
ax = (int)(text_size_x * (double)ix);
ay = (int)(text_size_y * (double)iy);
if (!dont_draw)
text_move(basex + (ax * cosrot - ay * sinrot),
basey - (ax * sinrot + ay * cosrot));
else
remember(basex + (ax * cosrot - ay * sinrot),
basey - (ax * sinrot + ay * cosrot));
}
void soft_text_ext(int x, int y,
double text_size_x, double text_size_y,
double text_rotation, const char *string)
{
t = 999999;
b = 0;
l = 999999;
r = 0;
dont_draw = 1;
soft_text(x, y, text_size_x, text_size_y, text_rotation, string);
dont_draw = 0;
}
void get_text_ext(int *top, int *bot, int *left, int *rite)
{
*top = t;
*bot = b;
*left = l;
*rite = r;
}
# define RpD ((2 * M_PI) / 360.) /* radians/degree */
# define D2R(d) (double)(d * RpD) /* degrees->radians */
void soft_text(int x, int y,
double text_size_x, double text_size_y, double text_rotation,
const char *string)
{
double sinrot = sin(D2R(text_rotation));
double cosrot = cos(D2R(text_rotation));
am_inside = 0;
curx = basex = (double)x;
cury = basey = (double)y;
while (*string) {
drawchar(text_size_x, text_size_y, sinrot, cosrot, *string++);
basex = curx;
basey = cury;
}
}
void onechar(int x, int y,
double text_size_x, double text_size_y, double text_rotation,
unsigned char achar)
{
double sinrot = sin(D2R(text_rotation));
double cosrot = cos(D2R(text_rotation));
am_inside = 0;
curx = basex = (double)x;
cury = basey = (double)y;
drawchar(text_size_x, text_size_y, sinrot, cosrot, achar);
}
|