added a getopt system, with -f and -h flags

This commit is contained in:
charmlesscoin 2013-08-03 00:45:34 -04:00
parent b9e3bf1fa6
commit 6b8f12e33c

View File

@ -85,7 +85,7 @@ void print_friendlist()
char name[MAX_NAME_LENGTH]; char name[MAX_NAME_LENGTH];
int i = 0; int i = 0;
new_lines("[i] Friend List:"); new_lines("[i] Friend List:");
while(getname(i++, (uint8_t *)name) != -1) { while(getname(i, (uint8_t *)name) != -1) {
/* account for the longest name and the longest "base" string */ /* account for the longest name and the longest "base" string */
char fstring[MAX_NAME_LENGTH + strlen("[i] Friend: NULL\n\tid: ")]; char fstring[MAX_NAME_LENGTH + strlen("[i] Friend: NULL\n\tid: ")];
@ -94,10 +94,11 @@ void print_friendlist()
} else { } else {
sprintf(fstring, "[i] Friend: %s\n\tid: %i", (uint8_t*)name, i); sprintf(fstring, "[i] Friend: %s\n\tid: %i", (uint8_t*)name, i);
} }
i++;
new_lines(fstring); new_lines(fstring);
} }
if(i == 1) if(i == 0)
new_lines("\tno friends! D:"); new_lines("\tno friends! D:");
} }
@ -241,8 +242,7 @@ void line_eval(char *line)
do_refresh(); do_refresh();
} }
else if (inpt_command == 'h') { //help else if (inpt_command == 'h') { //help
new_lines("[i] commands: /f ID (to add friend), /m friendnumber message (to send message), /s status (to change status)"); new_lines(help);
new_lines("[i] /l list (list friends), /h for help, /i for info, /n nick (to change nickname), /q (to quit)");
} }
else if (inpt_command == 'i') { //info else if (inpt_command == 'i') { //info
char idstring[200]; char idstring[200];
@ -358,10 +358,10 @@ void print_statuschange(int friendnumber, uint8_t *string, uint16_t length)
new_lines(msg); new_lines(msg);
} }
void load_key() void load_key(char *path)
{ {
FILE *data_file = NULL; FILE *data_file = fopen(path, "r");
data_file = fopen("data","r");
if (data_file) { if (data_file) {
//load keys //load keys
fseek(data_file, 0, SEEK_END); fseek(data_file, 0, SEEK_END);
@ -373,12 +373,21 @@ void load_key()
exit(1); exit(1);
} }
Messenger_load(data, size); Messenger_load(data, size);
} else { } else {
fputs("(saving new keys now)\n", stderr);
//else save new keys //else save new keys
int size = Messenger_size(); int size = Messenger_size();
uint8_t data[size]; uint8_t data[size];
Messenger_save(data); Messenger_save(data);
data_file = fopen("data","w"); data_file = fopen(path, "w");
if(!data_file) {
perror("[!] load_key");
exit(1);
}
if (fwrite(data, sizeof(uint8_t), size, data_file) != size){ if (fwrite(data, sizeof(uint8_t), size, data_file) != size){
printf("[i] could not write data file\n[i] exiting\n"); printf("[i] could not write data file\n[i] exiting\n");
exit(1); exit(1);
@ -387,38 +396,58 @@ void load_key()
fclose(data_file); fclose(data_file);
} }
void print_help(void)
{
printf("nTox %.1f - Command-line tox-core client\n", 0.1);
puts("Options:");
puts("\t-h\t-\tPrint this help and exit.");
puts("\t-f\t-\tSpecify a keyfile to read from.");
}
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {
int on = 0;
int c = 0;
int i = 0;
char *filename = "data";
char idstring[200] = {0};
if (argc < 4) { if (argc < 4) {
printf("[!] Usage: %s [IP] [port] [public_key] <nokey>\n", argv[0]); printf("[!] Usage: %s [IP] [port] [public_key] <keyfile>\n", argv[0]);
exit(0); exit(0);
} }
int c;
int on = 0; for(i = 0; i < argc; i++) {
initMessenger(); if(argv[i][0] == '-') {
//if keyfiles exist if(argv[i][1] == 'h') {
if(argc > 4){ print_help();
if(strncmp(argv[4], "nokey", 6) < 0){ exit(0);
//load_key(); } else if(argv[i][1] == 'f') {
if(argv[i + 1] != NULL)
filename = argv[i + 1];
else {
fputs("[!] you passed '-f' without giving an argument!\n", stderr);
}
}
} }
} else {
load_key();
} }
initMessenger();
load_key(filename);
m_callback_friendrequest(print_request); m_callback_friendrequest(print_request);
m_callback_friendmessage(print_message); m_callback_friendmessage(print_message);
m_callback_namechange(print_nickchange); m_callback_namechange(print_nickchange);
m_callback_userstatus(print_statuschange); m_callback_userstatus(print_statuschange);
char idstring[200];
get_id(idstring);
initscr(); initscr();
noecho(); noecho();
raw(); raw();
getmaxyx(stdscr, y, x); getmaxyx(stdscr, y, x);
new_lines("/h for list of commands"); new_lines("/h for list of commands");
new_lines(idstring); get_id(idstring);
puts(idstring);
strcpy(line, ""); strcpy(line, "");
IP_Port bootstrap_ip_port; IP_Port bootstrap_ip_port;