mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 23:05:04 +01:00
update luadoc scripts
This commit is contained in:
parent
f4bed602e8
commit
cac89c0b42
2 changed files with 15 additions and 3 deletions
|
|
@ -42,6 +42,13 @@ foreach (json_decode (\$json, true) as \$a) {
|
||||||
if (substr (\$a['decl'], 0, 11) == 'luabridge::') { continue; }
|
if (substr (\$a['decl'], 0, 11) == 'luabridge::') { continue; }
|
||||||
|
|
||||||
\$a['decl'] = str_replace ('size_t', 'unsigned long', \$a['decl']);
|
\$a['decl'] = str_replace ('size_t', 'unsigned long', \$a['decl']);
|
||||||
|
\$a['decl'] = str_replace ('uint32_t', 'unsigned int', \$a['decl']);
|
||||||
|
\$a['decl'] = str_replace ('framepos_t', 'long', \$a['decl']);
|
||||||
|
\$a['decl'] = str_replace ('frameoffset_t', 'long', \$a['decl']);
|
||||||
|
\$a['decl'] = str_replace ('int64_t', 'long', \$a['decl']);
|
||||||
|
\$a['decl'] = str_replace ('uint8_t', 'unsigned char', \$a['decl']);
|
||||||
|
\$a['decl'] = str_replace ('pframes_t', 'unsigned int', \$a['decl']);
|
||||||
|
\$a['decl'] = str_replace ('uint64_t', 'unsigned long', \$a['decl']);
|
||||||
\$canon = str_replace (' *', '*', \$a['decl']);
|
\$canon = str_replace (' *', '*', \$a['decl']);
|
||||||
\$api[\$canon] = \$a;
|
\$api[\$canon] = \$a;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -155,8 +155,12 @@ function canonical_ctor ($b) {
|
||||||
|
|
||||||
function canonical_decl ($b) {
|
function canonical_decl ($b) {
|
||||||
$rv = '';
|
$rv = '';
|
||||||
|
$pfx = '';
|
||||||
# match clang's declatation format
|
# match clang's declatation format
|
||||||
if (preg_match('/[^(]*\(([^)*]*)\*\)\((.*)\)/', $b['decl'], $matches)) {
|
if (preg_match('/[^(]*\(([^)*]*)\*\)\((.*)\)/', $b['decl'], $matches)) {
|
||||||
|
if (strpos ($b['type'], 'Free Function') !== false) {
|
||||||
|
$pfx = str_replace (':', '::', luafn2class ($b['lua'])) . '::';
|
||||||
|
}
|
||||||
$fn = substr ($b['lua'], 1 + strrpos ($b['lua'], ':'));
|
$fn = substr ($b['lua'], 1 + strrpos ($b['lua'], ':'));
|
||||||
$rv = $matches[1] . $fn . '(';
|
$rv = $matches[1] . $fn . '(';
|
||||||
$arglist = preg_split ('/, */', $matches[2]);
|
$arglist = preg_split ('/, */', $matches[2]);
|
||||||
|
|
@ -165,16 +169,17 @@ function canonical_decl ($b) {
|
||||||
if (!$first) { $rv .= ', '; }; $first = false;
|
if (!$first) { $rv .= ', '; }; $first = false;
|
||||||
if (empty ($a)) { continue; }
|
if (empty ($a)) { continue; }
|
||||||
$a = preg_replace ('/([^>]) >/', '$1>', $a);
|
$a = preg_replace ('/([^>]) >/', '$1>', $a);
|
||||||
$a = preg_replace ('/^.*::/', '', $a);
|
$a = preg_replace ('/^Cairo::/', '', $a); // special case cairo enums
|
||||||
$a = preg_replace ('/([^ ])&/', '$1 &', $a);
|
$a = preg_replace ('/([^ ])&/', '$1 &', $a);
|
||||||
$a = str_replace ('vector', 'std::vector', $a);
|
$a = str_replace ('vector', 'std::vector', $a);
|
||||||
|
$a = str_replace ('std::string', 'string', $a);
|
||||||
$a = str_replace ('string const', 'const string', $a);
|
$a = str_replace ('string const', 'const string', $a);
|
||||||
$a = str_replace ('string', 'std::string', $a);
|
$a = str_replace ('string', 'std::string', $a);
|
||||||
$rv .= $a;
|
$rv .= $a;
|
||||||
}
|
}
|
||||||
$rv .= ')';
|
$rv .= ')';
|
||||||
}
|
}
|
||||||
return $rv;
|
return $pfx . $rv;
|
||||||
}
|
}
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
@ -513,7 +518,7 @@ function format_doxydoc ($f) {
|
||||||
if (!empty ($doc)) {
|
if (!empty ($doc)) {
|
||||||
$rv.= '<tr><td></td><td class="doc" colspan="2"><div class="dox">'.$doc;
|
$rv.= '<tr><td></td><td class="doc" colspan="2"><div class="dox">'.$doc;
|
||||||
$rv.= '</div></td></tr>'.NL;
|
$rv.= '</div></td></tr>'.NL;
|
||||||
} else if (0) { # debug
|
} else if (1) { # debug
|
||||||
$rv.= '<tr><td></td><td class="doc" colspan="2"><p>'.htmlentities($f['cand']).'</p>';
|
$rv.= '<tr><td></td><td class="doc" colspan="2"><p>'.htmlentities($f['cand']).'</p>';
|
||||||
$rv.= '</td></tr>'.NL;
|
$rv.= '</td></tr>'.NL;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue