本帖最后由 523066680 于 2015-8-18 22:38 编辑
【我的Perl脚本不管有没有卵用还是要发布的系列】
实质上是一个多重HSAH结构的编辑、浏览工具,ID那个没有搞加密,存储密码的时候暂时用助记码或者密码提醒。


ActivePerl V5.16, Win32, 需要安装模块:YAML
而 Win32::Console 为 ActivePerl自带
选择YAML是因为即使没有这个工具,直接打开YAML文件也可以直观的浏览信息
脚本保存为UTF-8文本格式,反正就是很长不改了哈哈哈 | | | | | | | | | | | use utf8; | | use strict; | | no strict 'refs'; | | use Time::HiRes 'sleep'; | | use IO::Handle; | | use Encode; | | use Data::Dumper; | | STDOUT->autoflush(1); | | | | | | use Win32::Console; | | our $env_ref; | | our $env_ref_name; | | our ($MAX_COL, $MAX_LINE) = (120, 30); | | our $MATRIX = $MAX_COL * $MAX_LINE; | | | | our $IN = Win32::Console->new(STD_INPUT_HANDLE); | | our $OUT= Win32::Console->new(STD_OUTPUT_HANDLE); | | system("mode con cols=$MAX_COL"); | | $OUT->Window(1, 0, 0, 119, 29); | | | | our $IN_DEFAULT = $IN->Mode(); | | | | our $File; | | $File=encode('gbk', "D:\\备忘录.yaml"); | | | | $OUT->Cursor(1, 1, 99, 1); | | | | | | $IN->Mode(ENABLE_MOUSE_INPUT); | | $OUT->FillAttr($FG_WHITE | $BG_CYAN, $MATRIX, 0, 0); | | | | | | my %hash; | | my @info; | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | &load_data(\%hash, $File); | | | | GO_BACK: | | | | our @indent=(1); | | @info=(); | | $indent[1] = &expand(\%hash, \%{$info[0]}, "", $indent[0]); | | | | our @prev=(); | | our $INDENT = 2; | | | | my ($mx, $my); | | my $BackupRect; | | my $max_level=6; | | my $cur_level=0; | | | | GO_CONTINUE: | | while (1) | | { | | sleep 0.02; | | my @arr = $IN->Input(); | | my $inside; | | | | if ($arr[0]==2) | | { | | ($mx, $my) = ($arr[1], $arr[2]); | | $inside = 0; | | | | for my $i (0 .. $max_level) | | { | | my $j = $i+1; | | for my $path (keys %{$info[$i]}) | | { | | | | | | if ( inItem( $info[$i]{$path}, @arr[1,2] ) ) | | { | | $inside++; | | } | | | | if ( inItem( $info[$i]{$path}, @arr[1,2] ) | | and | | $info[$i]{$path}{light}==0 ) | | { | | | | $OUT->Cursor(0,0); | | | | HighLightItem( $info[$i]{$path} ); | | | | | | if (defined $prev[$j]) | | { | | ClearLight( $info[$j]{$prev[$j]} ); | | undef $prev[$j]; | | for my $clear ($j..$max_level) | | { | | undef %{$info[$clear]}; | | } | | } | | | | $indent[$j+1] = | | expand( | | $info[$i]{$path}{'self'}, | | $info[$j], | | $path, | | $indent[$j]+$INDENT | | ); | | | | | | ClearLight( $info[$i]{$prev[$i]} ); | | $prev[$i]=$path; | | } | | | | | | if ( inDetail($info[$i]{$path}, @arr[1,2]) ) | | { | | show_info( | | $info[$i]{$path}, | | $indent[$j]+$INDENT, | | \$BackupRect | | ); | | } | | | | | | if ( inItem($info[$i]{$path}, @arr[1,2]) and $arr[3]==1 ) | | { | | show_detail( $info[$i]{$path}{'self'} ); | | } | | | | | | if ( inItem($info[$i]{$path}, @arr[1,2]) and $arr[3]==2 ) | | { | | | | | | for my $clear ($j..$max_level) | | { | | | | } | | | | context_menu( | | $indent[$j], $arr[2], $info[$i], $path, $i | | ); | | | | } | | } | | } | | | | if ($inside > 0) | | { | | } | | | | $OUT->Cursor($mx, $my); | | } elsif ($arr[0]==1 and $arr[1]==1 and $arr[5]==27) { | | &save(\%hash, $File); | | $OUT->Cls(); | | exit; | | } elsif ($arr[0]==1 and $arr[1]==1 and lc(chr($arr[5])) eq 's') { | | &save(\%hash, $File); | | wrong("", "save!"); | | } elsif ($arr[0]==1 and $arr[1]==1 and $arr[3]==116) { | | goto GO_BACK; | | } | | } | | | | sub expand | | { | | my ($ref, $info, $parent, $indent) = @_; | | my ($cx, $cy) = ( $indent, 1 ); | | ClearRect($cx, $MAX_COL, 1, $MAX_LINE); | | my $mark; | | my $max=0; | | my $len=0; | | my @fold; | | my @file; | | | | %$info=(); | | my $tkid; | | foreach my $kid (sort keys %$ref) | | { | | next if ($kid eq 'note'); | | $tkid = $kid; | | $mark = $parent .":". $kid; | | $tkid =~s/^\d_//; | | | | if ( (keys %{$ref->{$kid}} ) > 1 ) | | { | | $tkid = "/". $tkid; | | push @fold, $mark; | | } else { | | push @file, $mark; | | } | | | | $tkid = " $tkid "; | | $len = length($tkid); | | $max = $len if ( $len > $max ); | | | | $$info{$mark} = { | | "x" => $cx, | | "light" => 0, | | "str" => $tkid, | | "self" => $ref->{$kid}, | | "parent"=> $ref, | | }; | | } | | | | foreach ( @fold, @file) | | { | | $$info{$_}{"y"} = $cy++; | | $$info{$_}{"length"} = $max; | | | | $OUT->Cursor($$info{$_}{x}, $$info{$_}{y}); | | $OUT->Write($$info{$_}{str}); | | $OUT->FillAttr( | | $FG_WHITE|$BG_CYAN, | | $$info{$_}{length}, | | $$info{$_}{x}, | | $$info{$_}{y} | | ); | | } | | return $max+$indent; | | } | | | | | | sub show_detail | | { | | my $item_ref = shift; | | my @arr; | | my $BACKUP; | | my $tmpstr; | | $BACKUP = $OUT->ReadRect(1, 1, $MAX_COL, $MAX_LINE); | | | | SHOW: | | $OUT->Cls(); | | $OUT->Cursor(0,1); | | | | my @detail; | | $tmpstr = join("\n", @{ $item_ref->{'note'} }); | | if ($tmpstr=~/\t[^\t]+\t/) | | { | | @detail = &tabformat( $item_ref->{'note'} ); | | print join("\n", @detail); | | } else { | | print $tmpstr; | | } | | | | my $inp; | | while (1) | | { | | sleep 0.1; | | @arr=$IN->Input(); | | if ($arr[0]==1 and $arr[5]==27) { | | last; | | } elsif ($arr[0]==1 and $arr[3]==17) { | | $inp = inputBar( $item_ref ); | | $OUT->Cursor(0, 0); | | goto SHOW; | | } | | } | | $OUT->Cls(); | | $OUT->FillAttr($FG_WHITE | $BG_CYAN, $MATRIX, 0, 0); | | $OUT->WriteRect($BACKUP, 1, 1, $MAX_COL, $MAX_LINE); | | } | | | | sub show_info | | { | | my ($info, $indent, $PREV_RECT) = @_; | | my ($mx, $my); | | my @arr=(); | | my $inity = 8; | | my ($cx, $cy)=($indent, $inity); | | my $col_area = $MAX_COL - $indent - 1; | | | | my $line_area = $MAX_LINE - $cy; | | $PREV_RECT = $OUT->ReadRect($cx, $cy, $MAX_COL, $MAX_LINE); | | &ClearRect($cx, $MAX_COL, $cy, $MAX_LINE); | | | | my $i = 0; | | my $tmpstr; | | my $nn; | | my @detail; | | my @notes; | | | | if ( exists $info->{'self'}{'note'} ) | | { | | @notes = @{ $info->{'self'}{'note'} }; | | } | | else | | { | | @notes = (); | | } | | | | $tmpstr=join("\n", @notes ); | | if ($tmpstr=~/\t[^\t]+\t/) | | { | | @detail = tabformat( \@notes ); | | } | | | | foreach ( @notes ) | | { | | $i++; | | $nn=sprintf("%02d ",$i); | | if ($#detail < 0) { | | $tmpstr=$_; | | $tmpstr=~s/\t/ /g; | | $tmpstr=substr($nn . $tmpstr, 0, $col_area); | | } else { | | $tmpstr=substr($nn . $detail[$i-1], 0, $col_area); | | } | | $OUT->Cursor($cx, $cy); | | $OUT->Write( $tmpstr ); | | $OUT->FillAttr($FG_YELLOW|$BG_CYAN, $col_area, $cx, $cy++); | | last if ($cy >= ($MAX_LINE-1)); | | } | | | | if ($i==0) | | { | | $OUT->Cursor($cx, $cy); | | $OUT->Write("There is nothing"); | | $OUT->FillAttr($FG_YELLOW|$BG_CYAN, $col_area, $cx, $cy); | | } | | | | | | my ($x, $y, $len) = ( | | $info->{'x'}, | | $info->{'y'}, | | $info->{'length'} | | ); | | | | while (1) | | { | | sleep 0.03; | | @arr=$IN->Input(); | | if ($arr[0]==2) | | { | | ($mx, $my) = ($arr[1], $arr[2]); | | $OUT->Cursor($mx, $my); | | if (not inDetail( $info, $mx, $my) ) | | { | | $OUT->WriteRect($PREV_RECT, $cx, $inity, $MAX_COL, $MAX_LINE); | | last; | | } | | } | | } | | } | | | | FILL_CLEAR: { | | sub ClearLight | | { | | my $hash = shift; | | $OUT->FillAttr($FG_WHITE | $BG_CYAN, $$hash{length}, $$hash{x}, $$hash{y}); | | $$hash{light}=0; | | } | | | | sub ClearLight_menu | | { | | my $hash = shift; | | $OUT->FillAttr($FG_YELLOW | $BG_BLUE, $$hash{length}, $$hash{x}, $$hash{y}); | | $$hash{light}=0; | | } | | | | sub ClearRect | | { | | my ($left, $right, $top, $bottom) = @_; | | my $delta=$right-$left; | | foreach ($top..$bottom) { | | $OUT->FillChar(" ", $delta, $left, $_); | | $OUT->FillAttr($FG_WHITE | $BG_CYAN, $delta, $left, $_); | | } | | } | | | | sub ClearRect_byColor | | { | | my ($color, $left, $right, $top, $bottom) = @_; | | my $delta = $right - $left; | | foreach ($top .. $bottom) { | | $OUT->FillChar(" ", $delta, $left, $_); | | $OUT->FillAttr($color, $delta, $left, $_); | | } | | } | | | | sub fill_line | | { | | my ($str, $length, $attr, $line) = @_; | | $OUT->FillChar($str, $length, 0, $line); | | $OUT->FillAttr($attr, $length, 0, $line); | | } | | | | sub HighLightItem | | { | | my $info_ref = shift; | | $OUT->FillAttr( | | $FG_BLACK | $BG_WHITE, | | $info_ref->{length}, | | $info_ref->{x}, | | $info_ref->{y} | | ); | | $info_ref->{light}=1; | | } | | } | | | | sub context_menu | | { | | | | | | | | | | my @arr; | | my ($initx, $inity, $info, $path, $lv) = @_; | | my @menu; | | | | my @menu_inf = (); | | my $menus = | | { | | | | '0_添加目录' => 'add_item', | | '1_重命名' => 'rename_item', | | '2_复制' => 'copy_tree', | | '3_粘贴' => 'paste_tree', | | '4_删除' => 'delete_item', | | | | '2_信息' => { | | '0_编辑' => 'edit_notes', | | '0_复制' => 'copy_to_clip', | | '1_粘贴' => 'append_from_clip', | | '2_清除' => 'delete_notes', | | '3_+BANK' => 'BANK_to_notes', | | '3_+ID' => 'ID_to_notes', | | }, | | | | '3_新建' => { | | '1_Normal' => 'add_sub_item', | | '2_ID' => 'add_sub_item_ID', | | '3_Bank' => 'add_sub_item_BANK', | | '4_Date' => 'add_date_item', | | }, | | | | }; | | | | | | my $PREV_RECT = $OUT->ReadRect( | | $initx, 1, $MAX_COL, $MAX_LINE | | ); | | | | ClearRect($initx, $MAX_COL, 1, $MAX_LINE); | | | | my @prev; | | my @indent; | | my $j; | | my $max_level = 4; | | $indent[0] = $initx + 1; | | $indent[1] = | | expand_menu($menus, \%{$menu_inf[0]}, "", $indent[0], $inity); | | | | CONTEXT_WHILE: while (1) | | { | | sleep 0.03; | | @arr = $IN->Input(); | | | | my $inside = 0; | | if ($arr[0] == 2) | | { | | ($mx, $my) = ($arr[1], $arr[2]); | | | | for my $i (0..$max_level) | | { | | $j = $i+1; | | for my $m_path (keys %{$menu_inf[$i]}) | | { | | | | | | if ( inItem( $menu_inf[$i]{$m_path}, @arr[1,2] )) { | | $inside++; | | | | | | if ( $arr[3]==1 and defined $menu_inf[$i]{$m_path}->{'func'} ) | | { | | &{ $menu_inf[$i]{$m_path}->{'func'} }( | | $$info{$path}{'parent'}, $path, $lv | | ); | | last CONTEXT_WHILE; | | } | | } | | | | if ( | | inItem( $menu_inf[$i]{$m_path}, @arr[1,2] ) | | and | | $menu_inf[$i]{$m_path}{light}==0 | | ) | | { | | | | if ( defined $prev[$j] ) | | { | | | | undef $prev[$j]; | | for my $clear ($j..$max_level) | | { | | undef %{$menu_inf[$clear]}; | | } | | } | | | | $indent[$j+1] = | | expand_menu( | | $menu_inf[$i]{$m_path}{'self'}, | | $menu_inf[$j], | | $m_path, | | $indent[$j]+1, | | $my | | ); | | | | | | ClearLight_menu( $menu_inf[$i]{$prev[$i]} ); | | HighLightItem( $menu_inf[$i]{$m_path} ); | | $prev[$i]=$m_path; | | } | | } | | } | | } | | | | | | | | if ($inside == 0 and ( not inItem( $$info{$path}, @arr[1,2])) ) | | { | | last; | | } | | } | | | | $OUT->WriteRect($PREV_RECT, $initx, 1, $MAX_COL, $MAX_LINE); | | | | } | | | | sub expand_menu | | { | | my ($ref, $info, $parent, $indent, $cy) = @_; | | my $cx = $indent; | | my $mark; | | my $max=0; | | my $len=0; | | my @fold; | | my @file; | | | | ClearRect($cx, $MAX_COL, 1, $MAX_LINE); | | | | %$info=(); | | my $tkid; | | foreach my $kid (sort keys %$ref) | | { | | next if ($kid eq 'note'); | | | | $tkid = encode('gbk', $kid); | | $tkid =~s/\d_//; | | $mark = $parent .":". $kid; | | | | | | if ( (keys %{$ref->{$kid}} ) > 0 ) | | { | | $tkid = " $tkid ->"; | | push @fold, $mark; | | } else { | | $tkid = " $tkid "; | | push @file, $mark; | | } | | | | $len = length($tkid); | | $max = $len if ( $len > $max ); | | | | $$info{$mark} = { | | "x" => $cx, | | "light" => 0, | | "str" => $tkid, | | "self" => $ref->{$kid}, | | "parent"=> $ref, | | }; | | | | if ( (keys %{$ref->{$kid}} ) == 0 ) | | { | | $$info{$mark}{'func'} = \&{ $ref->{$kid} }; | | } | | | | } | | | | foreach ( @fold, @file ) | | { | | $$info{$_}{"y"} = $cy++; | | $$info{$_}{"length"} = $max; | | | | $OUT->Cursor($$info{$_}{x}, $$info{$_}{y}); | | $OUT->Write($$info{$_}{str}."\b"); | | | | $OUT->FillAttr( | | $FG_YELLOW|$BG_BLUE, | | $$info{$_}{length}, | | $$info{$_}{x}, | | $$info{$_}{y} | | ); | | } | | | | return $max+$indent; | | } | | | | MENU_FUNC: | | { | | sub add_item | | { | | our @prev; | | our @indent; | | my ($parent_ref, $path, $lv) = @_; | | my $newkey; | | | | $newkey = &lineInput(); | | return 0 if ($newkey eq 'exit'); | | | | if ( exists $parent_ref->{"$newkey"} ) | | { | | wrong("", "key exists"); | | return 0; | | } | | | | $parent_ref->{"$newkey"} = { | | 'note' => [], | | }; | | undef $prev[$lv]; | | | | my $adjust; | | $adjust = ( $lv == 0 ? 0 : $INDENT ); | | | | $indent[$lv+1] = | | expand($parent_ref, $info[$lv], $path, $indent[$lv]+$adjust); | | | | goto GO_CONTINUE; | | } | | | | sub add_sub_item | | { | | our @prev; | | our @indent; | | my ($parent_ref, $path, $lv) = @_; | | my $newkey; | | my $last_key; | | | | $newkey = &lineInput(); | | return 0 if ($newkey eq 'exit'); | | | | $path=~/:([^:]+)$/; | | $last_key = $1; | | if ( exists $parent_ref->{$last_key}{$newkey} ) | | { | | wrong("", "key exists"); | | return 0; | | } | | | | $parent_ref->{$last_key}{$newkey} = { | | 'note'=>[], | | }; | | undef $prev[$lv]; | | | | my $adjust; | | $adjust = ( $lv == 0 ? 0 : $INDENT ); | | | | $indent[$lv+1] = | | expand($parent_ref, $info[$lv], $path, $indent[$lv]+$adjust); | | goto GO_CONTINUE; | | } | | | | sub add_date_item | | { | | our @prev; | | our @indent; | | my ($parent_ref, $path, $lv) = @_; | | my $newkey; | | my $last_key; | | | | $newkey = get_date(); | | | | $path=~/:([^:]+)$/; | | $last_key = $1; | | if ( exists $parent_ref->{$last_key}{$newkey} ) | | { | | wrong("", "key exists"); | | return 0; | | } | | | | $parent_ref->{$last_key}{$newkey} = { | | 'note'=>[], | | }; | | undef $prev[$lv]; | | | | my $adjust; | | $adjust = ( $lv == 0 ? 0 : $INDENT ); | | | | $indent[$lv+1] = | | expand($parent_ref, $info[$lv], $path, $indent[$lv]+$adjust); | | goto GO_CONTINUE; | | } | | | | | | sub add_sub_item_BANK | | { | | our @prev; | | our @indent; | | my ($parent_ref, $path, $lv) = @_; | | my $newkey; | | my $last_key; | | | | $newkey = &lineInput(); | | return 0 if ($newkey eq 'exit'); | | | | $path=~/:([^:]+)$/; | | $last_key = $1; | | if ( exists $parent_ref->{$last_key}{$newkey} ) | | { | | wrong("", "key exists"); | | return 0; | | } | | $parent_ref->{$last_key}{$newkey} = { | | 'note' => [ | | encode('gbk', " "x4 . " 开行点: "), | | encode('gbk', " "x4 . " 姓名: "), | | encode('gbk', " "x4 . " 卡号: "), | | encode('gbk', " "x4 . " 登录名: "), | | encode('gbk', " "x4 . "passkey: "), | | encode('gbk', " "x4 . " code: "), | | encode('gbk', " "x4 . " USBKey: "), | | encode('gbk', " "x4 . " mark: "), | | encode('gbk', " "x4 . " date: "), | | ], | | }; | | undef $prev[$lv]; | | | | my $adjust; | | $adjust = ( $lv == 0 ? 0 : $INDENT ); | | | | $indent[$lv+1] = | | expand($parent_ref, $info[$lv], $path, $indent[$lv]+$adjust); | | goto GO_CONTINUE; | | } | | | | sub add_sub_item_ID | | { | | our @prev; | | our @indent; | | my ($parent_ref, $path, $lv) = @_; | | my $newkey; | | my $last_key; | | | | $newkey = &lineInput(); | | return 0 if ($newkey eq 'exit'); | | | | $path=~/:([^:]+)$/; | | $last_key = $1; | | if ( exists $parent_ref->{$last_key}{$newkey} ) | | { | | wrong("", "key exists"); | | return 0; | | } | | $parent_ref->{$last_key}{$newkey} = { | | 'note' => [ | | ' website: ', | | ' E-mail: ', | | encode('gbk', ' ID: '), | | encode('gbk', ' 昵称: '), | | encode('gbk', ' 密码提示: '), | | encode('gbk', ' 问题1: '), | | encode('gbk', ' 答案1: '), | | encode('gbk', ' 问题2: '), | | encode('gbk', ' 答案2: '), | | encode('gbk', ' 其他 : '), | | ], | | }; | | undef $prev[$lv]; | | | | my $adjust; | | $adjust = ( $lv == 0 ? 0 : $INDENT ); | | | | $indent[$lv+1] = | | expand($parent_ref, $info[$lv], $path, $indent[$lv]+$adjust); | | goto GO_CONTINUE; | | } | | | | sub rename_item | | { | | our @prev; | | our @indent; | | my ($parent_ref, $path, $lv) = @_; | | my $newkey; | | my $last_key; | | | | $newkey = &lineInput(); | | return 0 if ($newkey eq 'exit'); | | | | $path=~/:([^:]+)$/; | | $last_key = $1; | | $parent_ref->{$newkey} = $parent_ref->{ $last_key }; | | delete $parent_ref->{$last_key}; | | | | undef $prev[$lv]; | | | | my $adjust; | | $adjust = ( $lv == 0 ? 0 : $INDENT ); | | | | $indent[$lv+1] = | | expand($parent_ref, $info[$lv], $path, $indent[$lv]+$adjust); | | | | goto GO_CONTINUE; | | } | | | | sub delete_item | | { | | our @prev; | | our @indent; | | my ($parent_ref, $path, $lv) = @_; | | my $adjust; | | | | $path=~/:([^:]+)$/; | | delete $parent_ref->{$1}; | | | | $adjust = ( $lv == 0 ? 0 : $INDENT ); | | | | $indent[$lv+1] = | | expand($parent_ref, $info[$lv], $path, $indent[$lv]+$adjust); | | | | goto GO_CONTINUE; | | } | | | | sub copy_tree | | { | | our @prev; | | our @indent; | | our $env_ref; | | our $env_ref_name; | | | | my ($parent_ref, $path, $lv) = @_; | | my $adjust; | | | | $path=~/:([^:]+)$/; | | $env_ref_name = $1; | | $env_ref = $parent_ref->{$1}; | | } | | | | sub paste_tree | | { | | our @prev; | | our @indent; | | our $env_ref; | | our $env_ref_name; | | | | my ($parent_ref, $path, $lv) = @_; | | my $adjust; | | | | if (! defined $env_ref_name) | | { | | wrong("paste_tree", "nothing in memory"); | | return; | | } | | | | $path=~/:([^:]+)$/; | | $parent_ref->{$1}{ $env_ref_name } = $env_ref; | | | | $adjust = ( $lv == 0 ? 0 : $INDENT ); | | | | $indent[$lv+1] = | | expand($parent_ref, $info[$lv], $path, $indent[$lv]+$adjust); | | | | goto GO_CONTINUE; | | } | | | | | | sub append_from_clip | | { | | our @prev; | | our @indent; | | my ($parent_ref, $path, $lv) = @_; | | my $adjust; | | use Win32::Clipboard; | | my $clip = Win32::Clipboard->new(); | | | | | | $path=~/:([^:]+)$/; | | if ( exists $parent_ref->{$1}{'note'} ) | | { | | push @{$parent_ref->{$1}{'note'}}, split(/\r?\n/,$clip->GetText()) ; | | } | | | | $adjust = ( $lv == 0 ? 0 : $INDENT ); | | | | $indent[$lv+1] = | | expand( | | $parent_ref, $info[$lv], $path, $indent[$lv]+$adjust | | ); | | no Win32::Clipboard; | | goto GO_CONTINUE; | | } | | | | sub edit_notes | | { | | our @prev; | | our @indent; | | my @arr; | | my ($parent_ref, $path, $lv) = @_; | | my $adjust; | | | | $path=~/:([^:]+)$/; | | if ( exists $parent_ref->{$1}{'note'} ) | | { | | use File::Temp 'tempfile'; | | my ($fh, $fname) = tempfile(); | | print $fh join( "\r\n", @{$parent_ref->{$1}{'note'}} ); | | $fh->close(); | | no File::Temp; | | system("notepad $fname"); | | open READ, "<:raw", $fname or warn "$!"; | | | | @{$parent_ref->{$1}{'note'}} = <READ>; | | for my $i ( @{$parent_ref->{$1}{'note'}} ) | | { | | $i=~s/\r\n$//; | | } | | | | close READ; | | } | | | | $adjust = ( $lv == 0 ? 0 : $INDENT ); | | | | $indent[$lv+1] = | | expand( | | $parent_ref, $info[$lv], $path, $indent[$lv]+$adjust | | ); | | no Win32::Clipboard; | | goto GO_CONTINUE; | | } | | | | sub ID_to_notes | | { | | our @prev; | | our @indent; | | my @arr; | | my ($parent_ref, $path, $lv) = @_; | | my $adjust; | | | | $path=~/:([^:]+)$/; | | if ( exists $parent_ref->{$1}{'note'} ) | | { | | use File::Temp 'tempfile'; | | my ($fh, $fname) = tempfile(); | | print $fh join( "\r\n", @{$parent_ref->{$1}{'note'}} ),"\r\n"; | | print $fh | | ( | | encode('gbk', " "x4 . " website: \r\n"), | | encode('gbk', " "x4 . " E-mail: \r\n"), | | encode('gbk', " "x4 . "nickname: \r\n"), | | encode('gbk', " "x4 . " ID: \r\n"), | | encode('gbk', " "x4 . " code: \r\n"), | | encode('gbk', " "x4 . " 问题1: \r\n"), | | encode('gbk', " "x4 . " 答案1: \r\n"), | | encode('gbk', " "x4 . " 问题2: \r\n"), | | encode('gbk', " "x4 . " 答案2: \r\n"), | | encode('gbk', " "x4 . " 备注: \r\n"), | | encode('gbk', " "x4 . " date: \r\n\r\n"), | | ); | | | | $fh->close(); | | no File::Temp; | | system("notepad $fname"); | | open READ, "<:raw", $fname or warn "$!"; | | | | @{$parent_ref->{$1}{'note'}} = <READ>; | | for my $i ( @{$parent_ref->{$1}{'note'}} ) | | { | | $i=~s/\r\n$//; | | } | | | | close READ; | | } | | | | $adjust = ( $lv == 0 ? 0 : $INDENT ); | | | | $indent[$lv+1] = | | expand( | | $parent_ref, $info[$lv], $path, $indent[$lv]+$adjust | | ); | | no Win32::Clipboard; | | goto GO_CONTINUE; | | } | | | | sub BANK_to_notes | | { | | our @prev; | | our @indent; | | my @arr; | | my ($parent_ref, $path, $lv) = @_; | | my $adjust; | | | | $path=~/:([^:]+)$/; | | if ( exists $parent_ref->{$1}{'note'} ) | | { | | use File::Temp 'tempfile'; | | my ($fh, $fname) = tempfile(); | | print $fh join( "\r\n", @{$parent_ref->{$1}{'note'}} ),"\r\n"; | | print $fh | | ( | | encode('gbk', " "x4 . " 开行点: \r\n"), | | encode('gbk', " "x4 . " 姓名: \r\n"), | | encode('gbk', " "x4 . " 卡号: \r\n"), | | encode('gbk', " "x4 . " 登录名: \r\n"), | | encode('gbk', " "x4 . "passkey: \r\n"), | | encode('gbk', " "x4 . " code: \r\n"), | | encode('gbk', " "x4 . " USBKey: \r\n"), | | encode('gbk', " "x4 . " mark: \r\n"), | | encode('gbk', " "x4 . " date: \r\n\r\n"), | | ); | | | | $fh->close(); | | no File::Temp; | | system("notepad $fname"); | | open READ, "<:raw", $fname or warn "$!"; | | | | @{$parent_ref->{$1}{'note'}} = <READ>; | | for my $i ( @{$parent_ref->{$1}{'note'}} ) | | { | | $i=~s/\r\n$//; | | } | | | | close READ; | | } | | | | $adjust = ( $lv == 0 ? 0 : $INDENT ); | | | | $indent[$lv+1] = | | expand( | | $parent_ref, $info[$lv], $path, $indent[$lv]+$adjust | | ); | | no Win32::Clipboard; | | goto GO_CONTINUE; | | } | | | | sub copy_to_clip | | { | | our @prev; | | our @indent; | | my ($parent_ref, $path, $lv) = @_; | | my $adjust; | | use Win32::Clipboard; | | my $clip = Win32::Clipboard->new(); | | | | | | $path=~/:([^:]+)$/; | | if ( exists $parent_ref->{$1}{'note'} ) | | { | | $clip->Set( | | join( "\r\n", @{$parent_ref->{$1}{'note'}} ) | | ); | | } | | | | $adjust = ( $lv == 0 ? 0 : $INDENT ); | | | | $indent[$lv+1] = | | expand( | | $parent_ref, $info[$lv], $path, $indent[$lv]+$adjust | | ); | | no Win32::Clipboard; | | goto GO_CONTINUE; | | } | | | | sub delete_notes | | { | | our @prev; | | our @indent; | | my ($parent_ref, $path, $lv) = @_; | | my $adjust; | | | | $path=~/:([^:]+)$/; | | if ( exists $parent_ref->{$1}{'note'} ) | | { | | $parent_ref->{$1}{'note'} = []; | | } | | | | $adjust = ( $lv == 0 ? 0 : $INDENT ); | | | | $indent[$lv+1] = | | expand($parent_ref, $info[$lv], $path, $indent[$lv]+$adjust); | | | | goto GO_CONTINUE; | | } | | } | | | | COMMAND: { | | | | sub lineInput | | { | | our $IN_DEFAULT; | | my $line; | | my $inp; | | my $prompt; | | my $PREV_IN_MODE; | | my $PREV_RECT; | | | | $line=$MAX_LINE-4; | | $prompt="Command:"; | | $PREV_RECT = $OUT->ReadRect(0, $line-1, $MAX_COL, $line+1); | | $PREV_IN_MODE = $IN->Mode(); | | $IN->Mode( $IN_DEFAULT ); | | | | fill_line("-", $MAX_COL, $FG_YELLOW|$BG_CYAN, $line-1); | | fill_line("-", $MAX_COL, $FG_YELLOW|$BG_CYAN, $line+1); | | ClearRect(0, $MAX_COL, $line, $line); | | $OUT->Cursor(0, $line); | | $OUT->Write($prompt); | | $inp=<STDIN>; | | chomp $inp; | | | | | | | | | | | | $IN->Mode($PREV_IN_MODE); | | $OUT->WriteRect($PREV_RECT, 0, $line-1, $MAX_COL, $line+1); | | return $inp; | | } | | | | sub linesInput | | { | | our $IN_DEFAULT; | | my $line; | | my $inp; | | my $prompt; | | my $PREV_IN_MODE; | | my $PREV_RECT; | | my @arr; | | | | $line=$MAX_LINE-4; | | $prompt="INPUT:"; | | $PREV_RECT = $OUT->ReadRect(0, $line-1, $MAX_COL, $line+1); | | $PREV_IN_MODE = $IN->Mode(); | | $IN->Mode( $IN_DEFAULT ); | | | | while (1) { | | fill_line("-", $MAX_COL, $FG_YELLOW|$BG_CYAN, $line-1); | | fill_line("-", $MAX_COL, $FG_YELLOW|$BG_CYAN, $line+1); | | ClearRect(0, $MAX_COL, $line, $line); | | $OUT->Cursor(0, $line); | | $OUT->Write($prompt); | | $inp=<STDIN>; | | chomp $inp; | | if (lc($inp) ne "exit") { | | push(@arr, $inp); | | } else { | | last; | | } | | } | | | | | | | | | | | | $IN->Mode($PREV_IN_MODE); | | $OUT->WriteRect($PREV_RECT, 0, $line-1, $MAX_COL, $line+1); | | return @arr; | | } | | | | sub inputBar | | { | | our $IN_DEFAULT; | | my $item_ref = shift; | | my $line; | | my $inp; | | my $prompt; | | my $tmpstr; | | my $PREV_IN_MODE; | | my $PREV_RECT; | | | | $line = $MAX_LINE - 4; | | $prompt="Command:"; | | $PREV_RECT = $OUT->ReadRect(0, $line-1, $MAX_COL, $line+1); | | $PREV_IN_MODE = $IN->Mode(); | | $IN->Mode( $IN_DEFAULT ); | | | | while (1) | | { | | $OUT->Cls(); | | $tmpstr = join("\n", @{$item_ref->{'note'}} ); | | $OUT->Cursor(0, 1); | | $OUT->Write( $tmpstr ); | | fill_line("-", $MAX_COL, $FG_YELLOW|$BG_BLACK, $line-1); | | fill_line("-", $MAX_COL, $FG_YELLOW|$BG_BLACK, $line+1); | | ClearRect(0, $MAX_COL, $line, $line); | | | | $OUT->Cursor(0, $line); | | $OUT->Write( $prompt ); | | $OUT->FillAttr( | | $FG_YELLOW|$BG_BLACK, | | $MAX_COL, | | 0, | | $line | | ); | | | | $inp=<STDIN>; | | $inp=~s/\r?\n$//; | | last if (lc($inp) eq "exit"); | | push( @{$item_ref->{'note'}}, $inp ); | | } | | | | | | | | | | | | | | | | | | | | $IN->Mode($PREV_IN_MODE); | | $OUT->WriteRect($PREV_RECT, 0, $line-1, $MAX_COL, $line+1); | | return $inp; | | } | | | | sub wrong | | { | | my ($func_name, $func_say) = @_; | | $func_say = "Nothing" unless (defined $func_say); | | $OUT->Cursor(0, 0); | | $OUT->Write("$func_name say: $func_say"); | | $OUT->FillAttr($FG_YELLOW|$BG_CYAN, $MAX_COL-1, 0, 0); | | } | | } | | | | IN_AREA: { | | sub inRange { | | my ($a,$x,$b) = @_; | | if ($a<=$x and $b>=$x) { | | return 1; | | } else { | | return 0; | | } | | } | | | | sub inRect { | | my ( $x, $y, $left, $top, $right, $buttom ) = @_; | | if ( | | inRange($left, $x, $right) | | and | | inRange($top, $y, $buttom) | | ) | | { | | return 1; | | } else { | | return 0; | | } | | } | | | | sub inItem { | | my ( $hash, $mx, $my ) = @_; | | return 0 if (! defined $$hash{length}); | | | | if ( | | $$hash{x} <= $mx | | and | | ($$hash{length}+$$hash{x}) >= $mx | | and | | $$hash{y} == $my | | ) | | { | | return 1; | | } else { | | return 0; | | } | | | | | | | | } | | | | sub inDetail { | | my ( $hash, $mx, $my ) = @_; | | | | return 0 if (! defined $$hash{length}); | | | | if ( | | ($$hash{length}+$$hash{x}-1) <= $mx | | and | | $mx < ($$hash{length}+$$hash{x}+1) | | and | | $$hash{y} == $my | | ) | | { | | return 1; | | } else { | | return 0; | | } | | } | | } | | | | LOAD_SAVE: { | | sub load_data | | { | | my ($hashref, $file) = @_; | | local $/; | | $/ = ""; | | my $rf = {}; | | if ( -e $file ) | | { | | use YAML 'Load'; | | local $YAML::SortKeys; | | $YAML::SortKeys = 2; | | open READ,"<:raw:crlf", $file or warn "$!\n"; | | $rf = Load(<READ>); | | close READ; | | } | | | | if ( (keys %$rf) < 1 ) | | { | | $rf = { | | 'Main' => { | | 'note'=>[], | | }, | | }; | | } | | | | %$hashref = %$rf; | | } | | | | sub save | | { | | use YAML 'Dump'; | | my ($hashref, $file) = @_; | | local $YAML::Indent; | | $YAML::Indent = 4; | | | | local $YAML::SortKeys; | | $YAML::SortKeys = 2; | | | | | | | | | | | | | | | | open WRT, ">:raw:crlf", $file or warn "$!"; | | print WRT Dump($hashref); | | close WRT; | | } | | | | sub logfile | | { | | use feature 'state'; | | state $i = 0; | | my $fname = ".\\log.txt"; | | | | if ($i == 0) { | | open WRT,">:raw", $fname or die "$!"; | | } else { | | open WRT,">>:raw", $fname or die "$!"; | | } | | print WRT shift; | | close WRT; | | $i++; | | } | | } | | | | ELSE_FUNCTION: { | | sub tabformat | | { | | my $ref=shift; | | my @col; | | my $n; | | my @tmpr; | | my @new_array; | | foreach (@$ref) | | { | | @tmpr=split("\t",$_); | | foreach $n (0..$#tmpr) | | { | | push @col,0 if (! defined $col[$n]); | | if ( length($tmpr[$n]) > $col[$n]) | | { | | $col[$n]=length($tmpr[$n]); | | } | | } | | } | | | | my $m=0; | | foreach (@$ref) | | { | | @tmpr=split("\t",$_); | | foreach $n (0..$#tmpr) | | { | | $new_array[$m].= sprintf("%-${col[$n]}s ", $tmpr[$n]); | | } | | $m++; | | } | | return @new_array; | | } | | | | sub get_date | | { | | my ( | | $sec, $min, $hour,$mday, $mon, $year,$wday, $yday, $isdst | | ) = localtime( time() ); | | return sprintf("%d-%02d-%02d", $year+1900, $mon+1, $mday); | | } | | } | | | | | | | | | | __END__ | | | | COPY |
|