Minor cleanups

This commit is contained in:
aleos89 2019-07-23 10:40:33 -04:00
parent 1cbd688761
commit fe1966ea7a

View File

@ -150,7 +150,7 @@ int find_map(char *name)
for(i = 0; i < header.map_count; i++) { for(i = 0; i < header.map_count; i++) {
if(fread(&info, sizeof(info), 1, map_cache_fp) != 1) if(fread(&info, sizeof(info), 1, map_cache_fp) != 1)
ShowError("An error has occured in fread while reading \"%s\"\n", map_cache_fp); ShowError("An error has occurred in fread while reading \"%s\"\n", map_cache_fp);
if(strcmp(name, info.name) == 0) // Map found if(strcmp(name, info.name) == 0) // Map found
return 1; return 1;
else // Map not found, jump to the beginning of the next map info header else // Map not found, jump to the beginning of the next map info header
@ -195,7 +195,6 @@ void process_args(int argc, char *argv[])
int do_init(int argc, char** argv) int do_init(int argc, char** argv)
{ {
/* setup pre-defined, #define-dependant */ /* setup pre-defined, #define-dependant */
map_cache_file = std::string(db_path) + "/" + std::string(DBIMPORT) + "/map_cache.dat"; map_cache_file = std::string(db_path) + "/" + std::string(DBIMPORT) + "/map_cache.dat";
@ -244,7 +243,7 @@ int do_init(int argc, char** argv)
header.map_count = 0; header.map_count = 0;
} else { } else {
if (fread(&header, sizeof(struct main_header), 1, map_cache_fp) != 1) if (fread(&header, sizeof(struct main_header), 1, map_cache_fp) != 1)
ShowError("An error has occured while reading \"%s\"\n", map_cache_fp); ShowError("An error has occurred while reading \"%s\"\n", map_cache_fp);
header.file_size = GetULong((unsigned char *)&(header.file_size)); header.file_size = GetULong((unsigned char *)&(header.file_size));
header.map_count = GetUShort((unsigned char *)&(header.map_count)); header.map_count = GetUShort((unsigned char *)&(header.map_count));
} }
@ -252,7 +251,8 @@ int do_init(int argc, char** argv)
// Read and process the map list // Read and process the map list
char line[1024]; char line[1024];
while (fgets(line, sizeof(line), list)) { while (fgets(line, sizeof(line), list))
{
if (line[0] == '/' && line[1] == '/') if (line[0] == '/' && line[1] == '/')
continue; continue;
@ -273,7 +273,8 @@ int do_init(int argc, char** argv)
else if (read_map(name, &map)) { else if (read_map(name, &map)) {
cache_map(name, &map); cache_map(name, &map);
ShowInfo("Map '" CL_WHITE "%s" CL_RESET "' successfully cached.\n", name); ShowInfo("Map '" CL_WHITE "%s" CL_RESET "' successfully cached.\n", name);
} else }
else
ShowError("Map '" CL_WHITE "%s" CL_RESET "' not found!\n", name); ShowError("Map '" CL_WHITE "%s" CL_RESET "' not found!\n", name);
} }