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 348 by rossy, Wed Jun 10 12:04:27 2009 UTC vs.
Revision 451 by rossy, Sun Jul 26 12:04:44 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;
25 bool patch_pathfinding = 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;
# Line 32 | Line 35 | 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  
42   bool patch_safeprintf = true;
43   bool patch_daodandisplayenum = true;
44   bool patch_usegettickcount = true;
45   bool patch_cheatsenabled = true;
46   bool patch_usedaodangl = false;
47 + bool patch_windowhack = true;
48 + bool patch_daodaninit = true;
49 + bool patch_bsl = true;
50 +
51 + bool opt_usedaodanbsl = true;
52  
53   bool DDrPatch_Init()
54   {
# Line 124 | Line 133 | bool DDrPatch_Init()
133                  DDrPatch_Int16 (OniExe + 0x001b184, 0x9090);
134          
135          // Multi-byte patch (multiple language support)
136 <        if (patch_multibyte)
136 >        if (!patch_multibyte)
137          {
138                  DDrPatch_Byte  (OniExe + 0x0002d8f8, 0xeb);
139                  DDrPatch_Byte  (OniExe + 0x0002d9ad, 0xeb);
# Line 151 | Line 160 | bool DDrPatch_Init()
160                  DDrPatch_Int32 (OniExe + 0x000f617a, (int)&DDr_CheatTable[0].message_on);
161          }
162          
163 +        if (patch_argb8888)
164 +        {
165 +                DDrPatch_Byte  (OniExe + 0x00135af0, 0x07);
166 +                DDrPatch_Byte  (OniExe + 0x00135af4, 0x0B);
167 +        }
168 +        
169          return true;
170   }
171  
172 < enum {s_unknown, s_patch, s_language} ini_section;
172 > enum {s_unknown, s_options, s_patch, s_bsl, s_language} ini_section;
173  
174   bool DDrIniCallback(char* section, bool newsection, char* name, char* value)
175   {
176          if (newsection)
177          {
178 <                if (!stricmp(section, "patch"))
178 >                if (!stricmp(section, "options"))
179 >                        ini_section = s_options;
180 >                else if (!stricmp(section, "patch"))
181                          ini_section = s_patch;
182 +                else if (!stricmp(section, "bsl"))
183 +                        ini_section = s_bsl;
184                  else if (!stricmp(section, "language"))
185                          ini_section = s_language;
186                  else
# Line 173 | Line 192 | bool DDrIniCallback(char* section, bool
192          
193          switch (ini_section)
194          {
195 +                case s_options:
196 +                        if (!stricmp(name, "usedaodanbsl"))
197 +                                opt_usedaodanbsl = !stricmp(inifile_cleanstr(value), "true");
198 +                        break;
199                  case s_patch:
200                          if (!stricmp(name, "fonttexturecache"))
201 <                                patch_fonttexturecache = !stricmp(value, "true");
201 >                                patch_fonttexturecache = !stricmp(inifile_cleanstr(value), "true");
202                          else if (!stricmp(name, "largetextures"))
203 <                                patch_largetextures = !stricmp(value, "true");
203 >                                patch_largetextures = !stricmp(inifile_cleanstr(value), "true");
204 >                        else if (!stricmp(name, "levelplugins"))
205 >                                patch_levelplugins = !stricmp(inifile_cleanstr(value), "true");
206                          else if (!stricmp(name, "pathfinding"))
207 <                                patch_pathfinding = !stricmp(value, "true");
207 >                                patch_pathfinding = !stricmp(inifile_cleanstr(value), "true");
208                          else if (!stricmp(name, "projaware"))
209 <                                patch_projaware = !stricmp(value, "true");
185 <                        else if (!stricmp(name, "levelplugins"))
186 <                                patch_levelplugins = !stricmp(value, "true");
209 >                                patch_projaware = !stricmp(inifile_cleanstr(value), "true");
210                          else if (!stricmp(name, "directinput"))
211 <                                patch_directinput = !stricmp(value, "true");
211 >                                patch_directinput = !stricmp(inifile_cleanstr(value), "true");
212                          else if (!stricmp(name, "wpfadetime"))
213 <                                patch_wpfadetime = !stricmp(value, "true");
213 >                                patch_wpfadetime = !stricmp(inifile_cleanstr(value), "true");
214                          else if (!stricmp(name, "kickguns"))
215 <                                patch_kickguns = !stricmp(value, "true");
215 >                                patch_kickguns = !stricmp(inifile_cleanstr(value), "true");
216                          else if (!stricmp(name, "cooldowntimer"))
217 <                                patch_cooldowntimer = !stricmp(value, "true");
217 >                                patch_cooldowntimer = !stricmp(inifile_cleanstr(value), "true");
218                          else if (!stricmp(name, "throwtest"))
219 <                                patch_throwtest = !stricmp(value, "true");
219 >                                patch_throwtest = !stricmp(inifile_cleanstr(value), "true");
220                          else if (!stricmp(name, "alttab"))
221 <                                patch_alttab = !stricmp(value, "true");
221 >                                patch_alttab = !stricmp(inifile_cleanstr(value), "true");
222                          else if (!stricmp(name, "particledisablebit"))
223 <                                patch_particledisablebit = !stricmp(value, "true");
223 >                                patch_particledisablebit = !stricmp(inifile_cleanstr(value), "true");
224                          else if (!stricmp(name, "multibyte"))
225 <                                patch_multibyte = !stricmp(value, "true");
225 >                                patch_multibyte = !stricmp(inifile_cleanstr(value), "true");
226                          else if (!stricmp(name, "cheattable"))
227 <                                patch_cheattable = !stricmp(value, "true");
227 >                                patch_cheattable = !stricmp(inifile_cleanstr(value), "true");
228 >                        else if (!stricmp(name, "argb8888"))
229 >                                patch_argb8888 = !stricmp(inifile_cleanstr(value), "true");
230                          else if (!stricmp(name, "safeprintf"))
231 <                                patch_safeprintf = !stricmp(value, "true");
231 >                                patch_safeprintf = !stricmp(inifile_cleanstr(value), "true");
232                          else if (!stricmp(name, "daodandisplayenum"))
233 <                                patch_daodandisplayenum = !stricmp(value, "true");
233 >                                patch_daodandisplayenum = !stricmp(inifile_cleanstr(value), "true");
234                          else if (!stricmp(name, "usegettickcount"))
235 <                                patch_usegettickcount = !stricmp(value, "true");
235 >                                patch_usegettickcount = !stricmp(inifile_cleanstr(value), "true");
236                          else if (!stricmp(name, "cheatsenabled"))
237 <                                patch_cheatsenabled = !stricmp(value, "true");
237 >                                patch_cheatsenabled = !stricmp(inifile_cleanstr(value), "true");
238                          else if (!stricmp(name, "usedaodangl"))
239 <                                patch_usedaodangl = !stricmp(value, "true");
239 >                                patch_usedaodangl = !stricmp(inifile_cleanstr(value), "true");
240 >                        else if (!stricmp(name, "windowhack"))
241 >                                patch_windowhack = !stricmp(inifile_cleanstr(value), "true");
242 >                        else if (!stricmp(name, "daodaninit"))
243 >                                patch_daodaninit = !stricmp(inifile_cleanstr(value), "true");
244 >                        else if (!stricmp(name, "bsl"))
245 >                                patch_bsl = !stricmp(inifile_cleanstr(value), "true");
246                          else
247                                  DDrStartupMessage("unrecognised patch \"%s\"", name);
248                          break;
# Line 249 | Line 280 | bool DDrIniCallback(char* section, bool
280                          else if (!stricmp(name, "canttouchthis_off"))
281                                  DDr_CheatTable[3].message_off = strdup(value);
282                          else if (!stricmp(name, "fatloot_on"))
283 <                                DDr_CheatTable[4].message_off = strdup(value);
283 >                                DDr_CheatTable[4].message_on = strdup(value);
284 >                        else if (!stricmp(name, "glassworld_on"))
285 >                                DDr_CheatTable[5].message_on = strdup(value);
286 >                        else if (!stricmp(name, "glassworld_off"))
287 >                                DDr_CheatTable[5].message_off = strdup(value);
288 >                        else if (!stricmp(name, "winlevel_on"))
289 >                                DDr_CheatTable[6].message_on = strdup(value);
290 >                        else if (!stricmp(name, "loselevel_on"))
291 >                                DDr_CheatTable[7].message_on = strdup(value);
292 >                        else if (!stricmp(name, "bighead_on"))
293 >                                DDr_CheatTable[8].message_on = strdup(value);
294 >                        else if (!stricmp(name, "bighead_off"))
295 >                                DDr_CheatTable[8].message_off = strdup(value);
296 >                        else if (!stricmp(name, "minime_on"))
297 >                                DDr_CheatTable[9].message_on = strdup(value);
298 >                        else if (!stricmp(name, "minime_off"))
299 >                                DDr_CheatTable[9].message_off = strdup(value);
300 >                        else if (!stricmp(name, "superammo_on"))
301 >                                DDr_CheatTable[10].message_on = strdup(value);
302 >                        else if (!stricmp(name, "superammo_off"))
303 >                                DDr_CheatTable[10].message_off = strdup(value);
304 >                        else if (!stricmp(name, "devmode_on"))
305 >                        {
306 >                                char* str = strdup(value);
307 >                                DDr_CheatTable[11].message_on = str;
308 >                                DDr_CheatTable[cheat_devmodex].message_on = str;
309 >                        }
310 >                        else if (!stricmp(name, "devmode_off"))
311 >                        {
312 >                                char* str = strdup(value);
313 >                                DDr_CheatTable[11].message_off = str;
314 >                                DDr_CheatTable[cheat_devmodex].message_off = str;
315 >                        }
316 >                        else if (!stricmp(name, "reservoirdogs_on"))
317 >                                DDr_CheatTable[12].message_on = strdup(value);
318 >                        else if (!stricmp(name, "reservoirdogs_off"))
319 >                                DDr_CheatTable[12].message_off = strdup(value);
320 >                        else if (!stricmp(name, "roughjustice_on"))
321 >                                DDr_CheatTable[13].message_on = strdup(value);
322 >                        else if (!stricmp(name, "roughjustice_off"))
323 >                                DDr_CheatTable[13].message_off = strdup(value);
324 >                        else if (!stricmp(name, "chenille_on"))
325 >                                DDr_CheatTable[14].message_on = strdup(value);
326 >                        else if (!stricmp(name, "chenille_off"))
327 >                                DDr_CheatTable[14].message_off = strdup(value);
328 >                        else if (!stricmp(name, "behemoth_on"))
329 >                                DDr_CheatTable[15].message_on = strdup(value);
330 >                        else if (!stricmp(name, "behemoth_off"))
331 >                                DDr_CheatTable[15].message_off = strdup(value);
332 >                        else if (!stricmp(name, "elderrune_on"))
333 >                                DDr_CheatTable[16].message_on = strdup(value);
334 >                        else if (!stricmp(name, "elderrune_off"))
335 >                                DDr_CheatTable[16].message_off = strdup(value);
336 >                        else if (!stricmp(name, "moonshadow_on"))
337 >                                DDr_CheatTable[17].message_on = strdup(value);
338 >                        else if (!stricmp(name, "moonshadow_off"))
339 >                                DDr_CheatTable[17].message_off = strdup(value);
340 >                        else if (!stricmp(name, "munitionfrenzy_on"))
341 >                                DDr_CheatTable[18].message_on = strdup(value);
342 >                        else if (!stricmp(name, "fistsoflegend_on"))
343 >                                DDr_CheatTable[19].message_on = strdup(value);
344 >                        else if (!stricmp(name, "fistsoflegend_off"))
345 >                                DDr_CheatTable[19].message_off = strdup(value);
346 >                        else if (!stricmp(name, "killmequick_on"))
347 >                                DDr_CheatTable[20].message_on = strdup(value);
348 >                        else if (!stricmp(name, "killmequick_off"))
349 >                                DDr_CheatTable[20].message_off = strdup(value);
350 >                        else if (!stricmp(name, "carousel_on"))
351 >                                DDr_CheatTable[21].message_on = strdup(value);
352 >                        else if (!stricmp(name, "carousel_off"))
353 >                                DDr_CheatTable[21].message_off = strdup(value);
354                          else
355                                  DDrStartupMessage("unrecognised language item \"%s\"", name);
356                          break;
357 +                case s_bsl:
358                  default:
359                          break;
360          }
# Line 279 | Line 381 | void DDrConfig()
381          DDrStartupMessage("finished parsing");
382   }
383  
384 + void ONICALL DDrGame_Init()
385 + {
386 +        if (opt_usedaodanbsl)
387 +                SLrDaodan_Initalize();
388 + }
389 +
390   void __cdecl DDrMain(int argc, char* argv[])
391   {
392          DDrStartupMessage("daodan attached!");
# Line 312 | Line 420 | void __cdecl DDrMain(int argc, char* arg
420                  DDrPatch_MakeJump(gl_platform_initialize, daodangl_platform_initialize);
421          }
422          
423 +        // Hacked windowed mode (for when daodangl isn't working properly)
424 +        if (patch_windowhack)
425 +                DDrWindowHack_Install();
426 +        
427 +        if (patch_daodaninit)
428 +                DDrPatch_MakeCall(OniExe + 0x000d345a, DDrGame_Init);
429 +        
430 +        // Patches for existing BSL functions
431 +        if (patch_bsl)
432 +                SLrDaodan_Patch();
433 +        
434          init_daodan_gl();
435          
436          ONiMain(argc, argv);

Diff Legend

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