forked from reaper-oss/sws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
reascript_python.pl
executable file
·128 lines (103 loc) · 3.38 KB
/
reascript_python.pl
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
#!/usr/bin/perl
# Original script by Cockos (http://landoleet.org/dev/sws/)
# JFB mods: tailored for the SWS/S&M extension:
# - re-use rpr_ internal functions from reaper_python import
# - gets function pointers with rpr_getfp()
# - removed "RPR_" prefix
require "reascript_helper.pl";
$arg=shift @ARGV;
$arg eq "-x64" and $isx64=1;
($funclist, $rtype, $ptypes)=ReadAPIFuncs();
print <<EOF;
from reaper_python import *
EOF
sub PyType
{
my ($t)=@_;
$t eq "void" and return "None";
($t eq "bool" || $t eq "char") and return "c_byte";
IsInt($t) and return "c_int";
$t eq "float" and return "c_float";
$t eq "double" and return "c_double";
IsString($t) and return "c_char_p";
IsPlainDataPtr($t) and return "c_void_p";
IsOpaquePtr($t) and return ($isx64 ? "c_uint64" : "c_uint"); # includes void*
die "unknown type $t";
}
sub PyPack
{
my ($t, $v)=@_;
IsPlainData($t) and return sprintf "%s(%s)", PyType($t), $v;
($t eq "const char*" && $v ne "bytestr") and return sprintf "rpr_packsc(%s)", $v;
($t eq "const char*" && $v eq "bytestr") and return sprintf "c_char_p(%s)", $v;
$t eq "char*" and return sprintf "rpr_packs(%s)", $v;
# todo handle char**
IsPlainDataPtr($t) and return sprintf "%s(%s)", PyType(UnderlyingType($t)), $v;
IsOpaquePtr($t) and return sprintf "rpr_packp('%s',%s)", $t, $v;
die "unknown type $t";
}
sub PyUnpack
{
my ($t, $ov, $v)=@_;
(IsPlainData($t) || IsOpaquePtr($t) || $t eq "const char*") and return $ov;
$t eq "char*" and return sprintf "rpr_unpacks(%s)", $v;
# todo handle char**
($t eq "bool*" || IsInt(UnderlyingType($t))) and return sprintf "int(%s.value)", $v;
($t eq "float*" || $t eq "double*") and return sprintf "float(%s.value)", $v;
IsPlainDataPtr($t) and return PyUnpack(UnderlyingType($t), $v);
die "unknown type $t";
}
sub PyRetUnpack
{
my ($t, $v)=@_;
$t eq "const char*" and return sprintf "str(%s.decode())", $v;
IsOpaquePtr($t) and return sprintf "rpr_unpackp('%s',%s)", $t, $v;
return $v;
}
ReadAPIFuncs();
foreach $fname (@$funclist)
{
$fname eq "ValidatePtr" and next;
$fname eq "GetAudioAccessorSamples" and next;
# remove this to test python export (if _TEST_REASCRIPT_EXPORT is #define'd in ReaScript.cpp)
if ($fname =~ /^SNM_test/)
{
next;
}
@inparms=();
@proto=();
@pack=();
@cparms=();
@unpack=();
push @proto, PyType($rtype->{$fname});
$byref=0;
$i=0;
foreach $t (split(",", $ptypes->{$fname}))
{
($t ne "const char*") and $t =~ s/const //;
push @inparms, "p$i";
push @proto, PyType($t);
push @pack, PyPack($t, "p$i");
push @cparms, (IsPlainDataPtr($t) && !IsString($t) ? "byref(t[$i])" : "t[$i]");
push @unpack, PyUnpack($t, "p$i", "t[$i]");
IsPlainDataPtr($t) and $byref=1;
++$i;
}
$isvoid=($rtype->{$fname} eq "void");
printf "def $fname(%s):\n", join(",", @inparms);
printf " a=rpr_getfp('$fname')\n"; # errors out if key does not exist
printf " f=CFUNCTYPE(%s)(a)\n", join(",", @proto);
@pack and printf " t=(%s%s)\n", join(",", @pack), (@pack == 1 ? ",": "");
printf " %sf(%s)\n", ($isvoid ? "" : "r="), join(",", @cparms);
if ($byref)
{
$isvoid or unshift @unpack, PyRetUnpack($rtype->{$fname}, "r");
printf " return (%s)\n", join(",", @unpack);
}
elsif (!$isvoid)
{
printf " return %s\n", PyRetUnpack($rtype->{$fname}, "r");
}
print "\n";
}
print STDERR "Parsed " . @$funclist . " functions\n";