实现push动画的自定义

1. more第一版

实现基础功能,显示每一页固定24行文本,“q Enter”退出, “Enter” 下一行, “space Enter”下一页。

/*************************************************************************
  > File Name: more01.c
  > Author: qianlv
  > Mail: [email protected]
  > Created Time: 2014年04月24日 星期四 14时58分25秒
  > more01.c - version 0.1 of more
  > read and print 24 lines then pause for a few special commands
 ************************************************************************/

#include<stdio.h>
#include <stdlib.h>
#define PAGELEN 24
#define LINELEN 514
void do_more(FILE *);
int see_more();
int main(int ac, char *av[])
{
    FILE *fp;
    if(ac==1)
      do_more(stdin);// more 后无参数,读取stdin
    else
    {
        while(--ac)
          if( (fp = fopen(* ++av, "r")) != NULL) // 打开文件
          {
              printf("%s\n", *av);
              do_more(fp);
              fclose(fp);
          }
          else
            exit(1);
    }
    return 0;
}

void do_more(FILE *fp)
{
    char line[LINELEN];
    //int see_more();
    int reply;
    int number_line = 0;
    while(fgets(line, LINELEN, fp) != NULL)
    {
        if(number_line == PAGELEN)
        {
            reply = see_more();
            if(reply == 0)
              break;
            number_line -= reply;
        }
        if( fputs(line, stdout) == EOF)
          exit(1);
        number_line ++;
    }
}

int see_more()
{
    int c;
    printf("\033[7m more? \033[m");
    while( (c = getchar()) != EOF )
    {
        if(c == ‘q‘)
          return 0;
        if(c == ‘ ‘)
          return PAGELEN;
        if(c == ‘\n‘)
          return 1;
    }
    return 0;
}

2.more第二版

解决上一个版本“ls -l /etc |  ./more01”, “ls -l /etc” 输出重定向为“./more01”  输入时 由于see_more() 函数中getchar()与do_more(FILE *fp)中读取都是stdin中的数据,时输出一页后不回暂停等待命令。

解决方法是: see_more()改为通过/dev/tty(键盘与显示设备的描述文件),读取键。

/*************************************************************************
	> File Name: more02.c
	> Author: qianlv
	> Mail: [email protected]
	> Created Time: 2014年04月24日 星期四 15时39分51秒
    > more02.c - version 0.2 of more
    > read and print 24 lines the pause for a few special commands
    > feature of version 0.2: reads form /dev/tty for commands
 ************************************************************************/

#include<stdio.h>
#include <stdlib.h>
#define PAGELEN 24
#define LINELEN 514
void do_more(FILE *);
int see_more(FILE *);
int main(int ac, char *av[])
{
    FILE *fp;
    if(ac==1)
      do_more(stdin);
    else
    {
        while(--ac)
          if( (fp = fopen(* ++av, "r")) != NULL)
          {
              do_more(fp);
              fclose(fp);
          }
          else
            exit(1);
    }
    return 0;
}

void do_more(FILE *fp)
{
    char line[LINELEN];
    //int see_more();
    int reply;
    int number_line = 0;
    FILE *fp_tty;
    fp_tty = fopen("/dev/tty", "r");//打开/dev/tty设备文件
    if(fp_tty == NULL)
      exit(1);
    while(fgets(line, LINELEN, fp) != NULL)
    {
        if(number_line == PAGELEN)
        {
            reply = see_more(fp_tty);
            if(reply == 0)
              break;
            number_line -= reply;
        }
        if( fputs(line, stdout) == EOF)
          exit(1);
        number_line ++;
    }
}

int see_more(FILE *cmd)
{
    int c;
    printf("\033[7m more? \033[m");
    while( (c = getc(cmd)) != EOF ) //此处的getchar()从stdin读取数据,getc(cmd)从文件cmd(/dev/tty)中读入数据
    {
        if(c == ‘q‘)
          return 0;
        if(c == ‘ ‘)
          return PAGELEN;
        if(c == ‘\n‘)
          return 1;
    }
    return 0;
}

3. more第三版

通过修改终端属性,无需输入回车,立即响应输入字符命令

/*************************************************************************
	> File Name: more04.c
	> Author: qianlv
	> Mail: [email protected]
	> Created Time: 2014年04月25日 星期五 10时23分22秒
        > 添加键入字符立即响应程序
 ************************************************************************/

#include<stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <termios.h>
#define PAGELEN 24
#define LINELEN 514
void do_more(FILE *);
int see_more(FILE *);
int main(int ac, char *av[])
{
    FILE *fp;
    if(ac==1)
      do_more(stdin);
    else
    {
        while(--ac)
          if( (fp = fopen(* ++av, "r")) != NULL)
          {
              do_more(fp);
              fclose(fp);
          }
          else
            exit(1);
    }
    return 0;
}

void do_more(FILE *fp)
{
    char line[LINELEN];
    int reply;
    int number_line = 0;
    FILE *fp_tty_in, *fp_tty_out;
    fp_tty_in = fopen("/dev/tty", "r");
    fp_tty_out = fopen("/dev/tty", "w");
    struct termios initial_settings, new_settings;
    tcgetattr(fileno(fp_tty_in), &initial_settings);//获取当前终端的属性。
    new_settings = initial_settings;
    new_settings.c_lflag &= ~ICANON;//设置终端为非标准模式
    //new_settings.c_lflag &= ~ECHO; //设置终端不回显
    //设置读入一个字符,立即返回字符。
    new_settings.c_cc[VMIN] = 1;
    new_settings.c_cc[VTIME] = 0;
    if(tcsetattr(fileno(fp_tty_in), TCSANOW, &new_settings) != 0) { // 重新配置终端接口
        fprintf(stderr, "could not set attributes\n");
    }
    while(fgets(line, LINELEN, fp) != NULL)
    {
        if(number_line == PAGELEN)
        {

            reply = see_more(fp_tty_in);
            if(reply == 0)
              break;
            number_line -= reply;
        }
        if( fputs(line, fp_tty_out) == EOF)
        {
            tcsetattr(fileno(fp_tty_in), TCSANOW, &initial_settings); // 恢复终端接口的配置
             exit(1);
        }
        number_line ++;
    }
    tcsetattr(fileno(fp_tty_in), TCSANOW, &initial_settings);// 恢复终端接口的配置
}
int see_more(FILE *cmd)
{
    int c;
    printf("\033[7m more? \033[m");
    do {
        c = fgetc(cmd);
        if(c == ‘q‘)
          return 0;
        if(c == ‘ ‘)
          return PAGELEN;
        if(c == ‘\n‘)
          return 1;
    }while(1);
    return 0;
}

4. more第四版

解决"more?"重复出现的问题,已经每页行数根据终端大小动态决定,由于每次读取一行文本不等于终端行数,所以存在bug。显示文件已经显示占总文件的百分比,显示多个文件时,分别显示出文件名。

/*************************************************************************
  > File Name: more04.c
  > Author: qianlv
  > Mail: [email protected]
  > Created Time: 2014年04月25日 星期五 14时31分07秒
  > 解决"more?"重复出现的问题,已经每页行数根据终端大小动态决定,由于
  > 文件的一行可能占2行以上终端行数,所有有小bug,显示出已经显示的文
  > 件占文件总大小的百分比,如果显示的是多个文件,那么显示出当前读取
  > 的文件的文件名。
 ************************************************************************/

#include<stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <termios.h>
#include <curses.h>
#include <term.h>
#include <string.h>
#include <sys/stat.h>
#define LINELEN 514
static unsigned long filesize = 0; // 文件的总字节数
static unsigned long input_filesize = 0; // 已经显示的字节数
static FILE *out_stream = (FILE *) 0;
static int filesum = 0; // 当前要显示的文件个数
void clear_more(int, int, FILE *);   //“el”删除一行到行尾,用于清除“more?”.
int cols_more(FILE *fp);  // 获取终端列数
int lines_more(FILE *);  // 获取终端行数
int char_to_terminal(int ); // 一个与putchar函数有相同的参数和返回值的函数,用于tputs函数的调用。
void do_more(FILE *, char *filename);
int see_more(FILE *,int, int);
unsigned long get_filesize(FILE *);
int main(int ac, char *av[])
{
    FILE *fp;
    filesum = ac - 1;
    if(ac==1)
      do_more(stdin,(char *)0);
    else
    {
        while(--ac)
          if( (fp = fopen(* ++av, "r")) != NULL)
          {
              filesize = input_filesize = 0; //清空前一个文件的大小。
              filesize = get_filesize(fp);
              do_more(fp, *av);
              fclose(fp);
          }
          else
            exit(1);
    }
    return 0;
}

void do_more(FILE *fp, char *filename)
{
    char line[LINELEN];
    int reply;
    int number_line = 0;
    FILE *fp_tty_in, *fp_tty_out;
    fp_tty_in = fopen("/dev/tty", "r");
    fp_tty_out = fopen("/dev/tty", "w");
    struct termios initial_settings, new_settings;
    tcgetattr(fileno(fp_tty_in), &initial_settings);//获取当前终端的属性。
    new_settings = initial_settings;
    new_settings.c_lflag &= ~ICANON;//设置终端为非标准模式
    new_settings.c_lflag &= ~ECHO; //设置终端不回显
    //设置读入一个字符,立即返回字符。
    new_settings.c_cc[VMIN] = 1;
    new_settings.c_cc[VTIME] = 0;
    if(tcsetattr(fileno(fp_tty_in), TCSANOW, &new_settings) != 0) { // 重新配置终端接口
        fprintf(stderr, "could not set attributes\n");
    }
    int Pagelen = lines_more(fp_tty_in) - 1; //终端行数
    int PageCol = cols_more(fp_tty_in);  //终端列数
    int add_line;
    if(filesum > 1) //显示的文件个数 > 1 那么把文件名也显示出来。
    {
        fprintf(fp_tty_out, "-------> %s <-------\n",filename);
        number_line = 1;
    }
    while(fgets(line, LINELEN, fp) != NULL)
    {
        if(number_line >= Pagelen) //输出的行数大于终端行数时,即为一页,原因是每次读取文件的一行,可能占用终端2行以上。
        {

            reply = see_more(fp_tty_in,Pagelen, add_line);
            int prePage = Pagelen;
            Pagelen = lines_more(fp_tty_in) - 1;  //终端行数
            PageCol = cols_more(fp_tty_in);   //终端列数
            if(prePage < Pagelen)
                clear_more(Pagelen-1, 0, fp_tty_out);   //移动游标至"more?"这一行最前面,然后清除此行。
            else
                clear_more(Pagelen, 0, fp_tty_out);
            if(reply == 0)
              break;
            if(number_line != Pagelen && reply == 1)  // 当终端变大时,且按下时回车“enter”,应把number_line改为终端倒数第二行。
                number_line = Pagelen -1;
            else
                number_line -= reply;

        }
        if( fputs(line, fp_tty_out) == EOF)
        {
            tcsetattr(fileno(fp_tty_in), TCSANOW, &initial_settings); // 恢复终端接口的配置
            exit(1);
        }
        int line_len = strlen(line);
        input_filesize += (unsigned long)line_len;//叠加字节个数。
        add_line = (line_len + PageCol - 1)/PageCol;
        number_line += add_line; //文档的行数不等于终端显示的行数,因为一行字符串可能占据2行以上。
        //number_line ++;
        //fprintf(te, "%d: %d - %d %s",nll++,number_line, add_line,line);
    }
    tcsetattr(fileno(fp_tty_in), TCSANOW, &initial_settings);// 恢复终端接口的配置
}
void clear_more(int posx,int posy,FILE *fp)
{
    char *el;
    char *cursor;
    out_stream = fp;
    cursor = tigetstr("cup");
    el = tigetstr("el");
    tputs(tparm(cursor, posx, posy), 1, char_to_terminal); //移动关闭至(posx,posy)处。
   //////////////// sleep(1);
    tputs(el, 1,  char_to_terminal);//清除此行至行尾。

}
int see_more(FILE *cmd,int Pagelen, int add_line)
{
    int c;
    if(filesize > 0 ) // 如果重定向的输入无法获取大小,则不要显示百分比。
        printf("\033[7m more? \033[m %lu%%",input_filesize*100/filesize);
    else
        printf("\033[7m more? \033[m ");

    do {
        c = fgetc(cmd);
        if(c == ‘q‘)
          return 0;
        if(c == ‘ ‘)
        {
            return Pagelen;
        }
        if(c == ‘\n‘ || c == ‘\r‘) //非标准模式下,默认回车和换行之间的映射已不存在,所以检查回车符‘\r‘。
          return add_line;
    }while(1);
    return 0;
}
int char_to_terminal(int char_to_write)
{
    if(out_stream) putc(char_to_write,out_stream);
    return 0;
}
int lines_more(FILE *fp)
{
    int nrows;
    setupterm(NULL, fileno(fp), (int *)0);
    nrows = tigetnum("lines");
    return nrows;
}
int cols_more(FILE *fp)
{
    int ncols;
    setupterm(NULL, fileno(fp), (int *)0);
    ncols = tigetnum("cols");
    return ncols;
}
unsigned long get_filesize(FILE *fp)
{
    struct stat buf;
    if(fstat(fileno(fp), &buf) < 0)
        return (unsigned long) 0;
    return (unsigned long) buf.st_size;
}

5. 参考书籍

  1. 《Linux 程序设计 第四版》 by Neil Matthew,Richard Stones 人民邮电出版社。
  2. Unix/Linux 编程实践教程  by Bruce Molay 清华大学出版社。

实现push动画的自定义,码迷,mamicode.com

时间: 2024-10-11 13:26:17

实现push动画的自定义的相关文章

iOS 不使用UINavigationController实现Push动画

转自廖雪峰 在iOS开发中,如果使用UINavigationController,配合Storyboard+Push模式的Segue,默认情况下,可以直接实现左右推出的View切换效果. 但是,如果不使用UINavigationController时,把Segue设置为Push,运行就会直接报错,而Model模式的Segue只有Cover Vertical,Flip Horizontal,Cross Dissolve和Partial Curl这4种模式,没有Push模式. 如果要在自定义的Vie

自定义Tabbar实现push动画隐藏效果

在之前的一篇文章(链接)中我写到了没有用UITabbarController来实现一个自定义Tabbar,当然功能也简陋了点.注意到在Weico或微信中的自定义tabbar有一个这样的功能:push到下一个页面时tabbar会被自动隐藏,下面我就来说说如何使我前面做的自定义tabbar也能实现隐藏. 如果是原生的tabbar,这个功能实现很容易.在iOS中,每个UIViewController都有一个属性hidesBottomBarWhenPushed,每次push一个viewControlle

Android属性动画与自定义View——实现vivo x6更新系统的动画效果

晚上好,现在是凌晨两点半,然后我还在写代码.电脑里播放着<凌晨两点半>,晚上写代码,脑子更清醒,思路更清晰. 今天聊聊属性动画和自定义View搭配使用,前面都讲到自定义View和属性动画,但是一起用的还是不多,刚巧今晚手机提示我更新系统,我看到那个更新的动画还不错,仔细的分析了一下,于是我也决定写一个,不是一模一样的,但是效果和原理是一样的. 先看看图: 这是一张静态的图,这里有三个波浪线,当下载完之后,波浪线会往上活动,一直到消失. 所以难点也是在这个波浪线上.这个波浪线类似于一个水波纹,也

关于push动画中尺寸问题

由于是在sb中写的VC, 所以在跳转动画时, 就会有一些问题. 这是sb中的约束: 当在push动画时, 在中间界面添加imageView时, 如图: imageView的尺寸是如上图所示, 并不是屏幕宽, 这应该是约束的问题. 效果如下: 如果换成view, 就可以了. 虽然打印时尺寸还和上面的一样, 但是, 实际上是正确的:

android中给Dialog设置的动画如何自定义修改参数

============问题描述============ 在android中给Dialog设置动画的方法我只找到Dialog.getWindow().setWindowAnimation(int resID); 这样不是只能在styles里用xml定义动画吗? 但是我现在想要先用程序计算出一个屏幕上的点,在让Dialog从该点开始执行scaleAnimation. 我如何给我Dialog的动画设置起始点之类的参数呢? ============解决方案1============ 自定义一个dial

Android之使用帧动画实现自定义loading加载布局

在项目开发过程中,我们总是需要自定义一些和项目风格类似的loading页面,这时候我们可以考虑使用帧动画来完成这一功能 假如我们要实现如下图所示的帧动画加载效果: 我们可以选取三张帧图片: 具体在帧动画中怎么使用? An AnimationDrawable defined in XML consists of a single <animation-list> element, and a series of nested<item> tags. Each item defines

[转]Android自定义控件三部曲系列完全解析(动画, 绘图, 自定义View)

来源:http://blog.csdn.net/harvic880925/article/details/50995268 一.自定义控件三部曲之动画篇 1.<自定义控件三部曲之动画篇(一)——alpha.scale.translate.rotate.set的xml属性及用法>2.<自定义控件三部曲之动画篇(二)——Interpolator插值器>3.<自定义控件三部曲之动画篇(三)—— 代码生成alpha.scale.translate.rotate.set及插值器动画&g

JQuery--基础动画、滑动动画、淡入淡出动画、自定义动画

1 /** 2 * [JQ基础动画] 3 * show() 显示 4 * hide() 隐藏 5 * toggle() 切换 6 * 默认无动画,如果要产生动画 7 * 在括号内,添加毫秒数,可产生动画和控制动画的快慢 8 * 9 * <滑动动画> 10 * slideDown() 滑动显示(下) 11 * slideUp() 滑动隐藏(上) 12 * slideToggle 滑动切换 13 * 默认有动画,默认是400毫秒 14 * <淡入淡出动画> 15 * fadeIn()

(原)Unreal源码搬山-动画篇 自定义动画节点(一)

@author:黑袍小道 太忙了,来更新下,嘿嘿 前言: 本文是接着上文 Unreal搬山之动画模块_Unreal动画流程和框架,进行简单入门如何自定义动画图标的AnimNode. 正文: 一.AnimNode Unreal 4的AnimNode负责的骨骼动画的单项计算,最后汇总到AnimGraph有,然后交付给AnimInstance统一收集和处理. 下图未AnimNode相关的结构 二.CustomAnimNode 该例子实现修改指定的一系列骨骼,并再AnimGraphy预览和编辑 三.Un