--- Daodan/src/Daodan_Config.c 2013/04/30 01:06:45 843 +++ Daodan/src/Daodan_Config.c 2014/04/05 10:19:11 992 @@ -6,7 +6,7 @@ #include "Daodan_Patch.h" #include "Daodan_Utility.h" -#include "Oni_Symbols.h" +#include "Oni/Oni.h" #include "Inifile_Reader.h" @@ -20,11 +20,13 @@ bool patch_cheattable = true; bool patch_clipcursor = true; bool patch_cooldowntimer = true; bool patch_daodandisplayenum = true; -bool patch_daodaninit = true; bool patch_directinput = true; bool patch_disablecmdline = true; +bool patch_flatline = true; bool patch_fonttexturecache = true; bool patch_getcmdline = true; +bool patch_hdscreens_lowres = true; +bool patch_highres_console = true; bool patch_kickguns = false; bool patch_killvtune = true; bool patch_largetextures = true; @@ -36,6 +38,8 @@ bool patch_particledisablebit = false; bool patch_pathfinding = true; bool patch_projaware = true; bool patch_safeprintf = true; +bool patch_showalllasersights = false; +bool patch_showtriggervolumes = true; bool patch_throwtest = false; bool patch_usedaodangl = true; bool patch_usegettickcount = true; @@ -57,7 +61,7 @@ bool DDrIniCallback(char* section, bool { if (!_stricmp(section, "options")) ini_section = s_options; - else if (!_stricmp(section, "patch")) + else if (!_stricmp(section, "patch") || !_stricmp(section, "patches")) ini_section = s_patch; else if (!_stricmp(section, "bsl")) ini_section = s_bsl; @@ -119,16 +123,20 @@ bool DDrIniCallback(char* section, bool patch_cooldowntimer = !_stricmp(inifile_cleanstr(value), "true"); else if (!_stricmp(name, "daodandisplayenum")) patch_daodandisplayenum = !_stricmp(inifile_cleanstr(value), "true"); - else if (!_stricmp(name, "daodaninit")) - patch_daodaninit = !_stricmp(inifile_cleanstr(value), "true"); else if (!_stricmp(name, "directinput")) patch_directinput = !_stricmp(inifile_cleanstr(value), "true"); else if (!_stricmp(name, "disablecmdline")) patch_disablecmdline = !_stricmp(inifile_cleanstr(value), "true"); + else if (!_stricmp(name, "flatline")) + patch_flatline = !_stricmp(inifile_cleanstr(value), "true"); else if (!_stricmp(name, "fonttexturecache")) patch_fonttexturecache = !_stricmp(inifile_cleanstr(value), "true"); else if (!_stricmp(name, "getcmdline")) patch_getcmdline = !_stricmp(inifile_cleanstr(value), "true"); + else if (!_stricmp(name, "hdscreens_lowres")) + patch_hdscreens_lowres = !_stricmp(inifile_cleanstr(value), "true"); + else if (!_stricmp(name, "highres_console")) + patch_highres_console = !_stricmp(inifile_cleanstr(value), "true"); else if (!_stricmp(name, "kickguns")) patch_kickguns = !_stricmp(inifile_cleanstr(value), "true"); else if (!_stricmp(name, "killvtune")) @@ -151,6 +159,10 @@ bool DDrIniCallback(char* section, bool patch_projaware = !_stricmp(inifile_cleanstr(value), "true"); else if (!_stricmp(name, "safeprintf")) patch_safeprintf = !_stricmp(inifile_cleanstr(value), "true"); + else if (!_stricmp(name, "showalllasersights")) + patch_showalllasersights = !_stricmp(inifile_cleanstr(value), "true"); + else if (!_stricmp(name, "showtriggervolumes")) + patch_showtriggervolumes = !_stricmp(inifile_cleanstr(value), "true"); else if (!_stricmp(name, "throwtest")) patch_throwtest = !_stricmp(inifile_cleanstr(value), "true"); else if (!_stricmp(name, "usedaodangl")) @@ -303,6 +315,9 @@ void DDrConfig(int argc, char* argv[]) if (fp) { fputs("[Options]\n", fp); + fputs("[Patch]\n", fp); + fputs("[BSL]\n", fp); + fputs("[Language]\n", fp); fclose(fp); } }