move.c 5.56 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-2002 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
26
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
Chris Allegretta's avatar
Chris Allegretta committed
27
#include <assert.h>
Chris Allegretta's avatar
Chris Allegretta committed
28
29
30
31
32
#include "proto.h"
#include "nano.h"

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

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

49
void page_up(void)
Chris Allegretta's avatar
Chris Allegretta committed
50
51
{
    if (edittop != fileage) {
Chris Allegretta's avatar
Chris Allegretta committed
52
53
54
55
56
57
#ifndef NANO_SMALL
	if (ISSET(SMOOTHSCROLL))
	    edit_update(edittop->prev, TOP);
	else
#endif
	{
58
	    edit_update(edittop, CENTER);
59
60
61
62
63
	    /* Now that we've updated the edit window, edittop might be
	       at the top of the file; if so, just move the cursor up one
	       line and don't center it. */
	    if (edittop != fileage)
		center_cursor();
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
64
	    else
65
		reset_cursor();
66
	}
Chris Allegretta's avatar
Chris Allegretta committed
67
68
69
70
71
72
    } else
	current_y = 0;

    update_cursor();
}

73
int do_page_up(void)
74
{
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
75
    int i;
76

77
78
79
80
81
82
83
84
    wrap_reset();
    current_x = 0;
    placewewant = 0;

    if (current == fileage)
	return 0;

    current_y = 0;
85
    current = edittop;
86
87
88
89
    for (i = 0; i <= editwinrows - 3 && current->prev != NULL; i++)
	current = current->prev;

    edit_update(current, TOP);
90
91
92
93
94
95
96
    update_cursor();

    UNSET(KEEP_CUTBUFFER);
    check_statblank();
    return 1;
}

97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
int do_page_down(void)
{
    wrap_reset();
    current_x = 0;
    placewewant = 0;

    if (current == filebot)
	return 0;

    /* AHEM, if we only have a screen or less of text, DON'T do an
       edit_update, just move the cursor to editbot! */
    if (edittop == fileage && editbot == filebot && totlines < editwinrows) {
	current = editbot;
	reset_cursor();
    } else if (editbot != filebot || edittop == fileage) {
	current_y = 0;
	current = editbot;

	if (current->prev != NULL)
	    current = current->prev;
	if (current->prev != NULL)
	    current = current->prev;
	edit_update(current, TOP);
    } else {
	while (current != filebot) {
	    current = current->next;
	    current_y++;
	}
	edit_update(edittop, TOP);
    }

    update_cursor();
    UNSET(KEEP_CUTBUFFER);
    check_statblank();
    return 1;
}

Chris Allegretta's avatar
Chris Allegretta committed
134
135
136
137
int do_up(void)
{
    wrap_reset();
    if (current->prev != NULL) {
Chris Allegretta's avatar
Chris Allegretta committed
138
139
140
141
142
143
144
145
146
147
148
149
	current_x = actual_x(current->prev, placewewant);
	current = current->prev;
	if (current_y > 0) {
	    update_line(current->next, 0);
		/* It is necessary to change current first, so the mark
		   display will change! */
	    current_y--;
	    update_line(current, current_x);
	} else
	    page_up();
	UNSET(KEEP_CUTBUFFER);
	check_statblank();
Chris Allegretta's avatar
Chris Allegretta committed
150
    }
Chris Allegretta's avatar
Chris Allegretta committed
151
152
    return 1;
}
Chris Allegretta's avatar
Chris Allegretta committed
153

Chris Allegretta's avatar
Chris Allegretta committed
154
155
156
157
/* Return value 1 means we moved down, 0 means we were already at the
 * bottom. */
int do_down(void) {
    wrap_reset();
Chris Allegretta's avatar
Chris Allegretta committed
158
159
    UNSET(KEEP_CUTBUFFER);
    check_statblank();
Chris Allegretta's avatar
Chris Allegretta committed
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179

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

    current = current->next;
    current_x = actual_x(current, placewewant);

    /* Note current_y is zero-based.  This test checks for the cursor
     * being on the last row of the edit window. */
    if (current_y == editwinrows - 1) {
#ifndef NANO_SMALL
	if (ISSET(SMOOTHSCROLL)) {
	    /* In this case current_y does not change.  The cursor
	     * remains at the bottom of the edit window. */
	    edittop = edittop->next;
	    editbot = editbot->next;
	    edit_refresh();
	} else
#endif
	{
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
180
181
182
	    /* Set edittop so editbot->next (or else editbot) is
	     * centered, and set current_y = editwinrows / 2. */
	    edit_update(editbot->next != NULL ? editbot->next : editbot, CENTER);
Chris Allegretta's avatar
Chris Allegretta committed
183
184
185
186
187
188
189
	    center_cursor();
	}
    } else {
	update_line(current->prev, 0);
	update_line(current, current_x);
	current_y++;
    }
Chris Allegretta's avatar
Chris Allegretta committed
190
191
192
    return 1;
}

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

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

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