/* www.sourceforge.net/projects/dfhack Copyright (c) 2009 Petr Mrázek (peterix), Kenneth Ferland (Impaler[WrG]), dorf This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ #include "DFCommon.h" #include "DFMemInfo.h" #include #include memory_info::memory_info() { base = 0; classindex = 0; } void memory_info::setVersion(const char * v) { version = v; } void memory_info::setVersion(string v) { version = v; } string memory_info::getVersion() { return version; } void memory_info::setOS(const char *os) { string oss = os; if(oss == "windows") OS = OS_WINDOWS; else if(oss == "linux") OS = OS_LINUX; else OS = OS_BAD; } void memory_info::setOS(string os) { if(os == "windows") OS = OS_WINDOWS; else if(os == "linux") OS = OS_LINUX; else OS = OS_BAD; } void memory_info::setOS(OSType os) { if(os >= OS_WINDOWS && os < OS_BAD) { OS = os; return; } OS = OS_BAD; } memory_info::OSType memory_info::getOS() { return OS; } // copy constructor memory_info::memory_info(const memory_info &old) { version = old.version; OS = old.OS; addresses = old.addresses; offsets = old.offsets; hexvals = old.hexvals; strings = old.strings; base = old.base; classes = old.classes; classsubtypes = old.classsubtypes; classindex = old.classindex; } uint32_t memory_info::getBase () { return base; } void memory_info::setBase (string s) { base = strtol(s.c_str(), NULL, 16); } void memory_info::setBase (uint32_t b) { base = b; } void memory_info::setOffset (string key, string value) { uint32_t offset = strtol(value.c_str(), NULL, 16); offsets[key] = offset; } void memory_info::setAddress (string key, string value) { uint32_t address = strtol(value.c_str(), NULL, 16); addresses[key] = address; } void memory_info::setHexValue (string key, string value) { uint32_t hexval = strtol(value.c_str(), NULL, 16); hexvals[key] = hexval; } void memory_info::setString (string key, string value) { strings[key] = value; } // FIXME: next three methods should use some kind of custom container so it doesn't have to search so much. void memory_info::setClass (const char * name, const char * vtable) { for (uint32_t i=0; i thistypes; classsubtypes.push_back(thistypes); //cout << "multiclass " << name << ", assign " << cls.assign << ", vtable " << cls.vtable << endl; return classsubtypes.size() - 1; } void memory_info::setMultiClassChild (uint32_t multi_index, const char * name, const char * type) { vector & vec = classsubtypes[multi_index]; for (uint32_t i=0; i& vec = classsubtypes[classes[i].multi_index]; uint32_t type = MreadWord(address + classes[i].type_offset); //printf ("class %d:%s offset 0x%x\n", i , classes[i].classname.c_str(), classes[i].type_offset); // return typed building if successful for (uint32_t k = 0; k < vec.size();k++) { if(vec[k].type == type) { //cout << " multi " << address + classes[i].type_offset << " " << vec[k].classname << endl; classid = vec[k].assign; return true; } } } // otherwise return the class we found classid = classes[i].assign; return true; } } // we failed to find anything that would match return false; } // Flatten vtables into a index<->name mapping void memory_info::copyBuildings(vector & v_buildingtypes) { for(uint32_t i = 0;i< classes.size();i++) { v_buildingtypes.push_back(classes[i].classname); if(!classes[i].is_multiclass) { continue; } vector & vec = classsubtypes[classes[i].multi_index]; for (uint32_t k = 0; k < vec.size();k++) { v_buildingtypes.push_back(vec[k].classname); } } } // change base of all addresses/vtable entries void memory_info::RebaseAddresses(int32_t new_base) { map::iterator iter; int32_t rebase = - (int32_t)base + new_base; for(iter = addresses.begin(); iter != addresses.end(); iter++) { addresses[iter->first] = iter->second + rebase; } } // change base of all addresses/vtable entries void memory_info::RebaseAll(int32_t new_base) { map::iterator iter; int32_t rebase = - (int32_t)base + new_base; for(iter = addresses.begin(); iter != addresses.end(); iter++) { addresses[iter->first] = iter->second + rebase; } RebaseVTable(rebase); } // change all vtable entries by offset void memory_info::RebaseVTable(int32_t offset) { vector::iterator iter; for(iter = classes.begin(); iter != classes.end(); iter++) { iter->vtable += offset; } } // Get named address uint32_t memory_info::getAddress (string key) { if(addresses.count(key)) { return addresses[key]; } return 0; } // Get named offset uint32_t memory_info::getOffset (string key) { if(offsets.count(key)) { return offsets[key]; } return 0; } // Get named string std::string memory_info::getString (string key) { if(strings.count(key)) { return strings[key]; } else return string(""); } // Get named numerical value uint32_t memory_info::getHexValue (string key) { if(hexvals.count(key)) { return hexvals[key]; } return 0; } // Reset everything void memory_info::flush() { base = 0; addresses.clear(); offsets.clear(); strings.clear(); hexvals.clear(); classes.clear(); classsubtypes.clear(); classindex = 0; version = ""; OS = OS_BAD; }