author | Ryan C. Gordon <icculus@icculus.org> |
Wed, 28 Aug 2002 23:27:10 +0000 | |
changeset 481 | c2c8d56ec65c |
parent 374 | 5b75e3dd2cdd |
child 495 | 51ca637c3a28 |
permissions | -rw-r--r-- |
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
1 |
/** |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
2 |
* Test program for PhysicsFS. May only work on Unix. |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
3 |
* |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
4 |
* Please see the file LICENSE in the source's root directory. |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
5 |
* |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
6 |
* This file written by Ryan C. Gordon. |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
7 |
*/ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
8 |
|
214
19846c18071b
Initial autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
191
diff
changeset
|
9 |
#if HAVE_CONFIG_H |
19846c18071b
Initial autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
191
diff
changeset
|
10 |
# include <config.h> |
19846c18071b
Initial autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
191
diff
changeset
|
11 |
#endif |
19846c18071b
Initial autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
191
diff
changeset
|
12 |
|
35
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
13 |
#include <stdio.h> |
38
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
14 |
#include <stdlib.h> |
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
15 |
#include <errno.h> |
72
ad828df14344
Made dependency on readline optional.
Ryan C. Gordon <icculus@icculus.org>
parents:
42
diff
changeset
|
16 |
#include <string.h> |
ad828df14344
Made dependency on readline optional.
Ryan C. Gordon <icculus@icculus.org>
parents:
42
diff
changeset
|
17 |
|
164
a93a65be81fb
Added Metrowerks SIOUX setup code.
Ryan C. Gordon <icculus@icculus.org>
parents:
153
diff
changeset
|
18 |
#if (defined __MWERKS__) |
a93a65be81fb
Added Metrowerks SIOUX setup code.
Ryan C. Gordon <icculus@icculus.org>
parents:
153
diff
changeset
|
19 |
#include <SIOUX.h> |
a93a65be81fb
Added Metrowerks SIOUX setup code.
Ryan C. Gordon <icculus@icculus.org>
parents:
153
diff
changeset
|
20 |
#endif |
a93a65be81fb
Added Metrowerks SIOUX setup code.
Ryan C. Gordon <icculus@icculus.org>
parents:
153
diff
changeset
|
21 |
|
214
19846c18071b
Initial autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
191
diff
changeset
|
22 |
#if (defined PHYSFS_HAVE_READLINE) |
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
23 |
#include <unistd.h> |
214
19846c18071b
Initial autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
191
diff
changeset
|
24 |
#include <readline/readline.h> |
19846c18071b
Initial autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
191
diff
changeset
|
25 |
#include <readline/history.h> |
72
ad828df14344
Made dependency on readline optional.
Ryan C. Gordon <icculus@icculus.org>
parents:
42
diff
changeset
|
26 |
#endif |
ad828df14344
Made dependency on readline optional.
Ryan C. Gordon <icculus@icculus.org>
parents:
42
diff
changeset
|
27 |
|
244
c05afa0425a4
Added getlastmodtime command.
Ryan C. Gordon <icculus@icculus.org>
parents:
237
diff
changeset
|
28 |
#include <time.h> |
c05afa0425a4
Added getlastmodtime command.
Ryan C. Gordon <icculus@icculus.org>
parents:
237
diff
changeset
|
29 |
|
35
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
30 |
#include "physfs.h" |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
31 |
|
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
32 |
#define TEST_VERSION_MAJOR 0 |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
33 |
#define TEST_VERSION_MINOR 1 |
323
6da51f38cfd8
Upped version to 0.1.7.
Ryan C. Gordon <icculus@icculus.org>
parents:
244
diff
changeset
|
34 |
#define TEST_VERSION_PATCH 7 |
35
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
35 |
|
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
36 |
static FILE *history_file = NULL; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
37 |
|
38
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
38 |
static void output_versions(void) |
35
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
39 |
{ |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
40 |
PHYSFS_Version compiled; |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
41 |
PHYSFS_Version linked; |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
42 |
|
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
43 |
PHYSFS_VERSION(&compiled); |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
44 |
PHYSFS_getLinkedVersion(&linked); |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
45 |
|
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
46 |
printf("test_physfs version %d.%d.%d.\n" |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
47 |
" Compiled against PhysicsFS version %d.%d.%d,\n" |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
48 |
" and linked against %d.%d.%d.\n\n", |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
49 |
TEST_VERSION_MAJOR, TEST_VERSION_MINOR, TEST_VERSION_PATCH, |
132
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
108
diff
changeset
|
50 |
(int) compiled.major, (int) compiled.minor, (int) compiled.patch, |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
108
diff
changeset
|
51 |
(int) linked.major, (int) linked.minor, (int) linked.patch); |
35
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
52 |
} /* output_versions */ |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
53 |
|
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
54 |
|
38
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
55 |
static void output_archivers(void) |
35
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
56 |
{ |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
57 |
const PHYSFS_ArchiveInfo **rc = PHYSFS_supportedArchiveTypes(); |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
58 |
const PHYSFS_ArchiveInfo **i; |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
59 |
|
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
60 |
printf("Supported archive types:\n"); |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
61 |
if (*rc == NULL) |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
62 |
printf(" * Apparently, NONE!\n"); |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
63 |
else |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
64 |
{ |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
65 |
for (i = rc; *i != NULL; i++) |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
66 |
{ |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
67 |
printf(" * %s: %s\n Written by %s.\n %s\n", |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
68 |
(*i)->extension, (*i)->description, |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
69 |
(*i)->author, (*i)->url); |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
70 |
} /* for */ |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
71 |
} /* else */ |
38
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
72 |
|
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
73 |
printf("\n"); |
35
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
74 |
} /* output_archivers */ |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
75 |
|
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
76 |
|
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
77 |
static int cmd_quit(char *args) |
38
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
78 |
{ |
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
79 |
return(0); |
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
80 |
} /* cmd_quit */ |
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
81 |
|
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
82 |
|
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
83 |
static int cmd_init(char *args) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
84 |
{ |
170
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
85 |
if (*args == '\"') |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
86 |
{ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
87 |
args++; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
88 |
args[strlen(args) - 1] = '\0'; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
89 |
} /* if */ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
90 |
|
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
91 |
if (PHYSFS_init(args)) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
92 |
printf("Successful.\n"); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
93 |
else |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
94 |
printf("Failure. reason: %s.\n", PHYSFS_getLastError()); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
95 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
96 |
return(1); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
97 |
} /* cmd_init */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
98 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
99 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
100 |
static int cmd_deinit(char *args) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
101 |
{ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
102 |
if (PHYSFS_deinit()) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
103 |
printf("Successful.\n"); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
104 |
else |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
105 |
printf("Failure. reason: %s.\n", PHYSFS_getLastError()); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
106 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
107 |
return(1); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
108 |
} /* cmd_deinit */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
109 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
110 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
111 |
static int cmd_addarchive(char *args) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
112 |
{ |
165
cbb1b0dcf6da
Handles quoted arguments a little bit better (needs some overhauling to do it right, though).
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
113 |
char *ptr = strrchr(args, ' '); |
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
114 |
int appending = atoi(ptr + 1); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
115 |
*ptr = '\0'; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
116 |
|
165
cbb1b0dcf6da
Handles quoted arguments a little bit better (needs some overhauling to do it right, though).
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
117 |
if (*args == '\"') |
cbb1b0dcf6da
Handles quoted arguments a little bit better (needs some overhauling to do it right, though).
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
118 |
{ |
cbb1b0dcf6da
Handles quoted arguments a little bit better (needs some overhauling to do it right, though).
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
119 |
args++; |
cbb1b0dcf6da
Handles quoted arguments a little bit better (needs some overhauling to do it right, though).
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
120 |
*(ptr - 1) = '\0'; |
170
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
121 |
} /* if */ |
165
cbb1b0dcf6da
Handles quoted arguments a little bit better (needs some overhauling to do it right, though).
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
122 |
|
cbb1b0dcf6da
Handles quoted arguments a little bit better (needs some overhauling to do it right, though).
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
123 |
/*printf("[%s], [%d]\n", args, appending);*/ |
cbb1b0dcf6da
Handles quoted arguments a little bit better (needs some overhauling to do it right, though).
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
124 |
|
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
125 |
if (PHYSFS_addToSearchPath(args, appending)) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
126 |
printf("Successful.\n"); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
127 |
else |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
128 |
printf("Failure. reason: %s.\n", PHYSFS_getLastError()); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
129 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
130 |
return(1); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
131 |
} /* cmd_addarchive */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
132 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
133 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
134 |
static int cmd_removearchive(char *args) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
135 |
{ |
170
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
136 |
if (*args == '\"') |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
137 |
{ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
138 |
args++; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
139 |
args[strlen(args) - 1] = '\0'; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
140 |
} /* if */ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
141 |
|
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
142 |
if (PHYSFS_removeFromSearchPath(args)) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
143 |
printf("Successful.\n"); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
144 |
else |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
145 |
printf("Failure. reason: %s.\n", PHYSFS_getLastError()); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
146 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
147 |
return(1); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
148 |
} /* cmd_removearchive */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
149 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
150 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
151 |
static int cmd_enumerate(char *args) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
152 |
{ |
170
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
153 |
char **rc; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
154 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
155 |
if (*args == '\"') |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
156 |
{ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
157 |
args++; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
158 |
args[strlen(args) - 1] = '\0'; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
159 |
} /* if */ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
160 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
161 |
rc = PHYSFS_enumerateFiles(args); |
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
162 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
163 |
if (rc == NULL) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
164 |
printf("Failure. reason: %s.\n", PHYSFS_getLastError()); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
165 |
else |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
166 |
{ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
167 |
int file_count; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
168 |
char **i; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
169 |
for (i = rc, file_count = 0; *i != NULL; i++, file_count++) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
170 |
printf("%s\n", *i); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
171 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
172 |
printf("\n total (%d) files.\n", file_count); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
173 |
PHYSFS_freeList(rc); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
174 |
} /* else */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
175 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
176 |
return(1); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
177 |
} /* cmd_enumerate */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
178 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
179 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
180 |
static int cmd_getdirsep(char *args) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
181 |
{ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
182 |
printf("Directory separator is [%s].\n", PHYSFS_getDirSeparator()); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
183 |
return(1); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
184 |
} /* cmd_getdirsep */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
185 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
186 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
187 |
static int cmd_getlasterror(char *args) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
188 |
{ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
189 |
printf("last error is [%s].\n", PHYSFS_getLastError()); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
190 |
return(1); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
191 |
} /* cmd_getlasterror */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
192 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
193 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
194 |
static int cmd_getcdromdirs(char *args) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
195 |
{ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
196 |
char **rc = PHYSFS_getCdRomDirs(); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
197 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
198 |
if (rc == NULL) |
170
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
199 |
printf("Failure. Reason: [%s].\n", PHYSFS_getLastError()); |
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
200 |
else |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
201 |
{ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
202 |
int dir_count; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
203 |
char **i; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
204 |
for (i = rc, dir_count = 0; *i != NULL; i++, dir_count++) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
205 |
printf("%s\n", *i); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
206 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
207 |
printf("\n total (%d) drives.\n", dir_count); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
208 |
PHYSFS_freeList(rc); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
209 |
} /* else */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
210 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
211 |
return(1); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
212 |
} /* cmd_getcdromdirs */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
213 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
214 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
215 |
static int cmd_getsearchpath(char *args) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
216 |
{ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
217 |
char **rc = PHYSFS_getSearchPath(); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
218 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
219 |
if (rc == NULL) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
220 |
printf("Failure. reason: %s.\n", PHYSFS_getLastError()); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
221 |
else |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
222 |
{ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
223 |
int dir_count; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
224 |
char **i; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
225 |
for (i = rc, dir_count = 0; *i != NULL; i++, dir_count++) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
226 |
printf("%s\n", *i); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
227 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
228 |
printf("\n total (%d) directories.\n", dir_count); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
229 |
PHYSFS_freeList(rc); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
230 |
} /* else */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
231 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
232 |
return(1); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
233 |
} /* cmd_getcdromdirs */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
234 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
235 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
236 |
static int cmd_getbasedir(char *args) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
237 |
{ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
238 |
printf("Base dir is [%s].\n", PHYSFS_getBaseDir()); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
239 |
return(1); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
240 |
} /* cmd_getbasedir */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
241 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
242 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
243 |
static int cmd_getuserdir(char *args) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
244 |
{ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
245 |
printf("User dir is [%s].\n", PHYSFS_getUserDir()); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
246 |
return(1); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
247 |
} /* cmd_getuserdir */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
248 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
249 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
250 |
static int cmd_getwritedir(char *args) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
251 |
{ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
252 |
printf("Write dir is [%s].\n", PHYSFS_getWriteDir()); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
253 |
return(1); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
254 |
} /* cmd_getwritedir */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
255 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
256 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
257 |
static int cmd_setwritedir(char *args) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
258 |
{ |
170
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
259 |
if (*args == '\"') |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
260 |
{ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
261 |
args++; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
262 |
args[strlen(args) - 1] = '\0'; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
263 |
} /* if */ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
264 |
|
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
265 |
if (PHYSFS_setWriteDir(args)) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
266 |
printf("Successful.\n"); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
267 |
else |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
268 |
printf("Failure. reason: %s.\n", PHYSFS_getLastError()); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
269 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
270 |
return(1); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
271 |
} /* cmd_setwritedir */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
272 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
273 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
274 |
static int cmd_permitsyms(char *args) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
275 |
{ |
170
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
276 |
int num; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
277 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
278 |
if (*args == '\"') |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
279 |
{ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
280 |
args++; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
281 |
args[strlen(args) - 1] = '\0'; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
282 |
} /* if */ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
283 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
284 |
num = atoi(args); |
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
285 |
PHYSFS_permitSymbolicLinks(num); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
286 |
printf("Symlinks are now %s.\n", num ? "permitted" : "forbidden"); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
287 |
return(1); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
288 |
} /* cmd_permitsyms */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
289 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
290 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
291 |
static int cmd_setsaneconfig(char *args) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
292 |
{ |
101
bd18e17ad6ad
Changed PHYSFS_setSaneConfig()'s behaviour. API BREAKAGE.
Ryan C. Gordon <icculus@icculus.org>
parents:
74
diff
changeset
|
293 |
char *org; |
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
294 |
char *appName; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
295 |
char *arcExt; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
296 |
int inclCD; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
297 |
int arcsFirst; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
298 |
char *ptr = args; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
299 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
300 |
/* ugly. */ |
101
bd18e17ad6ad
Changed PHYSFS_setSaneConfig()'s behaviour. API BREAKAGE.
Ryan C. Gordon <icculus@icculus.org>
parents:
74
diff
changeset
|
301 |
org = ptr; |
bd18e17ad6ad
Changed PHYSFS_setSaneConfig()'s behaviour. API BREAKAGE.
Ryan C. Gordon <icculus@icculus.org>
parents:
74
diff
changeset
|
302 |
ptr = strchr(ptr, ' '); *ptr = '\0'; ptr++; appName = ptr; |
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
303 |
ptr = strchr(ptr, ' '); *ptr = '\0'; ptr++; arcExt = ptr; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
304 |
ptr = strchr(ptr, ' '); *ptr = '\0'; ptr++; inclCD = atoi(arcExt); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
305 |
arcsFirst = atoi(ptr); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
306 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
307 |
if (strcmp(arcExt, "!") == 0) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
308 |
arcExt = NULL; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
309 |
|
101
bd18e17ad6ad
Changed PHYSFS_setSaneConfig()'s behaviour. API BREAKAGE.
Ryan C. Gordon <icculus@icculus.org>
parents:
74
diff
changeset
|
310 |
if (PHYSFS_setSaneConfig(org, appName, arcExt, inclCD, arcsFirst)) |
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
311 |
printf("Successful.\n"); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
312 |
else |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
313 |
printf("Failure. reason: %s.\n", PHYSFS_getLastError()); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
314 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
315 |
return(1); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
316 |
} /* cmd_setsaneconfig */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
317 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
318 |
|
42
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
319 |
static int cmd_mkdir(char *args) |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
320 |
{ |
170
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
321 |
if (*args == '\"') |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
322 |
{ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
323 |
args++; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
324 |
args[strlen(args) - 1] = '\0'; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
325 |
} /* if */ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
326 |
|
42
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
327 |
if (PHYSFS_mkdir(args)) |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
328 |
printf("Successful.\n"); |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
329 |
else |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
330 |
printf("Failure. reason: %s.\n", PHYSFS_getLastError()); |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
331 |
|
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
332 |
return(1); |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
333 |
} /* cmd_mkdir */ |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
334 |
|
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
335 |
|
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
336 |
static int cmd_delete(char *args) |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
337 |
{ |
170
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
338 |
if (*args == '\"') |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
339 |
{ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
340 |
args++; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
341 |
args[strlen(args) - 1] = '\0'; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
342 |
} /* if */ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
343 |
|
42
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
344 |
if (PHYSFS_delete(args)) |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
345 |
printf("Successful.\n"); |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
346 |
else |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
347 |
printf("Failure. reason: %s.\n", PHYSFS_getLastError()); |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
348 |
|
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
349 |
return(1); |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
350 |
} /* cmd_delete */ |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
351 |
|
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
352 |
|
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
353 |
static int cmd_getrealdir(char *args) |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
354 |
{ |
170
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
355 |
const char *rc; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
356 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
357 |
if (*args == '\"') |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
358 |
{ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
359 |
args++; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
360 |
args[strlen(args) - 1] = '\0'; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
361 |
} /* if */ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
362 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
363 |
rc = PHYSFS_getRealDir(args); |
42
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
364 |
if (rc) |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
365 |
printf("Found at [%s].\n", rc); |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
366 |
else |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
367 |
printf("Not found.\n"); |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
368 |
|
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
369 |
return(1); |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
370 |
} /* cmd_getrealdir */ |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
371 |
|
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
372 |
|
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
373 |
static int cmd_exists(char *args) |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
374 |
{ |
170
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
375 |
int rc; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
376 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
377 |
if (*args == '\"') |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
378 |
{ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
379 |
args++; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
380 |
args[strlen(args) - 1] = '\0'; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
381 |
} /* if */ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
382 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
383 |
rc = PHYSFS_exists(args); |
42
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
384 |
printf("File %sexists.\n", rc ? "" : "does not "); |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
385 |
return(1); |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
386 |
} /* cmd_exists */ |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
387 |
|
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
388 |
|
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
389 |
static int cmd_isdir(char *args) |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
390 |
{ |
170
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
391 |
int rc; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
392 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
393 |
if (*args == '\"') |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
394 |
{ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
395 |
args++; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
396 |
args[strlen(args) - 1] = '\0'; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
397 |
} /* if */ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
398 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
399 |
rc = PHYSFS_isDirectory(args); |
42
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
400 |
printf("File %s a directory.\n", rc ? "is" : "is NOT"); |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
401 |
return(1); |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
402 |
} /* cmd_isdir */ |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
403 |
|
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
404 |
|
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
405 |
static int cmd_issymlink(char *args) |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
406 |
{ |
170
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
407 |
int rc; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
408 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
409 |
if (*args == '\"') |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
410 |
{ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
411 |
args++; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
412 |
args[strlen(args) - 1] = '\0'; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
413 |
} /* if */ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
414 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
415 |
rc = PHYSFS_isSymbolicLink(args); |
42
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
416 |
printf("File %s a symlink.\n", rc ? "is" : "is NOT"); |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
417 |
return(1); |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
418 |
} /* cmd_issymlink */ |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
419 |
|
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
420 |
|
108 | 421 |
static int cmd_cat(char *args) |
422 |
{ |
|
170
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
423 |
PHYSFS_file *f; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
424 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
425 |
if (*args == '\"') |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
426 |
{ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
427 |
args++; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
428 |
args[strlen(args) - 1] = '\0'; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
429 |
} /* if */ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
430 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
431 |
f = PHYSFS_openRead(args); |
108 | 432 |
if (f == NULL) |
433 |
printf("failed to open. Reason: [%s].\n", PHYSFS_getLastError()); |
|
434 |
else |
|
435 |
{ |
|
436 |
while (1) |
|
437 |
{ |
|
438 |
char buffer[128]; |
|
132
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
108
diff
changeset
|
439 |
PHYSFS_sint64 rc; |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
108
diff
changeset
|
440 |
PHYSFS_sint64 i; |
108 | 441 |
rc = PHYSFS_read(f, buffer, 1, sizeof (buffer)); |
442 |
||
443 |
for (i = 0; i < rc; i++) |
|
444 |
fputc((int) buffer[i], stdout); |
|
445 |
||
446 |
if (rc < sizeof (buffer)) |
|
447 |
{ |
|
448 |
printf("\n\n"); |
|
449 |
if (!PHYSFS_eof(f)) |
|
132
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
108
diff
changeset
|
450 |
{ |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
108
diff
changeset
|
451 |
printf("\n (Error condition in reading. Reason: [%s])\n\n", |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
108
diff
changeset
|
452 |
PHYSFS_getLastError()); |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
108
diff
changeset
|
453 |
} /* if */ |
108 | 454 |
PHYSFS_close(f); |
455 |
return(1); |
|
456 |
} /* if */ |
|
457 |
} /* while */ |
|
458 |
} /* else */ |
|
459 |
||
460 |
return(1); |
|
461 |
} /* cmd_cat */ |
|
462 |
||
463 |
||
170
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
464 |
static int cmd_filelength(char *args) |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
465 |
{ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
466 |
PHYSFS_file *f; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
467 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
468 |
if (*args == '\"') |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
469 |
{ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
470 |
args++; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
471 |
args[strlen(args) - 1] = '\0'; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
472 |
} /* if */ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
473 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
474 |
f = PHYSFS_openRead(args); |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
475 |
if (f == NULL) |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
476 |
printf("failed to open. Reason: [%s].\n", PHYSFS_getLastError()); |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
477 |
else |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
478 |
{ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
479 |
PHYSFS_sint64 len = PHYSFS_fileLength(f); |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
480 |
if (len == -1) |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
481 |
printf("failed to determine length. Reason: [%s].\n", PHYSFS_getLastError()); |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
482 |
else |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
483 |
printf(" (cast to int) %d bytes.\n", (int) len); |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
484 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
485 |
PHYSFS_close(f); |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
486 |
} /* else */ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
487 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
488 |
return(1); |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
489 |
} /* cmd_filelength */ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
490 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
491 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
492 |
#define WRITESTR "The cat sat on the mat.\n\n" |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
493 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
494 |
static int cmd_append(char *args) |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
495 |
{ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
496 |
PHYSFS_file *f; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
497 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
498 |
if (*args == '\"') |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
499 |
{ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
500 |
args++; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
501 |
args[strlen(args) - 1] = '\0'; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
502 |
} /* if */ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
503 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
504 |
f = PHYSFS_openAppend(args); |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
505 |
if (f == NULL) |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
506 |
printf("failed to open. Reason: [%s].\n", PHYSFS_getLastError()); |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
507 |
else |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
508 |
{ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
509 |
size_t bw = strlen(WRITESTR); |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
510 |
PHYSFS_sint64 rc = PHYSFS_write(f, WRITESTR, 1, bw); |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
511 |
if (rc != bw) |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
512 |
{ |
182
a47c39af46ad
Patched to compile on Linux/gcc.
Ryan C. Gordon <icculus@icculus.org>
parents:
170
diff
changeset
|
513 |
printf("Wrote (%d) of (%d) bytes. Reason: [%s].\n", |
a47c39af46ad
Patched to compile on Linux/gcc.
Ryan C. Gordon <icculus@icculus.org>
parents:
170
diff
changeset
|
514 |
(int) rc, (int) bw, PHYSFS_getLastError()); |
170
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
515 |
} /* if */ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
516 |
else |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
517 |
{ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
518 |
printf("Successful.\n"); |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
519 |
} /* else */ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
520 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
521 |
PHYSFS_close(f); |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
522 |
} /* else */ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
523 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
524 |
return(1); |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
525 |
} /* cmd_append */ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
526 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
527 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
528 |
static int cmd_write(char *args) |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
529 |
{ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
530 |
PHYSFS_file *f; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
531 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
532 |
if (*args == '\"') |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
533 |
{ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
534 |
args++; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
535 |
args[strlen(args) - 1] = '\0'; |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
536 |
} /* if */ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
537 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
538 |
f = PHYSFS_openWrite(args); |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
539 |
if (f == NULL) |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
540 |
printf("failed to open. Reason: [%s].\n", PHYSFS_getLastError()); |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
541 |
else |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
542 |
{ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
543 |
size_t bw = strlen(WRITESTR); |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
544 |
PHYSFS_sint64 rc = PHYSFS_write(f, WRITESTR, 1, bw); |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
545 |
if (rc != bw) |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
546 |
{ |
182
a47c39af46ad
Patched to compile on Linux/gcc.
Ryan C. Gordon <icculus@icculus.org>
parents:
170
diff
changeset
|
547 |
printf("Wrote (%d) of (%d) bytes. Reason: [%s].\n", |
a47c39af46ad
Patched to compile on Linux/gcc.
Ryan C. Gordon <icculus@icculus.org>
parents:
170
diff
changeset
|
548 |
(int) rc, (int) bw, PHYSFS_getLastError()); |
170
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
549 |
} /* if */ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
550 |
else |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
551 |
{ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
552 |
printf("Successful.\n"); |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
553 |
} /* else */ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
554 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
555 |
PHYSFS_close(f); |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
556 |
} /* else */ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
557 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
558 |
return(1); |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
559 |
} /* cmd_write */ |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
560 |
|
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
561 |
|
244
c05afa0425a4
Added getlastmodtime command.
Ryan C. Gordon <icculus@icculus.org>
parents:
237
diff
changeset
|
562 |
static void modTimeToStr(PHYSFS_sint64 modtime, char *modstr, size_t strsize) |
c05afa0425a4
Added getlastmodtime command.
Ryan C. Gordon <icculus@icculus.org>
parents:
237
diff
changeset
|
563 |
{ |
c05afa0425a4
Added getlastmodtime command.
Ryan C. Gordon <icculus@icculus.org>
parents:
237
diff
changeset
|
564 |
time_t t = (time_t) modtime; |
c05afa0425a4
Added getlastmodtime command.
Ryan C. Gordon <icculus@icculus.org>
parents:
237
diff
changeset
|
565 |
char *str = ctime(&t); |
c05afa0425a4
Added getlastmodtime command.
Ryan C. Gordon <icculus@icculus.org>
parents:
237
diff
changeset
|
566 |
strncpy(modstr, str, strsize); |
c05afa0425a4
Added getlastmodtime command.
Ryan C. Gordon <icculus@icculus.org>
parents:
237
diff
changeset
|
567 |
modstr[strsize-1] = '\0'; |
c05afa0425a4
Added getlastmodtime command.
Ryan C. Gordon <icculus@icculus.org>
parents:
237
diff
changeset
|
568 |
} /* modTimeToStr */ |
c05afa0425a4
Added getlastmodtime command.
Ryan C. Gordon <icculus@icculus.org>
parents:
237
diff
changeset
|
569 |
|
c05afa0425a4
Added getlastmodtime command.
Ryan C. Gordon <icculus@icculus.org>
parents:
237
diff
changeset
|
570 |
|
c05afa0425a4
Added getlastmodtime command.
Ryan C. Gordon <icculus@icculus.org>
parents:
237
diff
changeset
|
571 |
static int cmd_getlastmodtime(char *args) |
c05afa0425a4
Added getlastmodtime command.
Ryan C. Gordon <icculus@icculus.org>
parents:
237
diff
changeset
|
572 |
{ |
c05afa0425a4
Added getlastmodtime command.
Ryan C. Gordon <icculus@icculus.org>
parents:
237
diff
changeset
|
573 |
PHYSFS_sint64 rc = PHYSFS_getLastModTime(args); |
c05afa0425a4
Added getlastmodtime command.
Ryan C. Gordon <icculus@icculus.org>
parents:
237
diff
changeset
|
574 |
if (rc == -1) |
c05afa0425a4
Added getlastmodtime command.
Ryan C. Gordon <icculus@icculus.org>
parents:
237
diff
changeset
|
575 |
printf("Failed to determine. Reason: [%s].\n", PHYSFS_getLastError()); |
c05afa0425a4
Added getlastmodtime command.
Ryan C. Gordon <icculus@icculus.org>
parents:
237
diff
changeset
|
576 |
else |
c05afa0425a4
Added getlastmodtime command.
Ryan C. Gordon <icculus@icculus.org>
parents:
237
diff
changeset
|
577 |
{ |
c05afa0425a4
Added getlastmodtime command.
Ryan C. Gordon <icculus@icculus.org>
parents:
237
diff
changeset
|
578 |
char modstr[64]; |
c05afa0425a4
Added getlastmodtime command.
Ryan C. Gordon <icculus@icculus.org>
parents:
237
diff
changeset
|
579 |
modTimeToStr(rc, modstr, sizeof (modstr)); |
c05afa0425a4
Added getlastmodtime command.
Ryan C. Gordon <icculus@icculus.org>
parents:
237
diff
changeset
|
580 |
printf("Last modified: %s (%ld).\n", modstr, (long) rc); |
c05afa0425a4
Added getlastmodtime command.
Ryan C. Gordon <icculus@icculus.org>
parents:
237
diff
changeset
|
581 |
} /* else */ |
c05afa0425a4
Added getlastmodtime command.
Ryan C. Gordon <icculus@icculus.org>
parents:
237
diff
changeset
|
582 |
|
c05afa0425a4
Added getlastmodtime command.
Ryan C. Gordon <icculus@icculus.org>
parents:
237
diff
changeset
|
583 |
return(1); |
c05afa0425a4
Added getlastmodtime command.
Ryan C. Gordon <icculus@icculus.org>
parents:
237
diff
changeset
|
584 |
} /* cmd_getLastModTime */ |
c05afa0425a4
Added getlastmodtime command.
Ryan C. Gordon <icculus@icculus.org>
parents:
237
diff
changeset
|
585 |
|
c05afa0425a4
Added getlastmodtime command.
Ryan C. Gordon <icculus@icculus.org>
parents:
237
diff
changeset
|
586 |
|
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
587 |
/* must have spaces trimmed prior to this call. */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
588 |
static int count_args(const char *str) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
589 |
{ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
590 |
int retval = 0; |
165
cbb1b0dcf6da
Handles quoted arguments a little bit better (needs some overhauling to do it right, though).
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
591 |
int in_quotes = 0; |
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
592 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
593 |
if (str != NULL) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
594 |
{ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
595 |
for (; *str != '\0'; str++) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
596 |
{ |
165
cbb1b0dcf6da
Handles quoted arguments a little bit better (needs some overhauling to do it right, though).
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
597 |
if (*str == '\"') |
cbb1b0dcf6da
Handles quoted arguments a little bit better (needs some overhauling to do it right, though).
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
598 |
in_quotes = !in_quotes; |
cbb1b0dcf6da
Handles quoted arguments a little bit better (needs some overhauling to do it right, though).
Ryan C. Gordon <icculus@icculus.org>
parents:
164
diff
changeset
|
599 |
else if ((*str == ' ') && (!in_quotes)) |
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
600 |
retval++; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
601 |
} /* for */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
602 |
retval++; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
603 |
} /* if */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
604 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
605 |
return(retval); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
606 |
} /* count_args */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
607 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
608 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
609 |
static int cmd_help(char *args); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
610 |
|
38
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
611 |
typedef struct |
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
612 |
{ |
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
613 |
const char *cmd; |
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
614 |
int (*func)(char *args); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
615 |
int argcount; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
616 |
const char *usage; |
38
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
617 |
} command_info; |
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
618 |
|
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
619 |
static const command_info commands[] = |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
620 |
{ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
621 |
{ "quit", cmd_quit, 0, NULL }, |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
622 |
{ "q", cmd_quit, 0, NULL }, |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
623 |
{ "help", cmd_help, 0, NULL }, |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
624 |
{ "init", cmd_init, 1, "<argv0>" }, |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
625 |
{ "deinit", cmd_deinit, 0, NULL }, |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
626 |
{ "addarchive", cmd_addarchive, 2, "<archiveLocation> <append>" }, |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
627 |
{ "removearchive", cmd_removearchive, 1, "<archiveLocation>" }, |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
628 |
{ "enumerate", cmd_enumerate, 1, "<dirToEnumerate>" }, |
374
5b75e3dd2cdd
Made "ls" an alias of "enumerate", since I keep typing it without thinking. :)
Ryan C. Gordon <icculus@icculus.org>
parents:
323
diff
changeset
|
629 |
{ "ls", cmd_enumerate, 1, "<dirToEnumerate>" }, |
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
630 |
{ "getlasterror", cmd_getlasterror, 0, NULL }, |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
631 |
{ "getdirsep", cmd_getdirsep, 0, NULL }, |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
632 |
{ "getcdromdirs", cmd_getcdromdirs, 0, NULL }, |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
633 |
{ "getsearchpath", cmd_getsearchpath, 0, NULL }, |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
634 |
{ "getbasedir", cmd_getbasedir, 0, NULL }, |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
635 |
{ "getuserdir", cmd_getuserdir, 0, NULL }, |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
636 |
{ "getwritedir", cmd_getwritedir, 0, NULL }, |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
637 |
{ "setwritedir", cmd_setwritedir, 1, "<newWriteDir>" }, |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
638 |
{ "permitsymlinks", cmd_permitsyms, 1, "<1or0>" }, |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
639 |
{ "setsaneconfig", cmd_setsaneconfig, 4, "<appName> <arcExt> <includeCdRoms> <archivesFirst>" }, |
42
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
640 |
{ "mkdir", cmd_mkdir, 1, "<dirToMk>" }, |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
641 |
{ "delete", cmd_delete, 1, "<dirToDelete>" }, |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
642 |
{ "getrealdir", cmd_getrealdir, 1, "<fileToFind>" }, |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
643 |
{ "exists", cmd_exists, 1, "<fileToCheck>" }, |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
644 |
{ "isdir", cmd_isdir, 1, "<fileToCheck>" }, |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
645 |
{ "issymlink", cmd_issymlink, 1, "<fileToCheck>" }, |
108 | 646 |
{ "cat", cmd_cat, 1, "<fileToCat>" }, |
170
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
647 |
{ "filelength", cmd_filelength, 1, "<fileToCheck>" }, |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
648 |
{ "append", cmd_append, 1, "<fileToAppend>" }, |
d826bf2c38c8
More hacks to handle quoted arguments. Write, append, and filelength tests. Upped version to 0.1.1.
Ryan C. Gordon <icculus@icculus.org>
parents:
165
diff
changeset
|
649 |
{ "write", cmd_write, 1, "<fileToCreateOrTrash>" }, |
244
c05afa0425a4
Added getlastmodtime command.
Ryan C. Gordon <icculus@icculus.org>
parents:
237
diff
changeset
|
650 |
{ "getlastmodtime", cmd_getlastmodtime, 1, "<fileToExamine>" }, |
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
651 |
{ NULL, NULL, -1, NULL } |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
652 |
}; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
653 |
|
244
c05afa0425a4
Added getlastmodtime command.
Ryan C. Gordon <icculus@icculus.org>
parents:
237
diff
changeset
|
654 |
|
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
655 |
static void output_usage(const char *intro, const command_info *cmdinfo) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
656 |
{ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
657 |
if (cmdinfo->argcount == 0) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
658 |
printf("%s \"%s\" (no arguments)\n", intro, cmdinfo->cmd); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
659 |
else |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
660 |
printf("%s \"%s %s\"\n", intro, cmdinfo->cmd, cmdinfo->usage); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
661 |
} /* output_usage */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
662 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
663 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
664 |
static int cmd_help(char *args) |
38
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
665 |
{ |
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
666 |
const command_info *i; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
667 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
668 |
printf("Commands:\n"); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
669 |
for (i = commands; i->cmd != NULL; i++) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
670 |
output_usage(" -", i); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
671 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
672 |
return(1); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
673 |
} /* output_cmd_help */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
674 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
675 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
676 |
static void trim_command(const char *orig, char *copy) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
677 |
{ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
678 |
const char *i; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
679 |
char *writeptr = copy; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
680 |
int spacecount = 0; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
681 |
int have_first = 0; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
682 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
683 |
for (i = orig; *i != '\0'; i++) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
684 |
{ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
685 |
if (*i == ' ') |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
686 |
{ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
687 |
if ((*(i + 1) != ' ') && (*(i + 1) != '\0')) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
688 |
{ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
689 |
if ((have_first) && (!spacecount)) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
690 |
{ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
691 |
spacecount++; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
692 |
*writeptr = ' '; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
693 |
writeptr++; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
694 |
} /* if */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
695 |
} /* if */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
696 |
} /* if */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
697 |
else |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
698 |
{ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
699 |
have_first = 1; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
700 |
spacecount = 0; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
701 |
*writeptr = *i; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
702 |
writeptr++; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
703 |
} /* else */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
704 |
} /* for */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
705 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
706 |
*writeptr = '\0'; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
707 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
708 |
/* |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
709 |
printf("\n command is [%s].\n", copy); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
710 |
*/ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
711 |
} /* trim_command */ |
38
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
712 |
|
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
713 |
|
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
714 |
static int process_command(char *complete_cmd) |
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
715 |
{ |
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
716 |
const command_info *i; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
717 |
char *cmd_copy = malloc(strlen(complete_cmd) + 1); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
718 |
char *args; |
38
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
719 |
int rc = 1; |
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
720 |
|
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
721 |
if (cmd_copy == NULL) |
38
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
722 |
{ |
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
723 |
printf("\n\n\nOUT OF MEMORY!\n\n\n"); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
724 |
return(0); |
38
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
725 |
} /* if */ |
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
726 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
727 |
trim_command(complete_cmd, cmd_copy); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
728 |
args = strchr(cmd_copy, ' '); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
729 |
if (args != NULL) |
38
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
730 |
{ |
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
731 |
*args = '\0'; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
732 |
args++; |
38
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
733 |
} /* else */ |
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
734 |
|
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
735 |
if (cmd_copy[0] != '\0') |
38
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
736 |
{ |
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
737 |
for (i = commands; i->cmd != NULL; i++) |
38
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
738 |
{ |
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
739 |
if (strcmp(i->cmd, cmd_copy) == 0) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
740 |
{ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
741 |
if ((i->argcount >= 0) && (count_args(args) != i->argcount)) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
742 |
output_usage("usage:", i); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
743 |
else |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
744 |
rc = i->func(args); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
745 |
break; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
746 |
} /* if */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
747 |
} /* for */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
748 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
749 |
if (i->cmd == NULL) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
750 |
printf("Unknown command. Enter \"help\" for instructions.\n"); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
751 |
|
214
19846c18071b
Initial autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
191
diff
changeset
|
752 |
#if (defined PHYSFS_HAVE_READLINE) |
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
753 |
add_history(complete_cmd); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
754 |
if (history_file) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
755 |
{ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
756 |
fprintf(history_file, "%s\n", complete_cmd); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
757 |
fflush(history_file); |
38
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
758 |
} /* if */ |
72
ad828df14344
Made dependency on readline optional.
Ryan C. Gordon <icculus@icculus.org>
parents:
42
diff
changeset
|
759 |
#endif |
ad828df14344
Made dependency on readline optional.
Ryan C. Gordon <icculus@icculus.org>
parents:
42
diff
changeset
|
760 |
|
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
761 |
} /* if */ |
38
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
762 |
|
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
763 |
free(cmd_copy); |
38
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
764 |
return(rc); |
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
765 |
} /* process_command */ |
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
766 |
|
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
767 |
|
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
768 |
static void open_history_file(void) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
769 |
{ |
214
19846c18071b
Initial autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
191
diff
changeset
|
770 |
#if (defined PHYSFS_HAVE_READLINE) |
42
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
771 |
#if 0 |
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
772 |
const char *envr = getenv("TESTPHYSFS_HISTORY"); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
773 |
if (!envr) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
774 |
return; |
42
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
775 |
#else |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
776 |
char envr[256]; |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
777 |
strcpy(envr, PHYSFS_getUserDir()); |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
778 |
strcat(envr, ".testphys_history"); |
c9cab2b09437
Added more API calls, always uses a history file, now.
Ryan C. Gordon <icculus@icculus.org>
parents:
40
diff
changeset
|
779 |
#endif |
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
780 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
781 |
if (access(envr, F_OK) == 0) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
782 |
{ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
783 |
char buf[512]; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
784 |
FILE *f = fopen(envr, "r"); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
785 |
if (!f) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
786 |
{ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
787 |
printf("\n\n" |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
788 |
"Could not open history file [%s] for reading!\n" |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
789 |
" Will not have past history available.\n\n", |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
790 |
envr); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
791 |
return; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
792 |
} /* if */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
793 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
794 |
do |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
795 |
{ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
796 |
fgets(buf, sizeof (buf), f); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
797 |
if (buf[strlen(buf) - 1] == '\n') |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
798 |
buf[strlen(buf) - 1] = '\0'; |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
799 |
add_history(buf); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
800 |
} while (!feof(f)); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
801 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
802 |
fclose(f); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
803 |
} /* if */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
804 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
805 |
history_file = fopen(envr, "ab"); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
806 |
if (!history_file) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
807 |
{ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
808 |
printf("\n\n" |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
809 |
"Could not open history file [%s] for appending!\n" |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
810 |
" Will not be able to record this session's history.\n\n", |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
811 |
envr); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
812 |
} /* if */ |
72
ad828df14344
Made dependency on readline optional.
Ryan C. Gordon <icculus@icculus.org>
parents:
42
diff
changeset
|
813 |
#endif |
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
814 |
} /* open_history_file */ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
815 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
816 |
|
35
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
817 |
int main(int argc, char **argv) |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
818 |
{ |
38
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
819 |
char *buf = NULL; |
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
820 |
int rc = 0; |
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
821 |
|
164
a93a65be81fb
Added Metrowerks SIOUX setup code.
Ryan C. Gordon <icculus@icculus.org>
parents:
153
diff
changeset
|
822 |
#if (defined __MWERKS__) |
a93a65be81fb
Added Metrowerks SIOUX setup code.
Ryan C. Gordon <icculus@icculus.org>
parents:
153
diff
changeset
|
823 |
extern tSIOUXSettings SIOUXSettings; |
a93a65be81fb
Added Metrowerks SIOUX setup code.
Ryan C. Gordon <icculus@icculus.org>
parents:
153
diff
changeset
|
824 |
SIOUXSettings.asktosaveonclose = 0; |
a93a65be81fb
Added Metrowerks SIOUX setup code.
Ryan C. Gordon <icculus@icculus.org>
parents:
153
diff
changeset
|
825 |
SIOUXSettings.autocloseonquit = 1; |
a93a65be81fb
Added Metrowerks SIOUX setup code.
Ryan C. Gordon <icculus@icculus.org>
parents:
153
diff
changeset
|
826 |
SIOUXSettings.rows = 40; |
a93a65be81fb
Added Metrowerks SIOUX setup code.
Ryan C. Gordon <icculus@icculus.org>
parents:
153
diff
changeset
|
827 |
SIOUXSettings.columns = 120; |
a93a65be81fb
Added Metrowerks SIOUX setup code.
Ryan C. Gordon <icculus@icculus.org>
parents:
153
diff
changeset
|
828 |
#endif |
a93a65be81fb
Added Metrowerks SIOUX setup code.
Ryan C. Gordon <icculus@icculus.org>
parents:
153
diff
changeset
|
829 |
|
38
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
830 |
printf("\n"); |
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
831 |
|
35
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
832 |
if (!PHYSFS_init(argv[0])) |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
833 |
{ |
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
834 |
printf("PHYSFS_init() failed!\n reason: %s.\n", PHYSFS_getLastError()); |
35
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
835 |
return(1); |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
836 |
} /* if */ |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
837 |
|
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
838 |
output_versions(); |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
839 |
output_archivers(); |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
840 |
|
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
841 |
open_history_file(); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
842 |
|
38
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
843 |
printf("Enter commands. Enter \"help\" for instructions.\n"); |
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
844 |
|
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
845 |
do |
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
846 |
{ |
214
19846c18071b
Initial autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
191
diff
changeset
|
847 |
#if (defined PHYSFS_HAVE_READLINE) |
38
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
848 |
buf = readline("> "); |
72
ad828df14344
Made dependency on readline optional.
Ryan C. Gordon <icculus@icculus.org>
parents:
42
diff
changeset
|
849 |
#else |
74
a4a5066fb640
Compiles and runs on Visual C. What an uphill climb THAT was.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
850 |
int i; |
72
ad828df14344
Made dependency on readline optional.
Ryan C. Gordon <icculus@icculus.org>
parents:
42
diff
changeset
|
851 |
buf = malloc(512); |
ad828df14344
Made dependency on readline optional.
Ryan C. Gordon <icculus@icculus.org>
parents:
42
diff
changeset
|
852 |
memset(buf, '\0', 512); |
74
a4a5066fb640
Compiles and runs on Visual C. What an uphill climb THAT was.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
853 |
printf("> "); |
a4a5066fb640
Compiles and runs on Visual C. What an uphill climb THAT was.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
854 |
for (i = 0; i < 511; i++) |
a4a5066fb640
Compiles and runs on Visual C. What an uphill climb THAT was.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
855 |
{ |
a4a5066fb640
Compiles and runs on Visual C. What an uphill climb THAT was.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
856 |
int ch = fgetc(stdin); |
a4a5066fb640
Compiles and runs on Visual C. What an uphill climb THAT was.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
857 |
if (ch == EOF) |
a4a5066fb640
Compiles and runs on Visual C. What an uphill climb THAT was.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
858 |
{ |
a4a5066fb640
Compiles and runs on Visual C. What an uphill climb THAT was.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
859 |
strcpy(buf, "quit"); |
a4a5066fb640
Compiles and runs on Visual C. What an uphill climb THAT was.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
860 |
break; |
a4a5066fb640
Compiles and runs on Visual C. What an uphill climb THAT was.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
861 |
} /* if */ |
a4a5066fb640
Compiles and runs on Visual C. What an uphill climb THAT was.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
862 |
else if ((ch == '\n') || (ch == '\r')) |
a4a5066fb640
Compiles and runs on Visual C. What an uphill climb THAT was.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
863 |
{ |
a4a5066fb640
Compiles and runs on Visual C. What an uphill climb THAT was.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
864 |
buf[i] = '\0'; |
a4a5066fb640
Compiles and runs on Visual C. What an uphill climb THAT was.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
865 |
break; |
a4a5066fb640
Compiles and runs on Visual C. What an uphill climb THAT was.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
866 |
} /* else if */ |
a4a5066fb640
Compiles and runs on Visual C. What an uphill climb THAT was.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
867 |
else if (ch == '\b') |
a4a5066fb640
Compiles and runs on Visual C. What an uphill climb THAT was.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
868 |
{ |
a4a5066fb640
Compiles and runs on Visual C. What an uphill climb THAT was.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
869 |
if (i > 0) |
a4a5066fb640
Compiles and runs on Visual C. What an uphill climb THAT was.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
870 |
i--; |
a4a5066fb640
Compiles and runs on Visual C. What an uphill climb THAT was.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
871 |
} /* else if */ |
a4a5066fb640
Compiles and runs on Visual C. What an uphill climb THAT was.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
872 |
else |
a4a5066fb640
Compiles and runs on Visual C. What an uphill climb THAT was.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
873 |
{ |
a4a5066fb640
Compiles and runs on Visual C. What an uphill climb THAT was.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
874 |
buf[i] = (char) ch; |
a4a5066fb640
Compiles and runs on Visual C. What an uphill climb THAT was.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
875 |
} /* else */ |
a4a5066fb640
Compiles and runs on Visual C. What an uphill climb THAT was.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
876 |
} /* for */ |
72
ad828df14344
Made dependency on readline optional.
Ryan C. Gordon <icculus@icculus.org>
parents:
42
diff
changeset
|
877 |
#endif |
74
a4a5066fb640
Compiles and runs on Visual C. What an uphill climb THAT was.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
878 |
|
38
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
879 |
rc = process_command(buf); |
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
880 |
free(buf); |
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
881 |
} while (rc); |
feb16343f44c
More work; command parsing via readline.
Ryan C. Gordon <icculus@icculus.org>
parents:
35
diff
changeset
|
882 |
|
40
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
883 |
if (!PHYSFS_deinit()) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
884 |
printf("PHYSFS_deinit() failed!\n reason: %s.\n", PHYSFS_getLastError()); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
885 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
886 |
if (history_file) |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
887 |
fclose(history_file); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
888 |
|
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
889 |
/* |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
890 |
printf("\n\ntest_physfs written by ryan c. gordon.\n"); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
891 |
printf(" it makes you shoot teh railgun bettar.\n"); |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
892 |
*/ |
8cc16df4bada
Much more complete. Still more to go.
Ryan C. Gordon <icculus@icculus.org>
parents:
38
diff
changeset
|
893 |
|
35
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
894 |
return(0); |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
895 |
} /* main */ |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
896 |
|
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
897 |
/* end of test_physfs.c ... */ |
1fba29d8a172
Initial add. Does VERY little right now.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
898 |