⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 forwback.c

📁 早期freebsd实现
💻 C
字号:
/* * Primitives for displaying the file on the screen, * scrolling either forward or backward. */#include "less.h"#include "position.h"public int hit_eof;	/* Keeps track of how many times we hit end of file */public int screen_trashed;public int squished;extern int sigs;extern int top_scroll;extern int quiet;extern int sc_width, sc_height;extern int quit_at_eof;extern int plusoption;extern int forw_scroll;extern int back_scroll;extern int need_clr;extern int ignore_eoi;#if TAGSextern int tagoption;#endif/* * Sound the bell to indicate user is trying to move past end of file. */	static voideof_bell(){	if (quiet == NOT_QUIET)		bell();	else		vbell();}/* * Check to see if the end of file is currently "displayed". */	static voideof_check(){	POSITION pos;	if (ignore_eoi)		return;	if (sigs)		return;	/*	 * If the bottom line is empty, we are at EOF.	 * If the bottom line ends at the file length,	 * we must be just at EOF.	 */	pos = position(BOTTOM_PLUS_ONE);	if (pos == NULL_POSITION || pos == ch_length())		hit_eof++;}/* * If the screen is "squished", repaint it. * "Squished" means the first displayed line is not at the top * of the screen; this can happen when we display a short file * for the first time. */	static voidsquish_check(){	if (!squished)		return;	squished = 0;	repaint();}/* * Display n lines, scrolling forward,  * starting at position pos in the input file. * "force" means display the n lines even if we hit end of file. * "only_last" means display only the last screenful if n > screen size. * "nblank" is the number of blank lines to draw before the first *   real line.  If nblank > 0, the pos must be NULL_POSITION. *   The first real line after the blanks will start at ch_zero(). */	public voidforw(n, pos, force, only_last, nblank)	register int n;	POSITION pos;	int force;	int only_last;	int nblank;{	int eof = 0;	int nlines = 0;	int do_repaint;	static int first_time = 1;	squish_check();	/*	 * do_repaint tells us not to display anything till the end, 	 * then just repaint the entire screen.	 * We repaint if we are supposed to display only the last 	 * screenful and the request is for more than a screenful.	 * Also if the request exceeds the forward scroll limit	 * (but not if the request is for exactly a screenful, since	 * repainting itself involves scrolling forward a screenful).	 */	do_repaint = (only_last && n > sc_height-1) || 		(forw_scroll >= 0 && n > forw_scroll && n != sc_height-1);	if (!do_repaint)	{		if (top_scroll && n >= sc_height - 1 && pos != ch_length())		{			/*			 * Start a new screen.			 * {{ This is not really desirable if we happen			 *    to hit eof in the middle of this screen,			 *    but we don't yet know if that will happen. }}			 */			if (top_scroll == 2 || first_time)				clear();			home();			force = 1;		} else		{			lower_left();			clear_eol();		}		if (pos != position(BOTTOM_PLUS_ONE) || empty_screen())		{			/*			 * This is not contiguous with what is			 * currently displayed.  Clear the screen image 			 * (position table) and start a new screen.			 */			pos_clear();			add_forw_pos(pos);			force = 1;			if (top_scroll)			{				if (top_scroll == 2)					clear();				home();			} else if (!first_time)			{				putstr("...skipping...\n");			}		}	}	while (--n >= 0)	{		/*		 * Read the next line of input.		 */		if (nblank > 0)		{			/*			 * Still drawing blanks; don't get a line 			 * from the file yet.			 * If this is the last blank line, get ready to			 * read a line starting at ch_zero() next time.			 */			if (--nblank == 0)				pos = ch_zero();		} else		{			/* 			 * Get the next line from the file.			 */			pos = forw_line(pos);			if (pos == NULL_POSITION)			{				/*				 * End of file: stop here unless the top line 				 * is still empty, or "force" is true.				 */				eof = 1;				if (!force && position(TOP) != NULL_POSITION)					break;			}		}		/*		 * Add the position of the next line to the position table.		 * Display the current line on the screen.		 */		add_forw_pos(pos);		nlines++;		if (do_repaint)			continue;		/*		 * If this is the first screen displayed and		 * we hit an early EOF (i.e. before the requested		 * number of lines), we "squish" the display down		 * at the bottom of the screen.		 * But don't do this if a + option or a -t option		 * was given.  These options can cause us to		 * start the display after the beginning of the file,		 * and it is not appropriate to squish in that case.		 */		if (first_time && pos == NULL_POSITION && !top_scroll && #if TAGS		    !tagoption &&#endif		    !plusoption)		{			squished = 1;			continue;		}		if (top_scroll == 1)			clear_eol();		put_line();	}	if (ignore_eoi)		hit_eof = 0;	else if (eof && !sigs)		hit_eof++;	else		eof_check();	if (nlines == 0)		eof_bell();	else if (do_repaint)		repaint();	first_time = 0;	(void) currline(BOTTOM);}/* * Display n lines, scrolling backward. */	public voidback(n, pos, force, only_last)	register int n;	POSITION pos;	int force;	int only_last;{	int nlines = 0;	int do_repaint;	squish_check();	do_repaint = (n > get_back_scroll() || (only_last && n > sc_height-1));	hit_eof = 0;	while (--n >= 0)	{		/*		 * Get the previous line of input.		 */		pos = back_line(pos);		if (pos == NULL_POSITION)		{			/*			 * Beginning of file: stop here unless "force" is true.			 */			if (!force)				break;		}		/*		 * Add the position of the previous line to the position table.		 * Display the line on the screen.		 */		add_back_pos(pos);		nlines++;		if (!do_repaint)		{			home();			add_line();			put_line();		}	}	eof_check();	if (nlines == 0)		eof_bell();	else if (do_repaint)		repaint();	(void) currline(BOTTOM);}/* * Display n more lines, forward. * Start just after the line currently displayed at the bottom of the screen. */	public voidforward(n, force, only_last)	int n;	int force;	int only_last;{	POSITION pos;	if (quit_at_eof && hit_eof)	{		/*		 * If the -e flag is set and we're trying to go		 * forward from end-of-file, go on to the next file.		 */		if (edit_next(1))			quit(0);		return;	}	pos = position(BOTTOM_PLUS_ONE);	if (pos == NULL_POSITION && (!force || empty_lines(2, sc_height-1)))	{		if (ignore_eoi)		{			/*			 * ignore_eoi is to support A_F_FOREVER.			 * Back up until there is a line at the bottom			 * of the screen.			 */			if (empty_screen())				pos = ch_zero();			else			{				do				{					back(1, position(TOP), 1, 0);					pos = position(BOTTOM_PLUS_ONE);				} while (pos == NULL_POSITION);			}		} else		{			eof_bell();			hit_eof++;			return;		}	}	forw(n, pos, force, only_last, 0);}/* * Display n more lines, backward. * Start just before the line currently displayed at the top of the screen. */	public voidbackward(n, force, only_last)	int n;	int force;	int only_last;{	POSITION pos;	pos = position(TOP);	if (pos == NULL_POSITION && (!force || position(BOTTOM) == 0))	{		eof_bell();		return;   	}	back(n, pos, force, only_last);}/* * Get the backwards scroll limit. * Must call this function instead of just using the value of * back_scroll, because the default case depends on sc_height and * top_scroll, as well as back_scroll. */	public intget_back_scroll(){	if (back_scroll >= 0)		return (back_scroll);	if (top_scroll)		return (sc_height - 2);	return (10000); /* infinity */}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -