Admin Panel
### Class GateMOS: Create a MorphOS gatestub file #############################
BEGIN {
package GateMOS;
use vars qw(@ISA);
@ISA = qw( Gate );
sub new {
my $proto = shift;
my $class = ref($proto) || $proto;
my $self = $class->SUPER::new( @_ );
bless ($self, $class);
return $self;
}
sub header {
my $self = shift;
$self->SUPER::header (@_);
if ($sdi eq 0) {
print "#include <emul/emulregs.h>\n\n";
print "int $gateprefix" . "UNIMPLEMENTED(void)";
}
else {
print "#include <SDI_lib.h>\n\n";
print "LIBSTUB(UNIMPLEMENTED, int)";
}
if ($self->{PROTO}) {
print ";";
}
else {
print "\n";
print "{\n";
print " // nothing\n";
print " return 0;\n";
print "}\n";
}
print "\n";
}
sub function_start {
my $self = shift;
my %params = @_;
my $prototype = $params{'prototype'};
my $sfd = $self->{SFD};
my $rettype_prefix = $prototype->{return};
my $rettype_postfix = "";
if ($prototype->{return} =~ /(.*\(\*+)(\).*)/) {
$rettype_prefix = $1;
$rettype_postfix = $2;
}
if ($sdi eq 0) {
print "$rettype_prefix ";
print "$gateprefix$prototype->{funcname}(void)$rettype_postfix";
}
else {
if ($prototype->{return} =~ /\(\*+\)/) {
print "LIBSTUB($prototype->{funcname}, void *)";
}
else {
print "LIBSTUB($prototype->{funcname}, $prototype->{return})";
}
}
if ($self->{PROTO}) {
print ";";
}
else {
print "\n";
print "{\n";
if ($sdi ne 0) {
print " __BASE_OR_IFACE = (__BASE_OR_IFACE_TYPE)REG_A6;\n";
print " return CALL_LFUNC($prototype->{funcname}";
}
}
}
sub function_arg {
my $self = shift;
if (!$self->{PROTO}) {
my %params = @_;
my $prototype = $params{'prototype'};
my $argtype = $params{'argtype'};
my $argname = $params{'argname'};
my $argreg = $params{'argreg'};
my $argnum = $params{'argnum'};
my $sfd = $self->{SFD};
if($argtype eq "va_list") {
$argtype = "long *";
}
my $argdef = $argtype . " " . $argname;
if ($argtype =~ /\(\*+\)/) {
$argdef = $argtype;
$argdef =~ s/\(\*+\)/\(\*$argname\)/g;
}
if ($sdi eq 0) {
print " $argdef = ($argtype)REG_" . (uc $argreg) . ";\n";
}
else {
print ", ($argtype)REG_" . (uc $argreg);
}
}
}
sub function_end {
my $self = shift;
if (!$self->{PROTO}) {
my %params = @_;
my $prototype = $params{'prototype'};
my $sfd = $self->{SFD};
if ($sdi eq 0) {
if ($libarg ne 'none' && !$prototype->{nb}) {
print " $sfd->{basetype} _base = ($sfd->{basetype})"."REG_A6;\n";
}
print " return $libprefix$prototype->{funcname}(";
if ($libarg eq 'first' && !$prototype->{nb}) {
print "_base";
print $prototype->{numargs} > 0 ? ", " : "";
}
print join (', ', @{$prototype->{___argnames}});
if ($libarg eq 'last' && !$prototype->{nb}) {
print $prototype->{numargs} > 0 ? ", " : "";
print "_base";
}
}
print ");\n";
print "}\n";
}
}
}