ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/Daodan/src/Daodan.c
(Generate patch)

Comparing Daodan/src/Daodan.c (file contents):
Revision 347 by rossy, Tue Jun 9 12:42:24 2009 UTC vs.
Revision 459 by rossy, Mon Aug 24 11:32:06 2009 UTC

# Line 6 | Line 6
6   #include "Daodan_Win32.h"
7   #include "Daodan_Cheater.h"
8   #include "Daodan_Persistence.h"
9 + #include "Daodan_BSL.h"
10 +
11 + #include "Daodan_WindowHack.h"
12  
13   #include "Oni.h"
14   #include "Oni_Persistence.h"
# Line 22 | Line 25 | HMODULE DDrONiModule;
25  
26   bool patch_fonttexturecache = true;
27   bool patch_largetextures = true;
28 + bool patch_levelplugins = true;
29   bool patch_pathfinding = true;
30   bool patch_projaware = true;
31 + bool patch_directinput = true;
32   bool patch_wpfadetime = true;
33   bool patch_kickguns = false;
34   bool patch_cooldowntimer = true;
35   bool patch_throwtest = false;
36   bool patch_alttab = true;
37   bool patch_particledisablebit = false;
38 < bool patch_multibyte = true;
38 > bool patch_multibyte = false;
39   bool patch_cheattable = true;
40 + bool patch_argb8888 = true;
41 + bool patch_killvtune = true;
42  
43   bool patch_safeprintf = true;
44   bool patch_daodandisplayenum = true;
45   bool patch_usegettickcount = true;
46 + bool patch_cheatsenabled = true;
47   bool patch_usedaodangl = false;
48 + bool patch_windowhack = true;
49 + bool patch_daodaninit = true;
50 + bool patch_bsl = true;
51 + bool patch_cheater = true;
52 +
53 + bool opt_usedaodanbsl = true;
54  
55   bool DDrPatch_Init()
56   {
# Line 54 | Line 68 | bool DDrPatch_Init()
68                  DDrPatch_Byte  (OniExe + 0x00005251, 0x10);
69          
70          // Non-"_Final" levels are now valid
71 <        DDrPatch_Byte  (OniExe + 0x000206a8, 0x01);
71 >        if (patch_levelplugins)
72 >                DDrPatch_Byte  (OniExe + 0x000206a8, 0x01);
73          
74          // Pathfinding grid cache size x8
75          if (patch_pathfinding)
# Line 73 | Line 88 | bool DDrPatch_Init()
88          }
89          
90          // Forced DirectInput (for Windows NT)
91 <        DDrPatch_Byte  (OniExe + 0x00002e6d, 0xeb);
91 >        if (patch_directinput)
92 >                DDrPatch_Byte  (OniExe + 0x00002e6d, 0xeb);
93          
94          if (patch_wpfadetime)
95          {
# Line 119 | Line 135 | bool DDrPatch_Init()
135                  DDrPatch_Int16 (OniExe + 0x001b184, 0x9090);
136          
137          // Multi-byte patch (multiple language support)
138 <        if (patch_multibyte)
138 >        if (!patch_multibyte)
139          {
140                  DDrPatch_Byte  (OniExe + 0x0002d8f8, 0xeb);
141                  DDrPatch_Byte  (OniExe + 0x0002d9ad, 0xeb);
# Line 146 | Line 162 | bool DDrPatch_Init()
162                  DDrPatch_Int32 (OniExe + 0x000f617a, (int)&DDr_CheatTable[0].message_on);
163          }
164          
165 +        // ARGB8888 textures
166 +        if (patch_argb8888)
167 +        {
168 +                DDrPatch_Byte  (OniExe + 0x00135af0, 0x07);
169 +                DDrPatch_Byte  (OniExe + 0x00135af4, 0x0B);
170 +        }
171 +        
172 +        // Disable loading the vtuneapi.dll
173 +        if (patch_killvtune)
174 +                DDrPatch_Byte  (OniExe + 0x00026340, 0xC3);
175 +        
176          return true;
177   }
178  
179 < enum {s_unknown, s_patch, s_language} ini_section;
179 > enum {s_unknown, s_options, s_patch, s_bsl, s_language} ini_section;
180  
181   bool DDrIniCallback(char* section, bool newsection, char* name, char* value)
182   {
183          if (newsection)
184          {
185 <                if (!stricmp(section, "patch"))
185 >                if (!stricmp(section, "options"))
186 >                        ini_section = s_options;
187 >                else if (!stricmp(section, "patch"))
188                          ini_section = s_patch;
189 +                else if (!stricmp(section, "bsl"))
190 +                        ini_section = s_bsl;
191                  else if (!stricmp(section, "language"))
192                          ini_section = s_language;
193                  else
# Line 168 | Line 199 | bool DDrIniCallback(char* section, bool
199          
200          switch (ini_section)
201          {
202 +                case s_options:
203 +                        if (!stricmp(name, "usedaodanbsl"))
204 +                                opt_usedaodanbsl = !stricmp(inifile_cleanstr(value), "true");
205 +                        break;
206                  case s_patch:
207                          if (!stricmp(name, "fonttexturecache"))
208 <                                patch_fonttexturecache = !stricmp(value, "true");
208 >                                patch_fonttexturecache = !stricmp(inifile_cleanstr(value), "true");
209                          else if (!stricmp(name, "largetextures"))
210 <                                patch_largetextures = !stricmp(value, "true");
210 >                                patch_largetextures = !stricmp(inifile_cleanstr(value), "true");
211 >                        else if (!stricmp(name, "levelplugins"))
212 >                                patch_levelplugins = !stricmp(inifile_cleanstr(value), "true");
213                          else if (!stricmp(name, "pathfinding"))
214 <                                patch_pathfinding = !stricmp(value, "true");
214 >                                patch_pathfinding = !stricmp(inifile_cleanstr(value), "true");
215                          else if (!stricmp(name, "projaware"))
216 <                                patch_projaware = !stricmp(value, "true");
216 >                                patch_projaware = !stricmp(inifile_cleanstr(value), "true");
217 >                        else if (!stricmp(name, "directinput"))
218 >                                patch_directinput = !stricmp(inifile_cleanstr(value), "true");
219                          else if (!stricmp(name, "wpfadetime"))
220 <                                patch_wpfadetime = !stricmp(value, "true");
220 >                                patch_wpfadetime = !stricmp(inifile_cleanstr(value), "true");
221                          else if (!stricmp(name, "kickguns"))
222 <                                patch_kickguns = !stricmp(value, "true");
222 >                                patch_kickguns = !stricmp(inifile_cleanstr(value), "true");
223                          else if (!stricmp(name, "cooldowntimer"))
224 <                                patch_cooldowntimer = !stricmp(value, "true");
224 >                                patch_cooldowntimer = !stricmp(inifile_cleanstr(value), "true");
225                          else if (!stricmp(name, "throwtest"))
226 <                                patch_throwtest = !stricmp(value, "true");
226 >                                patch_throwtest = !stricmp(inifile_cleanstr(value), "true");
227                          else if (!stricmp(name, "alttab"))
228 <                                patch_alttab = !stricmp(value, "true");
228 >                                patch_alttab = !stricmp(inifile_cleanstr(value), "true");
229                          else if (!stricmp(name, "particledisablebit"))
230 <                                patch_particledisablebit = !stricmp(value, "true");
230 >                                patch_particledisablebit = !stricmp(inifile_cleanstr(value), "true");
231                          else if (!stricmp(name, "multibyte"))
232 <                                patch_multibyte = !stricmp(value, "true");
232 >                                patch_multibyte = !stricmp(inifile_cleanstr(value), "true");
233                          else if (!stricmp(name, "cheattable"))
234 <                                patch_cheattable = !stricmp(value, "true");
234 >                                patch_cheattable = !stricmp(inifile_cleanstr(value), "true");
235 >                        else if (!stricmp(name, "argb8888"))
236 >                                patch_argb8888 = !stricmp(inifile_cleanstr(value), "true");
237 >                        else if (!stricmp(name, "killvtune"))
238 >                                patch_killvtune = !stricmp(inifile_cleanstr(value), "true");
239                          else if (!stricmp(name, "safeprintf"))
240 <                                patch_safeprintf = !stricmp(value, "true");
240 >                                patch_safeprintf = !stricmp(inifile_cleanstr(value), "true");
241                          else if (!stricmp(name, "daodandisplayenum"))
242 <                                patch_daodandisplayenum = !stricmp(value, "true");
242 >                                patch_daodandisplayenum = !stricmp(inifile_cleanstr(value), "true");
243                          else if (!stricmp(name, "usegettickcount"))
244 <                                patch_usegettickcount = !stricmp(value, "true");
244 >                                patch_usegettickcount = !stricmp(inifile_cleanstr(value), "true");
245 >                        else if (!stricmp(name, "cheatsenabled"))
246 >                                patch_cheatsenabled = !stricmp(inifile_cleanstr(value), "true");
247                          else if (!stricmp(name, "usedaodangl"))
248 <                                patch_usedaodangl = !stricmp(value, "true");
248 >                                patch_usedaodangl = !stricmp(inifile_cleanstr(value), "true");
249 >                        else if (!stricmp(name, "windowhack"))
250 >                                patch_windowhack = !stricmp(inifile_cleanstr(value), "true");
251 >                        else if (!stricmp(name, "daodaninit"))
252 >                                patch_daodaninit = !stricmp(inifile_cleanstr(value), "true");
253 >                        else if (!stricmp(name, "bsl"))
254 >                                patch_bsl = !stricmp(inifile_cleanstr(value), "true");
255 >                        else if (!stricmp(name, "cheater"))
256 >                                patch_cheater = !stricmp(inifile_cleanstr(value), "true");
257                          else
258                                  DDrStartupMessage("unrecognised patch \"%s\"", name);
259                          break;
# Line 221 | Line 274 | bool DDrIniCallback(char* section, bool
274                                  DDrPatch_StrDup(OniExe + 0x0010fb6e, value);
275                          else if (!stricmp(name, "blam"))
276                                  DDrPatch_StrDup(OniExe + 0x0010fb73, value);
277 +                        else if (!stricmp(name, "shapeshifter_on"))
278 +                                DDr_CheatTable[0].message_on = strdup(value);
279 +                        else if (!stricmp(name, "shapeshifter_off"))
280 +                                DDr_CheatTable[0].message_off = strdup(value);
281 +                        else if (!stricmp(name, "liveforever_on"))
282 +                                DDr_CheatTable[1].message_on = strdup(value);
283 +                        else if (!stricmp(name, "liveforever_off"))
284 +                                DDr_CheatTable[1].message_off = strdup(value);
285 +                        else if (!stricmp(name, "touchofdeath_on"))
286 +                                DDr_CheatTable[2].message_on = strdup(value);
287 +                        else if (!stricmp(name, "touchofdeath_off"))
288 +                                DDr_CheatTable[2].message_off = strdup(value);
289 +                        else if (!stricmp(name, "canttouchthis_on"))
290 +                                DDr_CheatTable[3].message_on = strdup(value);
291 +                        else if (!stricmp(name, "canttouchthis_off"))
292 +                                DDr_CheatTable[3].message_off = strdup(value);
293 +                        else if (!stricmp(name, "fatloot_on"))
294 +                                DDr_CheatTable[4].message_on = strdup(value);
295 +                        else if (!stricmp(name, "glassworld_on"))
296 +                                DDr_CheatTable[5].message_on = strdup(value);
297 +                        else if (!stricmp(name, "glassworld_off"))
298 +                                DDr_CheatTable[5].message_off = strdup(value);
299 +                        else if (!stricmp(name, "winlevel_on"))
300 +                                DDr_CheatTable[6].message_on = strdup(value);
301 +                        else if (!stricmp(name, "loselevel_on"))
302 +                                DDr_CheatTable[7].message_on = strdup(value);
303 +                        else if (!stricmp(name, "bighead_on"))
304 +                                DDr_CheatTable[8].message_on = strdup(value);
305 +                        else if (!stricmp(name, "bighead_off"))
306 +                                DDr_CheatTable[8].message_off = strdup(value);
307 +                        else if (!stricmp(name, "minime_on"))
308 +                                DDr_CheatTable[9].message_on = strdup(value);
309 +                        else if (!stricmp(name, "minime_off"))
310 +                                DDr_CheatTable[9].message_off = strdup(value);
311 +                        else if (!stricmp(name, "superammo_on"))
312 +                                DDr_CheatTable[10].message_on = strdup(value);
313 +                        else if (!stricmp(name, "superammo_off"))
314 +                                DDr_CheatTable[10].message_off = strdup(value);
315 +                        else if (!stricmp(name, "devmode_on"))
316 +                        {
317 +                                char* str = strdup(value);
318 +                                DDr_CheatTable[11].message_on = str;
319 +                                DDr_CheatTable[cheat_x].message_on = str;
320 +                        }
321 +                        else if (!stricmp(name, "devmode_off"))
322 +                        {
323 +                                char* str = strdup(value);
324 +                                DDr_CheatTable[11].message_off = str;
325 +                                DDr_CheatTable[cheat_x].message_off = str;
326 +                        }
327 +                        else if (!stricmp(name, "reservoirdogs_on"))
328 +                                DDr_CheatTable[12].message_on = strdup(value);
329 +                        else if (!stricmp(name, "reservoirdogs_off"))
330 +                                DDr_CheatTable[12].message_off = strdup(value);
331 +                        else if (!stricmp(name, "roughjustice_on"))
332 +                                DDr_CheatTable[13].message_on = strdup(value);
333 +                        else if (!stricmp(name, "roughjustice_off"))
334 +                                DDr_CheatTable[13].message_off = strdup(value);
335 +                        else if (!stricmp(name, "chenille_on"))
336 +                                DDr_CheatTable[14].message_on = strdup(value);
337 +                        else if (!stricmp(name, "chenille_off"))
338 +                                DDr_CheatTable[14].message_off = strdup(value);
339 +                        else if (!stricmp(name, "behemoth_on"))
340 +                                DDr_CheatTable[15].message_on = strdup(value);
341 +                        else if (!stricmp(name, "behemoth_off"))
342 +                                DDr_CheatTable[15].message_off = strdup(value);
343 +                        else if (!stricmp(name, "elderrune_on"))
344 +                                DDr_CheatTable[16].message_on = strdup(value);
345 +                        else if (!stricmp(name, "elderrune_off"))
346 +                                DDr_CheatTable[16].message_off = strdup(value);
347 +                        else if (!stricmp(name, "moonshadow_on"))
348 +                                DDr_CheatTable[17].message_on = strdup(value);
349 +                        else if (!stricmp(name, "moonshadow_off"))
350 +                                DDr_CheatTable[17].message_off = strdup(value);
351 +                        else if (!stricmp(name, "munitionfrenzy_on"))
352 +                                DDr_CheatTable[18].message_on = strdup(value);
353 +                        else if (!stricmp(name, "fistsoflegend_on"))
354 +                                DDr_CheatTable[19].message_on = strdup(value);
355 +                        else if (!stricmp(name, "fistsoflegend_off"))
356 +                                DDr_CheatTable[19].message_off = strdup(value);
357 +                        else if (!stricmp(name, "killmequick_on"))
358 +                                DDr_CheatTable[20].message_on = strdup(value);
359 +                        else if (!stricmp(name, "killmequick_off"))
360 +                                DDr_CheatTable[20].message_off = strdup(value);
361 +                        else if (!stricmp(name, "carousel_on"))
362 +                                DDr_CheatTable[21].message_on = strdup(value);
363 +                        else if (!stricmp(name, "carousel_off"))
364 +                                DDr_CheatTable[21].message_off = strdup(value);
365                          else
366                                  DDrStartupMessage("unrecognised language item \"%s\"", name);
367                          break;
368 +                case s_bsl:
369                  default:
370                          break;
371          }
# Line 250 | Line 392 | void DDrConfig()
392          DDrStartupMessage("finished parsing");
393   }
394  
395 + void ONICALL DDrGame_Init()
396 + {
397 +        if (opt_usedaodanbsl)
398 +                SLrDaodan_Initalize();
399 + }
400 +
401   void __cdecl DDrMain(int argc, char* argv[])
402   {
403          DDrStartupMessage("daodan attached!");
# Line 273 | Line 421 | void __cdecl DDrMain(int argc, char* arg
421          }
422          
423          // Cheats always enabled
424 <        DDrPatch_MakeJump(ONrPersist_GetWonGame, DDrPersist_GetWonGame);
424 >        if (patch_cheatsenabled)
425 >                DDrPatch_MakeJump(ONrPersist_GetWonGame, DDrPersist_GetWonGame);
426          
427          // Windowed mode
428          if (patch_usedaodangl)
# Line 282 | Line 431 | void __cdecl DDrMain(int argc, char* arg
431                  DDrPatch_MakeJump(gl_platform_initialize, daodangl_platform_initialize);
432          }
433          
434 +        // Hacked windowed mode (for when daodangl isn't working properly)
435 +        if (patch_windowhack)
436 +                DDrWindowHack_Install();
437 +        
438 +        if (patch_daodaninit)
439 +                DDrPatch_MakeCall(OniExe + 0x000d345a, DDrGame_Init);
440 +        
441 +        // Patches for existing BSL functions
442 +        if (patch_bsl)
443 +                SLrDaodan_Patch();
444 +        
445 +        if (patch_cheater)
446 +        {
447 +                DDrPatch_MakeCall(OniExe + 0x000f618f, DDrCheater);
448 +                DDrPatch_Int16(OniExe + 0x000deb45, 0x5590);
449 +                DDrPatch_MakeCall(OniExe + 0x000deb47, FallingFrames);
450 +                DDrPatch_MakeJump(OniExe + 0x0010f021, DDrCheater_LevelLoad);
451 +        }
452 +        
453          init_daodan_gl();
454          
455          ONiMain(argc, argv);

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)