From 900d3ce7ea8e64e6d0bac360d86fef921f37e43b Mon Sep 17 00:00:00 2001 From: Alexander Baldeck Date: Tue, 14 Dec 2004 11:40:55 +0000 Subject: *** empty log message *** --- src/main.cpp | 108 +++++++++++++++++++++++++++-------------------------------- src/main.h | 5 ++- 2 files changed, 51 insertions(+), 62 deletions(-) (limited to 'src') diff --git a/src/main.cpp b/src/main.cpp index 907c1e39..67a307a3 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -29,7 +29,7 @@ #include -// Part of the patch - bertram +// Part of the patch - bertram #ifdef __USE_UNIX98 #include #include @@ -66,7 +66,7 @@ LanguageMap languageMap[] = { { 0x0424, "SK" }, { 0x0809, "UK" }, { 0x0409, "US" }, - { 0, NULL } + { 0, NULL } }; /* Account infos */ @@ -124,99 +124,89 @@ void init_engine() { allegro_init(); init_log(); - set_close_button_callback(request_exit); // we should not use set_window_close_hook() since it's deprecated and might be gone in the future /-kth5 - + set_close_button_callback(request_exit); + // A little sample of code that will add (or not) the home user directory to read the tmw.ini file in, if we are under Linux. - Bertram - + // This has the goal to have each user is own ini.file under linux. And I do this because i'm expecting to make packages of manaworld for linux, so the tmw.ini will be copied at the right place before the first execution of the application... - + char *dir = new char[400]; strcpy(dir, ""); - + #ifndef __USE_UNIX98 - // WIN32 and else... - printf("Windows and else version\n"); - strcpy(dir, "tmw.ini"); + // WIN32 and else... + strcpy(dir, "tmw.ini"); #endif - - #ifdef __USE_UNIX98 - printf("Linux Version\n"); - // Linux ! - char *userHome; - char *name = getlogin(); + #ifdef __USE_UNIX98 + // Linux ! + char *userHome; + char *name = getlogin(); + passwd *pass; - passwd *pass; + if (name != NULL) + pass = getpwnam(name); + else + pass = getpwuid(geteuid()); - if (name != NULL) - pass = getpwnam(name); - else - pass = getpwuid(geteuid()); + if (pass == NULL) + { + printf("Couldn't determine the user home directory. Exitting.\n"); + exit(1); + } - if (pass == NULL) - { - printf("Couldn't determine the user home directory. Exitting.\n"); - exit(1); - } + userHome = pass->pw_dir; - userHome = pass->pw_dir; - - // Checking if homeuser/.manaworld folder exists. - sprintf(dir, "%s/.manaworld", userHome); - if ((mkdir(dir, S_IRWXU|S_IRWXG|S_IROTH|S_IXOTH) != 0) && (errno != EEXIST)) - { - printf("%s can't be made... And doesn't exist ! Exitting ...", dir); - exit(1); - } - sprintf(dir, "%s/.manaworld/tmw.ini", userHome); - //printf("file is : %s\n", dir); - - // You don't have to delete name and userHome, since they both point to datas that mustn't be destroyed while LINUX is running. - + // Checking if homeuser/.manaworld folder exists. + sprintf(dir, "%s/.manaworld", userHome); + if ((mkdir(dir, S_IRWXU|S_IRWXG|S_IROTH|S_IXOTH) != 0) && (errno != EEXIST)) + { + printf("%s can't be made... And doesn't exist ! Exitting ...", dir); + exit(1); + } + sprintf(dir, "%s/.manaworld/tmw.ini", userHome); #endif - + // Checking if the tmw.ini file exists... otherwise creates it with default options ! FILE *tmwFile = 0; tmwFile = fopen(dir, "r"); - + // If we can't read it, it doesn't exist ! if ( tmwFile == NULL ) { // We reopen the file in write mode and we create it printf("No file : %s\n, Creating Default Options...\n", dir); tmwFile = fopen(dir, "wt"); - if ( tmwFile == NULL ) - { + if ( tmwFile == NULL ) { printf("Can't create %s file. Using Defaults.\n", dir); } else { // tmw.ini creation fprintf(tmwFile, "[system]\nsystem =\nkeyboard = en\nlanguage = \ncore_version = 0.0.8\n\n"); - fprintf(tmwFile, "[server]\nhost = animesites.de\nport = 6901\n\n"); fprintf(tmwFile, "[settings]\n; = Screen mode:\n; = 1 Fullscreen\n; = 2 Windowed\nscreen = 2\n"); fprintf(tmwFile, "; = Sound:\n; = 1 enabled\n; = 0 disabled\nsound = 0\n"); - - - + + + char * chatlogFilename = new char [400]; #ifdef __USE_UNIX98 - sprintf(chatlogFilename, "%s/.manaworld/chatlog.txt", userHome); + sprintf(chatlogFilename, "%s/.manaworld/chatlog.txt", userHome); #else - strcpy(chatlogFilename, "chatlog.txt"); + strcpy(chatlogFilename, "chatlog.txt"); #endif - fprintf(tmwFile, "; = Chat logfile location:\nchatlog = %s\n", chatlogFilename); + fprintf(tmwFile, "; = Chat logfile location:\nchatlog = %s\n", chatlogFilename); delete chatlogFilename; chatlogFilename = 0; - + fprintf(tmwFile, "; = Display strecth mode:\n; = 0 Disabled (Test only)\n; = 1 Normal\n; = 2 SuperEagle\n"); fprintf(tmwFile, "stretch = 1\n\n"); fprintf(tmwFile, "[login]\nremember = 1\nusername = Player\n"); - + fclose(tmwFile); } } - + set_config_file(dir); #ifdef WIN32 if(code) { @@ -225,11 +215,11 @@ void init_engine() { #endif delete dir; dir = 0; - - - + + + // End of portion of code revised... Bertram - + // set_config_file("tmw.ini"); #ifdef MACOSX set_color_depth(32); @@ -265,7 +255,7 @@ void init_engine() { weaponset = load_datafile("./data/graphic/weapon.dat"); if(weaponset==NULL) error("Unable to load weaponset datafile"); - + init_gui(buffer, "./data/Skin/aqua.skin"); state = LOGIN; } diff --git a/src/main.h b/src/main.h index 3d4f424f..b4a8ba7b 100644 --- a/src/main.h +++ b/src/main.h @@ -61,9 +61,8 @@ /* length definitions for several char[]s in order * to be able to use strncpy instead of strcpy for - * security and stability reasons - * - * best regards - kth5 */ + * security and stability reasons */ + #define LEN_USERNAME 25 #define LEN_PASSWORD 25 -- cgit v1.2.3-60-g2f50