Mercurial > mm7
view FactionTable.cpp @ 2479:908baf8e7d23
WAVE_FORMAT
author | Ritor1 |
---|---|
date | Fri, 22 Aug 2014 11:06:51 +0600 |
parents | 0f17a30149ec |
children |
line wrap: on
line source
#define _CRTDBG_MAP_ALLOC #include <stdlib.h> #include <crtdbg.h> #define _CRT_SECURE_NO_WARNINGS #include "FactionTable.h" #include "mm7_data.h" #include "LOD.h" //----- (004547E4) -------------------------------------------------------- void FactionTable::Initialize() { int i; char* test_string; unsigned char c; bool break_loop; unsigned int temp_str_len; char* tmp_pos; int decode_step; // int item_counter; free(pHostileTXT_Raw); pHostileTXT_Raw = (char *)pEvents_LOD->LoadRaw("hostile.txt", 0); strtok(pHostileTXT_Raw, "\r"); for (i = 0; i < 89; ++i) { test_string = strtok(NULL, "\r") + 1; break_loop = false; decode_step = 0; do { c = *(unsigned char*)test_string; temp_str_len = 0; while ((c != '\t') && (c > 0)) { ++temp_str_len; c = test_string[temp_str_len]; } tmp_pos = test_string + temp_str_len; if (*tmp_pos == 0) break_loop = true; *tmp_pos = 0; if (temp_str_len) { if (decode_step >= 1 && decode_step < 90) relations[decode_step - 1][i] = atoi(test_string); } else break_loop = true; ++decode_step; test_string = tmp_pos + 1; } while ((decode_step < 92) && !break_loop); } free(pHostileTXT_Raw); pHostileTXT_Raw = nullptr; }