OpenGTA/read_ini.cpp

212 lines
6.4 KiB
C++
Raw Permalink Normal View History

2015-12-03 00:37:02 +00:00
/************************************************************************
2015-12-03 00:37:37 +00:00
* Copyright (c) 2005-2007 tok@openlinux.org.uk *
2015-12-03 00:37:02 +00:00
* *
* This file contains code derived from information copyrighted by *
* DMA Design. It may not be used in a commercial product. *
* *
* See license.txt for details. *
* *
* This notice may not be removed or altered. *
************************************************************************/
#include <iostream>
2015-12-03 00:37:37 +00:00
#include "log.h"
#include "read_ini.h"
2015-12-03 00:37:02 +00:00
namespace OpenGTA {
2015-12-03 00:37:37 +00:00
ScriptParser::ScriptParser(const std::string &file) : section_info(""), section_vars("") {
2015-12-03 00:37:02 +00:00
fd = PHYSFS_openRead(file.c_str());
if (!fd) {
std::cerr << "Error: could not open file " << file << " for reading!" << std::endl;
}
else {
std::cout << "* Loading script " << file << " ... ";
2015-12-03 00:37:37 +00:00
/*
2015-12-03 00:37:02 +00:00
unsigned char v;
unsigned char m = 0;
char buffer[10];
char* b = reinterpret_cast<char*>(&buffer);
while(!PHYSFS_eof(fd)) {
PHYSFS_read(fd, static_cast<void*>(&v), 1, 1);
if (m) {
if (v != ']') {
*b = v;
b++;
}
else {
m = 0;
*b = 0x00;
b = reinterpret_cast<char*>(&buffer);
levels[static_cast<PHYSFS_uint32>(atoi(buffer))] = PHYSFS_tell(fd) + 1;
2015-12-03 00:37:37 +00:00
std::cout << buffer << " " << PHYSFS_tell(fd) + 1 << std::endl;
2015-12-03 00:37:02 +00:00
}
}
if (v == '[') {
m = 1;
}
}
2015-12-03 00:37:37 +00:00
*/
const size_t buflen = 1024;
char buffer[buflen+1];
char numbuf[10];
PHYSFS_sint64 fd_off = 0;
while(!PHYSFS_eof(fd)) {
memset(buffer, 0, buflen+1);
PHYSFS_sint64 fd_off_add = PHYSFS_read(fd, static_cast<void*>(buffer), 1, buflen);
char * buf_ptr = buffer;
while (buf_ptr) {
char * found_str = strchr(buf_ptr, '[');
char * found_str_end = strchr(buf_ptr, ']');
if (found_str && found_str_end) {
memset(numbuf, 0, 10);
strncpy(numbuf, found_str + 1, found_str_end - found_str - 1);
//std::cout << numbuf << ": " << fd_off + found_str_end - buf_ptr + 2 << std::endl;
levels[static_cast<PHYSFS_uint32>(atoi(numbuf))] = fd_off + found_str_end - buf_ptr + 2;
}
if ((found_str) && (!found_str_end)) {
PHYSFS_seek(fd, PHYSFS_tell(fd) - 10);
break;
}
if (found_str)
buf_ptr = found_str + 1;
else
break;
}
fd_off += fd_off_add;
}
2015-12-03 00:37:02 +00:00
}
2015-12-03 00:37:37 +00:00
std::cout << int(levels.size()) << " sections indexed" << std::endl;
2015-12-03 00:37:02 +00:00
}
2015-12-03 00:37:37 +00:00
/*
* * Loading script MISSION.INI ... 1 4
2 84961
1001 195409
1002 224532
1003 256339
1004 288768
102 323745
103 446555
1101 568117
1102 607842
1103 648562
1104 690150
202 732582
203 910588
1201 1107740
1202 1147497
1203 1188235
1204 1229847
18 sections indexed
*/
2015-12-03 00:37:02 +00:00
ScriptParser::~ScriptParser() {
if (fd != NULL)
PHYSFS_close(fd);
levels.clear();
}
2015-12-03 00:37:37 +00:00
PHYSFS_sint64 ScriptParser::sectionEndOffset(PHYSFS_sint64 start) {
PHYSFS_sint64 offset = PHYSFS_fileLength(fd);
LevelMapType::iterator i = levels.begin();
while (i != levels.end()) {
if (i->second > start)
if (i->second < offset)
offset = i->second;
++i;
}
return offset;
}
2015-12-03 00:37:02 +00:00
void ScriptParser::loadLevel(PHYSFS_uint32 level) {
LevelMapType::iterator i = levels.find(level);
if (i == levels.end()) {
std::cerr << "not a valid level: " << level << std::endl;
return;
}
2015-12-03 00:37:37 +00:00
PHYSFS_sint64 end_of_section = sectionEndOffset(i->second);
2015-12-03 00:37:02 +00:00
PHYSFS_seek(fd, i->second);
2015-12-03 00:37:37 +00:00
const size_t buf_len = 255; // +1
char buffer[buf_len+1];
2015-12-03 00:37:02 +00:00
PHYSFS_uint16 read_bytes = 255;
PHYSFS_uint16 offset = 0;
2015-12-03 00:37:37 +00:00
size_t num_lines_read = 0;
bool first_part_of_section = true;
while(PHYSFS_tell(fd) < end_of_section) {
2015-12-03 00:37:02 +00:00
memset(buffer+offset, 0, read_bytes+1);
PHYSFS_read(fd, buffer + offset, 1, read_bytes);
char* line_start = buffer;
while (1) {
char* line_end = strchr(line_start, '\r');
if (line_start && line_end) {
2015-12-03 00:37:37 +00:00
if (*(line_end - 1) == ' ')
line_end--;
2015-12-03 00:37:02 +00:00
*line_end = 0;
2015-12-03 00:37:37 +00:00
while (*line_start == '\n' || *line_start == '\r' || *line_start == ' ')
line_start++;
2015-12-03 00:37:02 +00:00
if (strlen(line_start) > 0) {
2015-12-03 00:37:37 +00:00
//std::cout <<"["<< line_start << "]" << strlen(line_start)<<std::endl;
if (num_lines_read == 0)
//std::cout << "level: " << line_start << std::endl;
section_info = line_start;
else if (num_lines_read == 1)
//std::cout << "vars: " << line_start << std::endl;
section_vars = line_start;
else {
if (strncmp(line_start, "-1", 2) == 0)
first_part_of_section = false;
else {
if (first_part_of_section)
acceptDefinition(line_start);
else
acceptCommand(line_start);
}
}
++num_lines_read;
2015-12-03 00:37:02 +00:00
}
line_start = line_end + 1;
if (*line_start == '\n')
++line_start;
}
else
break;
}
//std::cout << uint32(line_start) - uint32(buffer) << std::endl;
PHYSFS_uint32 begin_rest = PHYSFS_uint32(line_start) - PHYSFS_uint32(buffer);
2015-12-03 00:37:37 +00:00
offset = buf_len - begin_rest;
memmove(buffer, &buffer[begin_rest], buf_len - begin_rest);
read_bytes = buf_len - offset;
if (PHYSFS_tell(fd) + read_bytes > end_of_section)
read_bytes = end_of_section - PHYSFS_tell(fd);
2015-12-03 00:37:02 +00:00
//std::cout << buffer << std::endl;
}
}
2015-12-03 00:37:37 +00:00
void ScriptParser::acceptDefinition(const char* str) {
INFO << "def: " << str << std::endl;
}
void ScriptParser::acceptCommand(const char* str) {
INFO << "cmd: " << str << std::endl;
}
2015-12-03 00:37:02 +00:00
}
#if 0
void on_exit() {
PHYSFS_deinit();
}
int main(int argc, char* argv[]) {
PHYSFS_init(argv[0]);
PHYSFS_addToSearchPath(PHYSFS_getBaseDir(), 1);
atexit(on_exit);
OpenGTA::ScriptParser p(argv[1]);
p.loadLevel(atoi(argv[2]));
return 0;
}
#endif