diff options
author | Iru Cai <mytbk920423@gmail.com> | 2018-09-01 14:56:20 +0800 |
---|---|---|
committer | Iru Cai <mytbk920423@gmail.com> | 2018-09-01 14:56:20 +0800 |
commit | 7a194587c3f40fb01e5a57b9f4057ef541b9d0b8 (patch) | |
tree | 62c7bb1c05d2aae2ed32c4979a310cf3efe719ad /csrc/cards_ui.c | |
parent | 01e88475293363d59288107081f7a813e2154a1a (diff) | |
download | rich4-7a194587c3f40fb01e5a57b9f4057ef541b9d0b8.tar.xz |
cards_ui
Diffstat (limited to 'csrc/cards_ui.c')
-rw-r--r-- | csrc/cards_ui.c | 119 |
1 files changed, 119 insertions, 0 deletions
diff --git a/csrc/cards_ui.c b/csrc/cards_ui.c new file mode 100644 index 0000000..4a065fa --- /dev/null +++ b/csrc/cards_ui.c @@ -0,0 +1,119 @@ +#include "player_info.h" +#include "global.h" + +const char str_use[] = "\xa8\xcf\xa5\xce%s"; // 使用%s + +typedef struct +{ + const char *name_ptr; + uint8_t f4; + uint8_t price; + uint8_t f6; + uint8_t f7; +} rich4_card; + +/* 0x47feda */ +rich4_card cards_table[] = { + { NULL, 0, 0, 0, 0 }, + { "\xa7\xa1\xb4I\xa5\x64", 1, 200, 2, 2 }, /* 均富卡 */ + { "\xa7\xa1\xb3h\xa5\x64", 2, 200, 2, 2 }, /* 均贫卡 */ + { "\xc1\xca\xa6\x61\xa5\x64", 4, 35, 0, 1 }, /* 购地卡 */ + /* TODO */ +}; + +int fcn_4018e7(wProc a1, int a2) +{ + dw_46cad8++; + windowCallbacks[dw_46cad8] = a1; + PostMessageA(gwindowHandle, 0x401, 0, a2); + while (1) { + MSG msg; + if (PeekMessageA(&msg, 0, 0, 0, 1) == 0) + continue; + if (msg.message == 0x402) { + dw_46cad8--; + return msg.lParam; + } + TranslateMessage(&msg); + DispatchMessageA(&msg); + } +} + +void cards_ui() +{ + int t[4]; /* esp + 0x80 */ + char s[128]; + uint8_t mem[8]; /* esp + 0x90 */ + + eax = current_player * 0x68; + uint8_t dl = players[current_player].f21; + if (dl == 1) { + fcn.0041d546(); + edi = eax = read_mkf(mkf_panel, 11, NULL, NULL); + t[0] = 0; + t[1] = 40; + t[2] = 440; + t[3] = 480; + ebp = fcn.00451e7e(t); + do { + esi = 1; + fcn_00441b0a(0, edi, current_player); + IDirectDrawSurface_Lock(pddrawsf2, NULL, &sfdesc1, 1, 0); + fcn_004563f5(dw_48a08c, edi+12, 14, 130); + IDirectDrawSurface_Unlock(pddrawsf2, NULL); + ebx = fcn_4018e7(0x4416f0, 0); + fcn_00451edb(ebp, 0, 0x8028); + if (ebx != 0) { + edx = cards_table[ebx].name_ptr; /* cards_table has 8 bytes per item */ + sprintf(s, str_use, edx); + fcn_00441f73(ebx, s); + esi = eax = call[0x475d5c+ebx*4]; + if (eax) { + fcn.004542ce(0x48233a, eax); + } + } + } while (esi != 0); + free (edi); + free (ebp); + return; + } + if ((dl & 6) && (players[current_player].f22 & 1)) { + edi = esi = eax = fcn_00441262(current_player); + if (eax == 0) + return; + memset(mem, 0, 8); + if (esi > 8) { + esi = rand() % esi; + } else { + esi = 0; + } + for (ebx = 0; ebx < 8; ebx++) { + eax = current_player * 15; + edx = esi; + esi++; + al = [edx + eax + 0x499120]; + mem[ebx] = al; + if (edi <= 8 || esi != edi) + continue; + esi ^= edi; + } + } + for (ebx = 0; ebx < 8; ebx++) { + cl = mem[ebx]; + if (cl == 0) + return; + eax = cl; /* zero ext */ + eax = fcn_0041e69e(eax); + if (eax != 1) + continue; + + eax = mem[ebx]; + ecx = cards_table[eax].name_ptr; + sprintf(s, str_use, ecx); + eax = mem[ebx]; + fcn_00441f73(eax, s); + eax = mem[ebx]; + call dword [eax*4 + 0x475d5c]; + return; + } +} |