43557989f5
The subsystem that was fully greyed-out this morning now lists a card on the transfer
market: price screen, Submit, "your item is now up for trade", TRANSFER LIST 0/100,
auctionCount 1, and STORE.listings() holds the auction. Every step verified at the
instruction level first, then confirmed live. Three fixes, all behind flags, all off by
default until this run proved them.
1. WE WERE BANNING OUR OWN TRADING. userInfo.feature (atom 0x11c) is a RESTRICTION map,
not a grant; we sent feature={"trade":true}, which is a trade BAN. Verified in
q_feature_trade.py: FUN_18013ec10 parses feature/trade into userInfo+0x17c, and at
the massinfo END_OBJECT the client runs
cmp byte [rsi+0x17c],0 / jz skip / mov dword [rsi+0x50],0
feeding applier 0x18011dc91 -> IS_TRADING_ENABLED (model+0x1fd2e) = 0. It runs LAST
and unconditionally, which is why the gate read 0 all day regardless of /settings or
the Blaze config store. FUT_TRADING sends feature={} instead. Live: gate flipped
0 -> 1 on UT re-entry (model rebuilt, pointer changed, byte read 1).
2. TRANSFER LIST CAPACITY 0/0. pileSizeClientData (massinfo atom 0x227, parser
0x18013adb0) is the capacity, NOT the "MY CLUB counter" the old comment claimed.
Verified in q_pilesize_keys.py: exactly two storing arms, key 2 -> model+0x1fd1c
(TRADE_PILE_SIZE) and key 4 -> +0x1fd20 (watch list), every other key SKIP'd. The old
code would have sprayed the 246 club count into the capacity. FUT_PILESIZES sends
key 2 = 100, key 4 = 50. Live: capacity read 0 -> 100, header showed 0/100.
3. THE PRICE SCREEN FROZE THE CLIENT. GET marketdata/pricelimits was answered with an
OBJECT {minPrice,maxPrice}; the deser 0x180163ee0 reads a BARE TOP-LEVEL ARRAY
(root loop while tok != 0xd), so object-where-array desynced the SAX reader into the
0x1801c7f1a busy loop (confirmed live: utime climbing 227 ticks/s, core pinned).
Verified in q_pricelimits.py: element fields defId 0xcf, maxPrice 0x1c2, minPrice
0x1ca, all scalar ints. marketdata_route now returns a bare array, one element per
requested defId. Live: price screen opened and Submit succeeded.
Corrected along the way, all now in the code: two prior "trading root causes" from
earlier today were wrong (the Blaze IS_TRADING_ENABLED keys are output-only names, and
the applier is a virtual method at vtable+0x988, not unreachable). Those refutations are
recorded in blaze_responder_v3b.py and the doc.
Also lands the transfer-market recon doc (plan-2026-08-06-transfer-market.md) and the
market Ghidra query set.
Server-authoritative economy note: the 5% transfer fee and the price bands (currently a
150..15000 placeholder per defId) are not yet real; that is refinement, not a freeze.
The live-auction market SCREEN ("List on Transfer Market" browse) is a separate surface
still to do (P4 auction-counts route, P5 empty market bodies).
Live: 439 contract checks pass. Card listed and persisted, auctionCount 1.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
66 lines
3.0 KiB
Python
66 lines
3.0 KiB
Python
"""THE DECISIVE ONE. Does FUN_180173e00 actually run, or is every gate byte a
|
|
constructor default?
|
|
|
|
WHY IT DECIDES MY RECOMMENDATION: FUN_180173e00 calls the gate applier (vt+0x988)
|
|
and the CAPACITY applier (vt+0x998) in the SAME branch, after the same two guards.
|
|
They run together or not at all. If the callback never runs, serving
|
|
pileSizeClientData cannot possibly move TRANSFER LIST capacity and my recommendation
|
|
is void.
|
|
|
|
THE OBSERVATION THAT FORCES THE QUESTION (live, this session, controls passed):
|
|
model+0x1fd2f..+0x1fd3f all read 1, and FUN_18011dc50 writes every one of them as
|
|
`byte = (respField == 1)`. We serve {"configs": []}, so if the response struct were
|
|
zero-initialised and the applier ran, they would ALL be 0. They are 1. So exactly one
|
|
of these is true:
|
|
(A) the applier never runs and those bytes are FutDataManagerImpl ctor defaults
|
|
(B) the applier runs and the RESPONSE struct is constructed with 1s
|
|
(A) and (B) predict opposite outcomes for serving pileSizeClientData, and the live
|
|
byte pattern alone cannot separate them. The response constructor can.
|
|
|
|
TEST: decompile the FutGetUserMassInfoServerResponse constructor and read the
|
|
initialiser for resp+0x28..+0xc4 (the settings block), resp+0x50 (tradingEnabled),
|
|
and resp+0xc8..+0xd4 (the capacity block).
|
|
CONTROL inside the answer: whatever the ctor sets resp+0x80 (friendlySeasonsEnabled)
|
|
to must equal the live model+0x1fd3a, which is 1. If the ctor sets it to 1, (B) is
|
|
confirmed and the applier demonstrably runs. If the ctor zeroes it, (A) holds.
|
|
"""
|
|
import struct, traceback
|
|
|
|
try:
|
|
print("########## descriptor vtable slot +0x10 -> 0x18011f940 ##########")
|
|
print(dec(0x18011f940, 300))
|
|
except Exception:
|
|
traceback.print_exc()
|
|
|
|
try:
|
|
# the ctor should reference the RS4 name 0x18022d110 (-4 rule: the lea points at
|
|
# the "RS4:" header itself)
|
|
print("\n\n########## refs to RS4:FutGetUserMassInfoServerResponse (0x18022d110) ##########")
|
|
for frm, typ, fn, ent in xrefs_to(0x18022d110):
|
|
print(" %#x %s in %s (%#x)" % (frm, typ, fn, ent))
|
|
def sect(name):
|
|
for b in mem.getBlocks():
|
|
if b.getName() == name:
|
|
return int(b.getStart().getOffset()), int(b.getEnd().getOffset()) - int(b.getStart().getOffset()) + 1
|
|
TB, TS = sect(".text")
|
|
TEXT = read_bytes(TB, TS)
|
|
for tgt in (0x18022d110, 0x18022d000):
|
|
out = []
|
|
for i in range(0, len(TEXT) - 4):
|
|
d = struct.unpack_from("<i", TEXT, i)[0]
|
|
if TB + i + 4 + d == tgt:
|
|
out.append(TB + i)
|
|
print("\n rip-disp32 refs to %#x: %s" % (tgt, [hex(x) for x in out]))
|
|
for a in out:
|
|
f = fm.getFunctionContaining(addr(a))
|
|
print(" %#x in %s" % (a, f.getName() if f else "?"))
|
|
except Exception:
|
|
traceback.print_exc()
|
|
|
|
try:
|
|
print("\n\n########## FUN_18016c330 (installs the descriptor / issues request) ##########")
|
|
s = dec(0x18016c330, 300)
|
|
print("len=%d" % len(s)); print(s)
|
|
except Exception:
|
|
traceback.print_exc()
|