author | Radek Brich <radek.brich@devl.cz> |
Fri, 02 May 2008 13:27:47 +0200 | |
branch | pyrit |
changeset 91 | 9d66d323c354 |
parent 90 | f6a72eb99631 |
child 93 | 96d65f841791 |
permissions | -rw-r--r-- |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1 |
/* |
44 | 2 |
* raytracermodule.cc: Python module |
3 |
* |
|
4 |
* This file is part of Pyrit Ray Tracer. |
|
5 |
* |
|
48
a4913301c626
begin moving subsampling and oversampling to Sampler
Radek Brich <radek.brich@devl.cz>
parents:
47
diff
changeset
|
6 |
* Copyright 2006, 2007, 2008 Radek Brich |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
7 |
* |
44 | 8 |
* Permission is hereby granted, free of charge, to any person obtaining a copy |
9 |
* of this software and associated documentation files (the "Software"), to deal |
|
10 |
* in the Software without restriction, including without limitation the rights |
|
11 |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
|
12 |
* copies of the Software, and to permit persons to whom the Software is |
|
13 |
* furnished to do so, subject to the following conditions: |
|
14 |
* |
|
15 |
* The above copyright notice and this permission notice shall be included in |
|
16 |
* all copies or substantial portions of the Software. |
|
17 |
* |
|
18 |
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
19 |
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|
20 |
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
|
21 |
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|
22 |
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
|
23 |
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
|
24 |
* THE SOFTWARE. |
|
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
25 |
*/ |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
26 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
27 |
#include <Python.h> |
1
e74bf781067e
use python-config, strip python version from demos, change [PyRit] to [pyrit] -- should use unix name everywhere
Radek Brich <radek.brich@devl.cz>
parents:
0
diff
changeset
|
28 |
|
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
29 |
#include <vector> |
35
fb170fccb19f
new space partitioning structure: octree
Radek Brich <radek.brich@devl.cz>
parents:
34
diff
changeset
|
30 |
#include "raytracer.h" |
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
31 |
#include "octree.h" |
84
6f7fe14782c2
prepare kd-tree traversal for packet tracing (4 rays at once)
Radek Brich <radek.brich@devl.cz>
parents:
78
diff
changeset
|
32 |
#include "kdtree.h" |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
33 |
|
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
34 |
#define TYPE_OBJECT(name, basicsize, dealloc, flags, doc, methods, members, base, init) \ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
35 |
{ \ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
36 |
PyObject_HEAD_INIT(NULL) \ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
37 |
0, /* ob_size */ \ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
38 |
(name), /* tp_name */ \ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
39 |
(basicsize), /* tp_basicsize*/ \ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
40 |
0, /* tp_itemsize*/ \ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
41 |
(dealloc), /* tp_dealloc*/ \ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
42 |
0, /* tp_print*/\ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
43 |
0, /* tp_getattr*/\ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
44 |
0, /* tp_setattr*/\ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
45 |
0, /* tp_compare*/\ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
46 |
0, /* tp_repr*/\ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
47 |
0, /* tp_as_number*/\ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
48 |
0, /* tp_as_sequence*/\ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
49 |
0, /* tp_as_mapping*/\ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
50 |
0, /* tp_hash */\ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
51 |
0, /* tp_call*/\ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
52 |
0, /* tp_str*/\ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
53 |
PyObject_GenericGetAttr, /* tp_getattro*/\ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
54 |
0, /* tp_setattro*/\ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
55 |
0, /* tp_as_buffer*/\ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
56 |
(flags), /* tp_flags*/\ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
57 |
(doc), /* tp_doc */\ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
58 |
0, /* tp_traverse */\ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
59 |
0, /* tp_clear */\ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
60 |
0, /* tp_richcompare */\ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
61 |
0, /* tp_weaklistoffset */\ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
62 |
0, /* tp_iter */\ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
63 |
0, /* tp_iternext */\ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
64 |
(methods), /* tp_methods */\ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
65 |
(members), /* tp_members */\ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
66 |
0, /* tp_getset */\ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
67 |
(base), /* tp_base */\ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
68 |
0, /* tp_dict */ \ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
69 |
0, /* tp_descr_get */ \ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
70 |
0, /* tp_descr_set */ \ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
71 |
0, /* tp_dictoffset */ \ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
72 |
(init), /* tp_init */ \ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
73 |
0, /* tp_alloc */ \ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
74 |
0, /* tp_new */ \ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
75 |
0, /* tp_free */ \ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
76 |
} |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
77 |
|
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
78 |
//=========================== Light Source Object =========================== |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
79 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
80 |
typedef struct { |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
81 |
PyObject_HEAD |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
82 |
Light *light; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
83 |
} LightObject; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
84 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
85 |
static PyObject *Light_Constructor(PyObject* self, PyObject* args, PyObject *kwd); |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
86 |
static void Light_Destructor(PyObject* self); |
75
20dee9819b17
unify capitalization of method names in C++ and Python
Radek Brich <radek.brich@devl.cz>
parents:
72
diff
changeset
|
87 |
static PyObject *Light_castShadows(PyObject* self, PyObject* args); |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
88 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
89 |
static PyMethodDef LightMethods[] = { |
75
20dee9819b17
unify capitalization of method names in C++ and Python
Radek Brich <radek.brich@devl.cz>
parents:
72
diff
changeset
|
90 |
{"castShadows", (PyCFunction)Light_castShadows, METH_VARARGS, "Enable or disable shadows from this light."}, |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
91 |
{NULL, NULL} |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
92 |
}; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
93 |
|
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
94 |
static PyTypeObject LightType = |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
95 |
TYPE_OBJECT( |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
96 |
"Light", /* tp_name */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
97 |
sizeof(LightObject), /* tp_basicsize */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
98 |
Light_Destructor, /* tp_dealloc */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
99 |
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
100 |
"Light type", /* tp_doc */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
101 |
LightMethods, /* tp_methods */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
102 |
0, /* tp_members */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
103 |
0, /* tp_base */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
104 |
0 /* tp_init */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
105 |
); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
106 |
|
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
107 |
static PyObject* Light_Constructor(PyObject* self, PyObject* args, PyObject *kwd) |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
108 |
{ |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
109 |
LightObject *v; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
110 |
static char *kwdlist[] = {"position", "colour", NULL}; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
111 |
PyObject *TPos, *TCol = NULL; |
22 | 112 |
Float px, py, pz; |
72
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
113 |
Float cr = 0.9, cg = 0.9, cb = 0.9; |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
114 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
115 |
if (!PyArg_ParseTupleAndKeywords(args, kwd, "O!|O!", kwdlist, |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
116 |
&PyTuple_Type, &TPos, &PyTuple_Type, &TCol)) |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
117 |
return NULL; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
118 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
119 |
if (!PyArg_ParseTuple(TPos, "fff", &px, &py, &pz)) |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
120 |
return NULL; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
121 |
if (TCol && !PyArg_ParseTuple(TCol, "fff", &cr, &cg, &cb)) |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
122 |
return NULL; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
123 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
124 |
v = PyObject_New(LightObject, &LightType); |
91 | 125 |
v->light = new Light(Vector(px, py, pz), Colour(cr, cg, cb)); |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
126 |
return (PyObject*)v; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
127 |
} |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
128 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
129 |
static void Light_Destructor(PyObject* self) |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
130 |
{ |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
131 |
delete ((LightObject *)self)->light; |
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
132 |
self->ob_type->tp_free(self); |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
133 |
} |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
134 |
|
75
20dee9819b17
unify capitalization of method names in C++ and Python
Radek Brich <radek.brich@devl.cz>
parents:
72
diff
changeset
|
135 |
static PyObject *Light_castShadows(PyObject* self, PyObject* args) |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
136 |
{ |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
137 |
int shadows = 1; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
138 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
139 |
if (!PyArg_ParseTuple(args, "i", &shadows)) |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
140 |
return NULL; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
141 |
|
21
79b516a3803d
naive color driven sub-sampling
Radek Brich <radek.brich@devl.cz>
parents:
20
diff
changeset
|
142 |
((LightObject *)self)->light->castShadows(shadows); |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
143 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
144 |
Py_INCREF(Py_None); |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
145 |
return Py_None; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
146 |
} |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
147 |
|
59
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
148 |
//=========================== Camera Object =========================== |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
149 |
|
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
150 |
typedef struct { |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
151 |
PyObject_HEAD |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
152 |
Camera *camera; |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
153 |
} CameraObject; |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
154 |
|
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
155 |
static PyObject *Camera_Constructor(PyObject* self, PyObject* args, PyObject *kwd); |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
156 |
static void Camera_Destructor(PyObject* self); |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
157 |
static PyObject *Camera_setEye(PyObject* self, PyObject* args); |
72
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
158 |
static PyObject *Camera_setAngle(PyObject* self, PyObject* args); |
59
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
159 |
static PyObject *Camera_rotate(PyObject* self, PyObject* args); |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
160 |
|
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
161 |
static PyMethodDef CameraMethods[] = { |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
162 |
{"setEye", (PyCFunction)Camera_setEye, METH_VARARGS, "Set eye of the camera."}, |
72
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
163 |
{"setAngle", (PyCFunction)Camera_setAngle, METH_VARARGS, "Set vertical angle of view."}, |
59
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
164 |
{"rotate", (PyCFunction)Camera_rotate, METH_VARARGS, "Rotate camera with a quaternion."}, |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
165 |
{NULL, NULL} |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
166 |
}; |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
167 |
|
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
168 |
static PyTypeObject CameraType = |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
169 |
TYPE_OBJECT( |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
170 |
"Camera", /* tp_name */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
171 |
sizeof(CameraObject), /* tp_basicsize */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
172 |
Camera_Destructor, /* tp_dealloc */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
173 |
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
174 |
"Camera type", /* tp_doc */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
175 |
CameraMethods, /* tp_methods */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
176 |
0, /* tp_members */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
177 |
0, /* tp_base */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
178 |
0 /* tp_init */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
179 |
); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
180 |
|
59
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
181 |
static PyObject* Camera_Constructor(PyObject* self, PyObject* args, PyObject *kwd) |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
182 |
{ |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
183 |
CameraObject *v; |
72
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
184 |
static char *kwdlist[] = {"eye", "lookat", "up", "p", "u", "v", NULL}; |
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
185 |
PyObject *TEye = NULL, *TLookAt = NULL, *TUp = NULL, |
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
186 |
*Tp = NULL, *Tu = NULL, *Tv = NULL; |
59
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
187 |
Float ex=0.0, ey=0.0, ez=10.0; |
72
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
188 |
Float lax=0.0, lay=0.0, laz=0.0; |
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
189 |
Float upx=0.0, upy=1.0, upz=0.0; |
59
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
190 |
Float px=0.0, py=0.0, pz=-1.0; |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
191 |
Float ux=-1.0, uy=0.0, uz=0.0; |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
192 |
Float vx=0.0, vy=1.0, vz=0.0; |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
193 |
|
72
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
194 |
if (!PyArg_ParseTupleAndKeywords(args, kwd, "|O!O!O!O!O!O!", kwdlist, |
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
195 |
&PyTuple_Type, &TEye, &PyTuple_Type, &TLookAt, &PyTuple_Type, &TUp, |
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
196 |
&PyTuple_Type, &Tp, &PyTuple_Type, &Tu, &PyTuple_Type, &Tv)) |
59
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
197 |
return NULL; |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
198 |
|
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
199 |
if (TEye) |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
200 |
if (!PyArg_ParseTuple(TEye, "fff", &ex, &ey, &ez)) |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
201 |
return NULL; |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
202 |
|
72
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
203 |
if (TLookAt) |
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
204 |
if (!PyArg_ParseTuple(TLookAt, "fff", &lax, &lay, &laz)) |
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
205 |
return NULL; |
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
206 |
|
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
207 |
if (TUp) |
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
208 |
if (!PyArg_ParseTuple(TUp, "fff", &upx, &upy, &upz)) |
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
209 |
return NULL; |
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
210 |
|
59
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
211 |
if (Tp) |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
212 |
if (!PyArg_ParseTuple(Tp, "fff", &px, &py, &pz)) |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
213 |
return NULL; |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
214 |
|
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
215 |
if (Tu) |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
216 |
if (!PyArg_ParseTuple(Tu, "fff", &ux, &uy, &uz)) |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
217 |
return NULL; |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
218 |
|
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
219 |
if (Tv) |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
220 |
if (!PyArg_ParseTuple(Tv, "fff", &vx, &vy, &vz)) |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
221 |
return NULL; |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
222 |
|
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
223 |
v = PyObject_New(CameraObject, &CameraType); |
72
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
224 |
if (TLookAt) |
91 | 225 |
v->camera = new Camera(Vector(ex, ey, ez), |
226 |
Vector(lax, lay, laz), Vector(upx, upy, upz)); |
|
72
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
227 |
else |
91 | 228 |
v->camera = new Camera(Vector(ex, ey, ez), |
229 |
Vector(px, py, pz), Vector(ux, uy, uz), Vector(vx, vy, vz)); |
|
59
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
230 |
return (PyObject*)v; |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
231 |
} |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
232 |
|
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
233 |
static void Camera_Destructor(PyObject* self) |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
234 |
{ |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
235 |
delete ((CameraObject *)self)->camera; |
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
236 |
self->ob_type->tp_free(self); |
59
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
237 |
} |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
238 |
|
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
239 |
static PyObject *Camera_setEye(PyObject* self, PyObject* args) |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
240 |
{ |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
241 |
PyObject *TEye = NULL; |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
242 |
Float ex=0.0, ey=0.0, ez=10.0; |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
243 |
|
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
244 |
if (!PyArg_ParseTuple(args, "O!", &PyTuple_Type, &TEye)) |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
245 |
return NULL; |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
246 |
|
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
247 |
if (TEye) |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
248 |
if (!PyArg_ParseTuple(TEye, "fff", &ex, &ey, &ez)) |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
249 |
return NULL; |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
250 |
|
91 | 251 |
((CameraObject *)self)->camera->setEye(Vector(ex, ey, ez)); |
59
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
252 |
|
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
253 |
Py_INCREF(Py_None); |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
254 |
return Py_None; |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
255 |
} |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
256 |
|
72
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
257 |
static PyObject *Camera_setAngle(PyObject* self, PyObject* args) |
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
258 |
{ |
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
259 |
Float angle; |
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
260 |
|
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
261 |
if (!PyArg_ParseTuple(args, "f", &angle)) |
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
262 |
return NULL; |
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
263 |
|
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
264 |
((CameraObject *)self)->camera->setAngle(angle); |
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
265 |
|
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
266 |
Py_INCREF(Py_None); |
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
267 |
return Py_None; |
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
268 |
} |
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
269 |
|
59
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
270 |
static PyObject *Camera_rotate(PyObject* self, PyObject* args) |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
271 |
{ |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
272 |
PyObject *Tq = NULL; |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
273 |
Float qa, qb, qc, qd; |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
274 |
|
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
275 |
if (!PyArg_ParseTuple(args, "O!", &PyTuple_Type, &Tq)) |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
276 |
return NULL; |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
277 |
|
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
278 |
if (!PyArg_ParseTuple(Tq, "ffff", &qa, &qb, &qc, &qd)) |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
279 |
return NULL; |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
280 |
|
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
281 |
((CameraObject *)self)->camera->rotate(Quaternion(qa, qb, qc, qd).normalize()); |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
282 |
|
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
283 |
Py_INCREF(Py_None); |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
284 |
return Py_None; |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
285 |
} |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
286 |
|
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
287 |
|
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
288 |
//=========================== Material Object =========================== |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
289 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
290 |
typedef struct { |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
291 |
PyObject_HEAD |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
292 |
Material *material; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
293 |
} MaterialObject; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
294 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
295 |
static PyObject *Material_Constructor(PyObject* self, PyObject* args, PyObject *kwd); |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
296 |
static void Material_Destructor(PyObject* self); |
31 | 297 |
static PyObject *Material_setPhong(PyObject* self, PyObject* args); |
298 |
static PyObject *Material_setReflectivity(PyObject* self, PyObject* args); |
|
299 |
static PyObject *Material_setTransmissivity(PyObject* self, PyObject* args); |
|
69
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
300 |
static PyObject *Material_setSmooth(PyObject* self, PyObject* args); |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
301 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
302 |
static PyMethodDef MaterialMethods[] = { |
31 | 303 |
{"setPhong", (PyCFunction)Material_setPhong, METH_VARARGS, "Set ambient, diffuse, specular and shininess Phong model constants."}, |
304 |
{"setReflectivity", (PyCFunction)Material_setReflectivity, METH_VARARGS, "Set reflectivity."}, |
|
305 |
{"setTransmissivity", (PyCFunction)Material_setTransmissivity, METH_VARARGS, "Set transmissivity and refraction index."}, |
|
69
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
306 |
{"setSmooth", (PyCFunction)Material_setSmooth, METH_VARARGS, "Set triangle smoothing."}, |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
307 |
{NULL, NULL} |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
308 |
}; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
309 |
|
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
310 |
static PyTypeObject MaterialType = |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
311 |
TYPE_OBJECT( |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
312 |
"Material", /* tp_name */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
313 |
sizeof(MaterialObject), /* tp_basicsize */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
314 |
Material_Destructor, /* tp_dealloc */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
315 |
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
316 |
"Material type", /* tp_doc */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
317 |
MaterialMethods, /* tp_methods */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
318 |
0, /* tp_members */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
319 |
0, /* tp_base */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
320 |
0 /* tp_init */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
321 |
); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
322 |
|
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
323 |
static PyObject* Material_Constructor(PyObject* self, PyObject* args, PyObject *kwd) |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
324 |
{ |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
325 |
MaterialObject *v; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
326 |
static char *kwdlist[] = {"colour", NULL}; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
327 |
PyObject *TCol = NULL; |
22 | 328 |
Float cr=1.0, cg=1.0, cb=1.0; |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
329 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
330 |
if (!PyArg_ParseTupleAndKeywords(args, kwd, "|O!", kwdlist, |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
331 |
&PyTuple_Type, &TCol)) |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
332 |
return NULL; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
333 |
|
28
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
334 |
if (TCol) |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
335 |
if (!PyArg_ParseTuple(TCol, "fff", &cr, &cg, &cb)) |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
336 |
return NULL; |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
337 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
338 |
v = PyObject_New(MaterialObject, &MaterialType); |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
339 |
v->material = new Material(Colour(cr, cg, cb)); |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
340 |
return (PyObject*)v; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
341 |
} |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
342 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
343 |
static void Material_Destructor(PyObject* self) |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
344 |
{ |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
345 |
delete ((MaterialObject *)self)->material; |
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
346 |
self->ob_type->tp_free(self); |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
347 |
} |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
348 |
|
31 | 349 |
static PyObject *Material_setPhong(PyObject* self, PyObject* args) |
350 |
{ |
|
351 |
Float amb, dif, spec, shin = 0.5; |
|
352 |
||
353 |
if (!PyArg_ParseTuple(args, "fff|f", &amb, &dif, &spec, &shin)) |
|
354 |
return NULL; |
|
355 |
||
356 |
((MaterialObject *)self)->material->setPhong(amb, dif, spec, shin); |
|
357 |
||
358 |
Py_INCREF(Py_None); |
|
359 |
return Py_None; |
|
360 |
} |
|
361 |
||
362 |
static PyObject *Material_setReflectivity(PyObject* self, PyObject* args) |
|
363 |
{ |
|
364 |
Float refl; |
|
365 |
||
366 |
if (!PyArg_ParseTuple(args, "f", &refl)) |
|
367 |
return NULL; |
|
368 |
||
369 |
((MaterialObject *)self)->material->setReflectivity(refl); |
|
370 |
||
371 |
Py_INCREF(Py_None); |
|
372 |
return Py_None; |
|
373 |
} |
|
374 |
||
375 |
static PyObject *Material_setTransmissivity(PyObject* self, PyObject* args) |
|
376 |
{ |
|
377 |
Float trans, rindex = 1.3; |
|
378 |
||
379 |
if (!PyArg_ParseTuple(args, "f|f", &trans, &rindex)) |
|
380 |
return NULL; |
|
381 |
||
382 |
((MaterialObject *)self)->material->setTransmissivity(trans, rindex); |
|
383 |
||
384 |
Py_INCREF(Py_None); |
|
385 |
return Py_None; |
|
386 |
} |
|
387 |
||
69
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
388 |
static PyObject* Material_setSmooth(PyObject* self, PyObject* args) |
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
389 |
{ |
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
390 |
int smooth; |
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
391 |
|
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
392 |
if (!PyArg_ParseTuple(args, "i", &smooth)) |
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
393 |
return NULL; |
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
394 |
|
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
395 |
((MaterialObject *)self)->material->setSmooth(smooth); |
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
396 |
|
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
397 |
Py_INCREF(Py_None); |
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
398 |
return Py_None; |
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
399 |
} |
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
400 |
|
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
401 |
|
28
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
402 |
//=========================== NormalVertex Object =========================== |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
403 |
|
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
404 |
typedef struct { |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
405 |
PyObject_HEAD |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
406 |
NormalVertex *nvertex; |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
407 |
} NormalVertexObject; |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
408 |
|
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
409 |
static PyObject *NormalVertex_Constructor(PyObject* self, PyObject* args, PyObject *kwd); |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
410 |
static void NormalVertex_Destructor(PyObject* self); |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
411 |
static PyObject *NormalVertex_setNormal(PyObject* self, PyObject* args); |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
412 |
|
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
413 |
static PyMethodDef NormalVertexMethods[] = { |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
414 |
{"setNormal", (PyCFunction)NormalVertex_setNormal, METH_VARARGS, "Set normal of this vertex."}, |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
415 |
{NULL, NULL} |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
416 |
}; |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
417 |
|
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
418 |
static PyTypeObject NormalVertexType = |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
419 |
TYPE_OBJECT( |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
420 |
"NormalVertex", /* tp_name */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
421 |
sizeof(NormalVertexObject), /* tp_basicsize */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
422 |
NormalVertex_Destructor, /* tp_dealloc */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
423 |
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
424 |
"NormalVertex type", /* tp_doc */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
425 |
NormalVertexMethods, /* tp_methods */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
426 |
0, /* tp_members */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
427 |
0, /* tp_base */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
428 |
0 /* tp_init */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
429 |
); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
430 |
|
28
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
431 |
static PyObject* NormalVertex_Constructor(PyObject* self, PyObject* args, PyObject *kwd) |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
432 |
{ |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
433 |
NormalVertexObject *v; |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
434 |
static char *kwdlist[] = {"vector", "normal", NULL}; |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
435 |
PyObject *TVer = NULL; |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
436 |
PyObject *TNor = NULL; |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
437 |
Float vx, vy, vz, nx=0, ny=0, nz=0; |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
438 |
|
69
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
439 |
if (!PyArg_ParseTupleAndKeywords(args, kwd, "O|O!", kwdlist, |
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
440 |
&TVer, &PyTuple_Type, &TNor)) |
28
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
441 |
return NULL; |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
442 |
|
69
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
443 |
if (!TNor && TVer->ob_type == &NormalVertexType) |
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
444 |
{ |
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
445 |
v = PyObject_New(NormalVertexObject, &NormalVertexType); |
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
446 |
v->nvertex = new NormalVertex(((NormalVertexObject*)TVer)->nvertex); |
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
447 |
} |
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
448 |
else |
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
449 |
{ |
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
450 |
if (!PyArg_ParseTuple(TVer, "fff", &vx, &vy, &vz)) |
28
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
451 |
return NULL; |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
452 |
|
69
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
453 |
if (TNor) |
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
454 |
if (!PyArg_ParseTuple(TNor, "fff", &nx, &ny, &nz)) |
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
455 |
return NULL; |
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
456 |
|
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
457 |
v = PyObject_New(NormalVertexObject, &NormalVertexType); |
91 | 458 |
v->nvertex = new NormalVertex(Vector(vx, vy, vz), Vector(nx, ny, nz)); |
69
303583d2fb97
move "smooth" attribute from Triangle to Material
Radek Brich <radek.brich@devl.cz>
parents:
60
diff
changeset
|
459 |
} |
28
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
460 |
return (PyObject*)v; |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
461 |
} |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
462 |
|
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
463 |
static void NormalVertex_Destructor(PyObject* self) |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
464 |
{ |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
465 |
delete ((NormalVertexObject *)self)->nvertex; |
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
466 |
self->ob_type->tp_free(self); |
28
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
467 |
} |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
468 |
|
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
469 |
static PyObject *NormalVertex_setNormal(PyObject* self, PyObject* args) |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
470 |
{ |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
471 |
PyObject *TNor = NULL; |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
472 |
Float nx, ny, nz; |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
473 |
|
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
474 |
if (!PyArg_ParseTuple(args, "O!", &PyTuple_Type, &TNor)) |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
475 |
return NULL; |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
476 |
|
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
477 |
if (!PyArg_ParseTuple(TNor, "fff", &nx, &ny, &nz)) |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
478 |
return NULL; |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
479 |
|
91 | 480 |
((NormalVertexObject *)self)->nvertex->setNormal(Vector(nx,ny,nz).normalize()); |
28
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
481 |
|
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
482 |
Py_INCREF(Py_None); |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
483 |
return Py_None; |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
484 |
} |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
485 |
|
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
486 |
//=========================== Shape Object (abstract) =========================== |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
487 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
488 |
typedef struct { |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
489 |
PyObject_HEAD |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
490 |
Shape *shape; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
491 |
} ShapeObject; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
492 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
493 |
static void Shape_Destructor(PyObject* self); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
494 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
495 |
static PyMethodDef ShapeMethods[] = { |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
496 |
{NULL, NULL} |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
497 |
}; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
498 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
499 |
static PyTypeObject ShapeType = |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
500 |
TYPE_OBJECT( |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
501 |
"Shape", /* tp_name */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
502 |
sizeof(ShapeObject), /* tp_basicsize */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
503 |
Shape_Destructor, /* tp_dealloc */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
504 |
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
505 |
"Shape type (abstract)", /* tp_doc */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
506 |
ShapeMethods, /* tp_methods */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
507 |
0, /* tp_members */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
508 |
0, /* tp_base */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
509 |
0 /* tp_init */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
510 |
); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
511 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
512 |
static void Shape_Destructor(PyObject* self) |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
513 |
{ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
514 |
delete ((ShapeObject *)self)->shape; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
515 |
self->ob_type->tp_free(self); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
516 |
} |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
517 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
518 |
//=========================== Triangle Object =========================== |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
519 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
520 |
typedef struct { |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
521 |
ShapeObject shape; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
522 |
} TriangleObject; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
523 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
524 |
static PyObject *Triangle_Constructor(PyObject* self, PyObject* args, PyObject *kwd); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
525 |
static PyObject *Triangle_getNormal(PyObject* self, PyObject* args); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
526 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
527 |
static PyMethodDef TriangleMethods[] = { |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
528 |
{"getNormal", (PyCFunction)Triangle_getNormal, METH_NOARGS, "Get normal of whole triangle."}, |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
529 |
{NULL, NULL} |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
530 |
}; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
531 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
532 |
static PyTypeObject TriangleType = |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
533 |
TYPE_OBJECT( |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
534 |
"Triangle", /* tp_name */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
535 |
sizeof(TriangleObject), /* tp_basicsize */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
536 |
0, /* tp_dealloc */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
537 |
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
538 |
"Triangle type", /* tp_doc */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
539 |
TriangleMethods, /* tp_methods */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
540 |
0, /* tp_members */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
541 |
&ShapeType, /* tp_base */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
542 |
0 /* tp_init */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
543 |
); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
544 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
545 |
static PyObject* Triangle_Constructor(PyObject* self, PyObject* args, PyObject *kwd) |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
546 |
{ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
547 |
TriangleObject *v; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
548 |
MaterialObject *material; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
549 |
static char *kwdlist[] = {"A", "B", "C", "material", NULL}; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
550 |
NormalVertexObject *A, *B, *C; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
551 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
552 |
if (!PyArg_ParseTupleAndKeywords(args, kwd, "O!O!O!O!", kwdlist, |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
553 |
&NormalVertexType, &A, &NormalVertexType, &B, &NormalVertexType, &C, |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
554 |
&MaterialType, &material)) |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
555 |
return NULL; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
556 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
557 |
v = PyObject_New(TriangleObject, &TriangleType); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
558 |
v->shape.shape = new Triangle(A->nvertex, B->nvertex, C->nvertex, material->material); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
559 |
Py_INCREF(material); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
560 |
Py_INCREF(A); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
561 |
Py_INCREF(B); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
562 |
Py_INCREF(C); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
563 |
return (PyObject*)v; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
564 |
} |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
565 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
566 |
static PyObject* Triangle_getNormal(PyObject* self, PyObject* args) |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
567 |
{ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
568 |
PyObject *obj; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
569 |
|
91 | 570 |
Vector N = ((Triangle*)((TriangleObject *)self)->shape.shape)->getNormal(); |
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
571 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
572 |
obj = Py_BuildValue("(fff)", N.x, N.y, N.z); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
573 |
return obj; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
574 |
} |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
575 |
|
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
576 |
//=========================== Sphere Object =========================== |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
577 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
578 |
typedef struct { |
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
579 |
ShapeObject shape; |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
580 |
} SphereObject; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
581 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
582 |
static PyObject *Sphere_Constructor(PyObject* self, PyObject* args, PyObject *kwd); |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
583 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
584 |
static PyMethodDef SphereMethods[] = { |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
585 |
{NULL, NULL} |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
586 |
}; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
587 |
|
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
588 |
static PyTypeObject SphereType = |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
589 |
TYPE_OBJECT( |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
590 |
"Sphere", /* tp_name */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
591 |
sizeof(SphereObject), /* tp_basicsize */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
592 |
0, /* tp_dealloc */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
593 |
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
594 |
"Sphere type", /* tp_doc */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
595 |
SphereMethods, /* tp_methods */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
596 |
0, /* tp_members */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
597 |
&ShapeType, /* tp_base */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
598 |
0 /* tp_init */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
599 |
); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
600 |
|
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
601 |
static PyObject* Sphere_Constructor(PyObject* self, PyObject* args, PyObject *kwd) |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
602 |
{ |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
603 |
SphereObject *v; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
604 |
MaterialObject *material; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
605 |
static char *kwdlist[] = {"centre", "radius", "material", NULL}; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
606 |
PyObject *TCentre = NULL; |
22 | 607 |
Float cx, cy, cz, radius; |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
608 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
609 |
if (!PyArg_ParseTupleAndKeywords(args, kwd, "O!fO!", kwdlist, |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
610 |
&PyTuple_Type, &TCentre, &radius, &MaterialType, &material)) |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
611 |
return NULL; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
612 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
613 |
if (!PyArg_ParseTuple(TCentre, "fff", &cx, &cy, &cz)) |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
614 |
return NULL; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
615 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
616 |
v = PyObject_New(SphereObject, &SphereType); |
91 | 617 |
v->shape.shape = new Sphere(Vector(cx, cy, cz), radius, material->material); |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
618 |
Py_INCREF(material); |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
619 |
return (PyObject*)v; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
620 |
} |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
621 |
|
14
fc18ac4833f2
replace Plane with axis-aligned Box (because infinite Plane is not usable with kd-tree)
Radek Brich <radek.brich@devl.cz>
parents:
1
diff
changeset
|
622 |
//=========================== Box Object =========================== |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
623 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
624 |
typedef struct { |
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
625 |
ShapeObject shape; |
14
fc18ac4833f2
replace Plane with axis-aligned Box (because infinite Plane is not usable with kd-tree)
Radek Brich <radek.brich@devl.cz>
parents:
1
diff
changeset
|
626 |
} BoxObject; |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
627 |
|
14
fc18ac4833f2
replace Plane with axis-aligned Box (because infinite Plane is not usable with kd-tree)
Radek Brich <radek.brich@devl.cz>
parents:
1
diff
changeset
|
628 |
static PyObject *Box_Constructor(PyObject* self, PyObject* args, PyObject *kwd); |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
629 |
|
14
fc18ac4833f2
replace Plane with axis-aligned Box (because infinite Plane is not usable with kd-tree)
Radek Brich <radek.brich@devl.cz>
parents:
1
diff
changeset
|
630 |
static PyMethodDef BoxMethods[] = { |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
631 |
{NULL, NULL} |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
632 |
}; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
633 |
|
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
634 |
static PyTypeObject BoxType = |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
635 |
TYPE_OBJECT( |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
636 |
"Box", /* tp_name */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
637 |
sizeof(BoxObject), /* tp_basicsize */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
638 |
0, /* tp_dealloc */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
639 |
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
640 |
"Box type", /* tp_doc */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
641 |
BoxMethods, /* tp_methods */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
642 |
0, /* tp_members */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
643 |
&ShapeType, /* tp_base */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
644 |
0 /* tp_init */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
645 |
); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
646 |
|
14
fc18ac4833f2
replace Plane with axis-aligned Box (because infinite Plane is not usable with kd-tree)
Radek Brich <radek.brich@devl.cz>
parents:
1
diff
changeset
|
647 |
static PyObject* Box_Constructor(PyObject* self, PyObject* args, PyObject *kwd) |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
648 |
{ |
14
fc18ac4833f2
replace Plane with axis-aligned Box (because infinite Plane is not usable with kd-tree)
Radek Brich <radek.brich@devl.cz>
parents:
1
diff
changeset
|
649 |
BoxObject *v; |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
650 |
MaterialObject *material; |
14
fc18ac4833f2
replace Plane with axis-aligned Box (because infinite Plane is not usable with kd-tree)
Radek Brich <radek.brich@devl.cz>
parents:
1
diff
changeset
|
651 |
static char *kwdlist[] = {"L", "H", "material", NULL}; |
fc18ac4833f2
replace Plane with axis-aligned Box (because infinite Plane is not usable with kd-tree)
Radek Brich <radek.brich@devl.cz>
parents:
1
diff
changeset
|
652 |
PyObject *TL = NULL; |
fc18ac4833f2
replace Plane with axis-aligned Box (because infinite Plane is not usable with kd-tree)
Radek Brich <radek.brich@devl.cz>
parents:
1
diff
changeset
|
653 |
PyObject *TH = NULL; |
22 | 654 |
Float lx, ly, lz, hx, hy, hz; |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
655 |
|
14
fc18ac4833f2
replace Plane with axis-aligned Box (because infinite Plane is not usable with kd-tree)
Radek Brich <radek.brich@devl.cz>
parents:
1
diff
changeset
|
656 |
if (!PyArg_ParseTupleAndKeywords(args, kwd, "O!O!O!", kwdlist, |
fc18ac4833f2
replace Plane with axis-aligned Box (because infinite Plane is not usable with kd-tree)
Radek Brich <radek.brich@devl.cz>
parents:
1
diff
changeset
|
657 |
&PyTuple_Type, &TL, &PyTuple_Type, &TH, &MaterialType, &material)) |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
658 |
return NULL; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
659 |
|
14
fc18ac4833f2
replace Plane with axis-aligned Box (because infinite Plane is not usable with kd-tree)
Radek Brich <radek.brich@devl.cz>
parents:
1
diff
changeset
|
660 |
if (!PyArg_ParseTuple(TL, "fff", &lx, &ly, &lz)) |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
661 |
return NULL; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
662 |
|
14
fc18ac4833f2
replace Plane with axis-aligned Box (because infinite Plane is not usable with kd-tree)
Radek Brich <radek.brich@devl.cz>
parents:
1
diff
changeset
|
663 |
if (!PyArg_ParseTuple(TH, "fff", &hx, &hy, &hz)) |
fc18ac4833f2
replace Plane with axis-aligned Box (because infinite Plane is not usable with kd-tree)
Radek Brich <radek.brich@devl.cz>
parents:
1
diff
changeset
|
664 |
return NULL; |
fc18ac4833f2
replace Plane with axis-aligned Box (because infinite Plane is not usable with kd-tree)
Radek Brich <radek.brich@devl.cz>
parents:
1
diff
changeset
|
665 |
|
fc18ac4833f2
replace Plane with axis-aligned Box (because infinite Plane is not usable with kd-tree)
Radek Brich <radek.brich@devl.cz>
parents:
1
diff
changeset
|
666 |
v = PyObject_New(BoxObject, &BoxType); |
91 | 667 |
v->shape.shape = new Box(Vector(lx, ly, lz), Vector(hx, hy, hz), material->material); |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
668 |
Py_INCREF(material); |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
669 |
return (PyObject*)v; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
670 |
} |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
671 |
|
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
672 |
//=========================== Pixmap Object =========================== |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
673 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
674 |
typedef struct { |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
675 |
PyObject_HEAD |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
676 |
const Pixmap *pixmap; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
677 |
} PixmapObject; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
678 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
679 |
static PyObject* Pixmap_Constructor(PyObject* self, PyObject* args, PyObject *kwd); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
680 |
static PyObject* Pixmap_getWidth(PyObject* self, PyObject* args); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
681 |
static PyObject* Pixmap_getHeight(PyObject* self, PyObject* args); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
682 |
static PyObject* Pixmap_getCharData(PyObject* self, PyObject* args); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
683 |
static PyObject* Pixmap_writePNG(PyObject* self, PyObject* args); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
684 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
685 |
static PyMethodDef PixmapMethods[] = { |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
686 |
{"getWidth", (PyCFunction)Pixmap_getWidth, METH_NOARGS, "Get width of pixmap."}, |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
687 |
{"getHeight", (PyCFunction)Pixmap_getHeight, METH_NOARGS, "Get height of pixmap."}, |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
688 |
{"getCharData", (PyCFunction)Pixmap_getCharData, METH_NOARGS, "Get raw byte data."}, |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
689 |
{"writePNG", (PyCFunction)Pixmap_writePNG, METH_VARARGS, "Write pixmap to PNG file."}, |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
690 |
{NULL, NULL} |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
691 |
}; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
692 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
693 |
static PyTypeObject PixmapType = |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
694 |
TYPE_OBJECT( |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
695 |
"Pixmap", /* tp_name */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
696 |
sizeof(PixmapObject), /* tp_basicsize */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
697 |
0, /* tp_dealloc */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
698 |
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
699 |
"Pixmap type", /* tp_doc */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
700 |
PixmapMethods, /* tp_methods */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
701 |
0, /* tp_members */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
702 |
0, /* tp_base */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
703 |
0 /* tp_init */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
704 |
); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
705 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
706 |
static PyObject* Pixmap_Constructor(PyObject* self, PyObject* args, PyObject *kwd) |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
707 |
{ |
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
708 |
int w = 0, h = 0; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
709 |
PixmapObject *v; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
710 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
711 |
if (!PyArg_ParseTuple(args, "(ii)", &w, &h)) |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
712 |
return NULL; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
713 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
714 |
v = PyObject_New(PixmapObject, &PixmapType); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
715 |
v->pixmap = new Pixmap(w, h); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
716 |
return (PyObject*)v; |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
717 |
} |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
718 |
|
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
719 |
static PyObject* Pixmap_getWidth(PyObject* self, PyObject* args) |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
720 |
{ |
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
721 |
return Py_BuildValue("i", ((PixmapObject *)self)->pixmap->getWidth()); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
722 |
} |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
723 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
724 |
static PyObject* Pixmap_getHeight(PyObject* self, PyObject* args) |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
725 |
{ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
726 |
return Py_BuildValue("i", ((PixmapObject *)self)->pixmap->getHeight()); |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
727 |
} |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
728 |
|
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
729 |
static PyObject *Pixmap_getCharData(PyObject* self, PyObject* args) |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
730 |
{ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
731 |
unsigned char *chardata; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
732 |
int w,h; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
733 |
PyObject *o; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
734 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
735 |
chardata = ((PixmapObject *)self)->pixmap->getCharData(); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
736 |
w = ((PixmapObject *)self)->pixmap->getWidth(); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
737 |
h = ((PixmapObject *)self)->pixmap->getHeight(); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
738 |
o = Py_BuildValue("s#", chardata, w*h*3); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
739 |
delete[] chardata; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
740 |
return o; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
741 |
} |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
742 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
743 |
static PyObject *Pixmap_writePNG(PyObject* self, PyObject* args) |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
744 |
{ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
745 |
const char *fname; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
746 |
int res; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
747 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
748 |
if (!PyArg_ParseTuple(args, "s", &fname)) |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
749 |
return NULL; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
750 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
751 |
res = ((PixmapObject *)self)->pixmap->writePNG(fname); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
752 |
return Py_BuildValue("i", res); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
753 |
} |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
754 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
755 |
//=========================== Sampler Object (abstract) =========================== |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
756 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
757 |
typedef struct { |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
758 |
PyObject_HEAD |
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
759 |
Sampler *sampler; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
760 |
} SamplerObject; |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
761 |
|
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
762 |
static void Sampler_Destructor(PyObject* self); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
763 |
static PyObject* Sampler_getPixmap(PyObject* self, PyObject* args); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
764 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
765 |
static PyMethodDef SamplerMethods[] = { |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
766 |
{"getPixmap", (PyCFunction)Sampler_getPixmap, METH_NOARGS, "Get sampler's pixmap."}, |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
767 |
{NULL, NULL} |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
768 |
}; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
769 |
|
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
770 |
static PyTypeObject SamplerType = |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
771 |
TYPE_OBJECT( |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
772 |
"Sampler", /* tp_name */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
773 |
sizeof(SamplerObject), /* tp_basicsize */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
774 |
Sampler_Destructor, /* tp_dealloc */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
775 |
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
776 |
"Sampler type (abstract)", /* tp_doc */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
777 |
SamplerMethods, /* tp_methods */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
778 |
0, /* tp_members */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
779 |
0, /* tp_base */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
780 |
0 /* tp_init */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
781 |
); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
782 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
783 |
static void Sampler_Destructor(PyObject* self) |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
784 |
{ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
785 |
delete ((SamplerObject *)self)->sampler; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
786 |
self->ob_type->tp_free(self); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
787 |
} |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
788 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
789 |
static PyObject* Sampler_getPixmap(PyObject* self, PyObject* args) |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
790 |
{ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
791 |
PixmapObject *v = PyObject_New(PixmapObject, &PixmapType); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
792 |
v->pixmap = &((SamplerObject *)self)->sampler->getPixmap(); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
793 |
return (PyObject*)v; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
794 |
} |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
795 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
796 |
//=========================== DefaultSampler Object =========================== |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
797 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
798 |
typedef struct { |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
799 |
SamplerObject sampler; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
800 |
} DefaultSamplerObject; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
801 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
802 |
static PyObject *DefaultSampler_Constructor(PyObject* self, PyObject* args, PyObject *kwd); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
803 |
static PyObject* DefaultSampler_setSubsample(PyObject* self, PyObject* args); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
804 |
static PyObject* DefaultSampler_setOversample(PyObject* self, PyObject* args); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
805 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
806 |
static PyMethodDef DefaultSamplerMethods[] = { |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
807 |
{"setSubsample", (PyCFunction)DefaultSampler_setSubsample, METH_VARARGS, "Set subsampling mode."}, |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
808 |
{"setOversample", (PyCFunction)DefaultSampler_setOversample, METH_VARARGS, "Set oversampling mode."}, |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
809 |
{NULL, NULL} |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
810 |
}; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
811 |
|
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
812 |
static PyTypeObject DefaultSamplerType = |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
813 |
TYPE_OBJECT( |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
814 |
"DefaultSampler", /* tp_name */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
815 |
sizeof(DefaultSamplerObject), /* tp_basicsize */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
816 |
0, /* tp_dealloc */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
817 |
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
818 |
"DefaultSampler type", /* tp_doc */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
819 |
DefaultSamplerMethods, /* tp_methods */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
820 |
0, /* tp_members */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
821 |
&SamplerType, /* tp_base */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
822 |
0 /* tp_init */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
823 |
); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
824 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
825 |
static PyObject* DefaultSampler_Constructor(PyObject* self, PyObject* args, PyObject *kwd) |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
826 |
{ |
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
827 |
int w = 0, h = 0; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
828 |
PyObject *o1, *o2; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
829 |
DefaultSamplerObject *v; |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
830 |
|
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
831 |
if (!PyArg_ParseTuple(args, "O|O", &o1, &o2)) |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
832 |
return NULL; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
833 |
|
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
834 |
if (PyTuple_Check(o1)) |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
835 |
{ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
836 |
if (!PyArg_ParseTuple(o1, "ii", &w, &h)) |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
837 |
return NULL; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
838 |
} |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
839 |
else |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
840 |
if (!PyArg_ParseTuple(args, "ii", &w, &h)) |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
841 |
return NULL; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
842 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
843 |
v = PyObject_New(DefaultSamplerObject, &DefaultSamplerType); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
844 |
v->sampler.sampler = new DefaultSampler(w, h); |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
845 |
return (PyObject*)v; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
846 |
} |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
847 |
|
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
848 |
static PyObject* DefaultSampler_setSubsample(PyObject* self, PyObject* args) |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
849 |
{ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
850 |
int size = 0; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
851 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
852 |
if (!PyArg_ParseTuple(args, "i", &size)) |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
853 |
return NULL; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
854 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
855 |
((DefaultSampler *)((DefaultSamplerObject *)self)->sampler.sampler)->setSubsample(size); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
856 |
Py_INCREF(Py_None); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
857 |
return Py_None; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
858 |
} |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
859 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
860 |
static PyObject* DefaultSampler_setOversample(PyObject* self, PyObject* args) |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
861 |
{ |
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
862 |
int osa = 0; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
863 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
864 |
if (!PyArg_ParseTuple(args, "i", &osa)) |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
865 |
return NULL; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
866 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
867 |
((DefaultSampler *)((DefaultSamplerObject *)self)->sampler.sampler)->setOversample(osa); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
868 |
Py_INCREF(Py_None); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
869 |
return Py_None; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
870 |
} |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
871 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
872 |
//=========================== Container Object =========================== |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
873 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
874 |
typedef struct { |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
875 |
PyObject_HEAD |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
876 |
Container *container; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
877 |
} ContainerObject; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
878 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
879 |
static PyObject *Container_Constructor(PyObject* self, PyObject* args); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
880 |
static void Container_Destructor(PyObject* self); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
881 |
static PyObject* Container_optimize(PyObject* self, PyObject* args); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
882 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
883 |
static PyMethodDef ContainerMethods[] = { |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
884 |
{"optimize", (PyCFunction)Container_optimize, METH_NOARGS, "Build acceleration structures."}, |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
885 |
{NULL, NULL} |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
886 |
}; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
887 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
888 |
static PyTypeObject ContainerType = |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
889 |
TYPE_OBJECT( |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
890 |
"Container", /* tp_name */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
891 |
sizeof(ContainerObject), /* tp_basicsize */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
892 |
Container_Destructor, /* tp_dealloc */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
893 |
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
894 |
"Container type", /* tp_doc */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
895 |
ContainerMethods, /* tp_methods */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
896 |
0, /* tp_members */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
897 |
0, /* tp_base */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
898 |
0 /* tp_init */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
899 |
); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
900 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
901 |
static PyObject* Container_Constructor(PyObject* self, PyObject* args) |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
902 |
{ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
903 |
ContainerObject *v; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
904 |
v = PyObject_New(ContainerObject, &ContainerType); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
905 |
v->container = new Container(); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
906 |
return (PyObject*)v; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
907 |
} |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
908 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
909 |
static void Container_Destructor(PyObject* self) |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
910 |
{ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
911 |
delete ((ContainerObject *)self)->container; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
912 |
self->ob_type->tp_free(self); |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
913 |
} |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
914 |
|
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
915 |
static PyObject* Container_optimize(PyObject* self, PyObject* args) |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
916 |
{ |
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
917 |
((ContainerObject *)self)->container->optimize(); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
918 |
Py_INCREF(Py_None); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
919 |
return Py_None; |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
920 |
} |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
921 |
|
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
922 |
//=========================== Octree Object =========================== |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
923 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
924 |
typedef struct { |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
925 |
ContainerObject container; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
926 |
} OctreeObject; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
927 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
928 |
static PyObject* Octree_Constructor(PyObject* self, PyObject* args); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
929 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
930 |
static PyMethodDef OctreeMethods[] = { |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
931 |
{NULL, NULL} |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
932 |
}; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
933 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
934 |
static PyTypeObject OctreeType = |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
935 |
TYPE_OBJECT( |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
936 |
"Octree", /* tp_name */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
937 |
sizeof(OctreeObject), /* tp_basicsize */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
938 |
0, /* tp_dealloc */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
939 |
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
940 |
"Octree type", /* tp_doc */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
941 |
OctreeMethods, /* tp_methods */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
942 |
0, /* tp_members */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
943 |
&ContainerType, /* tp_base */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
944 |
0 /* tp_init */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
945 |
); |
28
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
946 |
|
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
947 |
static PyObject* Octree_Constructor(PyObject* self, PyObject* args) |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
948 |
{ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
949 |
OctreeObject *v; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
950 |
v = PyObject_New(OctreeObject, &OctreeType); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
951 |
v->container.container = new Octree(); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
952 |
return (PyObject*)v; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
953 |
} |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
954 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
955 |
//=========================== KdTree Object =========================== |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
956 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
957 |
typedef struct { |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
958 |
ContainerObject container; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
959 |
} KdTreeObject; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
960 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
961 |
static PyObject* KdTree_Constructor(PyObject* self, PyObject* args); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
962 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
963 |
static PyMethodDef KdTreeMethods[] = { |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
964 |
{NULL, NULL} |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
965 |
}; |
28
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
966 |
|
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
967 |
static PyTypeObject KdTreeType = |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
968 |
TYPE_OBJECT( |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
969 |
"KdTree", /* tp_name */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
970 |
sizeof(KdTreeObject), /* tp_basicsize */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
971 |
0, /* tp_dealloc */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
972 |
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
973 |
"KdTree type", /* tp_doc */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
974 |
KdTreeMethods, /* tp_methods */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
975 |
0, /* tp_members */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
976 |
&ContainerType, /* tp_base */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
977 |
0 /* tp_init */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
978 |
); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
979 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
980 |
static PyObject* KdTree_Constructor(PyObject* self, PyObject* args) |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
981 |
{ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
982 |
KdTreeObject *v; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
983 |
v = PyObject_New(KdTreeObject, &KdTreeType); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
984 |
v->container.container = new KdTree(); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
985 |
return (PyObject*)v; |
28
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
986 |
} |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
987 |
|
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
988 |
//=========================== Raytracer Object =========================== |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
989 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
990 |
typedef struct { |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
991 |
PyObject_HEAD |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
992 |
Raytracer *raytracer; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
993 |
vector<PyObject*> *children; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
994 |
} RaytracerObject; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
995 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
996 |
static PyObject *Raytracer_Constructor(PyObject* self, PyObject* args); |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
997 |
static void Raytracer_Destructor(PyObject* self); |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
998 |
static PyObject *Raytracer_render(PyObject* self, PyObject* args); |
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
999 |
static PyObject *Raytracer_setSampler(PyObject* self, PyObject* args); |
75
20dee9819b17
unify capitalization of method names in C++ and Python
Radek Brich <radek.brich@devl.cz>
parents:
72
diff
changeset
|
1000 |
static PyObject *Raytracer_setCamera(PyObject* self, PyObject* args); |
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1001 |
static PyObject *Raytracer_setTop(PyObject* self, PyObject* args); |
75
20dee9819b17
unify capitalization of method names in C++ and Python
Radek Brich <radek.brich@devl.cz>
parents:
72
diff
changeset
|
1002 |
static PyObject *Raytracer_setBgColour(PyObject* self, PyObject* args); |
20dee9819b17
unify capitalization of method names in C++ and Python
Radek Brich <radek.brich@devl.cz>
parents:
72
diff
changeset
|
1003 |
static PyObject *Raytracer_addShape(PyObject* self, PyObject* args); |
20dee9819b17
unify capitalization of method names in C++ and Python
Radek Brich <radek.brich@devl.cz>
parents:
72
diff
changeset
|
1004 |
static PyObject *Raytracer_addLight(PyObject* self, PyObject* args); |
20dee9819b17
unify capitalization of method names in C++ and Python
Radek Brich <radek.brich@devl.cz>
parents:
72
diff
changeset
|
1005 |
static PyObject *Raytracer_ambientOcclusion(PyObject* self, PyObject* args, PyObject *kwd); |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1006 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1007 |
static PyMethodDef RaytracerMethods[] = { |
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1008 |
{"render", (PyCFunction)Raytracer_render, METH_NOARGS, "Render scene."}, |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1009 |
{"setSampler", (PyCFunction)Raytracer_setSampler, METH_VARARGS, "Set sampler."}, |
75
20dee9819b17
unify capitalization of method names in C++ and Python
Radek Brich <radek.brich@devl.cz>
parents:
72
diff
changeset
|
1010 |
{"setCamera", (PyCFunction)Raytracer_setCamera, METH_VARARGS, "Set camera for the scene."}, |
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1011 |
{"setTop", (PyCFunction)Raytracer_setTop, METH_VARARGS, "Set top container for shapes."}, |
75
20dee9819b17
unify capitalization of method names in C++ and Python
Radek Brich <radek.brich@devl.cz>
parents:
72
diff
changeset
|
1012 |
{"setBgColour", (PyCFunction)Raytracer_setBgColour, METH_VARARGS, "Set background colour."}, |
20dee9819b17
unify capitalization of method names in C++ and Python
Radek Brich <radek.brich@devl.cz>
parents:
72
diff
changeset
|
1013 |
{"addShape", (PyCFunction)Raytracer_addShape, METH_VARARGS, "Add new shape to scene."}, |
20dee9819b17
unify capitalization of method names in C++ and Python
Radek Brich <radek.brich@devl.cz>
parents:
72
diff
changeset
|
1014 |
{"addLight", (PyCFunction)Raytracer_addLight, METH_VARARGS, "Add new light source to scene."}, |
20dee9819b17
unify capitalization of method names in C++ and Python
Radek Brich <radek.brich@devl.cz>
parents:
72
diff
changeset
|
1015 |
{"ambientOcclusion", (PyCFunction)Raytracer_ambientOcclusion, METH_VARARGS | METH_KEYWORDS, |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1016 |
"Set ambient occlusion parametrs - samples: int (0 = disable), distance: float, angle: float."}, |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1017 |
{NULL, NULL} |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1018 |
}; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1019 |
|
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1020 |
static PyTypeObject RaytracerType = |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1021 |
TYPE_OBJECT( |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1022 |
"Raytracer", /* tp_name */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1023 |
sizeof(RaytracerObject), /* tp_basicsize */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1024 |
Raytracer_Destructor, /* tp_dealloc */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1025 |
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1026 |
"Raytracer type", /* tp_doc */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1027 |
RaytracerMethods, /* tp_methods */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1028 |
0, /* tp_members */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1029 |
0, /* tp_base */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1030 |
0 /* tp_init */ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1031 |
); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1032 |
|
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1033 |
static PyObject* Raytracer_Constructor(PyObject* self, PyObject* args) |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1034 |
{ |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1035 |
RaytracerObject *v; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1036 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1037 |
if(!PyArg_ParseTuple(args, "")) |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1038 |
return NULL; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1039 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1040 |
v = PyObject_New(RaytracerObject, &RaytracerType); |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1041 |
v->raytracer = new Raytracer(); |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1042 |
v->children = new vector<PyObject*>(); |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1043 |
return (PyObject*)v; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1044 |
} |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1045 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1046 |
static void Raytracer_Destructor(PyObject* self) |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1047 |
{ |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1048 |
vector<PyObject*>::iterator o; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1049 |
for (o = ((RaytracerObject *)self)->children->begin(); |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1050 |
o != ((RaytracerObject *)self)->children->end(); o++) |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1051 |
Py_DECREF(*o); |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1052 |
delete ((RaytracerObject *)self)->raytracer; |
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1053 |
self->ob_type->tp_free(self); |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1054 |
} |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1055 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1056 |
static PyObject* Raytracer_render(PyObject* self, PyObject* args) |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1057 |
{ |
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1058 |
((RaytracerObject *)self)->raytracer->render(); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1059 |
Py_INCREF(Py_None); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1060 |
return Py_None; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1061 |
} |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1062 |
|
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1063 |
static PyObject* Raytracer_setSampler(PyObject* self, PyObject* args) |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1064 |
{ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1065 |
SamplerObject *samp; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1066 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1067 |
if (!PyArg_ParseTuple(args, "O!", &SamplerType, &samp)) |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1068 |
return NULL; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1069 |
|
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1070 |
((RaytracerObject *)self)->raytracer->setSampler(samp->sampler); |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1071 |
|
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1072 |
Py_INCREF(samp); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1073 |
Py_INCREF(Py_None); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1074 |
return Py_None; |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1075 |
} |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1076 |
|
75
20dee9819b17
unify capitalization of method names in C++ and Python
Radek Brich <radek.brich@devl.cz>
parents:
72
diff
changeset
|
1077 |
static PyObject* Raytracer_setCamera(PyObject* self, PyObject* args) |
59
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
1078 |
{ |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
1079 |
CameraObject *cam; |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
1080 |
|
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
1081 |
if (!PyArg_ParseTuple(args, "O!", &CameraType, &cam)) |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
1082 |
return NULL; |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
1083 |
|
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
1084 |
((RaytracerObject *)self)->raytracer->setCamera(cam->camera); |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
1085 |
|
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
1086 |
Py_INCREF(cam); |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
1087 |
Py_INCREF(Py_None); |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
1088 |
return Py_None; |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
1089 |
} |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
1090 |
|
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1091 |
static PyObject* Raytracer_setTop(PyObject* self, PyObject* args) |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1092 |
{ |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1093 |
ContainerObject *cont; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1094 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1095 |
if (!PyArg_ParseTuple(args, "O!", &ContainerType, &cont)) |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1096 |
return NULL; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1097 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1098 |
((RaytracerObject *)self)->raytracer->setTop(cont->container); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1099 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1100 |
Py_INCREF(cont); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1101 |
Py_INCREF(Py_None); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1102 |
return Py_None; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1103 |
} |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1104 |
|
75
20dee9819b17
unify capitalization of method names in C++ and Python
Radek Brich <radek.brich@devl.cz>
parents:
72
diff
changeset
|
1105 |
static PyObject* Raytracer_setBgColour(PyObject* self, PyObject* args) |
72
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
1106 |
{ |
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
1107 |
Float r,g,b; |
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
1108 |
|
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
1109 |
if (!PyArg_ParseTuple(args, "(fff)", &r, &g, &b)) |
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
1110 |
return NULL; |
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
1111 |
|
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
1112 |
((RaytracerObject *)self)->raytracer->setBgColour(Colour(r,g,b)); |
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
1113 |
|
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
1114 |
Py_INCREF(Py_None); |
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
1115 |
return Py_None; |
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
1116 |
} |
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
1117 |
|
75
20dee9819b17
unify capitalization of method names in C++ and Python
Radek Brich <radek.brich@devl.cz>
parents:
72
diff
changeset
|
1118 |
static PyObject* Raytracer_addShape(PyObject* self, PyObject* args) |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1119 |
{ |
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1120 |
ShapeObject *shape; |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1121 |
|
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1122 |
if (!PyArg_ParseTuple(args, "O!", &ShapeType, &shape)) |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1123 |
return NULL; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1124 |
|
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1125 |
((RaytracerObject *)self)->raytracer->addShape(shape->shape); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1126 |
((RaytracerObject *)self)->children->push_back((PyObject*)shape); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1127 |
Py_INCREF(shape); |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1128 |
Py_INCREF(Py_None); |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1129 |
return Py_None; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1130 |
} |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1131 |
|
75
20dee9819b17
unify capitalization of method names in C++ and Python
Radek Brich <radek.brich@devl.cz>
parents:
72
diff
changeset
|
1132 |
static PyObject* Raytracer_addLight(PyObject* self, PyObject* args) |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1133 |
{ |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1134 |
LightObject *lightobj; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1135 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1136 |
if (!PyArg_ParseTuple(args, "O!", &LightType, &lightobj)) |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1137 |
return NULL; |
72
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
Radek Brich <radek.brich@devl.cz>
parents:
69
diff
changeset
|
1138 |
((RaytracerObject *)self)->raytracer->addLight(lightobj->light); |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1139 |
((RaytracerObject *)self)->children->push_back((PyObject*)lightobj); |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1140 |
Py_INCREF(lightobj); |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1141 |
Py_INCREF(Py_None); |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1142 |
return Py_None; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1143 |
} |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1144 |
|
75
20dee9819b17
unify capitalization of method names in C++ and Python
Radek Brich <radek.brich@devl.cz>
parents:
72
diff
changeset
|
1145 |
static PyObject* Raytracer_ambientOcclusion(PyObject* self, PyObject* args, PyObject *kwd) |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1146 |
{ |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1147 |
int samples = 0; |
22 | 1148 |
Float distance = 0.0, angle = 0.0; |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1149 |
static char *kwdlist[] = {"samples", "distance", "angle", NULL}; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1150 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1151 |
if (!PyArg_ParseTupleAndKeywords(args, kwd, "iff", kwdlist, |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1152 |
&samples, &distance, &angle)) |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1153 |
return NULL; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1154 |
|
75
20dee9819b17
unify capitalization of method names in C++ and Python
Radek Brich <radek.brich@devl.cz>
parents:
72
diff
changeset
|
1155 |
((RaytracerObject *)self)->raytracer->ambientOcclusion(samples, distance, angle); |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1156 |
Py_INCREF(Py_None); |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1157 |
return Py_None; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1158 |
} |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1159 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1160 |
//=========================== Module Methods =========================== |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1161 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1162 |
static PyMethodDef ModuleMethods[] = { |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1163 |
{"Raytracer", (PyCFunction) Raytracer_Constructor, |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1164 |
METH_VARARGS, "Raytracer object constructor."}, |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1165 |
{"Light", (PyCFunction) Light_Constructor, |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1166 |
METH_VARARGS | METH_KEYWORDS, "Light source object constructor."}, |
59
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
1167 |
{"Camera", (PyCFunction) Camera_Constructor, |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
48
diff
changeset
|
1168 |
METH_VARARGS | METH_KEYWORDS, "Camera object constructor."}, |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1169 |
{"Material", (PyCFunction) Material_Constructor, |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1170 |
METH_VARARGS | METH_KEYWORDS, "Material object constructor."}, |
28
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
1171 |
{"NormalVertex", (PyCFunction) NormalVertex_Constructor, |
ffe83ca074f3
smooth triangles (aka Phong shading)
Radek Brich <radek.brich@devl.cz>
parents:
22
diff
changeset
|
1172 |
METH_VARARGS | METH_KEYWORDS, "NormalVertex object constructor."}, |
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1173 |
{"Triangle", (PyCFunction) Triangle_Constructor, |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1174 |
METH_VARARGS | METH_KEYWORDS, "Triangle object constructor."}, |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1175 |
{"Sphere", (PyCFunction) Sphere_Constructor, |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1176 |
METH_VARARGS | METH_KEYWORDS, "Sphere object constructor."}, |
14
fc18ac4833f2
replace Plane with axis-aligned Box (because infinite Plane is not usable with kd-tree)
Radek Brich <radek.brich@devl.cz>
parents:
1
diff
changeset
|
1177 |
{"Box", (PyCFunction) Box_Constructor, |
fc18ac4833f2
replace Plane with axis-aligned Box (because infinite Plane is not usable with kd-tree)
Radek Brich <radek.brich@devl.cz>
parents:
1
diff
changeset
|
1178 |
METH_VARARGS | METH_KEYWORDS, "Box object constructor."}, |
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1179 |
{"Pixmap", (PyCFunction) Pixmap_Constructor, |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1180 |
METH_VARARGS | METH_KEYWORDS, "Pixmap object constructor."}, |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1181 |
{"DefaultSampler", (PyCFunction) DefaultSampler_Constructor, |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1182 |
METH_VARARGS | METH_KEYWORDS, "DefaultSampler object constructor."}, |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1183 |
{"Container", (PyCFunction) Container_Constructor, |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1184 |
METH_NOARGS, "Container object constructor."}, |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1185 |
{"Octree", (PyCFunction) Octree_Constructor, |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1186 |
METH_NOARGS, "Octree object constructor."}, |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1187 |
{"KdTree", (PyCFunction) KdTree_Constructor, |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1188 |
METH_NOARGS, "KdTree object constructor."}, |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1189 |
{NULL, NULL} |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1190 |
}; |
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1191 |
|
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1192 |
|
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1193 |
extern "C" void initpyrit(void) |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1194 |
{ |
90
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1195 |
PyObject* m; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1196 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1197 |
if (PyType_Ready(&RaytracerType) < 0 |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1198 |
|| PyType_Ready(&LightType) < 0 |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1199 |
|| PyType_Ready(&CameraType) < 0 |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1200 |
|| PyType_Ready(&MaterialType) < 0 |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1201 |
|| PyType_Ready(&NormalVertexType) < 0 |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1202 |
|| PyType_Ready(&ShapeType) < 0 |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1203 |
|| PyType_Ready(&TriangleType) < 0 |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1204 |
|| PyType_Ready(&SphereType) < 0 |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1205 |
|| PyType_Ready(&BoxType) < 0 |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1206 |
|| PyType_Ready(&PixmapType) < 0 |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1207 |
|| PyType_Ready(&SamplerType) < 0 |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1208 |
|| PyType_Ready(&DefaultSamplerType) < 0 |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1209 |
|| PyType_Ready(&ContainerType) < 0 |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1210 |
|| PyType_Ready(&OctreeType) < 0 |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1211 |
|| PyType_Ready(&KdTreeType) < 0 |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1212 |
) |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1213 |
return; |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1214 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1215 |
m = Py_InitModule3("pyrit", ModuleMethods, "Pyrit ray tracer."); |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1216 |
|
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1217 |
if (m == NULL) |
f6a72eb99631
rename Python module from 'raytracer' to 'pyrit'
Radek Brich <radek.brich@devl.cz>
parents:
89
diff
changeset
|
1218 |
return; |
0
3547b885df7e
initial commit, raytracer source as written year ago and unchanged since 2007-03-25
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1219 |
} |