Elaborato_SO/src/client.c

47 lines
996 B
C
Raw Normal View History

2023-05-29 12:16:36 +02:00
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <server.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#include <sys/stat.h>
#include <string.h>
#include <errExit.h>
#include <signal.h>
#include <custom_msgq.h>
#include <custom_sem.h>
#include <custom_shm.h>
#include <custom_sig.h>
#include <forza4.h>
void checkClientinput(int argc, char *argv[]);
void setupClient(int argc, char *argv[]) {
2023-05-29 12:35:04 +02:00
// CHECK INPUT
2023-05-29 12:16:36 +02:00
checkClientinput(argc, argv);
2023-05-29 12:35:04 +02:00
2023-05-29 13:06:22 +02:00
// SIGNAL
setupClientSignalHandler();
2023-05-29 12:35:04 +02:00
// MSGQ
setupClientMsgq();
2023-05-29 12:16:36 +02:00
}
void checkClientinput(int argc, char *argv[]){
if (argc < 2) {
printf(PHELP "./F4Client PLAYER_NAME\n"
"\t- PLAYER_NAME \t\tplayer name\n"
);
exit(EXIT_SUCCESS);
} else if (argc > 2) {
printf(PCLIENT "To many arguments!");
exit(EXIT_FAILURE);
}
if (!argv[1] || strlen(argv[1]) > MAX_NAME) {
errExitMsg("Invalid player name");
}
}