本帖最后由 shane007 于 2023-8-25 15:49 编辑 $ u: b; B4 i, t: Z! B) y! e
# g0 k( s% F; c. Y! b: X这是一个Directx9的游戏,不过对Directx9的初始化,并不是在exe里完成的,# S8 G: n5 N4 x# A
而是在RenderSystem_Direct3D9.dll里完成的。
$ j/ x, Q7 Y, }) _0 D0 _( [: ~% j2 i由于这个原因,本游戏用dxwnd.exe没法实现窗口化(也许是还没找对方法),需要手工修改才行。) J2 i0 ]5 y4 K+ ]$ ~
要修改窗口化,就要寻找调用CreateDevice的地方。' D3 z6 Z b0 U
; s/ M; b0 L, b8 |因为CreateDevice是com接口的第17个函数,因此调用处的代码不外以下几种类型,
) L0 Q3 D* O) d, {8 Q h1 P逐个在ida pro的反汇编窗口中检索一下就行。(此方法没见别人公布过,算是我的发明吧。)8 J+ M; N$ o$ S: {2 e1 z3 e& |+ Y
- call dword ptr [eax+40h]! _2 j, B. h! {- M( X
- call dword ptr [ebx+40h]
8 I/ ?. ^7 y$ m H. i - call dword ptr [ecx+40h]
& w4 Y1 O4 |# @' `+ z8 P: y - call dword ptr [edx+40h]
/ [2 q3 b4 V2 c/ q3 `2 J9 P
复制代码
. G% t' X4 H j0 \/ D4 q
1 G1 @/ S7 K7 X v9 Z搜寻结果如下
+ f' F0 @+ G8 T- l- call dword ptr [eax+40h] 2处 OK- H9 j- e3 T7 }3 X- Z
- call dword ptr [ebx+40h] 没有
5 c* {7 m, [" q1 i: v" h - call dword ptr [ecx+40h] 好几处,参数个数不对4 |5 p0 `' d" C7 h, F
- call dword ptr [edx+40h] 1处,参数个数不对
复制代码 6 p y/ L* Y8 U" V" ^
4 I1 g& g) N, N+ U; Q3 ]' ^7 w/ s+ H结论很简单,call dword ptr [eax+40h] 的2处,参数个数正确,应该就是调用处。# w V/ g' U J+ N+ i& |8 J
代码如下
0 H! v# u. L U3 P. V第1处- .text:10017F06 8D 4C 24 10 lea ecx, [esp+5C8h+var_5B8]( C1 m, |9 K) I! _, s" X+ F" @
- .text:10017F0A 51 push ecx3 d" k, Q- y3 D& G8 Q* f3 q
- .text:10017F0B 8B 8D B0 00 00 00 mov ecx, [ebp+0B0h]/ w/ v% j8 o, z5 d. o l
- .text:10017F11 57 push edi n/ x: F3 p0 E6 m
- .text:10017F12 52 push edx
, n& W* s! h! j6 o! U y - .text:10017F13 8B 54 24 20 mov edx, [esp+5D4h+var_5B4]
* r% L2 \. q$ S* f' Y - .text:10017F17 51 push ecx3 D4 @* _* A9 R. h- C
- .text:10017F18 53 push ebx
$ Z0 A$ b" `$ ]! h - .text:10017F19 52 push edx6 `8 f; F" u' O
- .text:10017F1A 56 push esi) a( U9 y# v7 |3 _2 c: @
- .text:10017F1B FF 50 40 call dword ptr [eax+40h]
复制代码
1 n* l) s& Q$ S$ K5 ?% C, ?$ O! X
0 @/ @) F8 X0 h2 T! [3 F$ L' @4 [第2处
# S$ T- G+ x6 `( M' \9 ]3 {- .text:10017F2F 8D 4C 24 10 lea ecx, [esp+5C8h+var_5B8]
5 p* T% n, m, F* ?1 _2 Z - .text:10017F33 51 push ecx
% }& ^& |3 L; o0 K - .text:10017F34 8B 8D B0 00 00 00 mov ecx, [ebp+0B0h]2 l7 Q) @# U/ k
- .text:10017F3A 57 push edi
; W+ a9 R5 O* N, w1 N; Q+ f - .text:10017F3B 52 push edx
7 y" h8 x7 q8 W& y# m8 }( p0 t- G - .text:10017F3C 8B 54 24 20 mov edx, [esp+5D4h+var_5B4]: V5 Q, L, K. k! g% n0 ^) x
- .text:10017F40 51 push ecx8 z4 j5 c; `* w5 z' v- ~. @
- .text:10017F41 53 push ebx7 F! p, K" J5 l) U4 S' D
- .text:10017F42 52 push edx/ I$ Q1 z K" {1 y+ T; T+ n7 H
- .text:10017F43 56 push esi* U6 U$ t2 l! W: C2 [; w
- .text:10017F44 FF 50 40 call dword ptr [eax+40h]
复制代码
, }1 d7 ?3 C% |3 h: L2 N) ?& c; u# V1 D2 e! |& a2 a4 ?0 E. E4 e
+ i: @2 A2 R! P: }: Z/ E
补充,CreateDevice也有可能是以下形式
* n: T2 z6 ~8 o& H, F- .text:0041640D lea ebp, [esi+604h]; a: I% I2 L4 ?, U n$ s
- .text:00416413 push ebp& F4 p' K" H$ u/ Q
- .text:00416414 lea ecx, [esi+630h]
: J& B& n0 _, |$ k6 l; } - .text:0041641A push ecx
' _0 s# Z6 f/ R i! A2 s - .text:0041641B mov [esi+90Dh], dl3 q3 {) i2 e7 a e
- .text:00416421 mov ecx, hWnd
/ ]9 Q1 Y# z8 t& R8 ^ - .text:00416427 mov edx, [eax]
% B1 m9 x* b# {& ~ - .text:00416429 mov edx, [edx+40h]
2 y% n- \7 E6 n X - .text:0041642C push 40h
9 u; T U( s3 s; t6 H" j" t: i; e - .text:0041642E push ecx" X5 h7 E. y: @! c2 F
- .text:0041642F push 1
- ~* N6 }5 K; d. { - .text:00416431 push ebx5 o) E% F5 p2 V# \( C1 ^$ ]
- .text:00416432 push eax. V8 H. k- C2 c: U+ T
- .text:00416433 call edx
复制代码 0 Q# S3 E4 m+ \. M/ ]! s( J2 f
B! m- l* |5 p5 i( b' { B6 T" H
& \- l9 U. x) Q2 Z9 E/ ~3 f0 t, L; U1 a: ^
; ]4 E+ } D$ _0 F5 L0 L
|