From 6492ba6b4107a4da228e18db4fc5fc871bfb0579 Mon Sep 17 00:00:00 2001 From: epoch Date: Wed, 17 Aug 2022 21:34:02 -0500 Subject: updated README to show that everything that got deleted went to an -extras repo. also, hackvr script updated to be better bash --- share/hackvr/examples/anonet_map/map | 74 ------------------------- share/hackvr/examples/anonet_map/paths-to-edges | 5 -- share/hackvr/examples/anonet_map/run | 8 --- 3 files changed, 87 deletions(-) delete mode 100755 share/hackvr/examples/anonet_map/map delete mode 100755 share/hackvr/examples/anonet_map/paths-to-edges delete mode 100755 share/hackvr/examples/anonet_map/run (limited to 'share/hackvr/examples/anonet_map') diff --git a/share/hackvr/examples/anonet_map/map b/share/hackvr/examples/anonet_map/map deleted file mode 100755 index 51a9e59..0000000 --- a/share/hackvr/examples/anonet_map/map +++ /dev/null @@ -1,74 +0,0 @@ -#!/bin/bash -echo $USER set title anonet_AS_map - -paths="$(ncat --recv-only 21.41.41.1 64777 | sort | uniq | tee ${PREFIX}/var/cache/hackvr/anonet_data.new)" - -MAP=${PREFIX}/var/cache/hackvr/anonet_map.hackvr -mkdir -p ${PREFIX}/var/cache/hackvr/ - -#see if the data actually changed before regenerating this shit... -if cmp ${PREFIX}/var/cache/hackvr/anonet_data.new ${PREFIX}/var/cache/hackvr/anonet_data.old ; then - cat $MAP - exit 0 -fi - -mv ${PREFIX}/var/cache/hackvr/anonet_data.new ${PREFIX}/var/cache/hackvr/anonet_data.old - -> $MAP - -nodes=$(printf "%s\n" "$paths" | tr ' ' '\n' | sort | uniq) -nodes_count="$(printf "%s\n" "$nodes" | tr ' ' '\n' | wc -l | tr -cd '0-9')" -#echo $nodes -#echo $nodes_count -echo $USER move 0 0 -20 -coords="$( (for node in $nodes;do - printf "AS%s addshape 4 2 0 8 0 0 0 0\n" "$node" - printf "AS* rotate 0 0 +%d\n" "$[360 / ${nodes_count} ]" - printf "AS* flatten\n" -done -printf "* export *\n" -) | hackvr_headless 2>/dev/null | sed 's/^*_AS//g' | cut '-d ' -f5,6)" -#printf "%s\n" "$coords" -xcoords="$(printf "%s\n" "$coords" | cut '-d ' -f1)" -ycoords="$(printf "%s\n" "$coords" | cut '-d ' -f2)" - -#echo $xcoords -#echo $ycoords - -edges=$(printf "%s\n" "$paths" | tr '\n' '\0' | xargs -n1 -0 ./paths-to-edges | sort | uniq | tr ' ' '_') - -index_of() { - printf "%s\n" "$nodes" | grep -n '^'"$1"'$' | cut -d: -f1 -} - -xcoord_by_ASN() { - printf "%s\n" "$xcoords" | head -n "$(index_of $1)" | tail -n1 -} - -ycoord_by_ASN() { - printf "%s\n" "$ycoords" | head -n "$(index_of $1)" | tail -n1 -} - -line_between_nodes() { - a=$(printf "%s\n" "$1" | cut -d_ -f1) - b=$(printf "%s\n" "$1" | cut -d_ -f2) - printf "%s->%s addshape 2 2 %s %s 0 %s %s 0\n" "$a" "$b" $(xcoord_by_ASN $a) $(ycoord_by_ASN $a) $(xcoord_by_ASN $b) $(ycoord_by_ASN $b) -} - -for node in $nodes;do - printf " addshape 5 4 -1 8 0 -1 10 0 1 10 0 1 8 0\n" "$node" - printf "$' | sed 's/^<\(.*\)>$/\1/g' | tr '\n' '\0' | xargs -n1 -0 copy_start_nevermind.sh & - fi - done -- cgit v1.2.3