Files @ a58b80c85b6f
Branch filter:

Location: EI/VirtualLeaf/src/build_models/translate_plugin.pl

Michael Guravage
Cleanup: e.g. removed commented out and otherwise disabled code.
--
user: Michael Guravage <michael.guravage@cwi.nl>
branch 'default'

changed src/OptionFileDialog.cpp
changed src/OptionFileDialog.h
changed src/UniqueMessage.cpp
changed src/VirtualLeaf.cpp
changed src/apoplastitem.cpp
changed src/apoplastitem.h
changed src/build_models/auxingrowthplugin.cpp
changed src/build_models/meinhardtplugin.cpp
changed src/build_models/testplugin.h
changed src/canvas.cpp
changed src/canvas.h
changed src/cell.cpp
changed src/cell.h
changed src/cellbase.cpp
changed src/cellbase.h
changed src/data_plot.cpp
changed src/data_plot.h
changed src/flux_function.h
changed src/forwardeuler.cpp
changed src/infobar.h
changed src/mainbase.cpp
changed src/mainbase.h
changed src/matrix.cpp
changed src/mesh.h
changed src/modelcatalogue.cpp
changed src/node.cpp
changed src/node.h
changed src/nodeitem.cpp
changed src/nodeset.h
changed src/output.cpp
changed src/output.h
changed src/parse.cpp
changed src/parse.h
changed src/random.cpp
changed src/random.h
changed src/sqr.h
changed src/vector.h
changed src/vleafmodel.h
changed src/wall.cpp
changed src/wallbase.cpp
changed src/wallbase.h
changed src/wallitem.cpp
changed src/wallitem.h
changed src/warning.cpp
changed src/warning.h
changed src/xmlwrite.cpp
#!/usr/bin/perl

$cfilename = shift(@ARGV) || die "Usage: translate_plugin.pl [cfile] [hfile] [profile]\n";
$hfilename = shift(@ARGV) || die "Usage: translate_plugin.pl [cfile] [hfile] [profile]\n";
$pfilename = shift(@ARGV) || die "Usage: translate_plugin.pl [cfile] [hfile] [profile]\n";

$ocfname = $cfilename; $ocfname =~ s/\.cpp/_tl.cpp/g;
$ohfname = $hfilename; $ohfname =~ s/\.h/_tl.h/g;
$opfname = $pfilename; $opfname =~ s/\.pro/_tl.pro/g;

print STDERR "Translating '$cfilename' to '$ocfname', '$hfilename' to '$ohfname', and '$pfilename' to '$opfname'\n";

open cfile,"<$cfilename";
open ocfile,">$ocfname";

while (<cfile>) {
	
	#s/$hfilename/$ohfname/g;
    
	# translate function definitions
	if (/[a-zA-Z0-9 ]*::OnDivide/) {
		s/ParentInfo &parent_info/ParentInfo *parent_info/g;
		s/CellBase &daughter1/CellBase *daughter1/g;
		s/CellBase &daughter2/CellBase *daughter2/g;
	}
	
	if (/[a-zA-Z0-9 ]*::SetCellColor/) {
		s/CellBase &c/CellBase *c/g;
		s/QColor &color/QColor *color/g;
	}
	
	if (/[a-zA-Z0-9 ]*::CellHouseKeeping/) {
		s/CellBase &c/CellBase *c/g;
	}
	
	# translate member function calls
	s/\bparent_info\b\./parent_info->/g;
	s/\bdaughter1\b\./daughter1->/g;
	s/\bdaughter2\b\./daughter2->/g;
	s/\bc\b\./c->/g;
	s/\bcolor\b\./color->/g;
	print ocfile;
	
}

open hfile,"<$hfilename";
open ohfile,">$ohfname";

while (<hfile>) {
	if (/[ \t]*virtual[ \t]+void[ \t]+CellHouseKeeping/) {
		s/CellBase &c/CellBase *c/g;
	}
	if (/[ \t]*virtual[ \t]+void[ \t]+OnDivide/) {
		s/ParentInfo &parent_info/ParentInfo *parent_info/g;
		s/CellBase &daughter1/CellBase *daughter1/g;
		s/CellBase &daughter2/CellBase *daughter2/g;
	}
	if (/[ \t]*virtual[ \t]+void[ \t]+SetCellColor/) {
		s/CellBase &c/CellBase *c/g;
		s/QColor &color/QColor *color/g;
	}
	
	
	print ohfile;
	
}

open pfile,"<$pfilename";
open opfile,">$opfname";

while (<pfile>) {
	
	s/\bplugin\b\.h/plugin_tl\.h/g;
	s/\bplugin\b\.cpp/plugin_tl\.cpp/g;
	
	print opfile;
	
}