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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
|
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include "7ed.h"
#include <stdint.h>
#define _ONE 1
#define _SINGLE 1
#define _MULTIPLE 2
#define _FAIL '?' // final return value from smode_input to indicate an invalid
#define _VALID 0 // this may only be used to mark as valid or invalid from the validate functions
#define _INVALID -1 // this may only be used to mark as valid or invalid from the validate functions
// _FAIL and _INVALID are sorta tied to eachother
// This will be the new input system for combining commands with line numbers
// Work in progress and far from finished. This is not included when compiling normally.
#define SMODE_MAX_SIZE 33
#define SMODE_MAX_INPUT_SIZE 32
int validate_L(char *smode_buf) {
/*
Check for + (or -)
path 1: If there is a + then check if there is anything else after it. If not then return L+. (DONEish)
1.1: If there is a anything that is not a number from 0-9 then return '?' (safety check)
1.2: If there is a number after the + then check for another number until there is no more numbers. For example we return L+34
1.3: If there happens to be something that is not a number from 0-9 in 1.2 case then immediately return '?' (safety check)
path 2: If there is a number from 1-9 immediately after the L then keep checking for numbers (between 0-9) until there is no more. (DONE)
A valid return would be something like L24 (DONE)
2.1: If there is anything that is not a number from 1-9 then return '?' (DONE)
path 3: If there is nothing else after the L (in this case just an L) then just return an L (DONE)
*/
char nums[] = "123456789";
int L_num_flag = 2;
int plus_num_flag = _INVALID; //If true the if statement will validate if input is valid after the +
int num_flag = _INVALID; // If true the if statement will validate if input is valid after L
if (smode_buf[1] == '+' || smode_buf[1] == '-') {
plus_num_flag = _ONE;
if (smode_buf[2] == '0') {
L_num_flag = _INVALID; // if 0 then its just invalid immediately
}
if (smode_buf[2] != '\n') { // If there is no return we set these flags to false.
plus_num_flag = _INVALID; // If there is a return then no flags are changed and thus we know that the input is only an L+
L_num_flag = _INVALID;
}
for (int i = 0 ; i < 9 ; i++) { // Check if theres a number after +
if (smode_buf[2] == nums[i]) {
plus_num_flag = _VALID;
break;
}
}
}
if (plus_num_flag == _VALID) {
int plus_valid_flag = _INVALID;
L_num_flag = _INVALID; // False
char nums_with_zero[] = "0123456789";
// Check the rest with a loop. Start at 2
for (int i = 1 ; i < SMODE_MAX_INPUT_SIZE ; i++) {
// Nested loop to check every element in nums_with_zero on the current smode element (i)(outer loop)
for (int j = 0 ; j < 10 ; j++) {
if(smode_buf[i] == nums_with_zero[j]) {//check if its not a number. It could be the null terminator so we check if it is
if (smode_buf[i+1] == '\n' || smode_buf[i+1] == '\0') {
L_num_flag = _VALID;
plus_valid_flag = _VALID;
break;
}
break;
}
} //inner nested loop
if (plus_valid_flag == _VALID) {
break;
}
}//outer nested loop
}
if (smode_buf[1] == '0') { // [1] because there is no + at 1. Number starts immediately after L
L_num_flag = _INVALID; // if 0 then its just invalid immediately
}
for (int i = 0 ; i < 9 ; i++) { // Check if it starts with a number
if (smode_buf[1] == nums[i]) {
num_flag = _VALID;
break;
}
}
if (num_flag == 0) { // Start validating if there are numbers after L
int valid_flag = _INVALID;
L_num_flag = _INVALID; // False
char nums_with_zero[] = "0123456789";
// Check the rest with a loop. Start at 2
for (int i = 1 ; i < SMODE_MAX_INPUT_SIZE ; i++) {
// Nested loop to check every element in nums_with_zero on the current smode element (i)(outer loop)
for (int j = 0 ; j < 10 ; j++) {
if(smode_buf[i] == nums_with_zero[j]) {//check if its not a number. It could be the null terminator so we check if it is
if (smode_buf[i+1] == '\n' || smode_buf[i+1] == '\0') {
L_num_flag = _VALID;
valid_flag = _VALID;
break;
}
break;
}
} //inner nested loop
if (valid_flag == _VALID) {
break;
}
}//outer nested loop
}// num_flag if-statement
if (L_num_flag == _VALID) {
return _VALID;
}
if (L_num_flag == _INVALID) {
return _INVALID;
}
if (plus_num_flag == _ONE) {
return _VALID;
}
if (smode_buf[1] == '\n') {
return _VALID;
}
return _INVALID;
}
int validate_N(char *smode_buf) {
/* N will work very similarly to L.
When i mark as (DONE) i don't actually mean the full feature, i mean the input validation for that specific feature to be done.
Just N will create a new line after the focus line (DONE)
N+ or N- Will do nothing (AKA invalid) (DONE)
N+10 Will create 10 lines after the focus line (DONE)
N-10 Will create 10 lines before the focus line (This one's a bit ambitious becasue it might need some extra work) (DONE)
N10 Will create a line after line 10 (NOT DONE)
N0 Will create a line "before" 1 (Not gonna do)
If focus is 1 and we say N-10 Then it will create 10 lines "before" 1 (out of scope for validate_N)
*/
char nums[] = "123456789";
int N_num_flag = _INVALID;
int plus_num_flag = _INVALID; //If true the if statement will validate if input is valid after the +
int num_flag = _INVALID; // If true the if statement will validate if input is valid after L
if (smode_buf[1] == '+' || smode_buf[1] == '-') {
if (smode_buf[2] == '0') {
return _INVALID;
}
if (smode_buf[2] == '\n') { // If its only N+ or N- then invalid
return _INVALID;
}
for (int i = 0 ; i < 9 ; i++) { // Check if theres a number after +
if (smode_buf[2] == nums[i]) {
//printf("Its a number after + \n");
plus_num_flag = _VALID;
break;
}
}
}
if (plus_num_flag == 0) { // Because there is a number after + or - then the flag is 0 and this code runs
int plus_valid_flag = _INVALID;
N_num_flag = _INVALID; // False
char nums_with_zero[] = "0123456789";
// Check the rest with a loop. Start at 2
for (int i = 1 ; i < SMODE_MAX_INPUT_SIZE ; i++) {
// Nested loop to check every element in nums_with_zero on the current smode element (i)(outer loop)
for (int j = 0 ; j < 10 ; j++) {
if(smode_buf[i] == nums_with_zero[j]) {//check if its not a number. It could be the null terminator so we check if it is
if (smode_buf[i+1] == '\n' || smode_buf[i+1] == '\0') {
N_num_flag = _VALID; // valid
plus_valid_flag = _VALID; //valid
break;
}
break;
}
} //inner nested loop
if (plus_valid_flag == _VALID) {
break;
}
}//outer nested loop
}
// We aren't checking for N_num_flag yet because i haven't gotten that far in the code
if (smode_buf[1] == '0') { // [1] because there is no + at 1. Number starts immediately after L
N_num_flag = _INVALID; // if 0 then its just invalid immediately
}
for (int i = 0 ; i < 9 ; i++) { // Check if it starts with a number
if (smode_buf[1] == nums[i]) {
//printf("Its a number!\n");
num_flag = _VALID;
break;
}
}
if (num_flag == 0) { // Start validating if there are numbers after L
int valid_flag = _INVALID;
N_num_flag = _INVALID; // False
char nums_with_zero[] = "0123456789";
// Check the rest with a loop. Start at 2
for (int i = 1 ; i < SMODE_MAX_INPUT_SIZE ; i++) {
// Nested loop to check every element in nums_with_zero on the current smode element (i)(outer loop)
for (int j = 0 ; j < 10 ; j++) {
if(smode_buf[i] == nums_with_zero[j]) {//check if its not a number. It could be the null terminator so we check if it is
if (smode_buf[i+1] == '\n' || smode_buf[i+1] == '\0') {
N_num_flag = _VALID;
valid_flag = _VALID;
break;
}
break;
}
} //inner nested loop
if (valid_flag == _VALID) {
//printf("Validflag!\n");
break;
}
}//outer nested loop
}
if (smode_buf[1] == '\n') {
return _VALID; // just return N
}
if (N_num_flag == _VALID) {
return _VALID; // actually return the valid string here
}
if (N_num_flag == _INVALID) {
return _INVALID; // invalid! return '?'
}
if (plus_num_flag == _VALID) {
return _VALID;
}
return _INVALID;
}
int smode_input(char *single, char **multiple, uint64_t focus) { // This function is for input then calls the appropriate validator
// char *single is for p, e, c, q, a
// char **multiple is for L, n, x and d. Although it can be expanded to be used in p and e.
char smode_buf[SMODE_MAX_SIZE]; // Smode buffer
fprintf(stdout, "(%lu): ", focus); // UI
fgets(smode_buf, SMODE_MAX_SIZE, stdin); // Read user input
switch (smode_buf[0]) {
// from L to D there will be the 'Multiple' options. In their respective cases i will check if the input is valid or not.
// I will not make the program clean the input because that could lead to assumptions.
case 'l':
case 'L': {
int chk = validate_L(smode_buf);
if (chk == _INVALID) {
return _FAIL;
}
*multiple = (char *)malloc(strlen(smode_buf) + 1);
strcpy(*multiple, smode_buf);
return _MULTIPLE;
break; }
case 'n':
case 'N': {
int chk = validate_N(smode_buf);
if (chk == _INVALID) {
return _FAIL;
}
*multiple = (char *)malloc(strlen(smode_buf) + 1);
strcpy(*multiple, smode_buf);
return _MULTIPLE;
break; }
case 'x':
case 'X':
return _MULTIPLE;
break;
case 'd':
case 'D':
*multiple = (char *)malloc(strlen(smode_buf) + 1); // just a test
strcpy(*multiple, smode_buf);
return _MULTIPLE;
break; // singles below this point
case 'p':
case 'P':
*single = smode_buf[0];
return _SINGLE;
break;
case 'e':
case 'E':
*single = smode_buf[0];
return _SINGLE;
break;
case 'c':
case 'C':
*single = smode_buf[0];
return _SINGLE;
break;
case 'q':
case 'Q':
*single = smode_buf[0];
return _SINGLE;
break;
case 'a':
case 'A':
*single = smode_buf[0];
return _SINGLE;
break;
}
return _FAIL;
}
int main () {
// running smode_input will do a few things:
/*
scenario 1: If you input a valid multiple then the function return multiple
and it also returns the valid string to the char pointer you provide to the function
scenario 2: If you input an invalid string, then it will return _FAIL which is basically just '?'
nothing will be returned to multiple nor single
scenario 3: if you input a valid single then it will return _SINGLE
and it will also return the valid single character to the char you provide to the function
scenario 4: if you input an invalid single then it will return _FAIL which is basically just '?'
nothing will be returned to multiple nor single
this scenario is the same as scenario 3.
*/
char *multiple;
char single;
uint64_t focus = 1;
int si_ret = smode_input(&single, &multiple, focus);
if (si_ret == _SINGLE) {
fprintf(stdout, "single\n");
fprintf(stdout, "%c", single);
}
if (si_ret == _MULTIPLE) {
fprintf(stdout, "multiple\n");
fprintf(stdout, "%s", multiple);
free(multiple);
}
if (si_ret == _FAIL) {
fprintf(stdout, "?\n");
}
}
|