move.c 6.2 KB
Newer Older
Chris Allegretta's avatar
Chris Allegretta committed
1
/* $Id$ */
Chris Allegretta's avatar
Chris Allegretta committed
2
3
4
/**************************************************************************
 *   move.c                                                               *
 *                                                                        *
5
 *   Copyright (C) 1999-2004 Chris Allegretta                             *
Chris Allegretta's avatar
Chris Allegretta committed
6
7
 *   This program is free software; you can redistribute it and/or modify *
 *   it under the terms of the GNU General Public License as published by *
8
 *   the Free Software Foundation; either version 2, or (at your option)  *
Chris Allegretta's avatar
Chris Allegretta committed
9
10
11
12
13
14
15
16
17
18
19
20
21
 *   any later version.                                                   *
 *                                                                        *
 *   This program is distributed in the hope that it will be useful,      *
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of       *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
 *   GNU General Public License for more details.                         *
 *                                                                        *
 *   You should have received a copy of the GNU General Public License    *
 *   along with this program; if not, write to the Free Software          *
 *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.            *
 *                                                                        *
 **************************************************************************/

22
23
#include "config.h"

Chris Allegretta's avatar
Chris Allegretta committed
24
25
#include <stdlib.h>
#include <string.h>
Chris Allegretta's avatar
Chris Allegretta committed
26
#include <assert.h>
Chris Allegretta's avatar
Chris Allegretta committed
27
28
29
30
31
32
33
#include "proto.h"
#include "nano.h"

int do_home(void)
{
    current_x = 0;
    placewewant = 0;
34
    check_statblank();
Chris Allegretta's avatar
Chris Allegretta committed
35
36
37
38
39
40
41
42
    update_line(current, current_x);
    return 1;
}

int do_end(void)
{
    current_x = strlen(current->data);
    placewewant = xplustabs();
43
    check_statblank();
Chris Allegretta's avatar
Chris Allegretta committed
44
45
46
47
    update_line(current, current_x);
    return 1;
}

48
int do_page_up(void)
49
{
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
50
    int i;
51

52
#ifndef DISABLE_WRAPPING
53
    wrap_reset();
54
#endif
55

56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
    /* If edittop is the first line of the file, move current up there
     * and put the cursor at the beginning of the line. */
    if (edittop == fileage) {
	current = fileage;
	placewewant = 0;
    } else {
	/* Move the top line of the edit window up a page. */
	for (i = 0; i < editwinrows - 2 && edittop->prev != NULL; i++)
	    edittop = edittop->prev;
#ifndef NANO_SMALL
	/* If we're in smooth scrolling mode and there was at least one
	 * page of text left, move the current line of the edit window
	 * up a page. */
	if (ISSET(SMOOTHSCROLL) && current->lineno > editwinrows - 2)
	    for (i = 0; i < editwinrows - 2; i++)
		current = current->prev;
	/* If we're not in smooth scrolling mode and there was at least
	 * one page of text left, put the cursor at the beginning of the
	 * top line of the edit window, as Pico does. */
	else {
#endif
	    current = edittop;
	    placewewant = 0;
#ifndef NANO_SMALL
	}
#endif
    }
    /* Get the equivalent x-coordinate of the new line. */
84
    current_x = actual_x(current->data, placewewant);
85

86
    edit_refresh();
87
88
89
90
91

    check_statblank();
    return 1;
}

92
93
int do_page_down(void)
{
94
    int i;
95

96
#ifndef DISABLE_WRAPPING
97
    wrap_reset();
98
#endif
99

100
101
102
103
104
105
106
107
108
    /* If the last line of the file is onscreen, move current down
     * there and put the cursor at the beginning of the line. */
    if (edittop->lineno + editwinrows > filebot->lineno) {
	current = filebot;
	placewewant = 0;
    } else {
	/* Move the top line of the edit window down a page. */
	for (i = 0; i < editwinrows - 2; i++)
	    edittop = edittop->next;
109
#ifndef NANO_SMALL
110
111
112
113
114
115
116
117
118
119
	/* If we're in smooth scrolling mode and there was at least one
	 * page of text left, move the current line of the edit window
	 * down a page. */
	if (ISSET(SMOOTHSCROLL) && current->lineno + editwinrows - 2 <= filebot->lineno)
	    for (i = 0; i < editwinrows - 2; i++)
		current = current->next;
	/* If we're not in smooth scrolling mode and there was at least
	 * one page of text left, put the cursor at the beginning of the
	 * top line of the edit window, as Pico does. */
	else {
120
#endif
121
122
123
	    current = edittop;
	    placewewant = 0;
#ifndef NANO_SMALL
124
	}
125
#endif
126
    }
127
    /* Get the equivalent x-coordinate of the new line. */
128
    current_x = actual_x(current->data, placewewant);
129
130

    edit_refresh();
131
132
133
134
135

    check_statblank();
    return 1;
}

Chris Allegretta's avatar
Chris Allegretta committed
136
137
int do_up(void)
{
138
#ifndef DISABLE_WRAPPING
Chris Allegretta's avatar
Chris Allegretta committed
139
    wrap_reset();
140
#endif
141
142
143
144
145
146
147
    check_statblank();

    if (current->prev == NULL)
	return 0;

    assert(current_y == current->lineno - edittop->lineno);
    current = current->prev;
148
    current_x = actual_x(current->data, placewewant);
149
150
    if (current_y > 0) {
	update_line(current->next, 0);
151
152
	    /* It was necessary to change current first, so that the
	     * mark display will change! */
153
154
155
156
157
158
159
160
	update_line(current, current_x);
    } else
#ifndef NANO_SMALL
    if (ISSET(SMOOTHSCROLL))
	edit_update(current, TOP);
    else
#endif
	edit_update(current, CENTER);
Chris Allegretta's avatar
Chris Allegretta committed
161
162
    return 1;
}
Chris Allegretta's avatar
Chris Allegretta committed
163

Chris Allegretta's avatar
Chris Allegretta committed
164
165
/* Return value 1 means we moved down, 0 means we were already at the
 * bottom. */
166
167
int do_down(void)
{
168
#ifndef DISABLE_WRAPPING
Chris Allegretta's avatar
Chris Allegretta committed
169
    wrap_reset();
170
#endif
Chris Allegretta's avatar
Chris Allegretta committed
171
    check_statblank();
Chris Allegretta's avatar
Chris Allegretta committed
172
173
174
175

    if (current->next == NULL)
	return 0;

176
    assert(current_y == current->lineno - edittop->lineno);
Chris Allegretta's avatar
Chris Allegretta committed
177
    current = current->next;
178
    current_x = actual_x(current->data, placewewant);
Chris Allegretta's avatar
Chris Allegretta committed
179

180
181
182
    /* Note that current_y is zero-based.  This test checks for the
     * cursor's being not on the last row of the edit window. */
    if (current_y != editwinrows - 1) {
Chris Allegretta's avatar
Chris Allegretta committed
183
184
	update_line(current->prev, 0);
	update_line(current, current_x);
185
186
187
188
189
190
191
192
193
    } else
#ifndef NANO_SMALL
    if (ISSET(SMOOTHSCROLL))
	/* In this case current_y does not change.  The cursor remains
	 * at the bottom of the edit window. */
	edit_update(edittop->next, TOP);
    else
#endif
	edit_update(current, CENTER);
Chris Allegretta's avatar
Chris Allegretta committed
194
195
196
    return 1;
}

197
int do_left(void)
Chris Allegretta's avatar
Chris Allegretta committed
198
{
199
200
201
202
203
    if (current_x > 0)
	current_x--;
    else if (current != fileage) {
	do_up();
	current_x = strlen(current->data);
Chris Allegretta's avatar
Chris Allegretta committed
204
205
206
    }
    placewewant = xplustabs();
    check_statblank();
207
    update_line(current, current_x);
Chris Allegretta's avatar
Chris Allegretta committed
208
209
210
    return 1;
}

211
int do_right(void)
Chris Allegretta's avatar
Chris Allegretta committed
212
{
213
214
215
216
    assert(current_x <= strlen(current->data));

    if (current->data[current_x] != '\0')
	current_x++;
217
    else if (current->next != NULL) {
218
219
	do_down();
	current_x = 0;
Chris Allegretta's avatar
Chris Allegretta committed
220
221
222
    }
    placewewant = xplustabs();
    check_statblank();
223
    update_line(current, current_x);
Chris Allegretta's avatar
Chris Allegretta committed
224
225
    return 1;
}