diff options
author | N.N. <matju@users.sourceforge.net> | 2008-04-28 18:10:15 +0000 |
---|---|---|
committer | N.N. <matju@users.sourceforge.net> | 2008-04-28 18:10:15 +0000 |
commit | 91c0003b158e5f0ed9d0677fb136ae8bb6f86ec5 (patch) | |
tree | d413a48086819f6a2620cd27d030861d122d4f3f /externals/gridflow/bin | |
parent | 98dfdfa2fc1c92ba69e33fd77ed3392034297c1f (diff) |
this is an old gridflow, and there's already a svn repository at http://gridflow.ca/svn/trunk
svn path=/trunk/; revision=9739
Diffstat (limited to 'externals/gridflow/bin')
-rwxr-xr-x | externals/gridflow/bin/backtrace | 18 | ||||
-rwxr-xr-x | externals/gridflow/bin/demangle | 4 | ||||
-rwxr-xr-x | externals/gridflow/bin/jmax2pd | 29 | ||||
-rwxr-xr-x | externals/gridflow/bin/plusminus | 39 |
4 files changed, 0 insertions, 90 deletions
diff --git a/externals/gridflow/bin/backtrace b/externals/gridflow/bin/backtrace deleted file mode 100755 index ac1358af..00000000 --- a/externals/gridflow/bin/backtrace +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/env ruby -if ARGV.length != 1 - puts "usage: core.rb <corefile>" - exit 1 -end -qfile=ARGV[0].gsub /'/, "\\\\'" -x=`gdb --batch -c '#{qfile}'`.split"\n" -m=/`([^']+)/.match x[0] -f=File.open("/tmp/backtrace_#{$$}.gdb","w") -f.puts"bt" -f.puts"quit" -f.close -cmd="gdb #{m[1]} #{qfile} --command=/tmp/backtrace_#{$$}.gdb" -x=`#{cmd}`.split("\n") -i=nil -x.each_with_index {|line,i| break if /^#0/ =~ line } -x[0..i]=[] -puts x diff --git a/externals/gridflow/bin/demangle b/externals/gridflow/bin/demangle deleted file mode 100755 index 923bca25..00000000 --- a/externals/gridflow/bin/demangle +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env ruby -f = File.popen "gdb", "r+" -f.puts "maintenance demangle #{ARGV[0]}", "quit" -puts f.read.split("\n")[-2].sub(/^\(gdb\) /,"") diff --git a/externals/gridflow/bin/jmax2pd b/externals/gridflow/bin/jmax2pd deleted file mode 100755 index 5510656a..00000000 --- a/externals/gridflow/bin/jmax2pd +++ /dev/null @@ -1,29 +0,0 @@ -#!/usr/bin/env ruby - -require "gridflow" -require "gridflow/extra/jmax_format.rb" -require "gridflow/extra/puredata_format.rb" -include GridFlow -#GridFlow.verbose = true - -iname,oname = ARGV -if not iname - raise "usage: jmax2pd <input.jmax> [<output.pd>]" -end -if not oname - oname = iname.sub(/\.jmax$/,".pd") -end -keep=["broken","jpatcher","button","slider","messbox"] -GridFlow.instance_eval{@fclasses_set.delete_if {|k,v| - not keep.include? k -}} -#p GridFlow.instance_eval{@fclasses_set.keys.sort} - -jfr = JMaxFileReader.new(File.open(iname),FObject) -FObject.broken_ok = true -FObject.do_loadbangs = false -my_patcher = jfr.parse -pfw = PureDataFileWriter.new(oname) -pfw.write_patcher my_patcher -pfw.close - diff --git a/externals/gridflow/bin/plusminus b/externals/gridflow/bin/plusminus deleted file mode 100755 index 685014ce..00000000 --- a/externals/gridflow/bin/plusminus +++ /dev/null @@ -1,39 +0,0 @@ -#!/usr/bin/env ruby -# NOTE: this works with diff -u only!!! - -puts "-"*64 - -$plustot=0 -$minustot=0 - -def show - printf "%20s %+5d %+5d (net %+5d)\n", $file, $plus, -$minus, $plus-$minus -end - -loop{ - line = gets - break if not line - if /^diff/.match line then - x = line.split(/\s+/) - $plustot+=$plus if $plus - $minustot+=$minus if $minus - show if $file - $file = x[-1] - $on=false - $plus=0 - $minus=0 - elsif /^\@\@/ =~ line then $on=true - elsif $on and /^\+/ =~ line then $plus+=1 - elsif $on and /^\-/ =~ line then $minus+=1 - end -} - -$plustot+=$plus if $plus -$minustot+=$minus if $minus -show if $file - -$file="total" -$plus=$plustot -$minus=$minustot -puts "-"*64 -show |