-
-
Notifications
You must be signed in to change notification settings - Fork 318
/
Copy pathUnit1.pas
302 lines (272 loc) · 8.54 KB
/
Unit1.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
unit Unit1;
interface
uses
SysUtils, Classes,
Windows, Messages, Graphics, Controls, Forms, Dialogs,
StdCtrls, ComCtrls, ExtCtrls,
PythonEngine, Vcl.PythonGUIInputOutput;
type
TForm1 = class(TForm)
PythonEngine1: TPythonEngine;
Memo1: TMemo;
PythonType1: TPythonType;
PythonModule1: TPythonModule;
Panel1: TPanel;
Button1: TButton;
Splitter1: TSplitter;
Button2: TButton;
Button3: TButton;
OpenDialog1: TOpenDialog;
SaveDialog1: TSaveDialog;
PythonDelphiVar1: TPythonDelphiVar;
Button4: TButton;
Edit1: TEdit;
PythonGUIInputOutput1: TPythonGUIInputOutput;
Memo2: TMemo;
procedure Button1Click(Sender: TObject);
procedure PythonModule1Initialization(Sender: TObject);
procedure PythonType1Initialization(Sender: TObject);
procedure Button2Click(Sender: TObject);
procedure Button3Click(Sender: TObject);
procedure Button4Click(Sender: TObject);
procedure PythonDelphiVar1Change(Sender: TObject);
procedure PythonDelphiVar1GetData(Sender: TObject; var Data: Variant);
procedure PythonDelphiVar1SetData(Sender: TObject; Data: Variant);
private
public
end;
PyPointRec = record
ob_refcnt : NativeUInt;
ob_type : PPyTypeObject;
po_x : Integer;
po_y : Integer;
end;
PPyPoint = ^PyPointRec;
function spam_foo( self, args : PPyObject ) : PPyObject; cdecl;
function spam_CreatePoint( self, args : PPyObject ) : PPyObject; cdecl;
function spam_getdouble( self, args : PPyObject ) : PPyObject; cdecl;
procedure PyPoint_dealloc(obj : PPyObject); cdecl;
function PyPoint_getattr(obj : PPyObject; key : PAnsiChar) : PPyObject; cdecl;
function PyPoint_setattrfunc(obj : PPyObject; key : PAnsiChar; value : PPyObject) : Integer; cdecl;
function PyPoint_repr(obj : PPyObject) : PPyObject; cdecl;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
begin
PythonEngine1.ExecStrings( Memo1.Lines );
end;
// Here's an example of functions defined for the module spam
function spam_foo( self, args : PPyObject ) : PPyObject; cdecl;
begin
with GetPythonEngine do
begin
ShowMessage( 'args of foo: '+PyObjectAsString(args) );
Result := ReturnNone;
end;
end;
// This function is used to create a PyPoint instance
function spam_CreatePoint( self, args : PPyObject ) : PPyObject; cdecl;
var
x, y : Integer;
p : PPyPoint;
begin
with GetPythonEngine do
begin
// We want x and y values as argument
if PyArg_ParseTuple( args, 'ii:CreatePoint',@x, @y) <> 0 then
begin
new(p);
with p^ do
begin
ob_refcnt := 1;
ob_type := TypeByName('Point');
// or we could write, because it's quicker:
// ob_type := Form1.PythonType1.TheTypePtr;
po_x := x;
po_y := y;
end;
Result := PPyObject(p);
end
else
Result := nil;
end;
end;
function spam_getdouble( self, args : PPyObject ) : PPyObject; cdecl;
// you need to pass floating point numbers as doubles to Py_BuildValue
Const
x : double = 2.7172;
y : double = 3.14159;
z : double = 1.2e-12;
begin
with GetPythonEngine do
begin
Result := Py_BuildValue('(iiddid)',42,815,x,y,4711,z);
end;
end;
procedure TForm1.PythonModule1Initialization(Sender: TObject);
begin
// In a module initialization, we just need to add our
// new methods
with Sender as TPythonModule do
begin
AddMethod( 'foo', spam_foo, 'foo' );
AddMethod( 'CreatePoint', spam_CreatePoint,
'function CreatePoint'+LF+
'Args: x, y'+LF+
'Result: a new Point object' );
AddMethod( 'getdouble', spam_getdouble, 'getdouble' );
end;
end;
// Here's an example of a new type object.
// That's more complex than a new module, but here's a
// template that you can follow.
// Here's the destructor of the object
procedure PyPoint_dealloc(obj : PPyObject); cdecl;
begin
Dispose(obj);
end;
// Here's the read access to the attributes of an object.
// In fact it is called each time you write:
// object.value
// object.method(args)
function PyPoint_getattr(obj : PPyObject; key : PAnsiChar) : PPyObject; cdecl;
var
Py_Key: PPyObject;
begin
with GetPythonEngine, PPyPoint(obj)^ do
begin
// Check for attribute x
if key = 'x' then
Result := PyLong_FromLong( po_x )
// Check for attribute y
else if key = 'y' then
Result := PyLong_FromLong( po_y )
else
begin
// Else check for a method
Py_Key := PyUnicodeFromString(key);
try
Result := PyObject_GenericGetAttr(obj, Py_key);
if not Assigned(Result) then
PyErr_SetString (PyExc_AttributeError^, PAnsiChar(Utf8Encode(Format('Unknown attribute "%s"',[key]))));
finally
Py_DECREF(Py_Key);
end;
end;
end;
end;
// Here's the write access to the attributes of an object.
// In fact it is called each time you write:
// object.value = 1
function PyPoint_setattrfunc(obj : PPyObject; key : PAnsiChar; value : PPyObject) : Integer; cdecl;
begin
Result := -1;
with GetPythonEngine, PPyPoint(obj)^ do
begin
// Check for attribute x
if key = 'x' then begin
if PyLong_Check(value) then
begin
po_x := PyLong_AsLong(value);
Result := 0;
end
else
PyErr_SetString (PyExc_AttributeError^, PAnsiChar(Utf8Encode(Format('Attribute "%s" needs an integer',[key]))));
// Check for attribute y
end else if key = 'y' then begin
if PyLong_Check(value) then
begin
po_y := PyLong_AsLong(value);
Result := 0;
end
else
PyErr_SetString (PyExc_AttributeError^, PAnsiChar(Utf8Encode(Format('Attribute "%s" needs an integer',[key]))));
end else
PyErr_SetString (PyExc_AttributeError^, PAnsiChar(Utf8Encode(Format('Unknown attribute "%s"',[key]))));
end;
end;
// Here's how an object should be represented, when printed for instance.
function PyPoint_repr(obj : PPyObject) : PPyObject; cdecl;
begin
with GetPythonEngine, PPyPoint(obj)^ do
begin
Result := PyUnicodeFromString(Format('(%d, %d)',[po_x, po_y]));
end;
end;
// Here's a method of the object PyPoint
function PyPoint_OffsetBy(self, args : PPyObject) : PPyObject; cdecl;
var
x, y : Integer;
begin
with GetPythonEngine, PPyPoint(self)^ do
begin
if PyArg_ParseTuple( args, 'ii:OffsetBy',@x, @y) <> 0 then
begin
Inc( po_x, x );
Inc( po_y, y );
Result := ReturnNone;
end
else
Result := nil;
end;
end;
procedure TForm1.PythonType1Initialization(Sender: TObject);
Var
PyType : PyTypeObject;
begin
with (Sender as TPythonType) do
begin
// In the initialization of a new type, we must
// define the attributes of this type
PyType := TheType;
with PyType do
begin
tp_basicsize := sizeof(PyPointRec);
tp_dealloc := PyPoint_dealloc;
tp_getattr := PyPoint_getattr;
tp_setattr := PyPoint_setattrfunc;
tp_repr := PyPoint_repr;
tp_str := PyPoint_repr;
end;
TheType := PyType;
// And then add the methods of the object, if needed
AddMethod( 'OffsetBy', PyPoint_OffsetBy, 'OffsetBy(dx, dy)' );
end;
end;
procedure TForm1.Button2Click(Sender: TObject);
begin
with OpenDialog1 do
begin
if Execute then
Memo1.Lines.LoadFromFile( FileName );
end;
end;
procedure TForm1.Button3Click(Sender: TObject);
begin
with SaveDialog1 do
begin
if Execute then
Memo1.Lines.SaveToFile( FileName );
end;
end;
procedure TForm1.Button4Click(Sender: TObject);
begin
ShowMessage( 'Value = ' + PythonDelphiVar1.ValueAsString );
end;
procedure TForm1.PythonDelphiVar1Change(Sender: TObject);
begin
with Sender as TPythonDelphiVar do
ShowMessage( 'Var test changed: ' + ValueAsString );
end;
procedure TForm1.PythonDelphiVar1GetData(Sender: TObject;
var Data: Variant);
begin
Data := Edit1.Text;
end;
procedure TForm1.PythonDelphiVar1SetData(Sender: TObject; Data: Variant);
begin
Edit1.Text := Data;
end;
end.