-
-
Notifications
You must be signed in to change notification settings - Fork 179
/
Copy pathline.c
490 lines (411 loc) · 13.6 KB
/
line.c
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
#include "doc/geometry_doc.h"
#include "geometry_common.h"
static double
pgLine_Length(pgLineBase *line)
{
double dx = line->bx - line->ax;
double dy = line->by - line->ay;
return sqrt(dx * dx + dy * dy);
}
static PyObject *
_pg_line_subtype_new4(PyTypeObject *type, double ax, double ay, double bx,
double by)
{
pgLineObject *line = (pgLineObject *)pgLine_Type.tp_new(type, NULL, NULL);
if (line) {
line->line.ax = ax;
line->line.ay = ay;
line->line.bx = bx;
line->line.by = by;
}
return (PyObject *)line;
}
static PyObject *
pg_line_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
pgLineObject *self = (pgLineObject *)type->tp_alloc(type, 0);
if (self != NULL)
memset(&self->line, 0, sizeof(pgLineBase));
return (PyObject *)self;
}
static void
pg_line_dealloc(pgLineObject *self)
{
if (self->weakreflist != NULL) {
PyObject_ClearWeakRefs((PyObject *)self);
}
Py_TYPE(self)->tp_free((PyObject *)self);
}
static int
pg_line_init(pgLineObject *self, PyObject *args, PyObject *kwds)
{
if (!pgLine_FromObject(args, &self->line)) {
PyErr_SetString(PyExc_TypeError,
"Invalid line end points, expected 4 "
"numbers or 2 sequences of 2 numbers");
return -1;
}
return 0;
}
static PyObject *
pgLine_New(pgLineBase *l)
{
return _pg_line_subtype_new4(&pgLine_Type, l->ax, l->ay, l->bx, l->by);
}
static PyObject *
pg_line_copy(pgLineObject *self, PyObject *_null)
{
return _pg_line_subtype_new4(Py_TYPE(self), self->line.ax, self->line.ay,
self->line.bx, self->line.by);
}
static PyObject *
pg_line_update(pgLineObject *self, PyObject *const *args, Py_ssize_t nargs)
{
if (!pgLine_FromObjectFastcall(args, nargs, &self->line)) {
return RAISE(PyExc_TypeError,
"Line.update requires a line or LineLike object");
}
Py_RETURN_NONE;
}
static PyObject *
pg_line_move(pgLineObject *self, PyObject *const *args, Py_ssize_t nargs)
{
double Dx, Dy;
if (!pg_TwoDoublesFromFastcallArgs(args, nargs, &Dx, &Dy)) {
return RAISE(PyExc_TypeError, "move requires a pair of numbers");
}
return _pg_line_subtype_new4(Py_TYPE(self), self->line.ax + Dx,
self->line.ay + Dy, self->line.bx + Dx,
self->line.by + Dy);
}
static PyObject *
pg_line_move_ip(pgLineObject *self, PyObject *const *args, Py_ssize_t nargs)
{
double Dx, Dy;
if (!pg_TwoDoublesFromFastcallArgs(args, nargs, &Dx, &Dy)) {
return RAISE(PyExc_TypeError, "move_ip requires a pair of numbers");
}
self->line.ax += Dx;
self->line.ay += Dy;
self->line.bx += Dx;
self->line.by += Dy;
Py_RETURN_NONE;
}
static PyObject *
pg_line_flip(pgLineObject *self, PyObject *_null)
{
return _pg_line_subtype_new4(Py_TYPE(self), self->line.bx, self->line.by,
self->line.ax, self->line.ay);
}
static PyObject *
pg_line_flip_ab_ip(pgLineObject *self, PyObject *_null)
{
double tx = self->line.bx;
double ty = self->line.by;
self->line.bx = self->line.ax;
self->line.by = self->line.ay;
self->line.ax = tx;
self->line.ay = ty;
Py_RETURN_NONE;
}
static PG_FORCEINLINE double
_lerp_helper(double start, double end, double amount)
{
return start + (end - start) * amount;
}
static int
_line_scale_helper(pgLineBase *line, double factor, double origin)
{
if (factor == 1.0) {
return 1;
}
else if (factor <= 0.0) {
PyErr_SetString(PyExc_ValueError,
"Can only scale by a positive non zero number");
return 0;
}
if (origin < 0.0 || origin > 1.0) {
PyErr_SetString(PyExc_ValueError, "Origin must be between 0 and 1");
return 0;
}
double ax = line->ax;
double ay = line->ay;
double bx = line->bx;
double by = line->by;
double x1_factor = ax * factor;
double y1_factor = ay * factor;
double x2_factor = bx * factor;
double y2_factor = by * factor;
double fac_m_one = factor - 1;
double dx = _lerp_helper(fac_m_one * ax, fac_m_one * bx, origin);
double dy = _lerp_helper(fac_m_one * ay, fac_m_one * by, origin);
line->ax = x1_factor - dx;
line->ay = y1_factor - dy;
line->bx = x2_factor - dx;
line->by = y2_factor - dy;
return 1;
}
static PyObject *
pg_line_scale(pgLineObject *self, PyObject *const *args, Py_ssize_t nargs)
{
double factor, origin;
if (!pg_TwoDoublesFromFastcallArgs(args, nargs, &factor, &origin)) {
return RAISE(PyExc_TypeError,
"scale requires a sequence of two numbers");
}
PyObject *line;
if (!(line = pgLine_New(&self->line))) {
return NULL;
}
if (!_line_scale_helper(&pgLine_AsLine(line), factor, origin)) {
Py_DECREF(line);
return NULL;
}
return line;
}
static PyObject *
pg_line_scale_ip(pgLineObject *self, PyObject *const *args, Py_ssize_t nargs)
{
double factor, origin;
if (!pg_TwoDoublesFromFastcallArgs(args, nargs, &factor, &origin)) {
return RAISE(PyExc_TypeError,
"scale_ip requires a sequence of two numbers");
}
if (!_line_scale_helper(&pgLine_AsLine(self), factor, origin)) {
return NULL;
}
Py_RETURN_NONE;
}
static struct PyMethodDef pg_line_methods[] = {
{"__copy__", (PyCFunction)pg_line_copy, METH_NOARGS, DOC_LINE_COPY},
{"copy", (PyCFunction)pg_line_copy, METH_NOARGS, DOC_LINE_COPY},
{"update", (PyCFunction)pg_line_update, METH_FASTCALL, DOC_LINE_UPDATE},
{"move", (PyCFunction)pg_line_move, METH_FASTCALL, DOC_LINE_MOVE},
{"move_ip", (PyCFunction)pg_line_move_ip, METH_FASTCALL, DOC_LINE_MOVEIP},
{"flip_ab", (PyCFunction)pg_line_flip, METH_NOARGS, DOC_LINE_FLIPAB},
{"flip_ab_ip", (PyCFunction)pg_line_flip_ab_ip, METH_NOARGS,
DOC_LINE_FLIPABIP},
{"scale", (PyCFunction)pg_line_scale, METH_FASTCALL, DOC_LINE_SCALE},
{"scale_ip", (PyCFunction)pg_line_scale_ip, METH_FASTCALL,
DOC_LINE_SCALEIP},
{NULL, NULL, 0, NULL}};
static PyObject *
pg_line_repr(pgLineObject *self)
{
PyObject *result, *ax, *ay, *bx, *by;
ax = PyFloat_FromDouble(self->line.ax);
if (!ax) {
return NULL;
}
ay = PyFloat_FromDouble(self->line.ay);
if (!ay) {
Py_DECREF(ax);
return NULL;
}
bx = PyFloat_FromDouble(self->line.bx);
if (!bx) {
Py_DECREF(ax);
Py_DECREF(ay);
return NULL;
}
by = PyFloat_FromDouble(self->line.by);
if (!by) {
Py_DECREF(ax);
Py_DECREF(ay);
Py_DECREF(bx);
return NULL;
}
result =
PyUnicode_FromFormat("<Line((%R, %R), (%R, %R))>", ax, ay, bx, by);
Py_DECREF(ax);
Py_DECREF(ay);
Py_DECREF(bx);
Py_DECREF(by);
return result;
}
static PyObject *
pg_line_str(pgLineObject *self)
{
return pg_line_repr(self);
}
#define __LINE_GETSET_NAME(name) \
static PyObject *pg_line_get##name(pgLineObject *self, void *closure) \
{ \
return PyFloat_FromDouble(self->line.name); \
} \
static int pg_line_set##name(pgLineObject *self, PyObject *value, \
void *closure) \
{ \
double val; \
DEL_ATTR_NOT_SUPPORTED_CHECK_NO_NAME(value); \
if (pg_DoubleFromObj(value, &val)) { \
self->line.name = val; \
return 0; \
} \
PyErr_SetString(PyExc_TypeError, "Expected a number"); \
return -1; \
}
__LINE_GETSET_NAME(ax)
__LINE_GETSET_NAME(ay)
__LINE_GETSET_NAME(bx)
__LINE_GETSET_NAME(by)
#undef __LINE_GETSET_NAME
static PyObject *
pg_line_geta(pgLineObject *self, void *closure)
{
return pg_tuple_couple_from_values_double(self->line.ax, self->line.ay);
}
static int
pg_line_seta(pgLineObject *self, PyObject *value, void *closure)
{
double x, y;
DEL_ATTR_NOT_SUPPORTED_CHECK_NO_NAME(value);
if (pg_TwoDoublesFromObj(value, &x, &y)) {
self->line.ax = x;
self->line.ay = y;
return 0;
}
PyErr_SetString(PyExc_TypeError, "Expected a sequence of 2 numbers");
return -1;
}
static PyObject *
pg_line_getb(pgLineObject *self, void *closure)
{
return pg_tuple_couple_from_values_double(self->line.bx, self->line.by);
}
static int
pg_line_setb(pgLineObject *self, PyObject *value, void *closure)
{
double x, y;
DEL_ATTR_NOT_SUPPORTED_CHECK_NO_NAME(value);
if (pg_TwoDoublesFromObj(value, &x, &y)) {
self->line.bx = x;
self->line.by = y;
return 0;
}
PyErr_SetString(PyExc_TypeError, "Expected a sequence of 2 numbers");
return -1;
}
static PyObject *
pg_line_getlength(pgLineObject *self, void *closure)
{
return PyFloat_FromDouble(pgLine_Length(&self->line));
}
static PyObject *
pg_line_get_center(pgLineObject *self, void *closure)
{
return pg_tuple_couple_from_values_double(
(self->line.ax + self->line.bx) / 2,
(self->line.ay + self->line.by) / 2);
}
static int
pg_line_set_center(pgLineObject *self, PyObject *value, void *closure)
{
double m_x, m_y;
DEL_ATTR_NOT_SUPPORTED_CHECK_NO_NAME(value);
if (!pg_TwoDoublesFromObj(value, &m_x, &m_y)) {
PyErr_SetString(
PyExc_TypeError,
"Invalid center value, expected a sequence of 2 numbers");
return -1;
}
double dx = m_x - (self->line.ax + self->line.bx) / 2;
double dy = m_y - (self->line.ay + self->line.by) / 2;
self->line.ax += dx;
self->line.ay += dy;
self->line.bx += dx;
self->line.by += dy;
return 0;
}
static PyObject *
pg_line_get_centerx(pgLineObject *self, void *closure)
{
return PyFloat_FromDouble((self->line.ax + self->line.bx) / 2);
}
static int
pg_line_set_centerx(pgLineObject *self, PyObject *value, void *closure)
{
double m_x;
DEL_ATTR_NOT_SUPPORTED_CHECK_NO_NAME(value);
if (!pg_DoubleFromObj(value, &m_x)) {
PyErr_SetString(PyExc_TypeError,
"Invalid centerx value, expected a numeric value");
return -1;
}
double dx = m_x - (self->line.ax + self->line.bx) / 2;
self->line.ax += dx;
self->line.bx += dx;
return 0;
}
static PyObject *
pg_line_get_centery(pgLineObject *self, void *closure)
{
return PyFloat_FromDouble((self->line.ay + self->line.by) / 2);
}
static int
pg_line_set_centery(pgLineObject *self, PyObject *value, void *closure)
{
double m_y;
DEL_ATTR_NOT_SUPPORTED_CHECK_NO_NAME(value);
if (!pg_DoubleFromObj(value, &m_y)) {
PyErr_SetString(PyExc_TypeError,
"Invalid centery value, expected a numeric value");
return -1;
}
double dy = m_y - (self->line.ay + self->line.by) / 2;
self->line.ay += dy;
self->line.by += dy;
return 0;
}
static PyObject *
pg_line_getangle(pgLineObject *self, void *closure)
{
double dx = self->line.bx - self->line.ax;
if (dx == 0.0)
return (self->line.by > self->line.ay) ? PyFloat_FromDouble(-90.0)
: PyFloat_FromDouble(90.0);
double dy = self->line.by - self->line.ay;
double gradient = dy / dx;
return PyFloat_FromDouble(-RAD_TO_DEG(atan(gradient)));
}
static PyObject *
pg_line_getslope(pgLineObject *self, void *closure)
{
double dem = self->line.bx - self->line.ax;
if (dem == 0) {
return PyFloat_FromDouble(0);
}
double slope = (self->line.by - self->line.ay) / dem;
return PyFloat_FromDouble(slope);
}
static PyGetSetDef pg_line_getsets[] = {
{"ax", (getter)pg_line_getax, (setter)pg_line_setax, DOC_LINE_AX, NULL},
{"ay", (getter)pg_line_getay, (setter)pg_line_setay, DOC_LINE_AY, NULL},
{"bx", (getter)pg_line_getbx, (setter)pg_line_setbx, DOC_LINE_BX, NULL},
{"by", (getter)pg_line_getby, (setter)pg_line_setby, DOC_LINE_BY, NULL},
{"a", (getter)pg_line_geta, (setter)pg_line_seta, DOC_LINE_A, NULL},
{"b", (getter)pg_line_getb, (setter)pg_line_setb, DOC_LINE_B, NULL},
{"length", (getter)pg_line_getlength, NULL, DOC_LINE_LENGTH, NULL},
{"center", (getter)pg_line_get_center, (setter)pg_line_set_center,
DOC_LINE_CENTER, NULL},
{"centerx", (getter)pg_line_get_centerx, (setter)pg_line_set_centerx,
DOC_LINE_CENTERX, NULL},
{"centery", (getter)pg_line_get_centery, (setter)pg_line_set_centery,
DOC_LINE_CENTERY, NULL},
{"angle", (getter)pg_line_getangle, NULL, DOC_LINE_ANGLE, NULL},
{"slope", (getter)pg_line_getslope, NULL, DOC_LINE_SLOPE, NULL},
{NULL, 0, NULL, NULL, NULL}};
static PyTypeObject pgLine_Type = {
PyVarObject_HEAD_INIT(NULL, 0).tp_name = "pygame.geometry.Line",
.tp_basicsize = sizeof(pgLineObject),
.tp_dealloc = (destructor)pg_line_dealloc,
.tp_repr = (reprfunc)pg_line_repr,
.tp_str = (reprfunc)pg_line_str,
.tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
.tp_doc = DOC_LINE,
.tp_weaklistoffset = offsetof(pgLineObject, weakreflist),
.tp_methods = pg_line_methods,
.tp_getset = pg_line_getsets,
.tp_init = (initproc)pg_line_init,
.tp_new = pg_line_new,
};