#include #include #include #include #include using namespace tinyxml2; extern World *currentWorld; extern Player *player; extern float shit; extern Menu* currentMenu; extern Menu pauseMenu; extern Menu optionsMenu; extern void mainLoop(void); void segFault(){ ((vec2 *)currentWorld + 2934)[10].x = *((unsigned int *)¤tXML) * *((int *)NULL); } typedef struct { NPC *npc; unsigned int index; } NPCDialog; std::vector dopt; int commonAIFunc(NPC *speaker){ XMLDocument xml; XMLElement *exml,*oxml; const char *name; unsigned int idx = 0; bool stop = false; /* * Load the current world's XML file into memory for reading. */ xml.LoadFile(currentXML); exml = xml.FirstChildElement("Dialog"); /* * Search for the correct dialog block. */ while(strcmp(exml->Attribute("name"),speaker->name)) exml = exml->NextSiblingElement(); exml = exml->FirstChildElement(); /* * Search for which text block should be used. */ do{ if(!strcmp(exml->Name(),"text")){ if(exml->UnsignedAttribute("id") == (unsigned)speaker->dialogIndex){ /* * Handle any 'give' requests. */ if((oxml = exml->FirstChildElement("give"))){ while(oxml){ player->inv->addItem((ITEM_ID)oxml->UnsignedAttribute("id"),oxml->UnsignedAttribute("count")); oxml = oxml->NextSiblingElement(); } } /* * Handle any 'take' requests. */ if((oxml = exml->FirstChildElement("take"))){ while(oxml){ player->inv->takeItem((ITEM_ID)oxml->UnsignedAttribute("id"),oxml->UnsignedAttribute("count")); oxml = oxml->NextSiblingElement(); } } /* * Handle dialog options. */ if((oxml = exml->FirstChildElement("option"))){ /* * Convert the list of options into a single colon-separated string. */ std::string optstr; while(oxml){ /* * Create a buffer big enough for the next option. */ optstr.append((std::string)":" + oxml->Attribute("text")); /* * Append the next option. */ dopt.push_back(oxml); oxml = oxml->NextSiblingElement(); } /* * Get the player's choice, then set the XMLElement to the option's block. */ ui::dialogBox(speaker->name,optstr.c_str(),false,exml->GetText()); ui::waitForDialog(); if(ui::dialogOptChosen) exml = dopt[ui::dialogOptChosen-1]; while(!dopt.empty()) dopt.pop_back(); }else{ /* * No options - simply print the text. */ ui::dialogBox(speaker->name,"",false,exml->GetText()); ui::waitForDialog(); } /* * Give another NPC dialog if requested. */ if((name = exml->Attribute("call"))){ for(auto &n : currentWorld->npc){ if(!strcmp(n->name,name)){ if(exml->QueryUnsignedAttribute("callid",&idx) == XML_NO_ERROR) n->dialogIndex = idx; n->addAIFunc(commonAIFunc,false); break; } } } /* * Handle the next dialog block if this one leads to another. */ if(exml->QueryUnsignedAttribute("nextid",&idx) == XML_NO_ERROR){ speaker->dialogIndex = idx; if(exml->QueryBoolAttribute("stop",&stop) == XML_NO_ERROR && stop){ speaker->dialogIndex = 9999; return 0; }else if(exml->QueryBoolAttribute("pause",&stop) == XML_NO_ERROR && stop){ speaker->dialogIndex = 9999; return 1; }else return commonAIFunc(speaker); }else{ speaker->dialogIndex = 9999; return 0; } return 1; } } exml = exml->NextSiblingElement(); }while(exml); return 0; } void destroyEverything(void); void initEverything(void){ std::vector xmlFiles; XMLDocument xml; /* * Read the XML directory into an array. */ if(getdir("./xml/",xmlFiles)){ std::cout<<"Error reading XML files!!!1"<spawn(200,100); currentWorld->bgmPlay(NULL); atexit(destroyEverything); std::cout << "Hey"; pauseMenu.items.push_back(ui::createParentButton({-256/2,0},{256,75},{0.0f,0.0f,0.0f}, "Resume")); pauseMenu.items.push_back(ui::createChildButton({-256/2,-100},{256,75},{0.0f,0.0f,0.0f}, "Options")); pauseMenu.items.push_back(ui::createButton({-256/2,-200},{256,75},{0.0f,0.0f,0.0f}, "Save and Quit", ui::quitGame)); pauseMenu.items.push_back(ui::createButton({-256/2,-300},{256,75},{0.0f,0.0f,0.0f}, "Segfault", segFault)); pauseMenu.child = &optionsMenu; pauseMenu.parent = NULL; optionsMenu.items.push_back(ui::createSlider({-512/2,100}, {512,50}, {0.0f, 0.0f, 0.0f}, 0, 100, "Shit", &VOLUME_MASTER)); optionsMenu.child = NULL; optionsMenu.parent = &pauseMenu; // optionsMenu.push_back(ui::createButton({-256/2,-200},{256,75},{0.0f,0.0f,0.0f}, (const char*)("Save and Quit"), ); } extern std::vector AIpreload; extern std::vector AIpreaddr; void destroyEverything(void){ currentWorld->save(); delete currentWorld; while(!AIpreload.empty()) AIpreload.pop_back(); while(!AIpreaddr.empty()) AIpreaddr.pop_back(); }