-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunihex.c
184 lines (155 loc) · 4.53 KB
/
unihex.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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
84
85
86
87
88
89
90
91
92
93
94
95
96
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
/*
* Unicode Hexadecimal mode for QEmacs.
* Copyright (c) 2000, 2001 Fabrice Bellard.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "qe.h"
static int unihex_mode_init(EditState *s, ModeSavedData *saved_data)
{
int ret;
ret = text_mode_init(s, saved_data);
if (ret)
return ret;
s->disp_width = 8;
s->hex_mode = 1;
s->unihex_mode = 1;
s->hex_nibble = 0;
s->wrap = WRAP_TRUNCATE;
return 0;
}
static int unihex_backward_offset(EditState *s, int offset)
{
int pos;
pos = eb_get_char_offset(s->b, offset);
pos = align(pos, s->disp_width);
return eb_goto_char(s->b, pos);
}
static int unihex_display(EditState *s, DisplayState *ds, int offset)
{
int j, len, eof;
int offset1;
unsigned int b;
unsigned int buf[LINE_MAX_SIZE];
unsigned int pos[LINE_MAX_SIZE];
eof = 0;
display_bol(ds);
display_printf(ds, -1, -1, "%08x ", offset);
len = 0;
for(j=0;j<s->disp_width;j++) {
if (offset < s->b->total_size) {
b = eb_nextc(s->b, offset, &offset1);
pos[len] = offset;
buf[len] = b;
len++;
offset = offset1;
}
}
pos[len] = offset;
for(j=0;j<s->disp_width;j++) {
display_char(ds, -1, -1, ' ');
if (j < len) {
display_printhex(ds, pos[j], pos[j+1], buf[j], 4);
} else {
if (!eof) {
eof = 1;
display_printf(ds, pos[j], pos[j] + 1, " ");
} else {
display_printf(ds, -1, -1, " ");
}
}
if ((j & 7) == 7)
display_char(ds, -1, -1, ' ');
}
display_char(ds, -1, -1, ' ');
display_char(ds, -1, -1, ' ');
for(j=0;j<s->disp_width;j++) {
if (j < len) {
b = buf[j];
if (b < ' ' || b == 127)
b = '.';
display_char(ds, pos[j], pos[j+1], b);
} else {
b = ' ';
if (!eof) {
eof = 1;
display_char(ds, pos[j], pos[j] + 1, b);
} else {
display_char(ds, -1, -1, b);
}
}
}
display_eol(ds, -1, -1);
if (len >= s->disp_width)
return offset;
else
return -1;
}
void unihex_move_bol(EditState *s)
{
int pos;
pos = eb_get_char_offset(s->b, s->offset);
pos = align(pos, s->disp_width);
s->offset = eb_goto_char(s->b, pos);
}
void unihex_move_eol(EditState *s)
{
int pos;
pos = eb_get_char_offset(s->b, s->offset);
pos = align(pos, s->disp_width) + s->disp_width - 1;
s->offset = eb_goto_char(s->b, pos);
}
void unihex_move_left_right(EditState *s, int dir)
{
if (dir > 0) {
eb_nextc(s->b, s->offset, &s->offset);
} else {
eb_prevc(s->b, s->offset, &s->offset);
}
}
void unihex_move_up_down(EditState *s, int dir)
{
int pos;
pos = eb_get_char_offset(s->b, s->offset);
pos += dir * s->disp_width;
s->offset = eb_goto_char(s->b, pos);
}
ModeDef unihex_mode = {
"unihex",
instance_size: 0,
mode_probe: NULL,
mode_init: unihex_mode_init,
mode_close: text_mode_close,
text_display: unihex_display,
text_backward_offset: unihex_backward_offset,
move_up_down: unihex_move_up_down,
move_left_right: unihex_move_left_right,
move_bol: unihex_move_bol,
move_eol: unihex_move_eol,
scroll_up_down: text_scroll_up_down,
write_char: hex_write_char,
mouse_goto: text_mouse_goto,
};
static int unihex_init(void)
{
/* first register mode(s) */
qe_register_mode(&unihex_mode);
/* additionnal mode specific keys */
qe_register_binding(KEY_CTRL_LEFT, "decrease-width", "unihex");
qe_register_binding(KEY_CTRL_RIGHT, "increase-width", "unihex");
qe_register_binding(KEY_CTRL('i'), "toggle-hex", "unihex");
return 0;
}
qe_module_init(unihex_init);