[692] | 1 | #include <windows.h>
|
---|
[346] | 2 | #include <string.h>
|
---|
[838] | 3 | #include <stdio.h>
|
---|
[893] | 4 | #include <time.h>
|
---|
[346] | 5 |
|
---|
[272] | 6 | #include "Daodan.h"
|
---|
| 7 | #include "Daodan_Patch.h"
|
---|
[994] | 8 | #include "Patches/Utility.h"
|
---|
| 9 | #include "Patches/Cheater.h"
|
---|
| 10 | #include "Patches/BSL.h"
|
---|
| 11 | #include "Patches/Console.h"
|
---|
[838] | 12 | #include "Daodan_Config.h"
|
---|
[994] | 13 | #include "Patches/Patches.h"
|
---|
| 14 | #include "Patches/Localization.h"
|
---|
[990] | 15 | #include "bink-proxy.h"
|
---|
[893] | 16 | #include "_Version.h"
|
---|
[349] | 17 |
|
---|
[992] | 18 | #include "Oni/Oni.h"
|
---|
[339] | 19 |
|
---|
[272] | 20 | HMODULE DDrDLLModule;
|
---|
| 21 | HMODULE DDrONiModule;
|
---|
| 22 |
|
---|
[838] | 23 | void __cdecl DDrMain(int argc, char* argv[])
|
---|
| 24 | {
|
---|
[893] | 25 | time_t rawtime;
|
---|
| 26 | struct tm* timeinfo;
|
---|
| 27 | char buffer[80];
|
---|
| 28 | time(&rawtime);
|
---|
| 29 | timeinfo = localtime(&rawtime);
|
---|
[993] | 30 | strftime(buffer, 80, "%Y-%m-%d %H:%M:%S", timeinfo);
|
---|
[893] | 31 |
|
---|
[993] | 32 | STARTUPMESSAGE("Daodan v."DAODAN_VERSION_STRING" attached!", 0);
|
---|
| 33 | STARTUPMESSAGE("%s", buffer);
|
---|
[452] | 34 |
|
---|
[838] | 35 | DDrConfig(argc, argv);
|
---|
[994] | 36 | DD_Localization();
|
---|
[838] | 37 |
|
---|
[990] | 38 | if(GetKeyState(VK_SHIFT) & 0x8000) {
|
---|
[993] | 39 | STARTUPMESSAGE("Shift", 0);
|
---|
[990] | 40 | guitest(DDrONiModule);
|
---|
| 41 | }
|
---|
| 42 |
|
---|
[839] | 43 | DD_Patch_Init();
|
---|
[983] | 44 |
|
---|
[990] | 45 | BinkProxyInit();
|
---|
| 46 |
|
---|
[705] | 47 | ONiMain(argc, argv);
|
---|
[273] | 48 | }
|
---|
[465] | 49 | /*
|
---|
| 50 | void DDrWrongExe()
|
---|
| 51 | {
|
---|
| 52 | switch (MessageBox(NULL, "This version of the Daodan DLL is incompatible with your Oni.exe.\n"
|
---|
| 53 | "Click OK for more information. To continue using Oni without the patch, replace the downloaded binkw32.dll with the original.", "Daodan", MB_OKCANCEL | MB_ICONERROR))
|
---|
| 54 | {
|
---|
| 55 | case IDOK:
|
---|
| 56 | {
|
---|
| 57 | STARTUPINFO si;
|
---|
| 58 | PROCESS_INFORMATION pi;
|
---|
| 59 | FillMemory(&si, 0, sizeof(si));
|
---|
| 60 | FillMemory(&pi, 0, sizeof(pi));
|
---|
| 61 | si.cb = sizeof(si);
|
---|
| 62 | if (!CreateProcess(NULL, "cmd /c \"start http://wiki.oni2.net/Daodan_DLL\"", NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi))
|
---|
| 63 | MessageBox(NULL, "", "", 0);
|
---|
| 64 | CloseHandle(pi.hProcess);
|
---|
| 65 | CloseHandle(pi.hThread);
|
---|
| 66 | }
|
---|
| 67 | default:
|
---|
| 68 | ExitProcess(0);
|
---|
| 69 | }
|
---|
| 70 | }
|
---|
| 71 | */
|
---|
[272] | 72 | BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpReserved)
|
---|
| 73 | {
|
---|
| 74 | switch (fdwReason)
|
---|
| 75 | {
|
---|
| 76 | case DLL_PROCESS_ATTACH:
|
---|
| 77 | DDrDLLModule = hinstDLL;
|
---|
| 78 | DDrONiModule = GetModuleHandle(NULL);
|
---|
| 79 |
|
---|
[677] | 80 | if (*(uint32_t*)(OniExe + 0x0011acd0) == 0x09d36852)
|
---|
[689] | 81 | DDrPatch_MakeCall((void*)(OniExe + 0x0010fb49), (void*)DDrMain);
|
---|
[465] | 82 | else
|
---|
| 83 | ExitProcess(0);
|
---|
[272] | 84 | break;
|
---|
| 85 | }
|
---|
| 86 | return TRUE;
|
---|
| 87 | }
|
---|