inherit COMMAND_BASE;
#include <creator.h>
#define CMD_NUM 5
mapping globals = ([]), ret = ([]), cmds = ([]);
#define tp globals[fd]
#define RET ret[fd]
#define CMDS cmds[this_player()]
mixed cmd(string arg) {
int nfiles = 0;
string bit, *bits;
object *things;
if (!arg) {
return notify_fail("rcsin: No arguments.\n");
}
bits = explode(arg, " ");
arg = "";
bits -= ({ "", 0 });
foreach(bit in bits) {
string files = "", file;
if (bit[0] == '-') {
arg += (" " + bit);
continue;
}
if (sizeof(files = this_player()->get_files(bit))) {
foreach(file in files) {
arg += (" " + file[1..]);
nfiles++;
}
} else {
if(sizeof(things = WIZ_PRESENT->wiz_present(bit, this_player()))) {
file = file_name(things[0]);
sscanf(file, "%s#%*d", file);
if (file_size(file) <= 0)
file += ".c";
arg += (" " + file[1..]);
nfiles++;
}
}
}
if(!nfiles) {
return notify_fail("rcsin: no such file "+arg+".\n");
}
printf("Enter a comment.\n");
CMDS = arg;
this_player()->do_edit(0, "do_ci");
return 1;
}
void do_ci(string comment) {
int fd;
string *cmd = allocate(3);
if (!comment) {
printf("No comment given, aborting.\n");
return;
}
cmd[0] = "-w" + this_player()->query_name();
cmd[1] = "-u";
cmd[2] = "-m"+comment;
cmd += explode(CMDS, " ");
#ifdef DEBUG
printf("CMD: %O\n", cmd);
#endif
fd = external_start(CMD_NUM, cmd, "read_call_back", "write_call_back",
"close_call_back");
tp = this_player();
RET = "";
}
// I _think_ this is the function to write the comment string to the ci command
void read_call_back(int fd, mixed mess) {
mess = replace(mess, "/home/dividsky/mudlib", "");
RET += mess;
}
void write_call_back(int fd) {
tell_object(tp, "rcsin: Write_call_back called.\n");
}
void close_call_back(int fd) {
string file, *file_stuff;
int i;
if (RET != "") {
tp->more_string(RET);
file_stuff = explode(RET, "\n");
i = 0;
while (i + 2 < sizeof(file_stuff)) {
if (file_stuff[i + 2] == "done") { /* success! */
sscanf(file_stuff[i], "%*s <-- %s", file);
RCS_HANDLER->remove_lock(tp, file);
i += 3;
}
else if (sscanf(file_stuff[i], "%*sNo such file or directory")) {
++i;
}
else if (file_stuff[i + 1][0..2] == "ci:") {
i += 2;
}
else {
i += 3;
}
}
} else {
tell_object(tp, "rcsin completed.\n");
}
map_delete(ret, fd);
map_delete(globals, fd);
}