// Catsplosion // By Zhentar , Further modified by dark_rabite, peterix, belal // This work of evil makes animals pregnant // and due within 2 in-game hours... #include #include #include #include #include // for rand() #include // for std::transform #include #include #include using namespace std; #include "DFHack.h" #include "Core.h" #include "Console.h" #include "Export.h" #include "PluginManager.h" #include "DataDefs.h" #include #include using namespace DFHack; using namespace DFHack::Simple; command_result catsplosion (Core * c, std::vector & parameters); DFhackCExport const char * plugin_name ( void ) { return "catsplosion"; } // Mandatory init function. If you have some global state, create it here. DFhackCExport command_result plugin_init ( Core * c, std::vector &commands) { // Fill the command list with your commands. commands.clear(); commands.push_back(PluginCommand( "catsplosion", "Do nothing, look pretty.", catsplosion, false, " This command does nothing at all. For now.\n" )); return CR_OK; } DFhackCExport command_result plugin_shutdown ( Core * c ) { return CR_OK; } command_result catsplosion (Core * c, std::vector & parameters) { list s_creatures; // only cats for now. s_creatures.push_back("CAT"); // make the creature list unique ... with cats. they are always unique s_creatures.unique(); // SUSPEND THE CORE! ::Evil laugh:: CoreSuspender susp(c); uint32_t numCreatures; if(!(numCreatures = Units::getNumCreatures())) { cerr << "Can't get any creatures." << endl; return CR_FAILURE; } int totalcount=0; int totalchanged=0; string sextype; // shows all the creatures and returns. int maxlength = 0; map > male_counts; map > female_counts; // classify for(uint32_t i =0;i < numCreatures;i++) { df::unit * creature = Units::GetCreature(i); df::creature_raw *raw = df::global::world->raws.creatures.all[creature->race]; if(creature->sex == 0) // female { female_counts[raw->creature_id].push_back(creature); male_counts[raw->creature_id].size(); } else // male, other, etc. { male_counts[raw->creature_id].push_back(creature); female_counts[raw->creature_id].size(); //auto initialize the females as well } } // print (optional) //if (showcreatures == 1) { c->con.print("Type Male # Female #\n"); for(auto it1 = male_counts.begin();it1!=male_counts.end();it1++) { c->con.print("%20s %6d %8d\n", it1->first.c_str(), it1->second.size(), female_counts[it1->first].size()); } } /* // process for (list::iterator it = s_creatures.begin(); it != s_creatures.end(); ++it) { std::string clinput = *it; std::transform(clinput.begin(), clinput.end(), clinput.begin(), ::toupper); vector &females = female_counts[clinput]; uint32_t sz_fem = females.size(); totalcount += sz_fem; for(uint32_t i = 0; i < sz_fem && totalchanged != maxpreg; i++) { t_creature & female = females[i]; uint32_t preg_timer = proc->readDWord(female.origin + creature_pregnancy_offset); if(preg_timer != 0) { proc->writeDWord(female.origin + creature_pregnancy_offset, rand() % 100 + 1); totalchanged++; } } } */ cout << totalchanged << " pregnancies accelerated. Total creatures checked: " << totalcount << "." << endl; return CR_OK; }